@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

/* ============================================================
   Turn 72 Films — Master Stylesheet
   style.css · ITE 170 Capstone
   
   TABLE OF CONTENTS
   ─────────────────
   1.  CSS Variables (brand palette)
   2.  Reset & Base
   3.  Typography
   4.  Header & Desktop Nav
   5.  Mobile Nav
   6.  Hero Slideshow (index)
   7.  Sections, Labels & Helpers
   8.  Feature Splits (index)
   9.  Project Cards (index preview)
   10. Skills (index)
   11. CTA Band
   12. Footer
   13. About Page
   14. Projects Page
   15. Multimedia Page
   16. Contact Page
   17. Animations & Keyframes
   18. Responsive Breakpoints
   ============================================================ */

:root {
       /* ── Turn 72 Films — Brand Palette ── */
       --crimson:      #8b2020;        /* primary accent — logo red */
       --crimson-dark: #5e1515;        /* hover / pressed state     */
       --crimson-glow: rgba(139,32,32,0.18); /* glow / focus ring  */
       --gold:         #c8a84b;        /* secondary accent — logo descriptor */
       --gold-light:   #e8d5a3;        /* light gold for dark backgrounds    */
       --ink:          #0d0d1a;        /* near-black — logo dark             */
       --ink-soft:     #2a2a3a;        /* slightly lighter dark for sections */
       --light-bg:     #f4f2ee;        /* warm off-white page background     */
       --surface:      #ffffff;        /* card / panel surface               */
       --soft-border:  #dedad4;        /* warm grey border                   */
       --text-muted:   #5a5a6a;        /* secondary body text                */
       --card-shadow:  0 18px 45px rgba(13,13,26,0.12);
       /* legacy aliases — keeps existing selectors working */
       --purple:       #8b2020;
       --blue:         #c8a84b;
       --accent:       #8b2020;
       --accent-dark:  #5e1515;
       --white:        #ffffff;
}



/* ============================================================
   1. CSS VARIABLES — edit in :root
   ============================================================ */
   

/* ============================================================
   2. RESET & BASE — edit *, html, body
   ============================================================ */
    *, *::before, *::after {

      margin: 0;

      padding: 0;

      box-sizing: border-box;

    }

    html {
      scroll-behavior: smooth;

    }

    body {
      font-family: 'Barlow', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

      background: var(--light-bg);

      color: var(--ink);

      overflow-x: hidden;

      line-height: 1.65;

    }

    img, video {
      max-width: 100%;

      display: block;

    }

/* ============================================================
   3. HEADER / DESKTOP NAV — edit header, .brand, .desktop-nav
   ============================================================ */
    header {
      position: fixed;

      top: 0;
      left: 0;

      width: 100%;

      height: 64px;

      background: rgba(244,242,238,0.96);

      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);

      border-bottom: 1px solid rgba(0,0,0,0.07);

      display: flex;
      align-items: center;
      justify-content: space-between;

      padding: 0 36px;

      z-index: 1000;

    }

    .brand {

      font-weight: 800;

      font-size: 1.05rem;

      letter-spacing: -.01em;

      text-decoration: none;

      color: var(--ink);

    }

    .brand span {
      color: var(--accent);

    }

    .desktop-nav {

      display: flex;
      gap: 28px;
      font-size: .95rem;
      font-weight: 500;
      margin-left: auto;
      margin-right: 20px;
    }

    .desktop-nav a {
      text-decoration: none;
      color: #333;
      opacity: .8;
      transition: opacity .2s, color .2s;

    }

    .desktop-nav a:hover {
      opacity: 1;
      color: var(--blue);
    }

    .desktop-nav a.active {
      color: var(--purple);
      opacity: 1;
      font-weight: 600;

    }

    .header-cta {

      display: inline-block;

      padding: 9px 22px;

      border-radius: 999px;

      background: var(--accent);

      color: #fff;

      font-size: .88rem;
      font-weight: 600;
      text-decoration: none;

      transition: background .2s, transform .2s;

    }

    .header-cta:hover {
      background: var(--accent-dark);

      transform: translateY(-2px);

    }

/* ============================================================
   4. MOBILE NAV — edit .mobile-nav, .mobile-toggle
   ============================================================ */
    .mobile-toggle {

      display: none;

      width: 38px;
      height: 38px;

      border-radius: 10px;

      border: 1.5px solid rgba(0,0,0,0.12);

      background: var(--white);

      cursor: pointer;

      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;

      transition: background .2s;

    }

    .mobile-toggle:hover {
      background: #eef0f6;

    }

    .mobile-toggle .bar,
    .mobile-toggle .bar::before,
    .mobile-toggle .bar::after {

      width: 20px;
      height: 2px;

      background: var(--ink);

      border-radius: 2px;

      display: block;

      transition: transform .3s, opacity .3s;

    }

    .mobile-toggle .bar {
      position: relative;

    }

    .mobile-toggle .bar::before {
      content: "";

      position: absolute;
      top: -6px;
      left: 0;

    }

    .mobile-toggle .bar::after {
      content: "";

      position: absolute;
      top: 6px;
      left: 0;

    }

    .mobile-nav {
      position: fixed;

      top: 0;
      right: -100%;

      width: 76%;
      max-width: 300px;

      height: 100vh;

      background: rgba(13,13,26,0.97);

      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);

      display: flex;
      flex-direction: column;

      padding: 80px 28px 40px;

      transition: right .32s ease;

      z-index: 999;

      border-left: 1px solid rgba(255,255,255,0.06);

    }

    .mobile-nav.open {
      right: 0;

    }

    .mobile-overlay {

      display: none;

      position: fixed;
      inset: 0;

      background: rgba(0,0,0,0.45);

      z-index: 998;

    }

    .mobile-overlay.show {
      display: block;

    }

    .mobile-nav-close {

      position: absolute;
      top: 20px;
      right: 20px;

      width: 36px;
      height: 36px;
      border-radius: 50%;

      background: rgba(255,255,255,0.08);

      border: 1px solid rgba(255,255,255,0.12);

      color: #fff;
      font-size: 1.2rem;
      cursor: pointer;

      display: flex;
      align-items: center;
      justify-content: center;

      transition: background .2s;
    }

    .mobile-nav-close:hover {
      background: rgba(255,255,255,0.15);

    }

    .mobile-nav-label {

      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .14em;

      text-transform: uppercase;

      color: rgba(255,255,255,0.3);

      margin-bottom: 24px;
    }

    .mobile-nav a {
      text-decoration: none;
      color: rgba(255,255,255,0.85);

      font-size: 1.5rem;

      font-weight: 700;

      margin-bottom: 6px;
      padding: 10px 0;

      border-bottom: 1px solid rgba(255,255,255,0.05);

      transition: color .2s, padding-left .2s;

      display: block;

    }

    .mobile-nav a:hover {
      color: var(--accent);
      padding-left: 6px;

    }

    .mobile-nav a.active {
      color: var(--accent);

    }

    .mobile-nav-cta {
      margin-top: auto;

      padding-top: 28px;

    }

    .mobile-nav-cta a {
      display: block;
      text-align: center;
      padding: 14px;
      background: var(--accent);
      color: #fff !important;

      border-radius: 12px;
      font-size: 1rem !important;
      border-bottom: none !important;
      padding-left: 0 !important;

    }

/* ============================================================
   5. HERO SLIDESHOW — edit .hero, .hero-slide
   ============================================================ */
    .hero {
      position: relative;

      min-height: 92vh;

      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;

      padding: 120px 24px 100px;

      overflow: hidden;

      background: #0d0d1a;

    }

    .hero-slide {

      position: absolute;
      inset: 0;

      opacity: 0;
      transition: opacity 1.2s ease;

      z-index: 0;
      background: #0d0d1a;
    }

    .hero-slide.active {
      opacity: 1;
      z-index: 1;

    }

    .slide-media {

      position: absolute;
      inset: 0;

      width: 100%;
      height: 100%;

      object-fit: cover;

      object-position: center;

    }

    .hero-slide:nth-child(1) {
      background: linear-gradient(160deg, #0d0d1a 0%, #1a0a0a 50%, #0d0d1a 100%);
    }
    .hero-slide:nth-child(2) {
      background: linear-gradient(160deg, #110808 0%, #1f0c0c 50%, #0d0d1a 100%);
    }
    .hero-slide:nth-child(3) {
      background: linear-gradient(160deg, #0d0d1a 0%, #1a0808 50%, #110a0a 100%);
    }

    .hero::before {

      content: "";

      position: absolute;
      inset: 0;

      background: rgba(13,13,26,0.55);

      z-index: 2;

    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 840px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* gap separates eyebrow pill → slide-text-wrapper → button
         so they never collapse into each other */
      gap: 0;
      padding-bottom: 20px;
    }

    .slide-text-wrapper {
      position: relative;
      width: 100%;
      /* Fixed height: contains all absolutely-positioned slide texts.
         overflow:hidden clips anything that bleeds out of this box.
         Increase height if copy gets longer. */
      height: 240px;
      overflow: hidden;
      margin-bottom: 48px;
      flex-shrink: 0;
    }

    .hero-eyebrow {

      display: inline-block;

      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;

      color: #fff;

      background: rgba(200,168,75,0.14);

      border: 1px solid rgba(200,168,75,0.35);

      padding: 6px 18px;
      border-radius: 999px;

      margin-bottom: 22px;

    }

    .hero h1 {
      font-size: clamp(2.6rem, 6.5vw, 4.8rem);

      font-weight: 900;

      color: #fff;

      line-height: 1.08;

      letter-spacing: -.025em;

      margin-bottom: 22px;

      background: linear-gradient(130deg, #ffffff 45%, rgba(232,213,163,0.85));

      -webkit-background-clip: text;
      background-clip: text;

      -webkit-text-fill-color: transparent;

    }

    .hero-sub {

      font-size: clamp(1rem, 2.2vw, 1.3rem);

      color: rgba(255,255,255,0.6);

      max-width: 520px;

      margin: 0 auto 42px;

      line-height: 1.7;

    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      /* position:relative + z-index keeps button above the dark overlay
         (z-index:2) and always below hero-content stack order */
      position: relative;
      z-index: 4;
      flex-shrink: 0;
      margin-top: 0;
    }

    .btn-primary {

      display: inline-block;
      padding: 15px 36px;
      border-radius: 999px;
      background: var(--accent);
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      font-size: .98rem;
      transition: background .25s, transform .25s, box-shadow .25s;

    }

    .btn-primary:hover {
      background: var(--accent-dark);

      transform: translateY(-3px);

      box-shadow: 0 14px 32px rgba(200,168,75,0.45);

    }

    .btn-secondary {

      display: inline-block;
      padding: 14px 36px;
      border-radius: 999px;
      border: 1.5px solid rgba(255,255,255,0.28);

      color: rgba(255,255,255,0.85);

      text-decoration: none;
      font-weight: 600;
      font-size: .98rem;
      transition: border-color .25s, color .25s, transform .25s;
    }

    .btn-secondary:hover {
      border-color: rgba(255,255,255,0.8);

      color: #fff;

      transform: translateY(-3px);

    }

    .slide-dots {

      position: absolute;
      bottom: 28px;

      left: 50%;
      transform: translateX(-50%);

      display: flex;
      gap: 9px;
      z-index: 10;

    }

    .slide-dots button {
      width: 9px;
      height: 9px;
      border-radius: 50%;

      border: 2px solid rgba(255,255,255,0.35);

      background: transparent;

      cursor: pointer;
      transition: background .3s, border-color .3s;
      padding: 0;

    }

    .slide-dots button.active {
      background: var(--accent);
      border-color: var(--accent);

    }

    .slide-text {

      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      text-align: center;

      opacity: 0;
      transition: opacity 1.2s ease;

      pointer-events: none;
    }

    .slide-text.active {
      opacity: 1;
      pointer-events: auto;

    }

    .slide-text h2 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 16px;
      text-align: center;
    }

    .slide-text p {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: rgba(255,255,255,0.7);
      max-width: 520px;
      margin: 0 auto;
      text-align: center;
      line-height: 1.7;
    }

/* ============================================================
   6. SECTION LABELS & HELPERS — edit .section-label, utility classes
   ============================================================ */
    .section-label {

      display: block;

      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .14em;

      text-transform: uppercase;
      color: var(--accent);

      margin-bottom: 10px;
    }

    .section-heading {
      font-size: clamp(1.7rem, 3.2vw, 2.5rem);

      font-weight: 800;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 14px;
    }

    .section-sub {

      font-size: 1.05rem;
      color: #556;

      line-height: 1.7;
      max-width: 600px;

    }

    .inner {

      max-width: 1180px;
      margin: 0 auto;

      padding: 0 24px;

    }

    .section {

      padding: 100px 24px;

      border-top: 1px solid var(--soft-border);

    }

    .section.white { background: var(--white); }
    .section.gray  { background: var(--light-bg); }

/* ============================================================
   7. FEATURE SPLITS — edit .feature-split, .feature-text, .feature-visual
   ============================================================ */
    .feature-inner {
      max-width: 1180px;
      margin: 0 auto;

      display: grid;
      grid-template-columns: 1fr 1fr;

      gap: 64px;

      align-items: center;

    }

    .feature-inner.reverse {
      direction: rtl;

    }

    .feature-inner.reverse > * {
      direction: ltr;

    }

    .feature-text {
      display: flex;
      flex-direction: column;
      gap: 16px;

    }

    .feature-visual .placeholder {

      width: 100%;
      min-height: 340px;
      border-radius: 24px;

      background: linear-gradient(135deg, #0d0d1a, #1a0a0a);

      box-shadow: var(--card-shadow);

      display: flex;
      align-items: center;
      justify-content: center;

      color: rgba(255,255,255,0.2);

      font-size: .85rem;
      text-align: center;
      padding: 24px;
    }

/* ============================================================
   8. PROJECT CARDS — edit .project-card, .card-thumb, .card-body
   ============================================================ */
    .projects-header {

      max-width: 1180px;
      margin: 0 auto 48px;

      display: flex;
      justify-content: space-between;
      align-items: flex-end;

      gap: 20px;
      flex-wrap: wrap;

    }

    .view-all {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      font-size: .9rem;
      transition: color .2s;
    }
    .view-all:hover { color: var(--accent-dark); }

    .project-grid {
      max-width: 1180px;
      margin: 0 auto;

      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

      gap: 26px;

    }

    .project-card {
      background: var(--white);
      border-radius: 22px;

      border: 1px solid var(--soft-border);

      overflow: hidden;

      transition: transform .3s ease, box-shadow .3s ease;

      text-decoration: none;

      color: inherit;

      display: block;

    }

    .project-card:hover {
      transform: translateY(-8px);

      box-shadow: var(--card-shadow);

    }

    .card-thumb {
      height: 200px;

      position: relative;

      overflow: hidden;

      background: linear-gradient(135deg, #0d0d1a, #1a0a0a);

    }

    .card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;

      transition: transform .4s ease;

    }

    .project-card:hover .card-thumb img {
      transform: scale(1.05);

    }

    .thumb-gradient-purple {
      background: linear-gradient(135deg, #8b2020, #c8a84b);

    }
    .thumb-gradient-sunset {
      background: linear-gradient(135deg, #ff7a59, #ffb347, #ffd86b);

    }
    .thumb-gradient-mint {
      background: linear-gradient(135deg, #10b981, #06b6d4);

    }
    .thumb-gradient-ink {
      background: linear-gradient(135deg, #1f1f3a, #5a2c4f);

    }

    .thumb-solid-purple { background: var(--purple); }
    .thumb-solid-blue   { background: var(--blue); }
    .thumb-solid-ink    { background: var(--ink); }

    .thumb-label {
      position: absolute;
      inset: 0;

      display: flex;
      align-items: center;
      justify-content: center;

      color: #fff;
      font-weight: 800;
      font-size: 1.6rem;
      letter-spacing: -.01em;
      text-align: center;
      padding: 0 20px;

      text-shadow: 0 2px 8px rgba(0,0,0,0.25);

    }

    .card-thumb video {
      width: 100%;
      height: 100%;
      object-fit: cover;

      transition: transform .4s ease;

    }

    .project-card:hover .card-thumb video {
      transform: scale(1.05);

    }

    .card-tag {

      position: absolute;
      top: 14px;
      left: 14px;

      padding: 4px 12px;
      border-radius: 999px;

      background: rgba(0,0,0,0.6);

      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .05em;

      backdrop-filter: blur(8px);

    }

    .card-body {
      padding: 22px 24px 26px;

    }

    .card-body h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;

    }

    .card-body p {
      font-size: .9rem;
      color: #667;

      line-height: 1.55;
    }

/* ============================================================
   9. SKILLS SECTION — edit .skills, .skill-tag
   ============================================================ */
    .skills-grid {
      max-width: 1180px;
      margin: 0 auto;

      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

      gap: 18px;
    }

    .skill-card {
      background: var(--white);
      border-radius: 18px;
      border: 1px solid var(--soft-border);
      padding: 28px 22px;

      transition: transform .3s, box-shadow .3s;

    }

    .skill-card:hover {
      transform: translateY(-5px);

      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .skill-icon {
      font-size: 2rem;

      margin-bottom: 14px;

    }

    .skill-name {
      font-weight: 700;
      font-size: .97rem;
      margin-bottom: 6px;
      color: var(--ink);
    }

    .skill-desc {
      font-size: .84rem;
      color: #778;

      line-height: 1.5;
    }

    .skill-bar {

      height: 4px;

      background: #e8eaf0;

      border-radius: 2px;
      margin-top: 14px;

    }

    .skill-bar-fill {

      height: 100%;

      border-radius: 2px;

      background: linear-gradient(90deg, var(--accent), #e8d5a3);

    }

/* ============================================================
   10. CTA BAND — edit .cta-band, .btn-primary
   ============================================================ */
    .cta-band {
      background: var(--white);
      border-top: 1px solid var(--soft-border);
      padding: 80px 24px;
    }

    .cta-inner {
      max-width: 1180px;
      margin: 0 auto;

      display: flex;
      justify-content: space-between;
      align-items: center;

      gap: 32px;
      flex-wrap: wrap;

    }

    .cta-text h2 {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      margin-bottom: 10px;
    }

    .cta-text p {
      color: #556;
      max-width: 480px;
    }

/* ============================================================
   11. FOOTER — edit footer
   ============================================================ */
    footer {
      background: #0d0d1a;

      color: rgba(255,255,255,0.35);

      text-align: center;
      padding: 28px 24px;
      font-size: .84rem;
    }

    footer a {
      color: rgba(255,255,255,0.35);
      text-decoration: none;
    }

/* ============================================================
   12. SCROLL FADE-UP ANIMATIONS — edit .fade-up, @keyframes
   ============================================================ */
    .fade-up {
      opacity: 0;

      transform: translateY(36px);

      transition: opacity .8s ease, transform .8s ease;

    }

    .fade-up.visible {
      opacity: 1;

      transform: translateY(0);

    }

    .fade-up:nth-child(2) { transition-delay: .08s; }
    .fade-up:nth-child(3) { transition-delay: .16s; }
    .fade-up:nth-child(4) { transition-delay: .24s; }
    .fade-up:nth-child(5) { transition-delay: .32s; }
    .fade-up:nth-child(6) { transition-delay: .40s; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-6px); }
    }

    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(139,32,32,0.6); }
      50%      { box-shadow: 0 0 0 8px rgba(139,32,32,0); }
    }

    @keyframes shimmer {
      0%   { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    @keyframes wiggle {
      0%, 100% { transform: rotate(0deg); }
      25%      { transform: rotate(-8deg); }
      75%      { transform: rotate(8deg); }
    }

    @keyframes arrow-nudge {
      0%, 100% { transform: translateX(0); }
      50%      { transform: translateX(4px); }
    }

    @keyframes scroll-bounce {
      0%, 100% { transform: translateY(0); opacity: .5; }
      50%      { transform: translateY(8px); opacity: 1; }
    }

    .hero-eyebrow {
      animation: float 4s ease-in-out infinite;

    }

    .desktop-nav a {
      position: relative;

    }
    .desktop-nav a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width .3s ease, left .3s ease;

    }
    .desktop-nav a:hover::after,
    .desktop-nav a.active::after {
      width: 100%;
      left: 0;
    }
    .desktop-nav a.active::after {
      background: var(--purple);

    }

    .header-cta { position: relative; overflow: hidden; }
    .header-cta::before {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 80%;
      height: 100%;
      background: linear-gradient(120deg,
        transparent 0%,
        rgba(255,255,255,0.35) 50%,
        transparent 100%);
      transition: left .6s ease;

    }
    .header-cta:hover::before { left: 120%; }

    .btn-primary { position: relative; overflow: hidden; }
    .btn-primary::before {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 60%;
      height: 100%;
      background: linear-gradient(120deg,
        transparent 0%,
        rgba(255,255,255,0.3) 50%,
        transparent 100%);
      transition: left .7s ease;
    }
    .btn-primary:hover::before { left: 140%; }

    .brand { transition: letter-spacing .3s ease; }
    .brand:hover { letter-spacing: 0; }
    .brand span { transition: color .3s ease; }
    .brand:hover span { color: var(--blue); }

    .slide-dots button.active {
      animation: pulse-glow 1.8s ease-out infinite;
    }
    .slide-dots button {
      transition: transform .25s ease, background .3s, border-color .3s;
    }
    .slide-dots button:hover {
      transform: scale(1.35);

    }

    .skill-card .skill-icon {
      display: inline-block;
      transition: transform .3s ease, color .3s ease;

    }
    .skill-card:hover .skill-icon {
      animation: wiggle .6s ease-in-out;
      color: var(--accent);
    }

    .skill-bar-fill {
      background: linear-gradient(
        90deg,
        var(--accent) 0%,
        #e8d5a3 40%,
        #ffffff 50%,
        #e8d5a3 60%,
        var(--accent) 100%);
      background-size: 200% 100%;
      animation: shimmer 3s linear infinite;

      transform-origin: left center;
      transform: scaleX(0);
      transition: transform 1.2s cubic-bezier(.2,.8,.2,1);

    }

    .skill-card.visible .skill-bar-fill {
      transform: scaleX(1);
    }

    .project-card {
      transition: transform .35s cubic-bezier(.2,.8,.2,1),
                  box-shadow .35s ease,
                  border-color .35s ease;
    }
    .project-card:hover {
      border-color: rgba(139,32,32,0.35);
      box-shadow:
        0 18px 45px rgba(0,0,0,0.10),
        0 0 0 3px rgba(139,32,32,0.08);

    }

    .card-tag {
      transition: transform .3s ease, background .3s ease;
    }
    .project-card:hover .card-tag {
      transform: translateY(-2px) scale(1.05);
      background: var(--accent);
    }

    .view-all {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: color .2s, gap .2s ease;
    }
    .view-all:hover { gap: 10px; }

    .feature-visual .placeholder {
      transition: transform .5s cubic-bezier(.2,.8,.2,1),
                  box-shadow .5s ease;
    }
    .feature-visual .placeholder:hover {
      transform: perspective(900px) rotateY(-4deg) rotateX(2deg) translateY(-4px);
      box-shadow: 0 28px 60px rgba(0,0,0,0.18);

    }

    .mobile-nav a {
      opacity: 0;
      transform: translateX(20px);
      transition: color .2s, padding-left .2s,
                  opacity .4s ease, transform .4s ease;
    }
    .mobile-nav.open a {
      opacity: 1;
      transform: translateX(0);
    }
    .mobile-nav.open a:nth-of-type(1) { transition-delay: .10s; }
    .mobile-nav.open a:nth-of-type(2) { transition-delay: .16s; }
    .mobile-nav.open a:nth-of-type(3) { transition-delay: .22s; }
    .mobile-nav.open a:nth-of-type(4) { transition-delay: .28s; }
    .mobile-nav.open a:nth-of-type(5) { transition-delay: .34s; }

    .mobile-toggle:hover .bar {
      transform: scaleX(.7);

    }
    .mobile-toggle .bar { transition: transform .3s ease; }

    .section-label {
      position: relative;
      padding-left: 16px;
    }
    .section-label::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      transform: translateY(-50%);
      animation: pulse-glow 2.2s ease-out infinite;

    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
    }

/* ============================================================
   13. RESPONSIVE BREAKPOINTS — edit @media queries
   ============================================================ */
    @media (max-width: 900px) {

      .desktop-nav { display: none; }

      .header-cta { display: none; }

      .mobile-toggle { display: flex; }

      .feature-inner {
        grid-template-columns: 1fr;

        gap: 32px;

      }

      .feature-inner.reverse {
        direction: ltr;

      }

      .cta-inner {
        flex-direction: column;

        text-align: center;
      }

      .projects-header {
        flex-direction: column;

        align-items: flex-start;
      }
    }

    @media (max-width: 600px) {
      header { padding: 0 20px; }

      .hero { padding: 100px 16px 80px; }

    }

/* ============================================================
   13. ABOUT PAGE
   ============================================================ */

/* ============================================================
   1. VARIABLES & RESET — edit :root, *, html, body
   ============================================================ */
    
    
    
    
    

/* ============================================================
   3. PAGE HERO — edit .page-hero, .page-hero h1
   ============================================================ */
    .page-hero {
      background: #0d0d1a;
      padding: 140px 24px 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
      min-height: 360px;
    }

    .page-hero-media {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: .55;
    }

    .page-hero.hero-gradient::before {
      content: "";
      position: absolute; inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(139,32,32,0.55), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(200,168,75,0.50), transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(236,72,153,0.25), transparent 60%);
      background-size: 200% 200%;
      animation: aurora 14s ease-in-out infinite alternate;
      z-index: 0;
    }
    @keyframes aurora {
      0%   { background-position:   0% 0%, 100% 100%, 50% 50%; }
      100% { background-position: 100% 100%,  0%  0%, 50% 50%; }
    }

    .page-hero.hero-image::after,
    .page-hero.hero-video::after {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(180deg,
        rgba(5,5,9,.55) 0%,
        rgba(5,5,9,.75) 100%);
      z-index: 1;
    }

    .page-hero-content { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }

    .page-hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .8rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      color: #fff;
      background: linear-gradient(135deg, rgba(139,32,32,.9), rgba(200,168,75,.9));
      border: 1px solid rgba(255,255,255,.25);
      padding: 8px 18px; border-radius: 999px;
      margin-bottom: 22px;
      box-shadow: 0 10px 30px rgba(139,32,32,.35);
    }
    .page-hero-eyebrow i { font-size: 1rem; }

    .page-hero h1 {
      font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 900;
      line-height: 1.05; margin-bottom: 18px;
      background: linear-gradient(135deg, #ffffff 0%, #f5ead0 50%, #e8d5a3 100%);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; color: transparent;
    }
    .page-hero p {
      font-size: 1.2rem; color: rgba(255,255,255,.78);
      max-width: 560px; margin: 0 auto;
    }

    .page-hero-icons {
      display: flex; justify-content: center; gap: 18px;
      margin-top: 28px;
    }
    .page-hero-icons i {
      font-size: 1.4rem; color: #fff;
      width: 44px; height: 44px; border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(10px);
      transition: transform .3s ease, background .3s ease;
    }
    .page-hero-icons i:hover {
      transform: translateY(-4px) scale(1.08);
      background: rgba(139,32,32,.35);
    }

/* ============================================================
   4. BIO SPLIT — edit .bio-split, .bio-text, .bio-photo
   ============================================================ */
    .bio-section {
      background: var(--white);
      padding: 100px 24px;
      border-top: 1px solid var(--soft-border);
    }
    .bio-inner {
      max-width: 1180px; margin:0 auto;
      display:grid; grid-template-columns:1fr 1.3fr; gap:64px; align-items:start;
    }

    .bio-photo {
      position: sticky;
      top: 90px;
    }
    .bio-photo-frame {

      background: linear-gradient(135deg, var(--crimson), var(--gold));
      border-radius: 28px;
      padding: 4px;
      display: inline-block;
      width: 100%;
    }
    .bio-photo-frame 

    .bio-photo-placeholder {
      width:100%; min-height:420px; border-radius:24px;
      background:linear-gradient(135deg,#0d0d1a,#1a0a0a);
      display:flex; flex-direction:column; align-items:center; justify-content:center;
      color:rgba(255,255,255,.35); text-align:center; padding:24px; gap:12px;
    }
    .bio-photo-placeholder span { font-size:2.5rem; }
    .bio-photo-placeholder p { font-size:.85rem; line-height:1.5; }

    .bio-text { display:flex; flex-direction:column; gap:20px; }
    .bio-text .section-label { color:var(--purple); font-size:.85rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; }
    .bio-text h2 {
      font-size: 2.4rem; font-weight: 900; line-height: 1.1;
      background: var(--grad);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; color: transparent;
    }
    .bio-text p  { font-size:1.05rem; color:#444; line-height:1.7; }
    .bio-text strong { color:var(--ink); }

    .bio-facts {
      display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
      gap:16px; margin-top:8px;
    }
    .bio-fact {
      background:var(--white); border-radius:18px; padding:22px 18px;
      border:1px solid var(--soft-border);
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .bio-fact:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(139,32,32,.12);
    }
    .bio-fact-icon {
      width: 48px; height: 48px; border-radius: 14px;
      display: inline-flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, var(--crimson), var(--gold));
      color: #fff; font-size: 1.5rem;
      margin-bottom: 12px;
      box-shadow: 0 8px 20px rgba(139,32,32,.25);
    }
    .bio-fact-label { font-size:.72rem; font-weight:800; color:var(--purple); text-transform:uppercase; letter-spacing:.1em; margin-bottom:4px; }
    .bio-fact-value { font-size:1rem; color:var(--ink); font-weight:600; }

/* ============================================================
   5. SKILLS GRID — edit .skills-grid, .skill-card
   ============================================================ */
    .skills-section {
      background: var(--light-bg);
      padding: 100px 24px;
      border-top: 1px solid var(--soft-border);
    }
    .skills-header {
      max-width:1180px; margin:0 auto 52px;
    }
    .skills-header h2 {
      font-size: 2.4rem; font-weight: 900; margin: 10px 0 14px;
      background: var(--grad);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; color: transparent;
    }
    .skills-header p  { font-size:1.1rem; color:#555; max-width:520px; }

    .skills-grid {
      max-width:1180px; margin:0 auto;
      display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px;
    }

    .skill-card {
      background:var(--white); border-radius:20px;
      border:1px solid var(--soft-border); padding:28px 22px;
      transition:transform .3s ease, box-shadow .3s ease;
      position: relative; overflow: hidden;
    }
    .skill-card::before {
      content: ""; position: absolute; top: 0; left: 0;
      width: 100%; height: 4px;
      background: linear-gradient(90deg, var(--crimson), var(--gold));
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s ease;
    }
    .skill-card:hover {
      transform:translateY(-6px);
      box-shadow:var(--card-shadow);
    }
    .skill-card:hover::before { transform: scaleX(1); }
    .skill-icon {
      width: 56px; height: 56px; border-radius: 16px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 2rem; color: #fff;
      background: linear-gradient(135deg, var(--crimson), var(--gold));
      margin-bottom: 18px;
      box-shadow: 0 10px 24px rgba(139,32,32,.28);
      transition: transform .4s cubic-bezier(.2,.8,.2,1);
    }
    .skill-card:hover .skill-icon {
      transform: rotate(-6deg) scale(1.08);
    }
    .skill-name { font-weight:800; font-size:1.1rem; margin-bottom:6px; }
    .skill-desc { font-size:.9rem; color:#555; line-height:1.55; }

    .skill-bar-track {
      height:4px; background:#e8e8e8; border-radius:2px; margin-top:14px;
    }
    .skill-bar-fill {
      height:100%; border-radius:2px;
      background:linear-gradient(90deg, var(--crimson), var(--gold));

    }

/* ============================================================
   6. EDUCATION TIMELINE — edit .timeline, .timeline-item
   ============================================================ */
    .edu-section {
      background: var(--white);
      padding: 100px 24px;
      border-top: 1px solid var(--soft-border);
    }
    .edu-inner { max-width:760px; margin:0 auto; }
    .edu-inner h2 {
      font-size: 2.4rem; font-weight: 900; margin: 10px 0 40px;
      background: var(--grad);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; color: transparent;
    }

    .timeline { display:flex; flex-direction:column; gap:0; }

    .timeline-item {
      display:flex; gap:24px; padding-bottom:40px; position:relative;
    }

    .timeline-item:not(:last-child)::after {
      content:"";
      position:absolute; left:19px; top:40px; bottom:0;
      width:2px; background:var(--soft-border);
    }

    .timeline-dot {
      width:48px; height:48px; border-radius:50%; flex-shrink:0;
      display:flex; align-items:center; justify-content:center;
      font-size:1.2rem;
    }

    .timeline-dot.active {
      background: linear-gradient(135deg, var(--crimson), var(--gold));
      color:#fff;
      box-shadow:0 0 0 6px rgba(139,32,32,0.15), 0 8px 22px rgba(139,32,32,.35);
    }

    .timeline-dot.done {
      background:var(--white); color:var(--purple);
      border:2px solid var(--purple);
    }

    .timeline-content { padding-top:6px; flex:1; }
    .timeline-content h3 { font-size:1.05rem; font-weight:700; margin-bottom:4px; }
    .timeline-content .meta { font-size:.85rem; color:var(--purple); font-weight:600; margin-bottom:8px; }
    .timeline-content p  { font-size:.92rem; color:#555; line-height:1.55; }

/* ============================================================
   7. VALUES — edit .values, .value-card
   ============================================================ */
    .values-section {
      background: var(--light-bg);
      padding: 100px 24px;
      border-top: 1px solid var(--soft-border);
    }
    .values-inner { max-width:1180px; margin:0 auto; }
    .values-inner h2 {
      font-size: 2.4rem; font-weight: 900; margin: 10px 0 40px;
      background: var(--grad);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; color: transparent;
    }

    .values-grid {
      display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px;
    }
    .value-card {
      background:var(--white); border-radius:20px; padding:32px 26px;
      border:1px solid var(--soft-border);
      transition:transform .3s, box-shadow .3s;
    }
    .value-card:hover { transform:translateY(-6px); box-shadow:var(--card-shadow); }
    .value-card .icon {
      width: 64px; height: 64px; border-radius: 18px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 2rem; color: #fff;
      background: linear-gradient(135deg, var(--crimson), var(--gold));
      margin-bottom: 18px;
      box-shadow: 0 12px 28px rgba(139,32,32,.30);
    }
    .value-card h3 { font-size:1.2rem; font-weight:800; margin-bottom:10px; }
    .value-card p  { font-size:.95rem; color:#555; line-height:1.6; }

/* ============================================================
   14. PROJECTS PAGE
   ============================================================ */

/* ============================================================
   1. VARIABLES & RESET — edit :root, *, html, body
   ============================================================ */
    
    
    
    
    

/* ============================================================
   3. PAGE HERO — edit .page-hero, .page-hero h1
   ============================================================ */
    .page-hero {
      background:#0d0d1a; padding:120px 24px 80px;
      text-align:center; position:relative; overflow:hidden;
    }

    .page-hero-media {
      position:absolute; inset:0;
      width:100%; height:100%;
      object-fit:cover;
      z-index:0;
      opacity:.55;
    }

    .page-hero.hero-gradient::before {
      content:""; position:absolute; inset:0;
      background:
        radial-gradient(circle at 30% 60%, rgba(139,32,32,.55), transparent 55%),
        radial-gradient(circle at 70% 40%, rgba(200,168,75,.50), transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(200,168,75,.15), transparent 60%);
      background-size:200% 200%;
      animation: pj-aurora 14s ease-in-out infinite alternate;
      z-index:0;
    }
    @keyframes pj-aurora {
      0%   { background-position:   0% 0%, 100% 100%, 50% 50%; }
      100% { background-position: 100% 100%,  0%  0%, 50% 50%; }
    }

    .page-hero.hero-image::after,
    .page-hero.hero-video::after {
      content:""; position:absolute; inset:0;
      background: linear-gradient(180deg,
        rgba(5,5,9,.55) 0%,
        rgba(5,5,9,.75) 100%);
      z-index:1;
    }

    .page-hero-content { position:relative; z-index:2; max-width:700px; margin:0 auto; }
    .page-hero-eyebrow {
      display:inline-block; font-size:.85rem; font-weight:600; letter-spacing:.12em;
      text-transform:uppercase; color:var(--purple); background:rgba(139,32,32,.15);
      border:1px solid rgba(139,32,32,.3); padding:5px 14px; border-radius:999px; margin-bottom:20px;
    }
    .page-hero h1 { font-size:clamp(2.4rem,5vw,3.8rem); font-weight:800; color:#fff; line-height:1.1; margin-bottom:16px; }
    .page-hero p  { font-size:1.15rem; color:rgba(255,255,255,.6); max-width:500px; margin:0 auto; }

/* ============================================================
   4. FILTER BAR — edit .filter-bar, .filter-btn
   ============================================================ */
    .filter-bar {
      background:var(--white);
      border-bottom:1px solid var(--soft-border);
      padding:0 24px;
      position:sticky;
      top:64px;
      z-index:100;
    }
    .filter-inner {
      max-width:1180px; margin:0 auto;
      display:flex; gap:0; overflow-x:auto; padding-bottom:1px;
    }

    .filter-btn {
      padding:16px 22px; border:none; background:none;
      font-size:.92rem; font-weight:600; color:#666;
      cursor:pointer; white-space:nowrap;
      border-bottom:2px solid transparent;
      transition:color .2s, border-color .2s;
    }
    .filter-btn:hover { color:var(--purple); }

    .filter-btn.active { color:var(--purple); border-bottom-color:var(--purple); }

/* ============================================================
   5. PROJECTS — edit .projects-section, .project-card
   ============================================================ */
    .projects-section {
      padding:60px 24px 100px;
      background:var(--light-bg);
    }

    .projects-grid {
      max-width:1180px; margin:0 auto;
      display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
      gap:28px;
    }

    .project-card {
      background:var(--white); border-radius:24px;
      border:1px solid var(--soft-border); overflow:hidden;
      transition:transform .3s ease, box-shadow .3s ease;
      text-decoration:none; color:inherit; display:block;
    }
    .project-card:hover {
      transform:translateY(-8px);
      box-shadow:var(--card-shadow);
    }

    .card-thumb {
      height:220px; position:relative; overflow:hidden;
      background:#0d0d1a;
    }

    .card-thumb.thumb-gradient {
      background: var(--thumb-grad, linear-gradient(135deg,#1a0f2e,#0f1a3e));
    }

    .card-thumb .thumb-media {
      width:100%; height:100%; object-fit:cover; display:block;
      transition: transform .4s ease;
    }
    .project-card:hover .card-thumb .thumb-media { transform: scale(1.05); }

    .card-thumb.thumb-video .thumb-media { background:#0d0d1a; }

    .card-thumb > 
    .project-card:hover .card-thumb > 

    .card-tag {
      position:absolute; top:14px; left:14px;
      padding:5px 13px; border-radius:999px;
      background:rgba(0,0,0,.65); color:#fff;
      font-size:.78rem; font-weight:600; letter-spacing:.04em;
      backdrop-filter:blur(8px);
    }

    .card-status {
      position:absolute; top:14px; right:14px;
      padding:5px 13px; border-radius:999px;
      font-size:.75rem; font-weight:700; letter-spacing:.04em;
    }
    .card-status.done     { background:rgba(22,163,74,.8);  color:#fff; }
    .card-status.progress { background:rgba(234,179,8,.85); color:#000; }
    .card-status.planned  { background:rgba(0,0,0,.5);      color:#fff; }

    .card-
    .card-body h3 { font-size:1.15rem; font-weight:700; margin-bottom:8px; }
    .card-body p  { font-size:.92rem; color:#555; line-height:1.55; margin-bottom:16px; }

    .card-tags { display:flex; flex-wrap:wrap; gap:6px; }
    .tech-tag {
      padding:4px 11px; border-radius:999px;
      background:var(--light-bg); border:1px solid var(--soft-border);
      font-size:.75rem; font-weight:600; color:#555;
    }

    .card-link {
      display:inline-flex; align-items:center; gap:6px; margin-top:16px;
      font-size:.9rem; font-weight:600; color:var(--blue); text-decoration:none;
      transition:color .2s, gap .2s;
    }
    .card-link:hover { color:var(--purple); gap:10px; }

/* ============================================================
   6. FEATURED PROJECT — edit .featured-project, .featured-visual
   ============================================================ */
    .featured-project {
      background:var(--white);
      border-top:1px solid var(--soft-border);
      padding:80px 24px;
    }
    .featured-inner {
      max-width:1180px; margin:0 auto;
      display:grid; grid-template-columns:1.2fr 1fr; gap:64px; align-items:center;
    }

    .featured-visual {
      border-radius:28px; overflow:hidden;
      box-shadow:var(--card-shadow);
    }
    .featured-visual 

    .featured-placeholder {
      width:100%; min-height:360px;
      background:linear-gradient(135deg,#0d0d1a,#1a0808);
      display:flex; flex-direction:column; align-items:center; justify-content:center;
      gap:12px; color:rgba(255,255,255,.3); text-align:center; padding:24px;
    }
    .featured-placeholder span { font-size:3rem; }

    .featured-text { display:flex; flex-direction:column; gap:16px; }
    .featured-badge {
      display:inline-flex; align-items:center; gap:8px;
      background:linear-gradient(135deg,var(--purple),var(--blue));
      color:#fff; padding:6px 16px; border-radius:999px;
      font-size:.8rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
      width:fit-content;
    }
    .featured-text h2 { font-size:2.2rem; font-weight:800; line-height:1.15; }
    .featured-text p  { font-size:1.05rem; color:#444; line-height:1.7; }

    .outcomes { list-style:none; display:flex; flex-direction:column; gap:10px; margin-top:4px; }
    .outcomes li {
      display:flex; align-items:flex-start; gap:10px;
      font-size:.95rem; color:#333;
    }
    .outcomes li::before {
      content:"✓";
      color:var(--purple); font-weight:700; flex-shrink:0; margin-top:1px;
    }

    .btn-primary {
      display:inline-block; padding:14px 30px; border-radius:999px;
      background:var(--purple); color:#fff; text-decoration:none;
      font-weight:600; font-size:.95rem; transition:background .25s,transform .25s;
      width:fit-content;
    }
    .btn-primary:hover { background:#6c2c5d; transform:translateY(-3px); }
    .btn-secondary {
      display:inline-block; padding:13px 30px; border-radius:999px;
      border:1.5px solid var(--soft-border); color:#444; text-decoration:none;
      font-weight:500; font-size:.95rem; transition:border-color .25s,color .25s,transform .25s;
    }
    .btn-secondary:hover { border-color:#aaa; color:#111; transform:translateY(-3px); }

/* ============================================================
   15. MULTIMEDIA PAGE
   ============================================================ */

/* ============================================================
   1. VARIABLES & RESET — edit :root, *, html, body
   ============================================================ */
    
    
    
    
    

/* ============================================================
   3. PAGE HERO — edit .page-hero, .page-hero h1
   ============================================================ */
    .page-hero {
      background:#0d0d1a; padding:120px 24px 80px;
      text-align:center; position:relative; overflow:hidden;
    }

    .page-hero-media {
      position:absolute; inset:0;
      width:100%; height:100%;
      object-fit:cover;
      z-index:0;
      opacity:.55;
    }

    .page-hero.hero-gradient::before {
      content:""; position:absolute; inset:0;
      background:
        radial-gradient(circle at 20% 70%, rgba(139,32,32,.55), transparent 55%),
        radial-gradient(circle at 80% 30%, rgba(200,168,75,.50), transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(200,168,75,.15), transparent 60%);
      background-size:200% 200%;
      animation: mm-aurora 14s ease-in-out infinite alternate;
      z-index:0;
    }
    @keyframes mm-aurora {
      0%   { background-position:   0% 0%, 100% 100%, 50% 50%; }
      100% { background-position: 100% 100%,  0%  0%, 50% 50%; }
    }

    .page-hero.hero-image::after,
    .page-hero.hero-video::after {
      content:""; position:absolute; inset:0;
      background: linear-gradient(180deg,
        rgba(5,5,9,.55) 0%,
        rgba(5,5,9,.75) 100%);
      z-index:1;
    }

    .page-hero-content { position:relative; z-index:2; max-width:700px; margin:0 auto; }
    .page-hero-eyebrow {
      display:inline-block; font-size:.85rem; font-weight:600; letter-spacing:.12em;
      text-transform:uppercase; color:var(--purple); background:rgba(139,32,32,.15);
      border:1px solid rgba(139,32,32,.3); padding:5px 14px; border-radius:999px; margin-bottom:20px;
    }
    .page-hero h1 { font-size:clamp(2.4rem,5vw,3.8rem); font-weight:800; color:#fff; line-height:1.1; margin-bottom:16px; }
    .page-hero p  { font-size:1.15rem; color:rgba(255,255,255,.6); max-width:500px; margin:0 auto; }

    .scrolling-strip {
      background: #0d0d1a;
      padding: 28px 0;
      overflow: hidden;
      position: relative;
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .scrolling-strip::before,
    .scrolling-strip::after {
      content: ""; position: absolute; top: 0; bottom: 0; width: 80px;
      pointer-events: none; z-index: 2;
    }
    .scrolling-strip::before { left: 0;  background: linear-gradient(90deg, #0d0d1a, transparent); }
    .scrolling-strip::after  { right: 0; background: linear-gradient(-90deg, #0d0d1a, transparent); }

    .scroll-track {
      display: flex; gap: 18px; width: max-content;
      animation: mm-scroll 35s linear infinite;
      will-change: transform;
    }
    .scrolling-strip:hover .scroll-track { animation-play-state: paused; }

    @keyframes mm-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .scroll-tile {
      width: 240px; height: 160px; border-radius: 16px;
      overflow: hidden; flex-shrink: 0;
      background: linear-gradient(135deg,#1a0f2e,#0f2040);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.35); font-size: .8rem; text-align: center; padding: 10px;
      box-shadow: 0 10px 24px rgba(0,0,0,.3);
      position: relative;
      transition: transform .35s ease;
    }
    .scroll-tile:hover { transform: scale(1.04); }
    .scroll-tile img,
    .scroll-tile video {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }

    .scroll-tile-caption {
      position: absolute; left: 0; right: 0; bottom: 0;
      padding: 10px 12px;
      background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
      color: #fff; font-size: .78rem; font-weight: 500;
      opacity: 0; transition: opacity .25s;
    }
    .scroll-tile:hover .scroll-tile-caption { opacity: 1; }

    @media (max-width: 600px) {
      .scroll-tile { width: 180px; height: 120px; }
      .scroll-track { animation-duration: 28s; }
    }

/* ============================================================
   4. MEDIA TYPE TABS — edit .filter-bar, .filter-btn
   ============================================================ */
    .media-tabs {
      background:var(--white); border-bottom:1px solid var(--soft-border);
      padding:0 24px; position:sticky; top:64px; z-index:100;
    }
    .media-tabs-inner {
      max-width:1180px; margin:0 auto; display:flex; overflow-x:auto; padding-bottom:1px;
    }
    .tab-btn {
      padding:16px 22px; border:none; background:none;
      font-size:.92rem; font-weight:600; color:#666;
      cursor:pointer; white-space:nowrap;
      border-bottom:2px solid transparent; transition:color .2s,border-color .2s;
    }
    .tab-btn:hover { color:var(--purple); }
    .tab-btn.active { color:var(--purple); border-bottom-color:var(--purple); }

/* ============================================================
   5. VIDEO GALLERY — edit .video-grid, .video-card
   ============================================================ */
    .media-section { display:none; }
    .media-section.active { display:block; }

    .video-gallery {
      padding:60px 24px 80px;
      background:var(--light-bg);
    }

    .section-header {
      max-width:1180px; margin:0 auto 40px;
    }
    .section-header h2 { font-size:1.8rem; font-weight:800; margin:6px 0 10px; }
    .section-header p  { font-size:1.02rem; color:#555; max-width:600px; }

    .section-label {
      display:block; font-size:.82rem; font-weight:700; letter-spacing:.12em;
      text-transform:uppercase; color:var(--purple); margin-bottom:4px;
    }

    .video-feature {
      max-width:1180px; margin:0 auto;
    }

    .video-card {
      background:var(--white); border-radius:22px;
      border:1px solid var(--soft-border); overflow:hidden;
      transition:transform .3s,box-shadow .3s;
    }
    .video-card:hover { transform:translateY(-6px); box-shadow:var(--card-shadow); }

    .video-card video {
      width:100%; aspect-ratio:16/9; object-fit:cover;
      background:#0d0d1a; display:block;
    }

    .video-placeholder {
      width:100%; aspect-ratio:16/9; background:#0d0d1a;
      display:flex; flex-direction:column; align-items:center; justify-content:center;
      gap:10px; color:rgba(255,255,255,.4); text-align:center;
    }
    .video-placeholder span { font-size:3.5rem; }
    .video-placeholder p { font-size:.95rem; }

    .video-card-
    .video-card-body h3 { font-size:1.3rem; font-weight:700; margin-bottom:8px; }
    .video-card-body p  { font-size:.95rem; color:#555; line-height:1.6; max-width:700px; }

    .video-tools { display:flex; gap:6px; flex-wrap:wrap; margin-top:14px; }
    .tool-badge {
      padding:3px 10px; border-radius:999px; font-size:.74rem; font-weight:600;
      background:var(--light-bg); border:1px solid var(--soft-border); color:#555;
    }

/* ============================================================
   6. IMAGE GALLERY — edit .image-gallery, .gallery-item
   ============================================================ */
    .image-gallery {
      padding:60px 24px 80px;
      background:var(--light-bg);
    }

    .photo-columns {
      max-width:1180px; margin:0 auto;

      column-count:3;
      column-gap:16px;
    }

    .photo-item {
      break-inside:avoid;
      margin-bottom:16px;
      border-radius:18px;
      overflow:hidden;
      cursor:pointer;
      position:relative;
      background:#0d0d1a;
      transition:transform .3s ease, box-shadow .3s ease;
    }
    .photo-item:hover { transform:scale(1.02); box-shadow:var(--card-shadow); }

    .photo-item 

    .photo-caption {
      position:absolute; left:0; right:0; bottom:0;
      padding:12px 14px 14px;
      background:linear-gradient(to top, rgba(0,0,0,.75), transparent);
      color:#fff; font-size:.82rem; font-weight:500;
      opacity:0; transition:opacity .3s;
    }
    .photo-item:hover .photo-caption { opacity:1; }

    .photo-placeholder {
      height:200px; background:linear-gradient(135deg,#0d0d1a,#1a0a0a);
      display:flex; align-items:center; justify-content:center;
      color:rgba(255,255,255,.3); font-size:.82rem; text-align:center; padding:16px;
    }

/* ============================================================
   7. ANIMATION GALLERY — edit .anim-gallery, .anim-card
   ============================================================ */
    .animation-gallery {
      padding:60px 24px 80px; background:var(--light-bg);
    }

    .animation-grid {
      max-width:1180px; margin:0 auto;
      display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:24px;
    }

    .animation-card {
      background:var(--white); border-radius:20px;
      border:1px solid var(--soft-border); overflow:hidden;
      transition:transform .3s, box-shadow .3s;
    }
    .animation-card:hover { transform:translateY(-6px); box-shadow:var(--card-shadow); }

    .animation-preview {
      height:200px; background:#0d0d1a;
      display:flex; align-items:center; justify-content:center;
      position:relative; overflow:hidden;
    }

    .demo-pulse {
      width:60px; height:60px; border-radius:50%;
      background:linear-gradient(135deg, var(--crimson), var(--gold));
      animation:pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { transform:scale(1); opacity:1; }
      50%       { transform:scale(1.3); opacity:.7; }
    }

    .demo-spin {
      width:70px; height:70px; border-radius:50%;
      background:conic-gradient(var(--purple), var(--blue), var(--purple));
      animation:spin 2s linear infinite;
    }
    @keyframes spin {
      to { transform:rotate(360deg); }
    }

    .demo-float {
      width:80px; height:56px; border-radius:12px;
      background:linear-gradient(135deg,var(--purple),var(--blue));
      animation:float 3s ease-in-out infinite;
      box-shadow:0 10px 30px rgba(139,32,32,.5);
    }
    @keyframes float {
      0%, 100% { transform:translateY(0); }
      50%       { transform:translateY(-18px); }
    }

    .demo-type {
      font-size:1.4rem; font-weight:700; color:#fff;
      border-right:3px solid var(--purple);
      animation:blink .8s step-start infinite;
      padding-right:4px;
    }
    @keyframes blink {
      0%,100% { border-color:var(--purple); }
      50%      { border-color:transparent; }
    }

    .animation-card-
    .animation-card-body h3 { font-size:1rem; font-weight:700; margin-bottom:6px; }
    .animation-card-body p  { font-size:.86rem; color:#555; line-height:1.5; }

    .css-snippet {
      margin-top:10px; padding:8px 12px; border-radius:8px;
      background:var(--light-bg); font-family:monospace; font-size:.78rem; color:var(--crimson);
    }

/* ============================================================
   8. TOOLS GRID — edit .tools-grid, .tool-card
   ============================================================ */
    .tools-section {
      background:var(--white);
      border-top:1px solid var(--soft-border);
      padding:80px 24px;
    }
    .tools-inner { max-width:1180px; margin:0 auto; }
    .tools-inner h2 { font-size:2rem; font-weight:800; margin:6px 0 36px; }

    .tools-grid {
      display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:18px;
    }
    .tool-card {
      background:var(--light-bg); border-radius:18px; padding:24px 18px;
      border:1px solid var(--soft-border); text-align:center;
      transition:transform .3s,box-shadow .3s;
    }
    .tool-card:hover { transform:translateY(-5px); box-shadow:var(--card-shadow); }
    .tool-icon { font-size:2.2rem; margin-bottom:10px; }
    .tool-name { font-weight:700; font-size:.95rem; }

/* ============================================================
   10. LIGHTBOX MODAL — edit .lightbox, .lightbox-img
   ============================================================ */
    .lightbox {
      display:none;
      position:fixed; inset:0;
      background:rgba(0,0,0,.92);
      z-index:2000;
      align-items:center; justify-content:center;
      padding:24px;
    }
    .lightbox.open { display:flex; }

    .lightbox 
    .lightbox-close {
      position:absolute; top:20px; right:24px;
      color:#fff; font-size:2rem; cursor:pointer;
      background:none; border:none; line-height:1;
      transition:opacity .2s;
    }
    .lightbox-close:hover { opacity:.6; }
    .lightbox-caption {
      position:absolute; bottom:24px; left:50%;
      transform:translateX(-50%);
      color:rgba(255,255,255,.7); font-size:.9rem;
      background:rgba(0,0,0,.5); padding:6px 16px; border-radius:999px;
      white-space:nowrap;
    }

/* ============================================================
   16. CONTACT PAGE
   ============================================================ */

/* ============================================================
   1. VARIABLES & RESET — edit :root, *, html, body
   ============================================================ */
    
    
    
    
    

/* ============================================================
   3. PAGE HERO — edit .page-hero, .page-hero h1
   ============================================================ */
    .page-hero {
      background:#0d0d1a; padding:120px 24px 80px;
      text-align:center; position:relative; overflow:hidden;
    }

    .page-hero-media {
      position:absolute; inset:0;
      width:100%; height:100%;
      object-fit:cover;
      z-index:0;
      opacity:.55;
    }

    .page-hero.hero-gradient::before {
      content:""; position:absolute; inset:0;
      background:
        radial-gradient(circle at 25% 65%, rgba(139,32,32,.55), transparent 55%),
        radial-gradient(circle at 75% 35%, rgba(200,168,75,.50), transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(200,168,75,.15), transparent 60%);
      background-size:200% 200%;
      animation: ct-aurora 14s ease-in-out infinite alternate;
      z-index:0;
    }
    @keyframes ct-aurora {
      0%   { background-position:   0% 0%, 100% 100%, 50% 50%; }
      100% { background-position: 100% 100%,  0%  0%, 50% 50%; }
    }

    .page-hero.hero-image::after,
    .page-hero.hero-video::after {
      content:""; position:absolute; inset:0;
      background: linear-gradient(180deg,
        rgba(5,5,9,.55) 0%,
        rgba(5,5,9,.75) 100%);
      z-index:1;
    }

    .page-hero-content { position:relative; z-index:2; max-width:700px; margin:0 auto; }
    .page-hero-eyebrow {
      display:inline-block; font-size:.85rem; font-weight:600; letter-spacing:.12em;
      text-transform:uppercase; color:var(--purple); background:rgba(139,32,32,.15);
      border:1px solid rgba(139,32,32,.3); padding:5px 14px; border-radius:999px; margin-bottom:20px;
    }
    .page-hero h1 { font-size:clamp(2.4rem,5vw,3.8rem); font-weight:800; color:#fff; line-height:1.1; margin-bottom:16px; }
    .page-hero p  { font-size:1.15rem; color:rgba(255,255,255,.6); max-width:500px; margin:0 auto; }

/* ============================================================
   4. CONTACT SPLIT — edit .contact-split, .contact-info, .contact-form
   ============================================================ */
    .contact-section {
      background: var(--white);
      padding: 80px 24px 100px;
      border-top: 1px solid var(--soft-border);
    }

    .contact-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 64px;
      align-items: start;
    }

    .contact-info { display:flex; flex-direction:column; gap:32px; }

    .section-label {
      display:block; font-size:.82rem; font-weight:700;
      letter-spacing:.12em; text-transform:uppercase; color:var(--purple); margin-bottom:6px;
    }
    .contact-info h2 { font-size:2.2rem; font-weight:800; line-height:1.15; margin-bottom:14px; }
    .contact-info p  { font-size:1.05rem; color:#444; line-height:1.7; }

    .contact-method {
      display:flex; align-items:center; gap:20px;
      padding:22px 24px; border-radius:18px;
      background:var(--light-bg); border:1px solid var(--soft-border);
      transition:transform .3s,box-shadow .3s;
    }
    .contact-method:hover { transform:translateY(-4px); box-shadow:var(--card-shadow); }

    .method-icon {
      width: 48px; height: 48px; border-radius: 14px;
      display: inline-flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, var(--crimson), var(--gold));
      color: #fff; font-size: 1.5rem;
      flex-shrink: 0;
      box-shadow: 0 8px 20px rgba(139,32,32,.25);
    }

    .method-icon i {
      display: block;
      color: #fff;
      font-size: 1.5rem;
      line-height: 1;
    }
    .method-icon i::before {
      display:block;
      line-height:1;
    }
    .method-info .method-type { font-size:.78rem; font-weight:700; color:var(--purple); letter-spacing:.06em; text-transform:uppercase; margin-bottom:2px; }
    .method-info .method-value { font-size:.95rem; font-weight:500; color:#111; }
    .method-info .method-value a { color:var(--blue); text-decoration:none; }
    .method-info .method-value a:hover { text-decoration:underline; }

/* ============================================================
   5. CONTACT FORM — edit .contact-form, input, textarea
   ============================================================ */
    .contact-form-wrap {
      background: var(--white);
      border: 1px solid var(--soft-border);
      border-radius: 24px;
      padding: 40px 36px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    }

    .form-title {
      font-size:1.4rem; font-weight:700; margin-bottom:6px;
    }
    .form-subtitle {
      font-size:.92rem; color:#666; margin-bottom:28px;
    }

    .form-group {
      display:flex; flex-direction:column; gap:6px; margin-bottom:20px;
    }

    .form-group label {
      font-size:.88rem; font-weight:600; color:#333;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width:100%;
      padding:13px 16px;
      border-radius:12px;
      border:1.5px solid var(--soft-border);
      font-size:.95rem;
      font-family:inherit;
      color:var(--ink);
      background:var(--white);

      outline:none;
      transition:border-color .2s, box-shadow .2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color:var(--purple);
      box-shadow:0 0 0 3px rgba(139,32,32,0.12);
    }

    .form-group textarea { resize:vertical; min-height:140px; }

    .form-row {
      display:grid; grid-template-columns:1fr 1fr; gap:16px;
    }

    .btn-submit {
      width:100%; padding:15px;
      border-radius:12px; border:none;
      background:var(--purple); color:#fff;
      font-size:1rem; font-weight:600; font-family:inherit;
      cursor:pointer;
      transition:background .25s, transform .2s, box-shadow .2s;
      margin-top:6px;
    }
    .btn-submit:hover {
      background:#6c2c5d;
      transform:translateY(-2px);
      box-shadow:0 8px 24px rgba(139,32,32,0.35);
    }
    .btn-submit:active { transform:translateY(0); }

/* ============================================================
   6. SOCIAL LINKS — edit .social-links, .social-link
   ============================================================ */
    .social-section {
      background: var(--light-bg);
      border-top:1px solid var(--soft-border);
      padding:60px 24px;
      text-align:center;
    }
    .social-inner { max-width:700px; margin:0 auto; }
    .social-inner h2 { font-size:1.8rem; font-weight:800; margin:6px 0 12px; }
    .social-inner p  { font-size:1rem; color:#555; margin-bottom:32px; }

    .social-links {
      display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
    }

    .social-link {
      display:inline-flex; align-items:center; justify-content:center; gap:12px;
      padding:14px 26px; border-radius:999px;
      background:var(--white); border:1px solid var(--soft-border);
      text-decoration:none; color:var(--ink); font-weight:600; font-size:1rem;
      transition:transform .25s,box-shadow .25s,border-color .25s;
    }
    .social-link:hover {
      transform:translateY(-4px);
      box-shadow:var(--card-shadow);
      border-color:var(--purple);
    }
    .social-link-icon {
      display:grid; place-items:center;
      font-size:1.6rem; line-height:1; color:var(--purple);
    }
    .social-link-icon i {
      display:block;
      font-size:1.6rem;
      line-height:1;
    }
    .social-link-icon i::before {
      display:block;
      line-height:1;
    }

/* ============================================================
   7. SUCCESS MESSAGE — edit .success-message
   ============================================================ */
    .success-message {
      display:none;
      background:var(--light-bg);
      border:1.5px solid #22c55e;
      border-radius:16px; padding:24px;
      text-align:center; margin-top:20px;
    }
    .success-message.show { display:block; }
    .success-message h3 { font-size:1.2rem; color:#166534; margin-bottom:6px; }
    .success-message p  { font-size:.92rem; color:#166534; }