    :root {
      --black: #0a0a0a;
      --surface: #141414;
      --surface2: #1c1c1c;
      --border: rgba(255, 255, 255, 0.07);
      --border-gold: rgba(200, 169, 110, 0.18);
      --white: #fdfcfb;
      --white-dim: #d4cdc5;
      --white-muted: #a6a097;
      --accent: #dbbb7c;
      --accent-dim: #8f763e;
      --font-display: 'Cormorant Garamond', serif;
      --font-ui: 'Rajdhani', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 400;
      overflow-x: hidden;
      cursor: none;
    }

    /* CURSOR */
    #cur {
      position: fixed;
      top: 0;
      left: 0;
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .25s, height .25s;
    }

    #cur2 {
      position: fixed;
      top: 0;
      left: 0;
      width: 34px;
      height: 34px;
      border: 1px solid rgba(200, 169, 110, .35);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width .4s, height .4s, border-color .3s;
    }

    body:has(a:hover) #cur {
      width: 5px;
      height: 5px;
    }

    body:has(a:hover) #cur2 {
      width: 52px;
      height: 52px;
      border-color: var(--accent);
    }

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

    /* NAV */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.6rem 5rem;
    }

    nav::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(10, 10, 10, .95) 0%, transparent 100%);
      pointer-events: none;
    }

    .nav-logo {
      font-family: var(--font-ui);
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      position: relative;
      z-index: 1;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      position: relative;
      z-index: 1;
    }

    .nav-links a {
      font-family: var(--font-ui);
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--white-dim);
      text-decoration: none;
      transition: color .3s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--accent);
    }

    .nav-cta {
      font-family: var(--font-ui);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--accent);
      padding: .65rem 1.6rem;
      text-decoration: none;
      position: relative;
      z-index: 1;
      transition: background .3s;
    }

    .nav-cta:hover {
      background: var(--white);
    }

    /* HERO */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 3.8rem;
      padding-bottom: 7rem;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 68% 38%, #1d160a 0%, #0a0a0a 68%);
    }

    .hero-orb {
      position: absolute;
      top: -15%;
      right: -8%;
      width: 75vw;
      height: 75vw;
      background: radial-gradient(ellipse, rgba(200, 169, 110, .06) 0%, transparent 62%);
      border-radius: 50%;
      animation: orbFloat 9s ease-in-out infinite alternate;
    }

    @keyframes orbFloat {
      from {
        transform: translate(0, 0) scale(1)
      }

      to {
        transform: translate(-3%, 5%) scale(1.08)
      }
    }

    .hero-lines {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-lines::before {
      content: '';
      position: absolute;
      top: 0;
      right: 16%;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(200, 169, 110, .1) 25%, rgba(200, 169, 110, .1) 75%, transparent);
    }

    .hero-lines::after {
      content: '';
      position: absolute;
      top: 0;
      right: calc(16% + 90px);
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(200, 169, 110, .04) 35%, rgba(200, 169, 110, .04) 65%, transparent);
    }

    .hero-ghost {
      position: absolute;
      right: 2.5rem;
      top: 50%;
      transform: translateY(-52%);
      font-family: var(--font-display);
      font-size: clamp(18rem, 28vw, 34rem);
      font-weight: 300;
      color: transparent;
      -webkit-text-stroke: 1px rgba(200, 169, 110, .05);
      line-height: 1;
      user-select: none;
      letter-spacing: -.05em;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 5rem;
      max-width: 1000px;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-family: var(--font-ui);
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .38em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.8rem;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp .7s ease .3s forwards;
    }

    .hero-eyebrow::before {
      content: '';
      width: 36px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }

    h1.hero-title {
      font-family: var(--font-display);
      font-size: clamp(4rem, 8vw, 9.5rem);
      font-weight: 300;
      line-height: .92;
      letter-spacing: -.025em;
      color: var(--white);
      margin-bottom: 2.2rem;
      opacity: 0;
      transform: translateY(28px);
      animation: fadeUp .9s ease .5s forwards;
    }

    h1.hero-title em {
      font-style: italic;
      color: var(--accent);
    }

    h1.hero-title .shift {
      padding-left: 5rem;
      display: block;
    }

    .hero-desc {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--white-dim);
      max-width: 420px;
      margin-bottom: 3rem;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp .7s ease .78s forwards;
    }

    .hero-btns {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp .7s ease .95s forwards;
    }

    .btn-fill {
      font-family: var(--font-ui);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--accent);
      padding: 1rem 2.8rem;
      text-decoration: none;
      display: inline-block;
      position: relative;
      overflow: hidden;
      transition: color .35s, box-shadow .4s;
      box-shadow:
        0 2px 8px rgba(219, 187, 124, .25),
        0 6px 24px rgba(219, 187, 124, .15),
        0 0 0 1px rgba(219, 187, 124, .1);
    }

    .btn-fill:hover {
      box-shadow:
        0 4px 16px rgba(219, 187, 124, .4),
        0 8px 32px rgba(219, 187, 124, .2),
        0 0 0 1px rgba(219, 187, 124, .2);
    }

    .btn-fill::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--white);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s ease;
    }

    .btn-fill:hover::before {
      transform: scaleX(1);
    }

    .btn-fill span {
      position: relative;
      z-index: 1;
    }

    .btn-ghost-link {
      font-family: var(--font-ui);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .6rem;
      border: 1px solid rgba(255, 255, 255, 0.25);
      padding: .8rem 1.8rem;
      transition: color .3s, border-color .3s, background .3s, box-shadow .4s;
      box-shadow:
        0 2px 8px rgba(255, 255, 255, .06),
        0 0 0 1px rgba(255, 255, 255, .04);
    }

    .btn-ghost-link::after {
      content: '→';
      transition: transform .3s;
    }

    .btn-ghost-link:hover {
      color: var(--black);
      background: var(--white);
      border-color: var(--white);
      box-shadow:
        0 4px 16px rgba(255, 255, 255, .18),
        0 8px 32px rgba(255, 255, 255, .08);
    }

    .btn-ghost-link:hover::after {
      transform: translateX(5px);
    }

    .hero-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      display: flex;
      border-top: 1px solid var(--border-gold);
      opacity: 0;
      animation: fadeIn .8s ease 1.2s forwards;
    }

    .hero-bar-item {
      flex: 1;
      padding: 1.4rem 5rem;
      border-right: 1px solid rgba(200, 169, 110, .1);
      display: flex;
      flex-direction: column;
      gap: .3rem;
    }

    .hero-bar-item:last-child {
      border-right: none;
    }

    .bar-num {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 400;
      color: var(--accent);
      line-height: 1;
    }

    .bar-label {
      font-family: var(--font-ui);
      font-size: .62rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--white-muted);
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 3.5rem;
      right: 5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .5rem;
      opacity: 0;
      animation: fadeIn .8s ease 1.5s forwards;
    }

    .scroll-bar {
      width: 1px;
      height: 56px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      animation: scrollAnim 2s ease-in-out infinite;
    }

    .scroll-txt {
      font-family: var(--font-ui);
      font-size: .58rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--white-muted);
      writing-mode: vertical-rl;
    }

    @keyframes scrollAnim {

      0%,
      100% {
        opacity: .4;
        transform: scaleY(1)
      }

      50% {
        opacity: 1;
        transform: scaleY(1.15)
      }
    }

    /* MARQUEE */
    .marquee-wrap {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--surface);
      padding: 1.1rem 0;
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 28s linear infinite;
    }

    .marquee-item {
      font-family: var(--font-ui);
      font-size: .68rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--white-muted);
      padding: 0 2.8rem;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 2.8rem;
    }

    .marquee-item::after {
      content: '◆';
      color: var(--accent);
      font-size: .38rem;
    }

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

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

    /* REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(38px);
      filter: blur(7px);
      transition: opacity .95s ease, transform .95s ease, filter .95s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

    /* SHARED */
    .eyebrow {
      font-family: var(--font-ui);
      font-size: .65rem;
      font-weight: 500;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: .9rem;
      margin-bottom: 1rem;
    }

    .eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--accent);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 4.2vw, 5rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -.02em;
      color: var(--white);
    }

    .section-title em {
      font-style: italic;
      color: var(--accent);
    }

    /* SECTION CTA */
    .section-cta {
      display: flex;
      justify-content: center;
      margin-top: 3.5rem;
    }

    /* ABOUT */
    #about {
      padding: 7rem 5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
    }

    .about-body {
      font-size: 1.05rem;
      line-height: 1.95;
      color: var(--white-dim);
      margin-top: 1.8rem;
      margin-bottom: 1.5rem;
    }

    /* TEASERS */
    .teaser-section {
      padding: 7rem 5rem;
      text-align: center;
      border-top: 1px solid var(--border);
    }

    .teaser-section.border-bottom {
      border-bottom: 1px solid var(--border);
    }

    .about-photo-outer {
      position: relative;
    }

    .about-photo-outer::before {
      content: '';
      position: absolute;
      top: -1.8rem;
      left: -1.8rem;
      right: 1.8rem;
      bottom: 1.8rem;
      border: 1px solid var(--border-gold);
      pointer-events: none;
      z-index: 0;
    }

    .about-photo-outer::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 55%, rgba(10, 10, 10, .82) 100%);
      z-index: 1;
    }

    .about-photo {
      width: 100%;
      max-width: 440px;
      aspect-ratio: 3/4;
      object-fit: cover;
      display: block;
      position: relative;
      z-index: 0;
      filter: grayscale(15%);
    }

    .photo-caption {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      z-index: 2;
    }

    .photo-caption-tag {
      font-family: var(--font-ui);
      font-size: .6rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--accent);
      display: block;
      margin-bottom: .4rem;
    }

    .photo-caption-name {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--white);
    }

    /* SERVICES */
    #services {
      padding: 7rem 5rem;
      background: var(--surface);
      border-top: 1px solid var(--border);
    }

    .services-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .services-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: end;
      margin-bottom: 5rem;
    }

    .services-desc {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--white-dim);
      max-width: 440px;
    }

    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--border-gold);
    }

    .svc-card {
      padding: 2.8rem;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: background .4s, opacity .95s ease, transform .95s ease, filter .95s ease;
    }

    .svc-card:nth-child(3n) {
      border-right: none;
    }

    .svc-card:hover {
      background: rgba(200, 169, 110, .04);
    }

    .svc-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 2px;
      width: 0;
      background: var(--accent);
      transition: width .45s ease;
    }

    .svc-card:hover::after {
      width: 100%;
    }

    .svc-num {
      font-family: var(--font-display);
      font-size: 2.3rem;
      font-weight: 400;
      color: var(--accent-dim);
      margin-bottom: 1.8rem;
    }

    .svc-name {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: .9rem;
      line-height: 1.15;
    }

    .svc-desc {
      font-size: .95rem;
      line-height: 1.85;
      color: var(--white-muted);
    }

    /* PERKS */
    #perks {
      padding: 7rem 5rem;
    }

    .perks-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .perks-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border-top: 1px solid var(--border);
      margin-top: 4rem;
    }

    .perk {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 2.2rem;
      align-items: start;
      padding: 3.5rem 0;
      border-bottom: 1px solid var(--border);
      padding-right: 5rem;
    }

    .perk:nth-child(even) {
      padding-left: 5rem;
      padding-right: 0;
      border-left: 1px solid var(--border);
    }

    .perk-ico {
      width: 52px;
      height: 52px;
      border: 1px solid var(--border-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .perk-name {
      font-family: var(--font-ui);
      font-size: .95rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: .6rem;
    }

    .perk-desc {
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--white-muted);
    }

    /* WORK — STICKY SCROLL */
    #work {
      padding: 7rem 0;
      background: var(--surface);
      border-top: 1px solid var(--border);
    }

    .work-header {
      padding: 0 5rem 5rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .work-stack {
      position: relative;
    }

    .work-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .work-images {
      position: relative;
      overflow: hidden;
      background: var(--black);
    }

    .work-img-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity .8s ease, filter .8s ease;
      filter: brightness(.5) grayscale(30%);
    }

    .work-img-mobile {
      display: none;
      width: 100%;
      aspect-ratio: 16/10;
      background-size: cover;
      background-position: center;
      margin-bottom: 2rem;
    }

    .work-img-slide.active {
      opacity: 1;
      filter: brightness(.65) grayscale(0%);
    }

    .work-panels {
      position: relative;
      background: var(--surface2);
      border-left: 1px solid var(--border-gold);
      overflow: hidden;
    }

    .work-panel {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5rem 5rem 5rem 6rem;
      opacity: 0;
      transform: translateY(28px);
      filter: blur(5px);
      transition: opacity .65s ease, transform .65s ease, filter .65s ease;
      pointer-events: none;
    }

    .work-panel.active {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
      pointer-events: auto;
    }

    .work-panel-tag {
      font-family: var(--font-ui);
      font-size: .65rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: .8rem;
    }

    .work-panel-tag::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--accent);
    }

    .work-panel-num {
      font-family: var(--font-display);
      font-size: 7rem;
      font-weight: 300;
      color: transparent;
      -webkit-text-stroke: 1px rgba(200, 169, 110, .1);
      line-height: 1;
      margin-bottom: -.5rem;
      letter-spacing: -.04em;
    }

    .work-panel-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 3.5vw, 4rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 1.2rem;
      letter-spacing: -.02em;
    }

    .work-panel-title em {
      font-style: italic;
      color: var(--accent);
    }

    .work-panel-desc {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--white-dim);
      max-width: 440px;
      margin-bottom: 2rem;
    }

    .work-panel-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem;
      margin-bottom: 2.5rem;
    }

    .work-tag {
      font-family: var(--font-ui);
      font-size: .6rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: .35rem .8rem;
      border: 1px solid var(--border-gold);
      color: var(--accent);
    }

    .work-panel-link {
      font-family: var(--font-ui);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--accent);
      padding: .8rem 2rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      width: fit-content;
      position: relative;
      overflow: hidden;
      transition: color .3s, box-shadow .4s;
      box-shadow:
        0 2px 8px rgba(219, 187, 124, .25),
        0 6px 24px rgba(219, 187, 124, .15),
        0 0 0 1px rgba(219, 187, 124, .1);
    }

    .work-panel-link:hover {
      box-shadow:
        0 4px 16px rgba(219, 187, 124, .4),
        0 8px 32px rgba(219, 187, 124, .2),
        0 0 0 1px rgba(219, 187, 124, .2);
    }

    .work-panel-link::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--white);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s ease;
    }

    .work-panel-link:hover::before {
      transform: scaleX(1);
    }

    .work-panel-link span,
    .work-panel-link:not(span) {
      position: relative;
      z-index: 1;
    }

    .sample-note {
      font-family: var(--font-ui);
      font-size: .6rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent-dim);
      border: 1px solid rgba(200, 169, 110, .15);
      padding: .3rem .7rem;
      display: inline-block;
      margin-bottom: 1rem;
    }

    .work-dots {
      position: absolute;
      right: 2.2rem;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: .7rem;
    }

    .work-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(200, 169, 110, .25);
      transition: all .3s;
      cursor: pointer;
    }

    .work-dot.active {
      background: var(--accent);
      height: 20px;
      border-radius: 2px;
    }

    /* PROCESS */
    #process {
      padding: 7rem 5rem;
    }

    .process-inner {
      max-width: 1400px;
      margin: 0 auto;
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--border);
      margin-top: 4.5rem;
    }

    .proc-step {
      padding: 3rem 2.5rem 3rem 0;
      border-right: 1px solid var(--border);
    }

    .proc-step:nth-child(2) {
      margin-top: 2rem;
    }

    .proc-step:nth-child(3) {
      margin-top: 4rem;
    }

    .proc-step:nth-child(4) {
      margin-top: 6rem;
    }

    .proc-step:last-child {
      border-right: none;
      padding-right: 0;
    }

    .proc-step:not(:first-child) {
      padding-left: 2.5rem;
    }

    .proc-num {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 400;
      color: var(--accent);
      line-height: 1;
      margin-bottom: 1.5rem;
      opacity: 0.8;
    }

    .proc-name {
      font-family: var(--font-ui);
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: .9rem;
    }

    .proc-desc {
      font-size: .95rem;
      line-height: 1.85;
      color: var(--white-muted);
    }

    /* CTA */
    #contact {
      padding: 8rem 5rem;
      background: var(--surface);
      border-top: 1px solid var(--border);
      text-align: center;
    }

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

    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6.5vw, 7.5rem);
      font-weight: 300;
      line-height: .95;
      letter-spacing: -.03em;
      color: var(--white);
      margin-bottom: 2rem;
    }

    .cta-title em {
      font-style: italic;
      color: var(--accent);
    }

    .cta-sub {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--white-dim);
      margin-bottom: 3.5rem;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-btns {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-xl {
      font-family: var(--font-ui);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .22em;
      text-transform: uppercase;
      padding: 1.2rem 3.2rem;
      text-decoration: none;
      transition: all .3s, box-shadow .4s;
    }

    .btn-xl-fill {
      color: var(--black);
      background: var(--accent);
      box-shadow:
        0 2px 10px rgba(219, 187, 124, .3),
        0 8px 28px rgba(219, 187, 124, .18),
        0 0 0 1px rgba(219, 187, 124, .12);
    }

    .btn-xl-fill:hover {
      background: var(--white);
      box-shadow:
        0 4px 18px rgba(255, 255, 255, .22),
        0 10px 36px rgba(219, 187, 124, .15),
        0 0 0 1px rgba(255, 255, 255, .15);
    }

    .btn-xl-out {
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow:
        0 2px 8px rgba(255, 255, 255, .06),
        0 0 0 1px rgba(255, 255, 255, .04);
    }

    .btn-xl-out:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
      box-shadow:
        0 4px 16px rgba(255, 255, 255, .14),
        0 8px 32px rgba(255, 255, 255, .06);
    }

    /* CTA CONTACT INFO */
    .cta-contact-info {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--border);
    }

    .cta-contact-item {
      display: flex;
      align-items: center;
      gap: .75rem;
      font-family: var(--font-ui);
      font-size: .9rem;
      font-weight: 500;
      letter-spacing: .08em;
      color: var(--white-dim);
      text-decoration: none;
      transition: color .3s;
    }

    .cta-contact-item:hover {
      color: var(--accent);
    }

    .cta-contact-ico {
      font-size: 1.1rem;
      color: var(--accent);
      line-height: 1;
    }

    .cta-contact-divider {
      width: 1px;
      height: 2rem;
      background: var(--border);
    }

    /* FOOTER */
    footer {
      padding: 5rem 5rem 4rem;
      border-top: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .footer-name-wrap {
      position: relative;
      margin-bottom: 2.5rem;
      user-select: none;
      line-height: .88;
    }

    .footer-name-ghost {
      font-family: var(--font-display);
      font-size: clamp(5rem, 15vw, 18rem);
      text-align: center;
      font-weight: 300;
      letter-spacing: -.02em;
      color: rgba(200, 169, 110, .05);
      -webkit-text-stroke: 1px rgba(200, 169, 110, .35);
      display: block;
      white-space: nowrap;
      width: 100%;
    }

    .footer-name-reveal {
      position: absolute;
      inset: 0;
      text-align: center;
      font-family: var(--font-display);
      font-size: clamp(5rem, 15vw, 18rem);
      font-weight: 300;
      letter-spacing: -.02em;
      color: var(--white);
      -webkit-mask-image: radial-gradient(circle 150px at var(--mx, 50%) var(--my, 50%), black 0%, transparent 100%);
      mask-image: radial-gradient(circle 150px at var(--mx, 50%) var(--my, 50%), black 0%, transparent 100%);
      pointer-events: none;
      white-space: nowrap;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--border);
      padding-top: 1.8rem;
    }

    .footer-copy {
      font-family: var(--font-ui);
      font-size: .62rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--white-muted);
    }

    .footer-nav {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .footer-nav a {
      font-family: var(--font-ui);
      font-size: .62rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--white-muted);
      text-decoration: none;
      transition: color .3s;
    }

    .footer-nav a:hover {
      color: var(--accent);
    }

    .footer-email {
      font-family: var(--font-display);
      font-size: 1rem;
      font-style: italic;
      color: var(--accent);
      text-decoration: none;
      transition: opacity .3s;
    }

    .footer-email:hover {
      opacity: .65;
    }

    /* KEYFRAMES */
    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    /* RESPONSIVE */
    @media(max-width:1100px) {
      nav {
        padding: 1.5rem 2rem;
      }

      .nav-links {
        display: none;
      }

      #about,
      .teaser-section {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 5rem 2rem;
      }

      #services {
        padding: 5rem 2rem;
      }

      .services-top {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .svc-grid {
        grid-template-columns: 1fr;
      }

      .svc-card {
        border-right: none;
      }

      #perks {
        padding: 5rem 2rem;
      }

      .perks-grid {
        grid-template-columns: 1fr;
      }

      .perk:nth-child(even) {
        padding-left: 0;
        border-left: none;
      }

      #work {
        padding: 5rem 0;
        position: relative;
        z-index: 0;
      }

      .work-stack {
        height: auto !important;
        min-height: 0;
      }

      .work-header {
        padding: 0 2rem 3rem;
      }

      .work-sticky {
        grid-template-columns: 1fr;
        height: auto !important;
        min-height: 0;
        position: relative !important;
        top: auto;
        overflow: visible;
        align-self: start;
      }

      .work-images {
        display: none;
      }

      .work-img-mobile {
        display: block;
      }

      .work-panels {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 0;
        overflow: visible;
        display: block;
        border-left: none;
        padding: 0 2rem;
      }

      .work-panel {
        position: relative;
        inset: auto;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        pointer-events: auto;
        padding: 3rem 0;
        display: flex !important;
        flex-direction: column;
        border-bottom: 1px solid var(--border);
      }

      .work-panel:last-child {
        border-bottom: none;
      }

      .work-dots {
        display: none;
      }

      .work-panel.active {
        display: flex;
      }

      .work-dots {
        display: none;
      }

      #process {
        padding: 5rem 2rem;
        position: relative;
        z-index: 1;
        background: var(--black);
      }

      .process-steps {
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
      }

      .proc-step:nth-child(n) {
        margin-top: 0;
      }

      .proc-step:nth-child(even) {
        margin-top: 2rem;
      }

      .proc-step,
      .proc-step:not(:first-child),
      .proc-step:last-child {
        padding-left: 0;
        padding-right: 0;
        border-right: none;
      }

      #contact {
        padding: 5rem 2rem;
      }

      footer {
        padding: 4rem 2rem 3rem;
      }

      .hero-content {
        padding: 0 2rem 6rem;
      }

      .hero-bar-item {
        padding: 1.2rem 2rem;
      }

      .hero-scroll-hint {
        right: 2rem;
      }
    }

    @media(max-width:600px) {
      nav {
        padding: 1.2rem 1.5rem;
      }

      .process-steps {
        grid-template-columns: 1fr;
        column-gap: 0;
      }

      .proc-step:nth-child(n) {
        margin-top: 0;
      }

      .proc-step {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
        border-bottom: 1px solid var(--border);
      }

      .proc-step:first-child {
        padding-top: 0;
      }

      .proc-step:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }

      footer {
        padding: 3rem 1.5rem 2.5rem;
      }

      .footer-name-wrap {
        margin-bottom: 1.75rem;
      }

      .footer-name-ghost,
      .footer-name-reveal {
        font-size: clamp(2.6rem, 14vw, 4.5rem);
        letter-spacing: -0.03em;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding-top: 1.5rem;
      }

      .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.1rem 1.6rem;
      }

      .footer-nav a {
        padding: 0.4rem 0;
      }

      .footer-email {
        font-size: 1.08rem;
        order: -1;
      }

      .footer-copy {
        font-size: 0.58rem;
        letter-spacing: 0.14em;
        max-width: 20rem;
        line-height: 1.65;
      }

      .hero-ghost {
        display: none;
      }

      .hero-bar {
        flex-wrap: wrap;
      }

      .hero-bar-item {
        flex: 50%;
      }
    }