
    /* ═══════════════════════ ROOT ═══════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --ink: #0a0a0f;
      --ink-80: rgba(10, 10, 15, .8);
      --ink-50: rgba(10, 10, 15, .5);
      --ink-20: rgba(10, 10, 15, .2);
      --ink-08: rgba(10, 10, 15, .08);
      --cream: #f5f2eb;
      --cream-2: #ede9e0;
      --gold: #c49a45;
      --gold-2: #e8c572;
      --gold-dim: rgba(196, 154, 69, .12);
      --white: #ffffff;
      --dark: #0d0c14;
      --dark-2: #13121d;
      --gap: clamp(64px, 8vw, 120px);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ═══════════════════════ GRAIN ═══════════════════════ */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 9000;
      pointer-events: none;
      opacity: .025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 300px;
    }



    /* ═══════════════════════ NAV ═══════════════════════ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 500;
      padding: 0px 60px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all .4s;
    }

    nav.scrolled {
      background: rgba(245, 242, 235, .90);
      backdrop-filter: blur(40px) saturate(1.4);
      border-bottom: 1px solid var(--ink-08);
      height: 78px;
    }

    .nav-logo {
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--ink);
      transition: all .4s;
      padding: 10px 20px;
      border: 0px solid rgba(214, 155, 37, 1);
      background: rgba(214, 155, 37, 1);
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }

    nav.scrolled .nav-logo {
      color: var(--ink);
      border-color: rgba(10, 10, 15, .1);
    }

    .nav-logo-mark {
      width: 30px;
      height: 30px;
      border: 1px solid var(--gold);
      display: grid;
      place-items: center;
      font-size: 14px;
      color: var(--gold);
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 0;
      width: 28px;
      height: 20px;
      justify-content: space-between;
      transition: all .3s;
      z-index: 600;
    }

    .nav-burger span {
      width: 100%;
      height: 2px;
      background: var(--cream);
      transition: all .3s;
    }

    nav.scrolled .nav-burger span {
      background: var(--ink);
    }

    .nav-burger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-burger.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-burger.open span:nth-child(3) {
      transform: translateY(-11px) rotate(-45deg);
    }

    /* ═══════════════════════ MOBILE MENU ═══════════════════════ */
    .mob-menu {
      position: fixed;
      inset: 0;
      background: var(--dark);
      z-index: 450;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .mob-menu.open {
      opacity: 1;
      visibility: visible;
    }

    .mob-links {
      list-style: none;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    .mob-links a {
      font-family: 'Syne', sans-serif;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
      transition: color .3s;
    }

    .mob-links a:hover {
      color: var(--gold);
    }

    .mob-cta {
      display: inline-block;
      margin-top: 20px;
      background: var(--gold);
      color: var(--dark) !important;
      padding: 16px 32px;
      font-size: 12px !important;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }

    @media(max-width:1024px) {
      .nav-links, .nav-cta {
        display: none;
      }

      .nav-burger {
        display: flex;
      }
    }

    .nav-links a {
      font-family: 'Syne', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(245, 242, 235, .65);
      text-decoration: none;
      transition: color .25s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width .3s;
    }

    .nav-links a:hover {
      color: var(--cream);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    nav.scrolled .nav-links a {
      color: var(--ink-50);
    }

    nav.scrolled .nav-links a:hover {
      color: var(--ink);
    }

    .nav-cta {
      font-family: 'Syne', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--dark);
      background: var(--gold);
      padding: 11px 24px;
      text-decoration: none;
      border: none;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      transition: background .25s, transform .2s;
    }

    .nav-cta:hover {
      background: var(--gold-2);
      transform: translateY(-2px);
    }

    /* ═══════════════════════ HERO ═══════════════════════ */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      background: var(--dark);
      overflow: hidden;
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(196, 154, 69, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(196, 154, 69, .04) 1px, transparent 1px);
      background-size: 80px 80px;
      animation: gridDrift 25s linear infinite;
    }

    @keyframes gridDrift {
      to {
        transform: translateY(80px);
      }
    }

    .hero-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      pointer-events: none;
    }

    .g1 {
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(196, 154, 69, .16) 0%, transparent 70%);
      top: -150px;
      right: -100px;
      animation: gfloat 9s ease-in-out infinite alternate;
    }

    .g2 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(196, 154, 69, .09) 0%, transparent 70%);
      bottom: 5%;
      left: 2%;
      animation: gfloat 13s ease-in-out infinite alternate-reverse;
    }

    .g3 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(100, 80, 200, .05) 0%, transparent 70%);
      top: 40%;
      left: 40%;
      animation: gfloat 11s ease-in-out infinite alternate;
    }

    @keyframes gfloat {
      to {
        transform: translate(40px, -50px) scale(1.12);
      }
    }

    .hero-svg {
      position: absolute;
      top: 0;
      right: 0;
      width: 55%;
      height: 100%;
      opacity: .07;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 40px 64px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 48px;
      opacity: 0;
      animation: slideUp .8s .3s forwards;
    }

    .hero-pill {
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(196, 154, 69, .1);
      border: 1px solid rgba(196, 154, 69, .25);
      padding: 7px 18px;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    }

    .hero-tag-line {
      width: 78px;
      height: 1px;
      background: linear-gradient(90deg, rgba(196, 154, 69, .5), transparent);
    }

    h1.hero-h1 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(60px, 8.5vw, 110px);
      line-height: .93;
      letter-spacing: -.02em;
      color: var(--cream);
      margin-bottom: 36px;
      opacity: 0;
      animation: slideUp .9s .5s forwards;
      text-align: center;
    } 

    h1.hero-h1 em {
      font-style: italic;
      color: var(--gold);
      display: block;
      text-align: center;
    }

    h1.hero-h1 .outline {
      -webkit-text-stroke: 1px rgba(245, 242, 235, .2);
      color: transparent;
      display: block;
    }

    .hero-sub {
      font-size: 17px;
      font-weight: 300;
      line-height: 1.85;
      color: rgba(245, 242, 235, .5);
      max-width: 600px;
      margin-bottom: 56px;
      opacity: 0;
      animation: slideUp .9s .7s forwards;
      text-align: center;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      margin-bottom: 96px;
      opacity: 0;
      animation: slideUp .9s .9s forwards;
      flex-wrap: wrap;
    }

    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--gold);
      color: var(--dark);
      padding: 18px 36px;
      font-family: 'Syne', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
      position: relative;
      overflow: hidden;
      transition: gap .3s, transform .25s;
    }

    .btn-gold::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold-2);
      transform: translateX(-101%);
      transition: transform .35s ease;
    }

    .btn-gold>* {
      position: relative;
    }

    .btn-gold:hover::before {
      transform: translateX(0);
    }

    .btn-gold:hover {
      gap: 20px;
      transform: translateY(-2px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: transparent;
      color: rgba(245, 242, 235, .75);
      padding: 18px 36px;
      font-family: 'Syne', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(245, 242, 235, .18);
      transition: all .25s;
    }

    .btn-ghost:hover {
      color: var(--cream);
      border-color: rgba(196, 154, 69, .45);
      background: rgba(196, 154, 69, .06);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, auto);
      gap: 0;
      border-top: 1px solid rgba(245, 242, 235, .07);
      padding-top: 56px;
      opacity: 0;
      animation: slideUp .9s 1.1s forwards;
    }

    .hero-stat {
      padding-right: 64px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .hero-stat:not(:last-child) {
      border-right: 1px solid rgba(245, 242, 235, .07);
      margin-right: 64px;
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 62px;
      font-weight: 300;
      line-height: 1;
      color: var(--cream);
      display: block;
      margin-bottom: 10px;
      letter-spacing: -.025em;
    }

    .stat-num sup {
      font-size: .35em;
      vertical-align: top;
      margin-top: 16px;
      display: inline-block;
    }

    .stat-lbl {
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(196, 154, 69, .65);
    }

    .scroll-hint {
      position: absolute;
      bottom: 24px;
      left: 45%;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      align-items: center;
      gap: 14px;
      opacity: 0;
      animation: fadeIn 1s 1.6s forwards;
    }

    .scroll-lbl {
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(245, 242, 235, .25);
      writing-mode: vertical-rl;
    }

    .scroll-track {
      width: 1px;
      height: 64px;
      background: rgba(245, 242, 235, .08);
      position: relative;
      overflow: hidden;
    }

    .scroll-fill {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 45%;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollFill 2.5s ease-in-out infinite;
    }

    @keyframes scrollFill {
      0% {
        top: -45%
      }

      100% {
        top: 145%
      }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    /* ═══════════════════════ TICKER ═══════════════════════ */
    .ticker {
      background: var(--gold);
      padding: 14px 0;
      overflow: hidden;
    }

    .ticker-track {
      display: flex;
      animation: tickScroll 28s linear infinite;
      white-space: nowrap;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 36px;
      padding: 0 36px;
      font-family: 'Syne', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--dark);
    }

    .ticker-dot {
      width: 5px;
      height: 5px;
      background: rgba(10, 10, 15, .35);
      border-radius: 50%;
    }

    @keyframes tickScroll {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* ═══════════════════════ SECTIONS ═══════════════════════ */
    section {
      padding: var(--gap) 64px;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-family: 'Syne', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .eyebrow::before {
      content: '';
    }

    .eyebrow::after {
      content: '';
      height: 1px;
      background: var(--gold);
      width: 56px;
      height: 1px;
      background: linear-gradient(90deg, rgba(196, 154, 69, .5), transparent);
    }

    .sec-h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(40px, 5vw, 66px);
      line-height: 1.05;
      letter-spacing: -.015em;
      margin-bottom: 20px;
    }

    .sec-h2 em {
      font-style: italic;
      color: var(--gold);
    }

    .sec-desc {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.9;
      color: var(--ink-50);
      max-width: 640px;
    }

    .hdr-center {
      text-align: center;
      margin-bottom: 72px;
    }

    .hdr-center .eyebrow {
      justify-content: center;
    }

    .hdr-center .eyebrow::before {
      display: none;
    }

    .hdr-center .eyebrow::after {
      content: '';
      height: 1px;
      background: var(--gold);
      width: 56px;
      height: 1px;
      background: linear-gradient(90deg, rgba(196, 154, 69, .5), transparent);
    }

    .hdr-center .sec-desc {
      margin: 0 auto;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.on {
      opacity: 1;
      transform: none;
    }

    .d1 {
      transition-delay: .1s
    }

    .d2 {
      transition-delay: .2s
    }

    .d3 {
      transition-delay: .3s
    }

    .d4 {
      transition-delay: .4s
    }

    /* ═══════════════════════ ABOUT ═══════════════════════ */
    .about {
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .about::before {
      content: 'ABOUT';
      position: absolute;
      right: -40px;
      top: 50%;
      transform: translateY(-50%) rotate(90deg);
      font-family: 'Cormorant Garamond', serif;
      font-size: 180px;
      font-weight: 600;
      color: var(--ink-08);
      pointer-events: none;
      white-space: nowrap;
      line-height: 1;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .about-left {
      padding-right: 32px;
    }

    .about-para {
      margin-top: 32px;
      border-left: 2px solid var(--gold);
      padding-left: 28px;
    }

    .about-para p {
      font-size: 15px;
      color: var(--ink-50);
      line-height: 1.9;
      margin-bottom: 16px;
    }

    .about-meta {
      border: 1px solid var(--ink-08);
      margin-top: 40px;
      overflow: hidden;
    }

    .meta-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1px solid var(--ink-08);
    }

    .meta-row:last-child {
      border-bottom: none;
    }

    .m-key {
      padding: 20px 24px;
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--ink-50);
      background: var(--cream-2);
      border-right: 1px solid var(--ink-08);
    }

    .m-val {
      padding: 20px 24px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
    }

    .vals {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .val-card {
      background: var(--white);
      border: 1px solid var(--ink-08);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: transform .35s, box-shadow .35s, border-color .35s;
    }

    .val-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(10, 10, 15, .08);
      border-color: rgba(196, 154, 69, .25);
    }

    .val-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }

    .val-card:hover::after {
      transform: scaleX(1);
    }

    .val-icon {
      width: 48px;
      height: 48px;
      background: var(--gold-dim);
      border: 1px solid rgba(196, 154, 69, .18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
      transition: background .3s;
    }

    .val-card:hover .val-icon {
      background: rgba(196, 154, 69, .2);
    }

    .val-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      margin-bottom: 12px;
    }

    .val-card p {
      font-size: 14px;
      color: var(--ink-50);
      line-height: 1.85;
    }

    /* ═══════════════════════ THESIS (dark) ═══════════════════════ */
    .thesis {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    .thesis::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(196, 154, 69, .07) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 10% 80%, rgba(196, 154, 69, .04) 0%, transparent 60%);
    }

    .thesis .eyebrow {
      color: var(--gold-2);
    }

    .thesis .eyebrow::before {
      background: var(--gold-2);
    }

    .thesis .hdr-center .eyebrow::after {
      background: var(--gold-2);
      width: 56px;
      height: 1px;
      background: linear-gradient(90deg, rgba(196, 154, 69, .5), transparent);
    }

    .thesis .sec-h2 {
      color: var(--cream);
    }

    .thesis .sec-desc {
      color: rgba(245, 242, 235, .45);
    }

    .t-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: rgba(245, 242, 235, .05);
      border: 1px solid rgba(245, 242, 235, .05);
      position: relative;
      z-index: 1;
      margin-top: 60px;
    }

    .t-item {
      background: var(--dark);
      padding: 52px 48px;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: background .3s;
    }

    .t-item:hover {
      background: var(--dark-2);
    }

    .t-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(196, 154, 69, .06) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .4s;
    }

    .t-item:hover::before {
      opacity: 1;
    }

    .t-accent {
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      transition: width .5s;
    }

    .t-item:hover .t-accent {
      width: 100%;
    }

    .t-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 76px;
      font-weight: 300;
      line-height: 1;
      color: rgba(196, 154, 69, .1);
      display: block;
      margin-bottom: 24px;
      letter-spacing: -.03em;
      transition: color .4s;
    }

    .t-item:hover .t-num {
      color: rgba(196, 154, 69, .28);
    }

    .t-item h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 14px;
    }

    .t-item p {
      font-size: 14px;
      color: rgba(245, 242, 235, .43);
      line-height: 1.85;
    }

    .look-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 20px;
      position: relative;
      z-index: 1;
    }

    .look-card {
      border: 1px solid rgba(245, 242, 235, .07);
      background: rgba(245, 242, 235, .025);
      padding: 40px 44px;
      transition: border-color .3s, background .3s;
    }

    .look-card:hover {
      border-color: rgba(196, 154, 69, .25);
      background: rgba(196, 154, 69, .04);
    }

    .look-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(245, 242, 235, .08);
    }

    .look-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .look-list li {
      font-size: 14px;
      color: rgba(245, 242, 235, .48);
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .look-list li::before {
      content: '';
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      margin-top: 1px;
      border: 1px solid rgba(196, 154, 69, .35);
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23c49a45' stroke-width='1.3'/%3E%3C/svg%3E") center/contain no-repeat;
    }

    /* ═══════════════════════ FOCUS ═══════════════════════ */
    .focus {
      background: var(--white);
      position: relative;
    }

    .focus::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(196, 154, 69, .07) 0%, transparent 70%);
      pointer-events: none;
    }

    .f-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 64px;
    }

    .f-card {
      padding: 48px 44px;
      border: 1px solid var(--ink-08);
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: border-color .35s, transform .35s;
    }

    .f-card::before {
      content: attr(data-n);
      position: absolute;
      top: -20px;
      right: 20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 130px;
      font-weight: 600;
      letter-spacing: -.04em;
      color: var(--ink-08);
      line-height: 1;
      pointer-events: none;
      transition: color .4s;
    }

    .f-card:hover {
      border-color: rgba(196, 154, 69, .3);
      transform: translateY(-5px);
    }

    .f-card:hover::before {
      color: rgba(196, 154, 69, .07);
    }

    .f-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }

    .f-card:hover .f-bar {
      transform: scaleX(1);
    }

    .f-tag {
      display: inline-flex;
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(196, 154, 69, .25);
      padding: 4px 12px;
      margin-bottom: 28px;
      background: var(--gold-dim);
    }

    .f-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 400;
      margin-bottom: 16px;
      line-height: 1.1;
    }

    .f-card p {
      font-size: 14px;
      color: var(--ink-50);
      line-height: 1.85;
      margin-bottom: 24px;
    }

    .f-meta {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding-top: 20px;
      border-top: 1px solid var(--ink-08);
    }

    .f-meta span {
      font-size: 12px;
      color: var(--ink-50);
    }

    .f-meta strong {
      color: var(--ink);
      font-weight: 500;
    }

    /* ═══════════════════════ PORTFOLIO ═══════════════════════ */
    .portfolio {
      background: var(--cream-2);
      position: relative;
      overflow: hidden;
    }

    .p-tabs-container {
      max-width: 1280px;
      margin: 0 auto 48px;
      border-bottom: 1px solid var(--ink-08);
    }

    .p-tabs {
      display: flex;
      gap: 40px;
    }

    .p-tab {
      background: none;
      border: none;
      padding: 16px 0;
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink-50);
      position: relative;
      transition: color .3s;
    }

    .p-tab::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width .3s;
    }

    .p-tab.active {
      color: var(--ink);
    }

    .p-tab.active::after {
      width: 100%;
    }

    .p-tab:hover {
      color: var(--ink);
    }

    .p-logos-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 60px 40px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
    }

    .p-logo-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 20px;
      transition: transform .3s, opacity .3s;
      text-decoration: none;
      color: inherit;
    }

    .p-logo-item:hover {
      transform: translateY(-5px);
    }

    .p-logo-item img {
      max-width: 140px;
      max-height: 60px;
      width: auto;
      height: auto;
      filter: grayscale(100%);
      opacity: 0.5;
      transition: all .4s ease;
    }

    .p-logo-item:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

    .p-logo-badge {
      position: absolute;
      top: 0;
      right: 20%;
      font-family: 'Syne', sans-serif;
      font-size: 8px;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 10px;
      background: #e0e7ff;
      color: #4338ca;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    .p-logo-badge.stealth {
      background: #f3f4f6;
      color: #4b5563;
    }

    .p-stats {
      display: none;
    }

    /* Hide old stats if not needed, or keep if user wants both */

    /* ═══════════════════════ MEDIA COVERAGE (dark) ═══════════════════════ */
    .media {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    .media::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 20% 20%, rgba(196, 154, 69, .07) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 90% 80%, rgba(196, 154, 69, .04) 0%, transparent 60%);
    }

    .media .eyebrow {
      color: var(--gold-2);
    }

    .media .eyebrow::after {
      background: var(--gold-2);
      width: 56px;
      height: 1px;
      background: linear-gradient(90deg, rgba(196, 154, 69, .5), transparent);
    }

    .media .sec-h2 {
      color: var(--cream);
    }

    .media .sec-desc {
      color: rgba(245, 242, 235, .45);
    }

    .media-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
      position: relative;
      z-index: 1;
      margin-top: 60px;
    }

    .media-card {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .07);
      padding: 40px;
      transition: border-color .3s, transform .3s;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .media-card:hover {
      border-color: rgba(196, 154, 69, .3);
      transform: translateY(-5px);
      background: rgba(196, 154, 69, .04);
    }

    .m-date {
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(196, 154, 69, .65);
    }

    .media-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--cream);
      line-height: 1.4;
    }

    .m-source {
      font-family: 'Syne', sans-serif;
      font-size: 10px;
      font-weight: 600;
      color: rgba(245, 242, 235, .3);
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .m-source::before {
      content: '';
      width: 12px;
      height: 1px;
      background: rgba(196, 154, 69, .3);
    }

    /* ═══════════════════════ WHY ═══════════════════════ */
    .why {
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    .why::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(196, 154, 69, .06) 0%, transparent 70%);
      pointer-events: none;
    }

    .w-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 24px;
    }

    .w-card {
      border: 1px solid var(--ink-08);
      padding: 40px 44px;
      position: relative;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s, border-color .3s;
      cursor: default;
    }

    .w-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 60px rgba(10, 10, 15, .07);
      border-color: rgba(196, 154, 69, .22);
    }

    .w-num {
      position: absolute;
      top: 16px;
      right: 20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 88px;
      font-weight: 600;
      color: var(--ink-08);
      line-height: 1;
      letter-spacing: -.04em;
      transition: color .4s;
    }

    .w-card:hover .w-num {
      color: rgba(196, 154, 69, .08);
    }

    .w-icon {
      width: 52px;
      height: 52px;
      background: var(--gold-dim);
      border: 1px solid rgba(196, 154, 69, .18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
      transition: background .3s;
    }

    .w-card:hover .w-icon {
      background: rgba(196, 154, 69, .2);
    }

    .w-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 12px;
    }

    .w-card p {
      font-size: 14px;
      color: var(--ink-50);
      line-height: 1.85;
    }

    .commit-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .commit-card {
      border: 1px solid var(--ink-08);
      padding: 44px 48px;
    }

    .commit-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--ink-08);
    }

    .c-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .c-list li {
      font-size: 14px;
      color: var(--ink-50);
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .c-chk {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      background: var(--gold-dim);
      border: 1px solid rgba(196, 154, 69, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: var(--gold);
      margin-top: 1px;
    }

    .dur-box {
      margin-top: 32px;
      background: var(--dark);
      padding: 36px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .dur-box::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(196, 154, 69, .1) 0%, transparent 70%);
    }

    .dur-key {
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(196, 154, 69, .65);
      display: block;
      margin-bottom: 12px;
      position: relative;
    }

    .dur-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 56px;
      font-weight: 300;
      color: var(--cream);
      display: block;
      position: relative;
      margin-bottom: 8px;
    }

    .dur-sub {
      font-size: 12px;
      color: rgba(245, 242, 235, .3);
      position: relative;
    }

    /* ═══════════════════════ TEAM ═══════════════════════ */
    .team {
      background: var(--cream-2);
      position: relative;
      overflow: hidden;
    }

    .team::before {
      content: '';
      position: absolute;
      left: -50px;
      top: 50%;
      transform: translateY(-50%) rotate(-90deg);
      font-family: 'Cormorant Garamond', serif;
      font-size: 200px;
      font-weight: 600;
      color: var(--ink-08);
      pointer-events: none;
      white-space: nowrap;
    }

    .tm-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .tm-card {
      background: var(--white);
      border: 1px solid var(--ink-08);
      overflow: hidden;
      transition: transform .35s, box-shadow .35s, border-color .35s;
    }

    .tm-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 70px rgba(10, 10, 15, .09);
      border-color: rgba(196, 154, 69, .18);
    }

    .tm-top {
      background: var(--dark);
      padding: 36px 40px;
      position: relative;
      overflow: hidden;
    }

    .tm-top::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 85% 50%, rgba(196, 154, 69, .1) 0%, transparent 60%);
    }

    .tm-avatar {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(196, 154, 69, .12);
      border: 1px solid rgba(196, 154, 69, .28);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--gold-2);
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }

    .tm-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .tm-avatar:hover {
      transform: scale(1.1);
    }

    .tm-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 5px;
      position: relative;
      z-index: 1;
    }

    .tm-role {
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold-2);
      position: relative;
      z-index: 1;
    }

    .tm-body {
      padding: 28px 40px;
    }

    .tm-exp {
      font-size: 12px;
      color: var(--ink-50);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tm-exp::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .tm-bio {
      font-size: 14px;
      color: var(--ink-50);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .tm-links {
      display: flex;
      gap: 16px;
    }

    .tm-link {
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(196, 154, 69, .3);
      padding-bottom: 2px;
      transition: border-color .2s;
    }

    .tm-link:hover {
      border-color: var(--gold);
    }

    .ic-box {
      border: 1px solid var(--ink-08);
      padding: 44px 52px;
      margin-top: 24px;
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    .ic-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2), transparent);
    }

    .ic-box h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 16px;
    }

    .ic-box p {
      font-size: 14px;
      color: var(--ink-50);
      line-height: 1.85;
    }

    /* ═══════════════════════ FOUNDERS ═══════════════════════ */
    .founders {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    .founders::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 50% at 80% 30%, rgba(196, 154, 69, .07) 0%, transparent 60%), radial-gradient(ellipse 50% 70% at 20% 80%, rgba(196, 154, 69, .04) 0%, transparent 60%);
    }

    .founders .eyebrow {
      color: var(--gold-2);
    }

    .founders .eyebrow::before {
      background: var(--gold-2);
    }

    .founders .hdr-center .eyebrow::after {
      background: var(--gold-2);
      width: 56px;
      height: 1px;
      background: linear-gradient(90deg, rgba(196, 154, 69, .5), transparent);
    }

    .founders .sec-h2 {
      color: var(--cream);
    }

    .founders .sec-desc {
      color: rgba(245, 242, 235, .44);
    }

    .pitch-card {
      border: 1px solid rgba(245, 242, 235, .07);
      background: rgba(255, 255, 255, .03);
      padding: 52px 56px;
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 48px auto 0;
      transition: border-color .3s;
    }

    .pitch-card:hover {
      border-color: rgba(196, 154, 69, .18);
    }

    .pitch-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .pitch-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 36px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(245, 242, 235, .07);
    }

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

    .fg {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    label {
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(245, 242, 235, .38);
    }

    input,
    select,
    textarea {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .09);
      color: var(--cream);
      padding: 14px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color .25s, background .25s;
      -webkit-appearance: none;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(245, 242, 235, .22);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(196, 154, 69, .45);
      background: rgba(196, 154, 69, .04);
    }

    select option {
      background: var(--dark-2);
    }

    textarea {
      resize: vertical;
      min-height: 120px;
    }

    .file-drop {
      border: 1px dashed rgba(245, 242, 235, .14);
      padding: 44px;
      text-align: center;
      transition: all .3s;
    }

    .file-drop:hover {
      border-color: rgba(196, 154, 69, .4);
      background: rgba(196, 154, 69, .04);
    }

    .file-drop-ico {
      font-size: 30px;
      opacity: .35;
      margin-bottom: 12px;
    }

    .file-drop p {
      font-size: 14px;
      color: rgba(245, 242, 235, .38);
    }

    .file-drop small {
      font-size: 11px;
      color: rgba(245, 242, 235, .18);
      display: block;
      margin-top: 6px;
    }

    .form-btn {
      width: 100%;
      padding: 20px;
      background: var(--gold);
      color: var(--dark);
      border: none;
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-top: 28px;
      position: relative;
      overflow: hidden;
      transition: background .25s;
    }

    .form-btn::after {
      content: '→';
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      transition: transform .3s;
    }

    .form-btn:hover {
      background: var(--gold-2);
    }

    .form-btn:hover::after {
      transform: translateY(-50%) translateX(6px);
    }

    .f-disc {
      font-size: 11px;
      color: rgba(245, 242, 235, .22);
      line-height: 1.8;
      margin-top: 20px;
      border: 1px solid rgba(255, 255, 255, .05);
      padding: 16px 20px;
      background: rgba(0, 0, 0, .14);
    }

    .err-msg {
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      color: #ff4d4d;
      margin-top: 4px;
      min-height: 12px;
      opacity: 0;
      transition: opacity .3s;
      pointer-events: none;
    }

    .err-msg.show {
      opacity: 1;
    }

    input.invalid,
    select.invalid,
    textarea.invalid {
      border-color: #ff4d4d !important;
      background: rgba(255, 77, 77, 0.03) !important;
    }

    /* ═══════════════════════ CONTACT ═══════════════════════ */
    .contact {
      background: var(--white);
    }

    .ct-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 60px;
      align-items: start;
    }

    .ct-left-desc {
      font-size: 15px;
      color: var(--ink-50);
      line-height: 1.9;
      margin-bottom: 36px;
    }

    .ci-list {
      display: flex;
      gap: 60px;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .ci-row {
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }

    .ci-ico {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      border: 1px solid var(--ink-08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      background: var(--gold-dim);
      transition: background .3s;
    }

    .ci-row:hover .ci-ico {
      background: rgba(196, 154, 69, .2);
    }

    .ci-txt strong {
      font-family: 'Syne', sans-serif;
      display: block;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--ink-50);
      margin-bottom: 4px;
    }

    .ci-txt span {
      font-size: 14px;
      color: var(--ink);
    }

    .inst-box {
      border: 1px solid var(--ink-08);
      padding: 36px 40px;
      position: relative;
      overflow: hidden;
    }

    .inst-box::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, var(--gold), var(--gold-2));
    }

    .inst-box h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      margin-bottom: 12px;
    }

    .inst-box p {
      font-size: 14px;
      color: var(--ink-50);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .inst-lnk {
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .msg-card {
      border: 1px solid var(--ink-08);
      padding: 48px 52px;
    }

    .msg-card::before {
      display: block;
      content: '';
      width: 100%;
      height: 3px;
      margin-bottom: 48px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2), transparent);
    }

    .msg-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 400;
      margin-bottom: 32px;
    }

    .msg-card input,
    .msg-card textarea {
      background: var(--cream);
      border: 1px solid var(--ink-08);
      color: var(--ink);
      width: 100%;
    }

    .msg-card input::placeholder,
    .msg-card textarea::placeholder {
      color: var(--ink-20);
    }

    .msg-card input:focus,
    .msg-card textarea:focus {
      border-color: rgba(196, 154, 69, .4);
      background: var(--white);
    }

    .msg-card label {
      color: var(--ink-50);
    }

    .msg-inner {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .msg-btn {
      width: 100%;
      padding: 20px;
      background: var(--ink);
      color: var(--cream);
      border: none;
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      transition: background .25s;
      position: relative;
      overflow: hidden;
    }

    .msg-btn::after {
      content: '→';
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      transition: transform .3s;
    }

    .msg-btn:hover {
      background: var(--gold);
    }

    .msg-btn:hover::after {
      transform: translateY(-50%) translateX(6px);
    }

    /* ═══════════════════════ FOOTER ═══════════════════════ */
    footer {
      background: var(--dark);
      padding: 80px 64px 44px;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(196, 154, 69, .28), transparent);
    }

    footer::after {
      content: '';
      position: absolute;
      bottom: -200px;
      right: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196, 154, 69, .05) 0%, transparent 70%);
    }

    .ft-grid {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
      gap: 48px;
      max-width: 1280px;
      margin: 0 auto;
      padding-bottom: 64px;
      border-bottom: 1px solid rgba(245, 242, 235, .06);
      margin-bottom: 44px;
      position: relative;
    }

    .ft-brand {
      font-family: 'Syne', sans-serif;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase;
      color: var(--cream);
      margin-bottom: 16px;
      display: block;
    }

    .ft-brand span {
      color: var(--gold);
    }

    .ft-tag {
      font-size: 13px;
      color: rgba(245, 242, 235, .38);
      line-height: 1.85;
      margin-bottom: 20px;
    }

    .ft-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(196, 154, 69, .75);
      border: 1px solid rgba(196, 154, 69, .18);
      padding: 7px 14px;
      background: rgba(196, 154, 69, .05);
    }

    .ft-badge::before {
      content: '●';
      font-size: 6px;
    }

    .ft-col h4 {
      font-family: 'Syne', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(245, 242, 235, .28);
      margin-bottom: 22px;
    }

    .ft-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ft-col li,
    .ft-col a {
      font-size: 13px;
      color: rgba(245, 242, 235, .5);
      text-decoration: none;
      transition: color .2s;
    }

    .ft-col a:hover {
      color: var(--cream);
    }

    .ft-contact {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .ft-contact-row {
      font-size: 13px;
      color: rgba(245, 242, 235, .45);
    }

    .ft-bottom {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
    }

    .disclaimer {
      font-size: 11px;
      color: rgba(245, 242, 235, .22);
      line-height: 1.8;
      border: 1px solid rgba(255, 255, 255, .04);
      padding: 18px 22px;
      background: rgba(0, 0, 0, .18);
      margin-bottom: 28px;
    }

    .copyright {
      text-align: center;
      font-size: 12px;
      color: rgba(245, 242, 235, .22);
    }

    /* ═══════════════════════ RESPONSIVE ═══════════════════════ */
    @media(max-width:1024px) {
      nav {
        padding: 0 28px
      }

      section {
        padding: var(--gap) 28px
      }

      .hero-inner {
        padding: 80px 28px 40px
      }

      .about-grid,
      .t-grid,
      .look-grid,
      .f-grid,
      .p-grid,
      .tm-grid,
      .w-grid,
      .commit-row,
      .ct-grid,
      .media-grid {
        grid-template-columns: 1fr
      }

      .p-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
      }

      .p-stats {
        grid-template-columns: 1fr
      }

      .about::before,
      .team::before {
        display: none
      }

      .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        padding-top: 44px
      }

      .hero-stat:not(:last-child) {
        margin-right: 24px;
        padding-right: 24px
      }

      .vals {
        grid-template-columns: 1fr
      }

      .ci-list {
        flex-direction: column;
        margin-bottom: 36px;
      }
    }

    @media(max-width:640px) {
      .nav-links {
        display: none
      }

      .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px
      }

      .p-logos-grid {
        grid-template-columns: 1fr 1fr;
      }

      .p-tabs {
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 10px;
      }

      .p-tab {
        white-space: nowrap;
      }

      .hero-stat:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(245, 242, 235, .07);
        padding-bottom: 24px;
        margin-right: 0;
        margin-bottom: 24px
      }

      .ft-grid {
        grid-template-columns: 1fr 1fr
      }

      .f-row {
        grid-template-columns: 1fr
      }

      .nav-cta {
      display: none;
    }
    }