:root {
    --gold: #B8963E;
    --gold-light: #D4AF6A;
    --gold-bright: #E8C97A;
    --gold-dim: #6B5420;
    --gold-subtle: rgba(184, 150, 62, 0.12);
    --black: #050505;
    --dark: #080808;
    --dark2: #0c0c0c;
    --surface: #0f0f0f;
    --text: #E8E4DC;
    --text-dim: #7A7570;
    --text-mid: #B0A898;
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* ─── CURSOR ─── */
  .cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .15s, height .15s, background .2s;
  }

  .cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(184, 150, 62, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .3s ease-out, height .3s ease-out, opacity .3s;
  }

  /* ─── BACKGROUND ATMOSPHERE ─── */
  .bg-scene {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse 80% 60% at 70% 40%, rgba(20, 16, 8, 0.95) 0%, transparent 70%),
      radial-gradient(ellipse 50% 80% at 30% 50%, rgba(10, 8, 4, 0.8) 0%, transparent 60%),
      radial-gradient(ellipse 100% 100% at 50% 0%, rgba(30, 22, 6, 0.4) 0%, transparent 50%),
      linear-gradient(160deg, #0a0806 0%, #050505 40%, #080808 100%);
  }

  .bg-vignette {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 120% 120% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  }

  .bg-noise {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
  }

  .bg-glow-gold {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    top: -10%;
    right: -5%;
    width: 800px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(184, 150, 62, 0.05) 0%, transparent 65%);
  }

  .bg-glow-deep {
    position: fixed;
    z-index: 0;
    pointer-events: none;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(100, 80, 20, 0.04) 0%, transparent 70%);
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 72px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.0) 100%);
    border-bottom: 1px solid rgba(184, 150, 62, 0.07);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
  }

  .nav-logo img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(184, 150, 62, 0.35));
  }

  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    line-height: 1.1;
  }

  .nav-logo-text span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 400;
    color: var(--gold-dim);
    letter-spacing: 0.45em;
    text-transform: uppercase;
    margin-top: 2px;
  }

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

  .nav-links a {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    position: relative;
    transition: color .3s;
  }

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

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

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

  .nav-links a.active {
    color: var(--gold-light);
  }

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

  .nav-cta {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    padding: 11px 30px;
    border: 1px solid rgba(184, 150, 62, 0.4);
    color: var(--gold);
    text-decoration: none;
    background: transparent;
    transition: background .3s, color .3s, border-color .3s;
  }

  .nav-cta:hover {
    background: rgba(184, 150, 62, 0.1);
    border-color: var(--gold);
    color: var(--gold-bright);
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(184, 150, 62, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(184, 150, 62, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridDrift 30s linear infinite;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 40%, transparent 100%);
  }

  @keyframes gridDrift {
    0% { transform: translateY(0); }
    100% { transform: translateY(80px); }
  }

  .hero-accent-line {
    position: absolute;
    left: 70px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(184, 150, 62, 0.25) 25%, rgba(184, 150, 62, 0.5) 50%, rgba(184, 150, 62, 0.25) 75%, transparent);
  }

  .hero-content {
    position: relative;
    z-index: 20;
    padding: 0 140px;
    max-width: 760px;
    padding-top: 100px;
    padding-bottom: 160px;
  }

  .hero-overline {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    opacity: 0;
    animation: riseIn .9s ease forwards .2s;
  }

  .hero-overline::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .hero-title-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 12px;
    opacity: 0;
    animation: riseIn .9s ease forwards .4s;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 7vw, 100px);
    font-weight: 300;
    line-height: 0.92;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    opacity: 0;
    animation: riseIn .9s ease forwards .6s;
  }

  .hero-title .gold-word {
    color: var(--gold-light);
    font-style: italic;
  }

  .hero-title-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0;
    opacity: 0;
    animation: riseIn .9s ease forwards .75s;
  }

  .hero-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-dim);
    max-width: 440px;
    letter-spacing: 0.03em;
    margin-bottom: 52px;
    opacity: 0;
    animation: riseIn .9s ease forwards .9s;
  }

  .hero-btns {
    display: flex;
    gap: 24px;
    opacity: 0;
    animation: riseIn .9s ease forwards 1.1s;
  }

  .btn-gold {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.4em;
    margin-bottom: 5px;
    text-transform: uppercase;
    padding: 17px 48px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    transition: background .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
  }

  .btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-100%);
    transition: transform .4s;
  }

  .btn-gold:hover {
    background: var(--gold-bright);
    box-shadow: 0 0 40px rgba(184, 150, 62, 0.25);
  }

  .btn-gold:hover::after {
    transform: translateX(100%);
  }

  .btn-outline {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    padding: 17px 48px;
    background: transparent;
    border: 1px solid rgba(184, 150, 62, 0.25);
    color: var(--text-dim);
    text-decoration: none;
    transition: border-color .3s, color .3s;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
  }

  /* Right side decorative tags */
  .hero-side-tags {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 48px;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.4s;
  }

  .side-tag {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .side-tag-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
  }

  .side-tag-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--gold-dim);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  /* Hero visual — logo with orbit rings */
  .hero-visual {
    position: absolute;
    right: 160px;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
  }

  .ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(184, 150, 62, 0.12);
    animation: ringBreath 5s ease-in-out infinite;
  }

  .ring:nth-child(2) {
    inset: 36px;
    border-color: rgba(184, 150, 62, 0.08);
    animation-delay: 1.5s;
  }

  .ring:nth-child(3) {
    inset: 72px;
    border-color: rgba(184, 150, 62, 0.06);
    animation-delay: 3s;
  }

  @keyframes ringBreath {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
  }

  .hero-visual img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    position: relative;
    z-index: 6;
    filter: drop-shadow(0 0 24px rgba(184, 150, 62, 0.25)) drop-shadow(0 0 60px rgba(184, 150, 62, 0.1));
    animation: floatY 7s ease-in-out infinite;
  }

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

  /* Bottom info strip */
  .hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    gap: 80px;
    padding: 36px 80px;
    border-top: 1px solid rgba(184, 150, 62, 0.05);
    z-index: 10;
    opacity: 0;
    animation: riseIn .9s ease forwards 1.3s;
  }

  .hero-stat-title {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 7px;
  }

  .hero-stat-desc {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 200px;
  }

  .scroll-hint {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.8s;
  }

  .scroll-hint span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.4em;
    color: var(--text-dim);
    text-transform: uppercase;
  }

  .scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    animation: scrollPulse 2.2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
  }

  /* ─── SECTION BASE ─── */
  section {
    position: relative;
    z-index: 1;
    padding: 120px 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-label {
    position: absolute;
    top: 48px;
    left: 72px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.4em;
    color: var(--gold-dim);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold-dim);
  }

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

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 4.5vw, 68px);
    font-weight: 300;
    color: var(--text);
    letter-spacing: 0.02em;
    margin-bottom: 18px;
  }

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

  .section-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto;
  }

  .section-sub {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-dim);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }

  /* ─── ABOUT STRIP ─── */
  #about {
    background: var(--dark);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    width: 100%;
    max-width: 1080px;
    align-items: center;
  }

  .about-left .eyebrow {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

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

  .about-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 3.5vw, 54px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 28px;
  }

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

  .about-left p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.9;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
  }

  /* About photo */
  .about-photo-wrapper {
    margin-bottom: 24px;
  }

  .about-photo {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border: 1px solid rgba(184, 150, 62, 0.15);
    filter: grayscale(20%);
    transition: filter .4s;
  }

  .about-photo:hover {
    filter: grayscale(0%);
  }

  .about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .about-stat {
    background: rgba(184, 150, 62, 0.03);
    border: 1px solid rgba(184, 150, 62, 0.08);
    padding: 36px 28px;
    transition: background .4s, border-color .4s;
  }

  .about-stat:hover {
    background: rgba(184, 150, 62, 0.06);
    border-color: rgba(184, 150, 62, 0.2);
  }

  .about-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
  }

  .about-stat-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-dim);
  }

  /* ─── WHO THIS IS FOR ─── */
  #who-this-is-for {
    background: var(--black);
  }

  .audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    width: 100%;
    max-width: 1080px;
  }

  .audience-card {
    background: rgba(184, 150, 62, 0.02);
    border: 1px solid rgba(184, 150, 62, 0.07);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background .4s, border-color .4s;
  }

  .audience-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width .6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .audience-card:hover {
    background: rgba(184, 150, 62, 0.05);
    border-color: rgba(184, 150, 62, 0.2);
  }

  .audience-card:hover::before {
    width: 100%;
  }

  .audience-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 20px;
  }

  .audience-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.8;
  }

  /* ─── HOW IT WORKS ─── */
  #how-it-works {
    background: var(--dark);
  }

  .how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: 100%;
    max-width: 1080px;
  }

  .how-step {
    padding: 48px 36px;
    border: 1px solid rgba(184, 150, 62, 0.07);
    background: rgba(184, 150, 62, 0.02);
    position: relative;
    transition: background .4s, border-color .4s;
  }

  .how-step:hover {
    background: rgba(184, 150, 62, 0.05);
    border-color: rgba(184, 150, 62, 0.2);
  }

  .how-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 300;
    color: rgba(184, 150, 62, 0.08);
    line-height: 1;
    margin-bottom: 24px;
  }

  .how-step-name {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
  }

  .how-step-desc {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.8;
  }

  .how-step-arrow {
    position: absolute;
    top: 50%;
    right: -1px;
    width: 12px;
    height: 12px;
    border-right: 1px solid rgba(184, 150, 62, 0.3);
    border-top: 1px solid rgba(184, 150, 62, 0.3);
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
  }

  .how-step:last-child .how-step-arrow {
    display: none;
  }

  /* ─── SERVICES PREVIEW ─── */
  #services-preview {
    background: var(--black);
  }

  .services-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: 100%;
    max-width: 1080px;
  }

  .service-preview-card {
    background: rgba(184, 150, 62, 0.02);
    border: 1px solid rgba(184, 150, 62, 0.07);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: background .4s, border-color .4s;
  }

  .service-preview-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width .6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .service-preview-card:hover {
    background: rgba(184, 150, 62, 0.05);
    border-color: rgba(184, 150, 62, 0.2);
  }

  .service-preview-card:hover::before {
    width: 100%;
  }

  .sp-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 28px;
  }

  .sp-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 300;
    color: rgba(184, 150, 62, 0.05);
    line-height: 1;
  }

  .sp-name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
  }

  .sp-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.8;
  }

  .services-cta {
    margin-top: 56px;
    display: flex;
    gap: 18px;
    align-items: center;
  }

  .services-cta-text {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    text-transform: uppercase;
  }

  /* ─── FOOTER ─── */
  footer {
    position: relative;
    z-index: 1;
    background: var(--dark2);
    border-top: 1px solid rgba(184, 150, 62, 0.08);
    padding: 28px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  footer p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    color: var(--text-dim);
    text-transform: uppercase;
  }

  footer p span {
    color: var(--gold-dim);
  }

  /* ─── ANIMATIONS ─── */
  @keyframes riseIn {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
  }

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

  /* ─── REVEAL ON SCROLL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
  }

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

  /* ─── HAMBURGER MENU ─── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 300;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    transition: transform .3s, opacity .3s, width .3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.98);
    z-index: 250;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0;
    transition: opacity .3s;
  }
  .nav-mobile-menu.open { display: flex; opacity: 1; }
  .nav-mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color .3s;
  }
  .nav-mobile-menu a:hover,
  .nav-mobile-menu a.active { color: var(--gold-light); }
  .nav-mobile-menu .nav-mobile-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 1px solid rgba(184,150,62,0.4);
    color: var(--gold);
    margin-top: 8px;
  }

  /* ─── ULTRAWIDE (>=1800px) ─── */
  @media (min-width: 1800px) {
    nav { padding: 32px 120px; }
    .hero-content { padding: 0 180px; padding-top: 120px; padding-bottom: 180px; max-width: 900px; }
    .hero-visual { right: 220px; width: 440px; height: 440px; }
    .hero-visual img { width: 260px; height: 260px; }
    .hero-side-tags { right: 120px; }
    section { padding: 140px 180px; }
    .about-grid { max-width: 1400px; gap: 120px; }
    .services-preview-grid { max-width: 1400px; }
    .audience-grid { max-width: 1400px; }
    .how-steps { max-width: 1400px; }
    footer { padding: 32px 120px; }
  }

  /* ─── LAPTOP (<=1200px) ─── */
  @media (max-width: 1200px) {
    nav { padding: 24px 48px; }
    .hero-content { padding: 0 80px; padding-top: 110px; padding-bottom: 160px; }
    .hero-visual { right: 60px; width: 300px; height: 300px; }
    .hero-visual img { width: 160px; height: 160px; }
    .hero-side-tags { right: 40px; }
    section { padding: 100px 80px; }
    .about-grid { gap: 60px; }
    footer { padding: 24px 48px; }
  }

  /* ─── TABLET (<=1000px) ─── */
  @media (max-width: 1000px) {
    nav { padding: 20px 28px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .hero-content { padding: 0 28px; padding-top: 110px; padding-bottom: 180px; max-width: 100%; }
    .hero-visual, .hero-side-tags, .hero-accent-line { display: none; }
    .hero-bottom { padding: 28px 28px; gap: 24px; flex-direction: column; align-items: flex-start; }
    .hero-btns { flex-wrap: wrap; gap: 14px; }
    .btn-gold, .btn-outline { padding: 15px 32px; }

    section { padding: 80px 28px; }
    .section-label { left: 28px; top: 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-right { grid-template-columns: 1fr 1fr; }
    .services-preview-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .how-step-arrow { display: none; }

    footer { padding: 24px 28px; flex-direction: column; gap: 8px; text-align: center; }
  }

  /* ─── MOBILE (<=600px) ─── */
  @media (max-width: 600px) {
    .hero-content { padding: 0 20px; padding-top: 100px; padding-bottom: 80px; }
    .hero-title { font-size: clamp(44px, 12vw, 72px); }
    .hero-btns { flex-direction: column; }
    .btn-gold, .btn-outline { width: 100%; text-align: center; padding: 16px 24px; }
    .hero-bottom { display: none; }
    .scroll-hint { display: none; }

    section { padding: 64px 20px; }
    .about-right { grid-template-columns: 1fr; }
    .about-stat-num { font-size: 36px; }
    .about-photo { max-width: 220px; }
    .service-preview-card { padding: 36px 24px; }
    .audience-card { padding: 36px 24px; }
    .how-step { padding: 36px 24px; }
    footer { padding: 20px; }
  }
