
    :root{
      --ink:#14110E;
      --ink-2:#1B1712;
      --velvet:#2E1B22;
      --velvet-2:#3A2029;
      --gold:#E7B44C;
      --gold-soft:#F1CB7C;
      --red:#C13A2E;
      --cream:#FAF9F6;
      --cream-dim:#fff;
      --tan:#9C7A4E;
      --line: rgba(243,233,210,0.14);

      --heading: 'Inter',sans-serif;
      --label: 'Oswald', sans-serif;
      --body: 'Inter', sans-serif;
      --mono: 'Space Mono', monospace;
      --heading:'Inter',sans-serif;
      --bg:#121110;
      --bg-soft:#171513;
      /* --ink:#EFEAE0;
      --ink-muted:#ececec;
      --gold:#C9A227;
      --crimson:#B23A2E;
      --line-track: rgba(239,234,224,0.12);
      --serif: 'Fraunces', serif;
      --sans: 'Inter', sans-serif; */
    }
    .subhead{
        font-weight: 100;
    }
    .black{
        color:#000 !important ;
    }
    .bg-blue{
        background-color: #2a7cf3;
    }
    .margin-right{
        margin-right:57px;
        margin-top: 14px;
    }
  
    h1{
      font-family:'Fraunces',serif;
      font-weight:600;
      font-size:clamp(32px,5vw,50px);
      line-height:1.05;
      margin:0 0 14px;
      letter-spacing:-0.01em;
    }
  
    .intro{
      font-size:16px;
      line-height:1.6;
      color:rgba(22,18,16,0.72);
      max-width:52ch;
      margin:0 0 40px;
    }
  
    /* Tabs — ticket-stub style */
    .tabs{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:34px;
      border-bottom:1px solid var(--line);
      padding-bottom:26px;
    }
  
    .tab{
      position:relative;
      font-family:'Inter',sans-serif;
      font-weight:600;
      font-size:14px;
      color:var(--ink);
      /*background:transparent;*/
      border:1.5px solid var(--line);
      padding:10px 20px;
      border-radius:100px;
      cursor:pointer;
      transition:border-color .18s ease, background .18s ease, color .18s ease;
      letter-spacing:0.01em;
    }
  
    .tab:hover{ border-color:rgba(22,18,16,0.35); }
  
    .tab.active{
      background:var(--red);
      border-color:var(--red);
      color:#fff;
    }
  
    .tab .count{
      opacity:0;
      font-weight:500;
      margin-left:6px;
      font-size:12px;
    }
    .tab.active .count{ opacity:0; }
  
    /* Gallery grid */
    .grid{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:14px;
    }
  
    @media (max-width:640px){
      .grid{grid-template-columns:repeat(2,1fr);}
    }
  
    .frame{
      position:relative;
      aspect-ratio:4/5;
      border-radius:4px;
      overflow:hidden;
      cursor:pointer;
      background:var(--canvas-dim);
      border:1px solid var(--line);
    }
  
    .frame img{
      width:100%;height:100%;
      object-fit:cover;
      display:block;
      transition:transform .5s cubic-bezier(.2,.8,.2,1);
    }
  
    .frame:hover img{ transform:scale(1.045); }
  
    .frame .tag{
      position:absolute;
      left:10px; bottom:10px;
      background:rgba(22,18,16,0.72);
      color:#fff;
      font-size:11px;
      font-weight:600;
      letter-spacing:0.04em;
      padding:5px 10px;
      border-radius:100px;
      display: none;
    }
  
    .frame .num{
      position:absolute;
      right:10px; top:10px;
      font-family:'Fraunces',serif;
      font-style:italic;
      font-size:13px;
      color:#fff;
      text-shadow:0 1px 4px rgba(0,0,0,0.5);
      display:none;
    }
  
    /* Popup / lightbox */
    .overlay{
      position:fixed; inset:0;
      background:rgba(15,12,10,0.92);
      display:none;
      align-items:center;
      justify-content:center;
      z-index:1000;
      padding:24px;
    }
    .overlay.open{ display:flex; }
  
    .lightbox{
      position:relative;
      width:100%;
      max-width:780px;
    }
  
    .lb-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      color:#EFE9DD;
      font-family:'Inter',sans-serif;
      font-size:13px;
      margin-bottom:14px;
    }
  
    .lb-top .lb-tag{
      font-weight:600;
      letter-spacing:0.04em;
      color:var(--gold);
    }
  
    .lb-close{
      background:none;
      border:1px solid rgba(239,233,221,0.3);
      color:#EFE9DD;
      width:34px; height:34px;
      border-radius:50%;
      cursor:pointer;
      font-size:16px;
      display:flex; align-items:center; justify-content:center;
      transition:border-color .15s ease, transform .15s ease;
    }
    .lb-close:hover{ border-color:#EFE9DD; }
  
    .lb-stage{
      position:relative;
      background:#0f0c0a;
      border-radius:6px;
      overflow:hidden;
      aspect-ratio:16/10;
      display:flex;
      align-items:center;
      justify-content:center;
    }
  
    .lb-stage img{
      width:100%; height:100%;
      object-fit:contain;
      display:block;
    }
  
    .lb-nav{
      position:absolute;
      top:0; bottom:0;
      width:64px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:none;
      border:none;
      cursor:pointer;
      color:#fff;
      font-size:22px;
      opacity:0.8;
      transition:opacity .15s ease, background .15s ease;
    }
    .lb-nav:hover{ opacity:1; background:rgba(0,0,0,0.18); }
    .lb-prev{ left:0; }
    .lb-next{ right:0; }
  
    .lb-caption{
      display:flex;
      justify-content:space-between;
      align-items:baseline;
      margin-top:14px;
      color:#EFE9DD;
    }
  
    .lb-caption .name{
      font-family:'Fraunces',serif;
      font-size:19px;
    }
  
    .lb-caption .idx{
      font-size:13px;
      color:rgba(239,233,221,0.6);
      font-variant-numeric:tabular-nums;
    }
  
    @media (prefers-reduced-motion: reduce){
      .frame img, .lb-close{ transition:none; }
    }
    #site-header{
        background-color: #000;
    }
    .eyebrow{
      font-size:12px;
      letter-spacing:.18em;
      text-transform:uppercase;
      color:var(--gold);
      margin:0 0 14px;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .eyebrow::before{
      content:"";
      width:6px;height:6px;border-radius:50%;
      background:var(--gold);
      box-shadow:0 0 0 3px rgba(217,169,76,.18);
    }
    h1{
      font-family:Arial, Helvetica, sans-serif;
      font-weight:800;
      font-size:44px;
      line-height:1.05;
      letter-spacing:-.01em;
      margin:0 0 16px;
    }
    h1 em{
      font-style:italic;
      font-family:Georgia, 'Times New Roman', serif;
      font-weight:400;
      color:var(--gold);
    }
    .sub{
      font-size:16px;
      line-height:1.6;
      color:var(--muted);
      margin:0 0 44px;
      max-width:480px;
    }
    form{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:4px;
      padding:40px;
      position:relative;
      overflow:hidden;
    }
    form::before{
      content:"";
      position:absolute;
      top:-90px; right:-90px;
      width:220px;height:220px;
      border-radius:50%;
      border:1px solid var(--line-soft);
    }
    form::after{
      content:"";
      position:absolute;
      top:-60px; right:-60px;
      width:150px;height:150px;
      border-radius:50%;
      border:1px dashed rgba(176,74,58,.35);
    }
    .field{
      margin-bottom:26px;
      position:relative;
    }
    .row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
    }
    label{
      display:flex;
      align-items:center;
      gap:8px;
      font-size:11px;
      letter-spacing:.14em;
      text-transform:uppercase;
      color:var(--muted);
      margin-bottom:10px;
    }
    .ring-dot{
      width:7px;height:7px;border-radius:50%;
      background:var(--line-soft);
      transition:all .25s ease;
      flex:none;
    }
    .field.active .ring-dot{
      background:var(--gold);
      box-shadow:0 0 0 4px rgba(217,169,76,.15), 0 0 0 8px rgba(217,169,76,.06);
    }
    .field.active label{ color:var(--gold); }
    input[type=text], input[type=email], textarea{
      width:100%;
      background:transparent;
      border:none;
      border-bottom:1px solid var(--line);
      color:var(--white);
      font-size:16px;
      font-family:inherit;
      padding:8px 2px 12px;
      outline:none;
      transition:border-color .25s ease;
    }
    input::placeholder, textarea::placeholder{ color:#5c4f42; }
    input:focus, textarea:focus{ border-bottom-color:var(--gold); }
    textarea{ resize:vertical; min-height:90px; line-height:1.6; }

    .rings-select{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .ring-chip{
      border:1px solid var(--line);
      color:var(--muted);
      font-size:13px;
      padding:9px 16px;
      border-radius:999px;
      cursor:pointer;
      user-select:none;
      transition:all .2s ease;
      background:transparent;
    }
    .ring-chip:hover{ border-color:var(--gold-dim); color:var(--white); }
    .ring-chip.on{
      border-color:var(--gold);
      color:var(--bg);
      background:var(--gold);
      font-weight:600;
    }

    .error{
      font-size:12px;
      color:var(--rust);
      margin-top:8px;
      display:none;
    }
    .field.invalid .error{ display:block; }
    .field.invalid input, .field.invalid textarea{ border-bottom-color:var(--rust); }

    .submit-row{
      display:flex;
      align-items:center;
      gap:18px;
      margin-top:36px;
    }
    button{
      appearance:none;
      border:none;
      background:var(--gold);
      color:#1c1208;
      font-weight:700;
      font-size:14px;
      letter-spacing:.03em;
      padding:15px 30px;
      border-radius:2px;
      cursor:pointer;
      display:flex;
      align-items:center;
      gap:10px;
      transition:transform .15s ease, background .2s ease;
    }
    button:hover{ background:#e6bb63; }
    button:active{ transform:scale(.98); }
    .spin{
      width:14px;height:14px;
      border-radius:50%;
      border:2px solid rgba(28,18,8,.35);
      border-top-color:#1c1208;
      display:none;
      animation:spin .7s linear infinite;
    }
    button.loading .spin{ display:inline-block; }
    button.loading .btn-label{ display:none; }
    @keyframes spin{ to{ transform:rotate(360deg); } }

    .note{
      font-size:12px;
      color:var(--muted);
      font-style:italic;
      font-family:Georgia, serif;
    }

    .success{
      display:none;
      text-align:center;
      padding:56px 20px;
    }
    .success.show{ display:block; }
    form.hidden{ display:none; }
    .success h2{
      font-size:22px;
      margin:18px 0 8px;
    }
    .success p{
      color:var(--muted);
      font-size:14px;
      margin:0;
    }
    .success .ring-mark{
      width:56px;height:56px;
      margin:0 auto;
      border-radius:50%;
      border:1px solid var(--gold);
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
    }
    .success .ring-mark::before{
      content:"";
      position:absolute;
      inset:-12px;
      border-radius:50%;
      border:1px dashed rgba(176,74,58,.4);
    }
    .success .ring-mark span{ color:var(--gold); font-size:20px; }
    /*:root{*/
    /*  --bg:#0e0a08;*/
    /*  --bg-2:#171009;*/
    /*  --card:#1c140e;*/
    /*  --line:#372a1f;*/
    /*  --line-soft:#2a2019;*/
    /*  --gold:#d9a94c;*/
    /*  --gold-dim:#8a6c34;*/
    /*  --rust:#b04a3a;*/
    /*  --white:#f4efe4;*/
    /*  --muted:#a99a86;*/
    /*}*/
    /**{box-sizing:border-box;}*/
  
    /*.wrap{ width:100%;  }*/
    /*.eyebrow{*/
    /*  font-size:12px;*/
    /*  letter-spacing:.18em;*/
    /*  text-transform:uppercase;*/
    /*  color:var(--gold);*/
    /*  margin:0 0 14px;*/
    /*  display:flex;*/
    /*  align-items:center;*/
    /*  gap:10px;*/
    /*}*/
    /*.eyebrow::before{*/
    /*  content:"";*/
    /*  width:6px;height:6px;border-radius:50%;*/
    /*  background:var(--gold);*/
    /*  box-shadow:0 0 0 3px rgba(217,169,76,.18);*/
    /*}*/
    /*h1{*/
    /*  font-family:Arial, Helvetica, sans-serif;*/
    /*  font-weight:800;*/
    /*  font-size:44px;*/
    /*  line-height:1.05;*/
    /*  letter-spacing:-.01em;*/
    /*  margin:0 0 16px;*/
    /*}*/
    /*h1 em{*/
    /*  font-style:italic;*/
    /*  font-family:Georgia, 'Times New Roman', serif;*/
    /*  font-weight:400;*/
    /*  color:var(--gold);*/
    /*}*/
    /*.sub{*/
    /*  font-size:16px;*/
    /*  line-height:1.6;*/
    /*  color:var(--muted);*/
    /*  margin:0 0 44px;*/
    /*  max-width:480px;*/
    /*}*/
    /*form{*/
    /*  background:var(--card);*/
    /*  border:1px solid var(--line);*/
    /*  border-radius:4px;*/
    /*  padding:40px;*/
    /*  position:relative;*/
    /*  overflow:hidden;*/
    /*}*/
    /*form::before{*/
    /*  content:"";*/
    /*  position:absolute;*/
    /*  top:-90px; right:-90px;*/
    /*  width:220px;height:220px;*/
    /*  border-radius:50%;*/
    /*  border:1px solid var(--line-soft);*/
    /*}*/
    /*form::after{*/
    /*  content:"";*/
    /*  position:absolute;*/
    /*  top:-60px; right:-60px;*/
    /*  width:150px;height:150px;*/
    /*  border-radius:50%;*/
    /*  border:1px dashed rgba(176,74,58,.35);*/
    /*}*/
    /*.field{*/
    /*  margin-bottom:26px;*/
    /*  position:relative;*/
    /*}*/
    /*.row{*/
    /*  display:grid;*/
    /*  grid-template-columns:1fr 1fr;*/
    /*  gap:24px;*/
    /*}*/
    /*label{*/
    /*  display:flex;*/
    /*  align-items:center;*/
    /*  gap:8px;*/
    /*  font-size:11px;*/
    /*  letter-spacing:.14em;*/
    /*  text-transform:uppercase;*/
    /*  color:var(--muted);*/
    /*  margin-bottom:10px;*/
    /*}*/
    /*.ring-dot{*/
    /*  width:7px;height:7px;border-radius:50%;*/
    /*  background:var(--line-soft);*/
    /*  transition:all .25s ease;*/
    /*  flex:none;*/
    /*}*/
    /*.field.active .ring-dot{*/
    /*  background:var(--gold);*/
    /*  box-shadow:0 0 0 4px rgba(217,169,76,.15), 0 0 0 8px rgba(217,169,76,.06);*/
    /*}*/
    /*.field.active label{ color:var(--gold); }*/
    /*input[type=text], input[type=email], textarea{*/
    /*  width:100%;*/
    /*  background:transparent;*/
    /*  border:none;*/
    /*  border-bottom:1px solid var(--line);*/
    /*  color:var(--white);*/
    /*  font-size:16px;*/
    /*  font-family:inherit;*/
    /*  padding:8px 2px 12px;*/
    /*  outline:none;*/
    /*  transition:border-color .25s ease;*/
    /*}*/
    /*input::placeholder, textarea::placeholder{ color:#5c4f42; }*/
    /*input:focus, textarea:focus{ border-bottom-color:var(--gold); }*/
    /*textarea{ resize:vertical; min-height:90px; line-height:1.6; }*/

    /*.rings-select{*/
    /*  display:flex;*/
    /*  flex-wrap:wrap;*/
    /*  gap:10px;*/
    /*}*/
    /*.ring-chip{*/
    /*  border:1px solid var(--line);*/
    /*  color:var(--muted);*/
    /*  font-size:13px;*/
    /*  padding:9px 16px;*/
    /*  border-radius:999px;*/
    /*  cursor:pointer;*/
    /*  user-select:none;*/
    /*  transition:all .2s ease;*/
    /*  background:transparent;*/
    /*}*/
    /*.ring-chip:hover{ border-color:var(--gold-dim); color:var(--white); }*/
    /*.ring-chip.on{*/
    /*  border-color:var(--gold);*/
    /*  color:var(--bg);*/
    /*  background:var(--gold);*/
    /*  font-weight:600;*/
    /*}*/

    /*.error{*/
    /*  font-size:12px;*/
    /*  color:var(--rust);*/
    /*  margin-top:8px;*/
    /*  display:none;*/
    /*}*/
    /*.field.invalid .error{ display:block; }*/
    /*.field.invalid input, .field.invalid textarea{ border-bottom-color:var(--rust); }*/

    /*.submit-row{*/
    /*  display:flex;*/
    /*  align-items:center;*/
    /*  gap:18px;*/
    /*  margin-top:36px;*/
    /*}*/
    /*button{*/
    /*  appearance:none;*/
    /*  border:none;*/
    /*  background:var(--gold);*/
    /*  color:#1c1208;*/
    /*  font-weight:700;*/
    /*  font-size:14px;*/
    /*  letter-spacing:.03em;*/
    /*  padding:15px 30px;*/
    /*  border-radius:2px;*/
    /*  cursor:pointer;*/
    /*  display:flex;*/
    /*  align-items:center;*/
    /*  gap:10px;*/
    /*  transition:transform .15s ease, background .2s ease;*/
    /*}*/
    /*button:hover{ background:#e6bb63; }*/
    /*button:active{ transform:scale(.98); }*/
    /*.spin{*/
    /*  width:14px;height:14px;*/
    /*  border-radius:50%;*/
    /*  border:2px solid rgba(28,18,8,.35);*/
    /*  border-top-color:#1c1208;*/
    /*  display:none;*/
    /*  animation:spin .7s linear infinite;*/
    /*}*/
    /*button.loading .spin{ display:inline-block; }*/
    /*button.loading .btn-label{ display:none; }*/
    /*@keyframes spin{ to{ transform:rotate(360deg); } }*/

    /*.note{*/
    /*  font-size:12px;*/
    /*  color:var(--muted);*/
    /*  font-style:italic;*/
    /*  font-family:Georgia, serif;*/
    /*}*/

    /*.success{*/
    /*  display:none;*/
    /*  text-align:center;*/
    /*  padding:56px 20px;*/
    /*}*/
    /*.success.show{ display:block; }*/
    /*form.hidden{ display:none; }*/
    /*.success h2{*/
    /*  font-size:22px;*/
    /*  margin:18px 0 8px;*/
    /*}*/
    /*.success p{*/
    /*  color:var(--muted);*/
    /*  font-size:14px;*/
    /*  margin:0;*/
    /*}*/
    /*.success .ring-mark{*/
    /*  width:56px;height:56px;*/
    /*  margin:0 auto;*/
    /*  border-radius:50%;*/
    /*  border:1px solid var(--gold);*/
    /*  display:flex;*/
    /*  align-items:center;*/
    /*  justify-content:center;*/
    /*  position:relative;*/
    /*}*/
    /*.success .ring-mark::before{*/
    /*  content:"";*/
    /*  position:absolute;*/
    /*  inset:-12px;*/
    /*  border-radius:50%;*/
    /*  border:1px dashed rgba(176,74,58,.4);*/
    /*}*/
    /*.success .ring-mark span{ color:var(--gold); font-size:20px; }*/
    *{margin:0;padding:0;box-sizing:border-box;}
    html{scroll-behavior:smooth;}
    body{
    
      color:var(--cream);
      font-family:var(--body);
      line-height:1.5;
      overflow-x:hidden;
      -webkit-font-smoothing:antialiased;
    }

    /* grain overlay */
    body::before{
      content:"";
      position:fixed; inset:0;
      pointer-events:none;
      z-index:999;
      opacity:0.05;
      mix-blend-mode:overlay;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    a{color:inherit; text-decoration:none;}
    img{max-width:100%; display:block;}
    .wrap{max-width:1240px; margin:0 auto; padding:0 32px;}
    section{position:relative;}

    ::selection{background:var(--gold); color:var(--ink);}

    .eyebrow{
      font-family:var(--label);
      text-transform:uppercase;
      letter-spacing:0.22em;
      font-size:12.5px;
      font-weight:600;
      color:var(--gold);
      display:flex;
      align-items:center;
      gap:10px;
    }
    .eyebrow::before{
      content:"";
      width:22px; height:1px;
      background:var(--gold);
      display:inline-block;
    }

    h1,h2,h3{font-family:var(--heading); font-weight:800; letter-spacing:-0.01em;}

    /* ===== Reveal on scroll ===== */
    .reveal{opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease;}
    .reveal.in{opacity:1; transform:translateY(0);}

    @media (prefers-reduced-motion: reduce){
      *{animation-duration:0.001s !important; animation-iteration-count:1 !important; transition-duration:0.001s !important; scroll-behavior:auto !important;}
      .reveal{opacity:1; transform:none;}
    }

    /* ===== Focus ===== */
    a:focus-visible, button:focus-visible{
      outline:2px solid var(--gold);
      outline-offset:3px;
      border-radius:2px;
    }

    /* ===================== NAV ===================== */
    header{
      position:fixed; top:0; left:0; right:0; z-index:500;
      padding:20px 0;
      transition: background .35s ease, padding .35s ease, border-color .35s ease;
      border-bottom:1px solid transparent;
    }
    header.scrolled{
      background:rgba(20,17,14,0.86);
      backdrop-filter:blur(10px);
      padding:14px 0;
      border-bottom:1px solid var(--line);
    }
    nav.wrap{display:flex; align-items:center; justify-content:space-between;}

    .logo{display:flex; flex-direction:column; line-height:1;}
    .logo .name{
      font-family:var(--heading);
      font-weight:800;
      font-size:20px;
      letter-spacing:-0.01em;
      color:var(--cream);
    }
    .logo .name em{font-style:normal; color:var(--gold);}
    .logo .sub{
      font-family:var(--label);
      font-size:9.5px;
      letter-spacing:0.32em;
      color:var(--cream-dim);
      text-transform:uppercase;
      margin-top:3px;
    }

    .nav-links{display:flex; gap:34px; align-items:center;}
    .nav-links a{
      font-family:var(--label);
      font-size:12.5px;
      text-transform:uppercase;
      letter-spacing:0.14em;
      color:var(--cream-dim);
      position:relative;
      padding-bottom:4px;
    }
    .nav-links a:hover{color:var(--cream);}
    .nav-links a::after{
      content:""; position:absolute; left:0; bottom:0; width:0; height:1px;
      background:var(--gold); transition:width .3s ease;
    }
    .nav-links a:hover::after{width:100%;}

    .nav-cta-wrap{display:flex; align-items:center; gap:28px;}
    .burger{display:none;}

    /* ===== Ticket-style bulb button (signature CTA) ===== */
    .ticket-btn{
      position:relative;
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-family:var(--label);
      font-size:12.5px;
      text-transform:uppercase;
      letter-spacing:0.14em;
      color:var(--ink);
      background:var(--gold);
      padding:13px 26px;
      border:none;
      cursor:pointer;
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%, 14px 50%);
      transition: transform .25s ease, background .25s ease;
    }
    .ticket-btn.small{padding:10px 20px 10px 24px; font-size:11.5px;}
    .ticket-btn:hover{ background:var(--gold-soft); transform:translateY(-2px);}
    .ticket-btn svg{width:14px; height:14px;}

    .bulb-frame{
      position:relative;
      padding:6px;
    }
    .bulb-frame::before{
      content:"";
      position:absolute; inset:0;
      background-image: radial-gradient(circle, var(--gold) 1.6px, transparent 1.8px);
      background-size: 14px 14px;
      background-position: 0 0;
      opacity:0.9;
      animation: chase 1.4s steps(2) infinite;
    }
    @keyframes chase{
      0%{background-position: 0 0;}
      100%{background-position: 14px 0;}
    }

    /* ===================== HERO ===================== */
    .hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      padding:150px 0 90px;
      /*background:*/
      /*  radial-gradient(ellipse 900px 500px at 18% -10%, rgba(231,180,76,0.16), transparent 60%),*/
      /*  radial-gradient(ellipse 700px 500px at 100% 10%, rgba(193,58,46,0.14), transparent 60%),*/
      /*  var(--ink);*/
      background-color: #fff;
      overflow:hidden;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.35fr 0.9fr;
      gap:60px;
      align-items:center;
    }
    .hero .eyebrow{margin-bottom:26px;}
    .hero h1{
      font-size:clamp(46px, 6.4vw, 72px);
      line-height:0.98;
      color: #000;
      height: auto;
 animation: fadein 0.8s ease-out forwards;
      /*color:var(--cream);*/
    }
    /*@keyframes fadein{*/
    /*    0%{*/
    /*        opacity:0;*/
    /*        transition:opacity .3s ease;*/
    /*    }*/
    /*    75%{*/
    /*        opacity: 0.8;*/
    /*        transition:opacity .3s ease;*/
    /*    }*/
    /*    100%{*/
    /*        opacity: 1;*/
    /*        transition:opacity .3s ease;*/
    /*    }*/
    /*}*/
  @keyframes fadein {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

#rotatingHeading,
#subheading {
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}


    .hero h1 .glow{
      color:var(--gold);
      font-style:italic;
      font-variation-settings:"SOFT" 60,"WONK" 1;
    }
    .hero p.lede{
      margin-top:26px;
      max-width:520px;
      font-size:18px;
      /*color:var(--cream-dim);*/
      color:#000;
    }
    .hero-cta-row{
      margin-top:42px;
      display:flex;
      align-items:center;
      gap:28px;
      flex-wrap:wrap;
    }
    .hero-cta-row .ghost-link{
      font-family:var(--label);
      font-size:12.5px;
      letter-spacing:0.14em;
      text-transform:uppercase;
      border-bottom:1px solid var(--tan);
      padding-bottom:4px;
    }
    .hero-cta-row .ghost-link:hover{border-color:var(--gold); color:var(--gold);}

    /* spotlight ring visual */
    .hero-visual{
      position:relative;
      aspect-ratio:1/1;
      display:flex; align-items:center; justify-content:center;
    }
    .spot-ring{
      position:absolute;
      border-radius:50%;
      border:1px solid var(--line);
    }
    .spot-ring.r1{width:100%; height:100%; animation:spin 46s linear infinite;}
    .spot-ring.r2{width:74%; height:74%; border-color:rgba(231,180,76,0.35); animation:spin 30s linear infinite reverse;}
    .spot-ring.r3{width:48%; height:48%; border-style:dashed; border-color:var(--red); animation:spin 20s linear infinite;}
    @keyframes spin{to{transform:rotate(360deg);}}
    .spot-ring i{
      position:absolute; top:-4px; left:50%;
      width:8px; height:8px; border-radius:50%;
      background:var(--gold);
      box-shadow:0 0 10px 2px rgba(231,180,76,0.7);
      transform:translateX(-50%);
    }
    .hero-visual .center-mark{
      font-family:var(--heading);
      font-style:italic;
      font-size:15px;
      color:var(--cream-dim);
      text-align:center;
      max-width:120px;
    }

    /* ===================== TICKER ===================== */
    .ticker-strip{
      background:var(--velvet);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      overflow:hidden;
      padding:16px 0;
    }
    .ticker-track{
      display:flex;
      width:max-content;
      animation: scroll-left 32s linear infinite;
    }
    .ticker-track span{
      font-family:var(--label);
      font-size:14px;
      letter-spacing:0.12em;
      text-transform:uppercase;
      color:var(--cream-dim);
      padding:0 26px;
      white-space:nowrap;
      display:flex; align-items:center; gap:26px;
    }
    .ticker-track span b{color:var(--gold); font-weight:600;}
    .ticker-track span::after{content:"✶"; color:var(--red); margin-left:26px; font-size:11px;}
    @keyframes scroll-left{
      from{transform:translateX(0);}
      to{transform:translateX(-50%);}
    }
    #lineup{
        background-color:#2a7af3;
    }

    /* ===================== SECTION HEADS ===================== */
    .section-pad{padding:10px 0;}
    .section-head{
      display:flex;
      /*justify-content:space-evenly;*/
      /*align-items:flex-end;*/
      gap:50px;
      margin-bottom:64px;
    }
    .section-head h2{
      font-size:clamp(32px, 4vw, 52px);
      color:var(--cream);
      max-width:640px;
      margin-top:14px;
      line-height: 57px;
    }
    .section-head p{color:#ccc; max-width:400px; font-size:15px;margin-bottom:10px;line-height:20px;}

    /* ===================== THREE RINGS (signature) ===================== */
    .rings-section{background:#001623}
    .rings-stage{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:0;
      margin-top:20px;
    }
    .ring-card{
      position:relative;
      padding:50px 34px;
      border-left:1px solid var(--line);
      cursor:pointer;
      transition: background .4s ease;
    }
    .ring-card:last-child{border-right:1px solid var(--line);}
    .ring-card:hover, .ring-card.active{background:rgba(231,180,76,0.045);}

    .ring-circle{
      width:120px; height:120px;
      border-radius:50%;
      border:1.5px solid var(--tan);
      display:flex; align-items:center; justify-content:center;
      margin-bottom:34px;
      position:relative;
      transition: border-color .4s ease, transform .5s ease;
    }
    .ring-card:hover .ring-circle, .ring-card.active .ring-circle{
      border-color:var(--gold);
      transform:rotate(-8deg) scale(1.04);
    }
    .ring-circle span{
      font-family:var(--mono);
      font-size:12px;
      color:var(--cream-dim);
      text-align:center;
      letter-spacing:0.06em;
    }
    .ring-card:hover .ring-circle span, .ring-card.active .ring-circle span{color:var(--gold);}

    .ring-card h3{
      font-size:24px;
      color:var(--cream);
      margin-bottom:14px;
    }
    .ring-card p{
      color:var(--cream-dim);
      font-size:14.5px;
      max-width:280px;
      margin-bottom:18px;
    }
    .ring-tags{display:flex; flex-wrap:wrap; gap:8px;}
    .ring-tags span{
      font-family:var(--mono);
      font-size:10.5px;
      letter-spacing:0.04em;
      color:var(--tan);
      border:1px solid var(--line);
      padding:5px 10px;
      border-radius:20px;
    }

    /* ===================== LINE-UP / SERVICES ===================== */
    .lineup-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:10px;
      padding-bottom: 76px;
      /*background:var(--line);*/
      /*border:1px solid var(--line);*/
    }
    .client-grid{
        display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:0px;
      padding-bottom: 76px;
      margin-top: 40px;
    }
    .client-item{
        padding:8px;
      transition:background .3s ease;
      
      border-radius: 8px;
    }
    .client-item img{
        width: 350px;
      
      object-fit: cover;
      background: #fff;
      border-radius: 8px;
    
    }
    
    .lineup-item{
      background:#fff;
      padding:16px 28px;
      transition:background .3s ease;
      border:1px solid #ccc;
      border-radius: 8px;
    }
    .lineup-item:hover{background:#000;}
    .lineup-item:hover h4{
        color:#fff ;
    }
    .lineup-item:hover p{
        color:#fff;
    }
    .lineup-item .num{
      font-family:var(--mono);
      font-size:11px;
      color:var(--red);
    }
    .lineup-item h4{
      font-family:var(--heading);
      font-weight:700;
      font-size:19px;
      color:#000;
      text-transform: uppercase;
      margin:14px 0 10px;
    }
    .lineup-item p{font-size:13.5px; color:#000;}

    /* ===================== NOW SHOWING / WORK ===================== */
    .work-section{background:var(--ink-2);}
    .work-list{display:flex; flex-direction:column;}
    .work-row{
      display:grid;
      grid-template-columns:110px 1fr 260px 140px;
      align-items:center;
      gap:24px;
      padding:34px 0;
      border-top:1px solid var(--line);
      transition: padding-left .35s ease;
    }
    .work-row:last-child{border-bottom:1px solid var(--line);}
    .work-row:hover{padding-left:14px; background:rgba(231,180,76,0.04);}
    .work-row .act{
      font-family:var(--mono);
      font-size:12px;
      color:var(--tan);
      text-transform:uppercase;
    }
    .work-row h3{
      font-size:clamp(22px,2.6vw,32px);
      color:var(--cream);
      font-weight:700;
    }
    .work-row .client{font-family:var(--label); font-size:11.5px; letter-spacing:0.08em; text-transform:uppercase; color:var(--cream-dim); display:block; margin-top:6px;}
    .work-swatch{
      height:64px; border-radius:4px;
      position:relative; overflow:hidden;
    }
    .work-swatch::after{
      content:""; position:absolute; inset:0;
      background:repeating-linear-gradient(115deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 10px);
    }
    .work-tags{display:flex; flex-wrap:wrap; gap:6px; justify-content:flex-end;}
    .work-tags span{
      font-family:var(--mono); font-size:10px; color:var(--cream-dim);
      border:1px solid var(--line); padding:4px 9px; border-radius:20px;
    }
    @media(max-width:900px){
      .work-row{grid-template-columns:1fr; gap:14px;}
      .work-tags{justify-content:flex-start;}
    }

    /* ===================== RUN OF SHOW / PROCESS ===================== */
    .run-of-show{position:relative;}
    .row-line{
      position:relative;
      display:flex;
      justify-content:space-between;
      margin-top:70px;
    }
    .row-line::before{
      content:"";
      position:absolute; left:0; right:0; top:9px;
      height:1px;
      background:var(--line);
    }
    .row-step{
      position:relative;
      width:18%;
      text-align:left;
    }
    .row-step .dot{
      width:18px; height:18px; border-radius:50%;
      background:var(--ink);
      border:1.5px solid var(--gold);
      margin-bottom:26px;
      position:relative; z-index:2;
    }
    .row-step h4{
      font-family:var(--heading); font-weight:700; font-size:18px; color:var(--cream); margin-bottom:8px;
    }
    .row-step p{font-size:13px; color:var(--cream-dim);}
    @media(max-width:900px){
      .row-line{flex-direction:column; gap:36px;}
      .row-line::before{display:none;}
      .row-step{width:100%;}
    }

    /* ===================== STATS ===================== */
    .stats-band{
      background:var(--velvet);
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .stats-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      padding:70px 0;
    }
    .stat{text-align:center; border-left:1px solid var(--line);}
    .stat:first-child{border-left:none;}
    .stat .figure{
      font-family:var(--heading); font-weight:800; font-size:clamp(34px,4vw,52px);
      color:var(--gold);
    }
    .stat .caption{
      font-family:var(--label); font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase;
      color:var(--cream-dim); margin-top:10px;
    }
    @media(max-width:800px){.stats-grid{grid-template-columns:repeat(2,1fr); row-gap:40px;} .stat:nth-child(3){border-left:none;}}

    /* ===================== TESTIMONIAL ===================== */
    .spotlight-quote{
      padding:150px 0;
      text-align:center;
      position:relative;
    }
    .spotlight-quote::before{
      content:"";
      position:absolute; top:0; left:50%; transform:translateX(-50%);
      width:640px; height:640px;
      background:radial-gradient(circle, rgba(231,180,76,0.10), transparent 65%);
      pointer-events:none;
    }
    .spotlight-quote blockquote{
      font-family:var(--heading);
      font-style:italic;
      font-weight:500;
      font-variation-settings:"SOFT" 40;
      font-size:clamp(24px,3.4vw,40px);
      max-width:820px;
      margin:0 auto;
      color:var(--cream);
      line-height:1.35;
      position:relative;
    }
    .spotlight-quote cite{
      display:block;
      margin-top:32px;
      font-style:normal;
      font-family:var(--label);
      font-size:12px;
      letter-spacing:0.14em;
      text-transform:uppercase;
      color:var(--cream-dim);
    }
    .spotlight-quote cite b{color:var(--gold); font-weight:600;}

    /* ===================== CLIENT TICKER ===================== */
    .clients-strip{padding:40px 0; border-top:1px solid var(--line);}
    .clients-strip .eyebrow{justify-content:center; margin-bottom:26px;}
    .clients-strip .eyebrow::before{display:none;}
    .clients-track{
      display:flex; width:max-content;
      animation: scroll-left 40s linear infinite;
      align-items:center;
    }
    .clients-track span{
      font-family:var(--heading); font-weight:700; font-size:22px;
      color:var(--cream-dim); opacity:0.55;
      padding:0 40px; white-space:nowrap;
    }

    /* ===================== FINAL CTA ===================== */
    .final-cta{
      padding:150px 0 130px;
      text-align:center;
      background:
        radial-gradient(ellipse 800px 400px at 50% 0%, rgba(193,58,46,0.14), transparent 65%),
        var(--ink-2);
    }
    .final-cta .eyebrow{justify-content:center;}
    .final-cta .eyebrow::before{display:none;}
    .final-cta h2{
      font-size:clamp(36px,5.4vw,68px);
      margin:18px auto 20px;
      max-width:780px;
      color:var(--cream);
    }
    .final-cta p{color:var(--cream-dim); max-width:460px; margin:0 auto 40px; font-size:16px;}
    .final-cta .bulb-frame{display:inline-block;}

    /* ===================== FOOTER ===================== */
    footer{padding:70px 0 40px; border-top:1px solid var(--line);background-color:#000}
    .foot-grid{
      display:grid;
      grid-template-columns:1.3fr 1fr 1fr 1fr;
      gap:40px;
      padding-bottom:50px;
    }
    .foot-grid h5{
      font-family:var(--label); font-size:11.5px; letter-spacing:0.14em; text-transform:uppercase;
      color:var(--gold); margin-bottom:18px;
    }
    .foot-grid ul{list-style:none; display:flex; flex-direction:column; gap:11px;}
    .foot-grid ul a{font-size:14px; color:var(--cream-dim);}
    .foot-grid ul a:hover{color:var(--cream);}
    .foot-grid p{font-size:14px; color:var(--cream-dim); max-width:280px; margin-top:14px;}
    .foot-bottom{
      display:flex; justify-content:space-between; align-items:center;
      padding-top:30px; border-top:1px solid var(--line);
      font-family:var(--mono); font-size:11.5px; color:var(--tan);
      flex-wrap:wrap; gap:14px;
    }

    /* ===================== RESPONSIVE ===================== */
    @media(max-width:1000px){
      .hero-grid{grid-template-columns:1fr;}
      .hero-visual{max-width:340px; margin:0 auto;}
      .nav-links{display:none;}
      .rings-stage{grid-template-columns:1fr;}
      .ring-card{border-left:none; border-top:1px solid var(--line);}
      .ring-card:last-child{border-right:none; border-bottom:1px solid var(--line);}
      .lineup-grid{grid-template-columns:repeat(2,1fr);}
      .stats-grid{}
      .foot-grid{grid-template-columns:1fr 1fr; row-gap:36px;}
    }
    @media(max-width:600px){
      .wrap{padding:0 20px;}
      .lineup-grid{grid-template-columns:1fr;}
      .foot-grid{grid-template-columns:1fr;}
      .client-grid{grid-template-columns:1fr}
      .section-pad{padding:90px 0;}
      .section-head{flex-direction:column; align-items:flex-start;}
    }
    
    
    
    /* Work Css */
    .section-head{
      padding: 76px 0 44px;
      display:flex;
      justify-content:space-between;
      /*align-items:flex-end;*/
      gap: 40px;
      border-bottom: 1px solid var(--hairline);
    }
    .eyebrow{
      font-family:'Unbounded', sans-serif;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin: 0 0 18px;
    }
    .eyebrow::before{
      content:'';
      display:inline-block;
      width:7px; height:7px;
      border-radius:50%;
      background: var(--gold-bright);
      margin-right: 10px;
      vertical-align: middle;
      box-shadow: 0 0 10px var(--gold-bright);
    }
    h1{
      font-family:'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: clamp(34px, 4.2vw, 58px);
      line-height: 1.05;
      margin: 0;
      max-width: 620px;
    }
    .section-head p{
      max-width: 350px;
      color: var(--text-muted);
      font-size: 14.5px;
      line-height: 1.3;
      margin: 0 0 15px;
    }

    /* ---------- Gallery grid ---------- */
    .gallery{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 130px;
      gap: 14px;
      padding: 44px 0 96px;
    }
    .tile{
      position:relative;
      grid-column: span 1;
      grid-row: span 2;
      border-radius: 6px;
      overflow:hidden;
      cursor: pointer;
      background: var(--bg-panel);
      border: 1px solid var(--hairline);
      outline-offset: 3px;
    }
    .tile:nth-child(3n+1){ grid-row: span 3; }
    .tile:nth-child(5n+2){ grid-column: span 2; grid-row: span 2; }
    .tile img{
      width:100%; height:100%;
      object-fit: cover;
      display:block;
      filter: grayscale(35%) sepia(12%) brightness(0.82) contrast(1.05);
      transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s ease;
    }
    .tile:hover img{
      transform: scale(1.07);
      filter: grayscale(5%) sepia(4%) brightness(0.95) contrast(1.05);
    }
    .tile:focus-visible{ outline: 2px solid var(--gold-bright); }

    .ring-frame{
      position:absolute; inset:0;
      display:flex; align-items:center; justify-content:center;
      pointer-events:none;
    }
    .ring-frame svg{
      width: 46%; height:46%;
      opacity:0;
      transform: scale(0.7);
      transition: opacity .4s ease, transform .5s cubic-bezier(.2,.7,.2,1);
    }
    .tile:hover .ring-frame svg{ opacity:1; transform: scale(1); }
    .ring-frame circle{ fill:none; stroke-width:1; }
    .ring-frame .r1{ stroke: var(--gold-bright); opacity:.9; }
    .ring-frame .r2{ stroke: var(--ring-red); stroke-dasharray: 3 4; opacity:.75; }

    .tile-meta{
      position:absolute; left:0; right:0; bottom:0;
      padding: 16px 16px 14px;
      background: linear-gradient(0deg, rgba(8,5,3,0.92) 0%, rgba(8,5,3,0) 100%);
      display:flex; align-items:flex-end; justify-content:space-between;
      transform: translateY(6px);
      opacity:0;
      transition: opacity .35s ease, transform .35s ease;
    }
    .tile:hover .tile-meta{ opacity:1; transform: translateY(0); }
    .tile-tag{
      font-family:'Unbounded', sans-serif;
      font-size: 9.5px;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--gold-bright);
    }
    .tile-title{
      font-size: 12.5px;
      color: var(--text-primary);
      font-weight: 500;
    }

    @media (max-width: 980px){
      .gallery{ grid-template-columns: repeat(2, 1fr); }
      .tile:nth-child(5n+2){ grid-column: span 1; }
      .section-head{ flex-direction:column; align-items:flex-start; }
    }
    @media (max-width: 560px){
      .topbar{ padding: 18px 20px; }
      nav{ display:none; }
      .wrap{ padding: 0 20px; }
      .gallery{ grid-template-columns: 1fr; grid-auto-rows: 220px; }
      .tile, .tile:nth-child(3n+1), .tile:nth-child(5n+2){ grid-column: span 1; grid-row: span 1; }
    }

    /* ---------- Lightbox ---------- */
    /*.lightbox{*/
    /*  position:fixed; inset:0;*/
    /*  background: rgba(6,4,2,0.94);*/
    /*  backdrop-filter: blur(6px);*/
    /*  display:flex; flex-direction:column;*/
    /*  align-items:center; justify-content:center;*/
    /*  z-index: 9999;*/
    /*  opacity:0; pointer-events:none;*/
    /*  transition: opacity .35s ease;*/
    /*}*/
    /*.lightbox.open{ opacity:1; pointer-events:auto; }*/

    /*.lb-stage{*/
    /*  position:relative;*/
    /*  display:flex; align-items:center; justify-content:center;*/
    /*  width:min(78vw, 980px);*/
    /*  height:min(62vh, 620px);*/
    /*}*/
    /*.lb-rings{*/
    /*  position:absolute; inset:-6%;*/
    /*  pointer-events:none;*/
    /*}*/
    /*.lb-rings svg{ width:100%; height:100%; }*/
    /*.lb-rings .rr1{ fill:none; stroke: var(--hairline); stroke-width:1; }*/
    /*.lb-rings .rr2{ fill:none; stroke: var(--ring-red); stroke-width:1; stroke-dasharray: 2 6; opacity:.5; }*/

    /*.lb-imgwrap{*/
    /*  position:relative;*/
    /*  width:100%; height:100%;*/
    /*  border-radius: 8px;*/
    /*  overflow:hidden;*/
    /*  box-shadow: var(--shadow);*/
    /*  border: 1px solid var(--hairline);*/
    /*  background: var(--bg-panel);*/
    /*}*/
    /*.lb-imgwrap img{*/
    /*  width:100%; height:100%; object-fit:contain;*/
    /*  opacity:0;*/
    /*  transform: scale(1.02);*/
    /*  transition: opacity .4s ease, transform .5s ease;*/
    /*}*/
    /*.lb-imgwrap img.show{ opacity:1; transform: scale(1); }*/

    /*.lb-caption{*/
    /*  margin-top: 22px;*/
    /*  text-align:center;*/
    /*}*/
    /*.lb-caption .tag{*/
    /*  font-family:'Unbounded', sans-serif;*/
    /*  font-size: 10px; letter-spacing:2px; text-transform:uppercase;*/
    /*  color: var(--gold-bright);*/
    /*  margin-bottom: 6px;*/
    /*}*/
    /*.lb-caption .title{ font-size: 14px; color: var(--text-muted); }*/

    /*.lb-close, .lb-arrow{*/
    /*  position:absolute;*/
    /*  background: rgba(21,15,10,0.7);*/
    /*  border: 1px solid var(--hairline);*/
    /*  color: var(--text-primary);*/
    /*  width: 42px; height:42px;*/
    /*  border-radius: 50%;*/
    /*  display:flex; align-items:center; justify-content:center;*/
    /*  cursor:pointer;*/
    /*  transition: background .25s ease, border-color .25s ease, transform .2s ease;*/
    /*}*/
    /*.lb-close:hover, .lb-arrow:hover{ background: rgba(201,151,63,0.18); border-color: var(--gold-bright); }*/
    /*.lb-close{ top: 26px; right: 32px; z-index: 5;}*/
    /*.lb-arrow{ top:50%; transform: translateY(-50%); }*/
    /*.lb-arrow.prev{ left: -60px; }*/
    /*.lb-arrow.next{ right: -60px; }*/
    /*.lb-arrow svg, .lb-close svg{ width:16px; height:16px; }*/

    /*.lb-counter{*/
    /*  position:absolute;*/
    /*  top: 30px; left: 32px;*/
    /*  font-family:'Unbounded', sans-serif;*/
    /*  font-size: 11px; letter-spacing: 1px;*/
    /*  color: var(--text-muted);*/
    /*  z-index:5;*/
    /*}*/
    /*.lb-counter b{ color: var(--gold-bright); font-weight:600; }*/

    /* ---------- Filmstrip ---------- */
    /*.filmstrip{*/
    /*  margin-top: 30px;*/
    /*  width: min(90vw, 1040px);*/
    /*  display:flex;*/
    /*  gap: 10px;*/
    /*  overflow-x: auto;*/
    /*  padding: 6px 4px 14px;*/
    /*  scrollbar-width: thin;*/
    /*  scrollbar-color: var(--gold) transparent;*/
    /*}*/
    /*.filmstrip::-webkit-scrollbar{ height:5px; }*/
    /*.filmstrip::-webkit-scrollbar-thumb{ background: var(--gold); border-radius:3px; }*/
    /*.filmstrip::-webkit-scrollbar-track{ background: transparent; }*/

    /*.fs-item{*/
    /*  flex: 0 0 auto;*/
    /*  width: 84px; height: 58px;*/
    /*  border-radius: 4px;*/
    /*  overflow:hidden;*/
    /*  border: 1px solid var(--hairline);*/
    /*  cursor:pointer;*/
    /*  opacity: .45;*/
    /*  transition: opacity .25s ease, border-color .25s ease, transform .2s ease;*/
    /*}*/
    /*.fs-item img{ width:100%; height:100%; object-fit:cover; display:block; filter: grayscale(30%) brightness(.8); }*/
    /*.fs-item:hover{ opacity: .8; transform: translateY(-2px); }*/
    /*.fs-item.active{ opacity:1; border-color: var(--gold-bright); box-shadow: 0 0 0 1px var(--gold-bright); }*/

    /*@media (max-width: 780px){*/
    /*  .lb-arrow.prev{ left: 8px; }*/
    /*  .lb-arrow.next{ right: 8px; }*/
    /*  .lb-stage{ width: 92vw; height: 46vh; }*/
    /*  .lb-close{ right: 14px; top: 14px; }*/
    /*  .lb-counter{ left: 14px; top: 18px; }*/
    /*}*/

    /*@media (prefers-reduced-motion: reduce){*/
    /*  *{ transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }*/
    /*}*/
    /* CTA */
    .cta{
        position: fixed;
      bottom: 20px;
      right: 10px;
    }
    .cta a svg{
        animation:bounce 1s ease infinite;
        transition:transform .2s ease;
    }
    @keyframes bounce{
        0%{
            transform: scale(0.9);
        }
        50%{
      transform: scale(1);
            
        }
        100%{
            transform: scale(0.9);
      
        }
    }
  /*Process */
  /* .process-head{
      max-width:640px;
      margin:0 auto 120px;
      text-align:center;
    }
  
    .process-head h2{
      font-family:var(--serif);
      font-weight:600;
      font-size:clamp(2.1rem, 4.2vw, 3.2rem);
      line-height:1.15;
      letter-spacing:-0.01em;
      margin:0 0 20px;
    }
  
    .process-head p{
      font-size:1.05rem;
      line-height:1.6;
      color:var(--ink-muted);
      margin:0;
    }
  
    .timeline{
      position:relative;
    }
  
    .timeline-line{
      position:absolute;
      left:50%;
      top:0;
      bottom:0;
      width:2px;
      transform:translateX(-50%);
      background:var(--line-track);
      border-radius:2px;
    }
  
    .timeline-line-fill{
      position:absolute;
      left:0;
      top:0;
      width:100%;
      height:0%;
      background:linear-gradient(180deg, var(--gold) 0%, var(--crimson) 100%);
      border-radius:2px;
      box-shadow:0 0 16px rgba(201,162,39,0.35);
      transition:height 0.1s linear;
    }
  
    .step{
      position:relative;
      display:grid;
      grid-template-columns:1fr 64px 1fr;
      align-items:center;
      column-gap:0;
      padding:56px 0;
    }
  
    .step:first-child{ padding-top:8px; }
    .step:last-child{ padding-bottom:76px; }
  
    .step-marker{
      grid-column:2;
      justify-self:center;
      width:56px;
      height:56px;
      border-radius:50%;
      background:var(--bg-soft);
      border:1px solid rgba(239,234,224,0.22);
      display:flex;
      align-items:center;
      justify-content:center;
      font-family:var(--serif);
      font-weight:600;
      font-size:1rem;
      color:var(--ink-muted);
      z-index:2;
      transition:background 0.5s ease, border-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
    }
  
    .step.lit .step-marker{
      background:linear-gradient(150deg, var(--gold), var(--crimson));
      border-color:transparent;
      color:#171310;
      box-shadow:0 0 0 6px rgba(201,162,39,0.12), 0 0 24px rgba(201,162,39,0.3);
      transform:scale(1.06);
    }
  
    .step-content{
      grid-column:1;
      justify-self:end;
      max-width:420px;
      text-align:left;
      padding-right:44px;
      position:relative;
      opacity:0;
      transform:translateX(-28px);
      transition:opacity 0.7s ease, transform 0.7s ease;
    }
  
    .step-content::after{
      content:"";
      position:absolute;
      top:50%;
      right:0;
      width:44px;
      height:1px;
      background:var(--line-track);
      transition:background 0.5s ease;
    }
  
    .step.lit .step-content::after{
      background:linear-gradient(90deg, transparent, var(--gold));
    }
  
    .step:nth-child(even) .step-content{
      grid-column:3;
      justify-self:start;
      padding-right:0;
      padding-left:44px;
      transform:translateX(28px);
    }
  
    .step:nth-child(even) .step-content::after{
      right:auto;
      left:0;
    }
  
    .step:nth-child(even) .step-content.lit::after,
    .step:nth-child(even).lit .step-content::after{
      background:linear-gradient(270deg, transparent, var(--gold));
    }
  
    .step.in-view .step-content{
      opacity:1;
      transform:translateX(0);
    }
  
    .step-content h3{
      font-family:var(--serif);
      font-weight:600;
      font-size:1.4rem;
      line-height:1.25;
      margin:0 0 12px;
      color:var(--ink);
    }
  
    .step-content p{
      font-size:0.98rem;
      line-height:1.65;
      color:var(--ink-muted);
      margin:0;
    }
  #work,#process{
      background-color: #fff;
      color:#000;
  }
    @media (max-width:768px){
   
      .process-head{ margin-bottom:80px; }
  
      .timeline-line{
        left:24px;
        transform:none;
      }
  
      .step{
        grid-template-columns:48px 1fr;
        align-items:flex-start;
        padding:36px 0;
      }
  
      .step-marker{
        grid-column:1;
        width:48px;
        height:48px;
        font-size:0.9rem;
      }
  
      .step-content,
      .step:nth-child(even) .step-content{
        grid-column:2;
        justify-self:start;
        text-align:left;
        padding-left:28px;
        padding-right:0;
        transform:translateY(18px);
      }
  
      .step-content::after,
      .step:nth-child(even) .step-content::after{
        top:24px;
        left:0;
        right:auto;
        width:28px;
      }
  
      .step.in-view .step-content{
        transform:translateY(0);
      }
    }
  
    @media (prefers-reduced-motion: reduce){
      .step-content{ transition:opacity 0.3s ease; transform:none !important; }
      .timeline-line-fill{ transition:none; }
      .step-marker{ transition:none; }
    } */
     .heading{
    max-width:620px;
    margin-bottom:80px;
  }
 
  .heading .kicker{
    font-family:var(--serif);
    font-style:italic;
    font-size:19px;
    color:var(--gold);
    margin:0 0 14px;
    font-weight:500;
  }
 
  .heading h1{
    font-family:var(--serif);
    font-size:clamp(34px,4.5vw,52px);
    line-height:1.08;
    font-weight:500;
    margin:0 0 18px;
    letter-spacing:-0.01em;
  }
 
  .heading p{
    font-size:16px;
    line-height:1.65;
    color:var(--muted);
    margin:0;
    max-width:52ch;
  }
 
  /* ---- Process rail ---- */
  .rail{
    position:relative;
  }
 
  .rail svg{
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    overflow:visible;
    pointer-events:none;
    z-index:0;
  }
 
  .rail .base-path{
    fill:none;
    stroke:var(--panel-border);
    stroke-width:1.5;
  }
 
  .rail .flow-path{
    fill:none;
    stroke:url(#goldGrad);
    stroke-width:2;
    stroke-linecap:round;
    filter:drop-shadow(0 0 6px var(--gold-soft));
  }
 
  .track{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:36px 28px;
  }
 
  /* serpentine visual order: row2 reversed so the connector never backtracks */
  .step[data-i="0"]{ order:1; }
  .step[data-i="1"]{ order:2; }
  .step[data-i="2"]{ order:3; }
  .step[data-i="5"]{ order:4; }
  .step[data-i="4"]{ order:5; }
  .step[data-i="3"]{ order:6; }
  .step[data-i="6"]{ order:7; }
 
  .card{
    width:100%;
    background:linear-gradient(180deg, var(--panel), var(--ink-2));
    border:1px solid var(--panel-border);
    border-radius:14px;
    padding:26px 24px 24px;
    transition:transform .4s cubic-bezier(.22,1,.36,1), border-color .4s ease, box-shadow .4s ease;
    cursor:pointer;
    border:.625px solid #ececec;
  }
 
  .card .num{
    font-family:var(--serif);
    font-size:34px;
    font-weight:500;
    color:var(--panel-border);
    line-height:1;
    margin-bottom:14px;
    transition:color .5s ease, text-shadow .5s ease;
  }
 
  .card h3{
    font-family:var(--serif);
    font-weight:500;
    font-size:17px;
    line-height:1.28;
    margin:0 0 10px;
    letter-spacing:-0.01em;
  }
 
  .card p{
    font-size:13px;
    line-height:1.58;
    color:var(--muted);
    margin:0;
  }
 
  .card.active{
    transform:translateY(-4px);
    border-color:var(--gold-soft);
    box-shadow:0 0 0 1px var(--gold-soft), 0 18px 40px -18px rgba(201,162,75,0.35);
  }
 
  .card.active .num{
    color:var(--gold);
    text-shadow:0 0 18px var(--gold-soft);
  }
 
  .card.lit{ animation:settle .6s cubic-bezier(.22,1,.36,1); }
 
  @keyframes settle{
    0%{ transform:scale(1); }
    40%{ transform:scale(1.035); }
    100%{ transform:scale(1); }
  }
 
  .foot-note{
    margin-top:64px;
    display:flex;
    align-items:center;
    gap:14px;
    color:var(--muted);
    font-size:13px;
  }
 
  .foot-note .dot{
    width:7px;height:7px;border-radius:50%;
    background:var(--gold);
    box-shadow:0 0 10px var(--gold-soft);
  }
 
  .mobile-line{ display:none; }
 
  /* ---- Mobile: single column, vertical rail ---- */
  @media (max-width:860px){
    /*.wrap{ padding:64px 22px 90px; }*/
    .heading{ margin-bottom:56px; }
 
    .track{
      grid-template-columns:1fr;
      gap:0;
      display:block;
    }
    .step{ position:relative; padding-left:46px; margin-bottom:32px; }
    .step:last-child{ margin-bottom:0; }
    .step, .step[data-i]{ order:initial !important; grid-column:auto !important; }
    .card.active{ transform:none; }
 
    .rail > svg{ display:none; }
    .rail .mobile-line{
      display:block;
      position:absolute;
      left:14px; top:8px; bottom:8px;
      width:2px;
      background:var(--panel-border);
      z-index:0;
    }
    .rail .mobile-line .fill{
      position:absolute;
      left:0; top:0; width:100%;
      height:0%;
      background:linear-gradient(180deg, var(--gold), var(--crimson));
      box-shadow:0 0 10px var(--gold-soft);
      transition:height 1.4s cubic-bezier(.65,0,.35,1);
    }
    .step::before{
      content:'';
      position:absolute;
      left:-33px; top:28px;
      width:11px;height:11px;
      border-radius:50%;
      background:var(--ink);
      border:2px solid var(--panel-border);
      z-index:1;
      transition:border-color .5s ease, background .5s ease, box-shadow .5s ease;
    }
    .step.lit::before{
      border-color:var(--gold);
      background:var(--gold);
      box-shadow:0 0 12px var(--gold-soft);
    }
  }