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

  html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
  }

  html {
    background: #1E1B18;
  }

  body {
    background: var(--ivory);
    color: var(--ink);
    font-family: 'Jost', sans-serif;
    font-weight: 200;
  }

  :root {
    --ivory:      #FAF8F5;
    --parchment:  #F3EFE8;
    --linen:      #EDE8DF;
    --stone:      #C8BFB0;
    --ash:        #9C9188;
    --umber:      #5C5248;
    --ink:        #1E1B18;
    --blush:      #DEC9BC;
    --gold:       #B8975A;
    --gold-lt:    #D4B97E;
    --gold-pale:  #F0E6D0;
  }

  html { scroll-behavior: smooth; }

  /* ─── NAV ─────────────────────────────────────── */
  nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 300;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.2rem 5vw;
    transition: background 0.6s ease, padding 0.4s ease;
  }
  nav.scrolled {
    background: rgba(250,248,245,0.96);
    backdrop-filter: blur(12px);
    padding: 1.4rem 5vw;
    border-bottom: 1px solid var(--linen);
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.6s;
  }
  nav.scrolled .nav-logo { color: var(--ink); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.4s;
  }
  nav.scrolled .nav-links a { color: var(--ash); }
  .nav-links a:hover,
  nav.scrolled .nav-links a:hover { color: var(--ink); }

  .nav-inquire {
    padding: 0.7rem 2rem !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    color: #fff !important;
    transition: all 0.4s !important;
  }
  .nav-inquire:hover {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.8) !important;
    color: #fff !important;
  }
  nav.scrolled .nav-inquire {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
  }
  nav.scrolled .nav-inquire:hover {
    background: var(--gold) !important;
    color: var(--ivory) !important;
  }

  /* ─── HERO VIDEO ──────────────────────────────── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #1E1B18;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* VIMEO EMBED — full-bleed, cropped to fill */
  .hero-vimeo-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
  }
  /* 16:9 math + 30px nudge on each axis to eliminate black bars */
  .hero-vimeo-wrap iframe,
  .hero-vimeo-wrap video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw + 60px);
    height: calc(56.25vw + 60px);
    min-height: calc(100vh + 60px);
    min-width: calc(177.78vh + 60px);
    border: none;
    pointer-events: none;
    object-fit: cover;
  }

  /* Cinematic overlay — warm dark vignette */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to top,    rgba(20,17,14,0.88) 0%,  rgba(20,17,14,0.2) 45%, transparent 70%),
      linear-gradient(to bottom, rgba(20,17,14,0.35) 0%,  transparent 20%),
      linear-gradient(to right,  rgba(20,17,14,0.3) 0%,   transparent 50%);
  }



  /* Hero content */
  .hero-content {
    position: relative;
    z-index: 10;
    padding: 0 6vw 8vh;
    width: 100%;
  }

  .hero-tag {
    display: inline-block;
    font-size: 0.55rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp 1s 0.3s ease forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(3.8rem, 7.5vw, 9rem);
    line-height: 0.93;
    color: #fff;
    max-width: 800px;
    opacity: 0;
    animation: fadeUp 1.2s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
  }
  .hero-title em {
    font-style: italic;
    color: rgba(255,255,255,0.55);
  }

  .hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeUp 1s 0.9s ease forwards;
  }

  .hero-sub {
    font-size: 1.25rem;
    font-weight: 200;
    line-height: 1.9;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
    max-width: 420px;
  }

  .hero-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
  }

  .btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    background: var(--gold);
    color: var(--ink);
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    padding: 1.2rem 3rem;
    transition: all 0.4s ease;
    white-space: nowrap;
  }
  .btn-hero:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(184,151,90,0.3);
  }

  .btn-ghost-white {
    text-decoration: none;
    font-size: 0.55rem;
    font-weight: 200;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.3s;
  }
  .btn-ghost-white::after {
    content: '';
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,0.4);
    transition: width 0.3s;
  }
  .btn-ghost-white:hover { color: rgba(255,255,255,0.9); }
  .btn-ghost-white:hover::after { width: 46px; }

  /* Scroll indicator */
  .hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
    opacity: 0;
    animation: fadeUp 1s 1.3s ease forwards;
  }
  .scroll-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    animation: scrollBounce 2s ease-in-out infinite;
  }
  .scroll-line-hero {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: grow 2s ease-in-out infinite;
  }

  /* ─── WHAT IS IT ──────────────────────────────── */
  .what {
    padding: 14vh 6vw 10vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
    align-items: center;
    border-bottom: 1px solid var(--linen);
  }

  .what-left {}

  .section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 2.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .section-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold-dark);
    flex-shrink: 0;
  }

  .what-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 4.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--ink);
  }
  .what-title em { font-style: italic; color: var(--ash); }

  .what-right {}

  .what-body {
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 2.2;
    color: var(--ash);
    letter-spacing: 0.02em;
    margin-bottom: 3rem;
  }

  .what-body strong {
    font-weight: 400;
    color: var(--umber);
  }

  .what-callout {
    border-left: 2px solid var(--gold);
    padding: 1.5rem 2rem;
    background: var(--gold-pale);
  }
  .what-callout p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--umber);
    line-height: 1.7;
  }
  .what-callout span {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1rem;
    font-style: normal;
  }

  /* ─── THE EXPERIENCE ─────────────────────────── */
  .experience {
    padding: 12vh 6vw;
    background: var(--parchment);
  }

  .exp-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: end;
    margin-bottom: 7rem;
  }

  .exp-desc {
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 2.1;
    color: var(--ash);
    letter-spacing: 0.02em;
    padding-top: 2rem;
  }

  .exp-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 4.2vw, 5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--ink);
  }
  .exp-section-title em { font-style: italic; color: var(--ash); }

  /* Two-column feature list */
  .exp-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--linen);
  }

  .exp-feat {
    background: var(--parchment);
    padding: 4rem 3.5rem;
    transition: background 0.4s;
    cursor: default;
  }
  .exp-feat:hover { background: var(--ivory); }

  .feat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--linen);
    line-height: 1;
    margin-bottom: 2rem;
    transition: color 0.4s;
  }
  .exp-feat:hover .feat-number { color: var(--blush); }

  .feat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }
  .feat-title em { font-style: italic; }

  .feat-desc {
    font-size: 0.95rem;
    font-weight: 200;
    line-height: 2;
    color: var(--ash);
    letter-spacing: 0.02em;
    max-width: 340px;
  }

  /* ─── FOR WHO ─────────────────────────────────── */
  .for-who {
    padding: 12vh 6vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--linen);
    min-height: 60vh;
    align-items: stretch;
  }

  .for-card {
    padding: 7vh 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background 0.5s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .for-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }
  .for-card:hover::after { transform: scaleX(1); }

  .for-card.wedding { background: var(--ivory); }
  .for-card.corporate { background: var(--parchment); }
  .for-card:hover.wedding { background: #fff; }
  .for-card:hover.corporate { background: var(--ivory); }

  .for-label {
    font-size: 0.54rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
  }

  .for-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 3.8vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 2rem;
  }
  .for-title em { font-style: italic; }

  .for-body {
    font-size: 1.15rem;
    font-weight: 200;
    line-height: 2.1;
    color: var(--ash);
    letter-spacing: 0.02em;
    max-width: 440px;
    margin-bottom: 3rem;
  }

  .for-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .tag {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--umber);
    border: 1px solid var(--stone);
    padding: 0.45rem 1.1rem;
  }

  /* ─── DELIVERABLES ───────────────────────────── */
  .deliverables {
    padding: 12vh 6vw;
    background: var(--ivory);
  }

  .del-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 7rem;
  }

  .del-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4vw;
    max-width: 1000px;
    margin: 0 auto;
  }

  .del-item {
    text-align: center;
    padding: 3rem 2rem;
    cursor: default;
  }

  .del-icon {
    margin: 0 auto 2rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .del-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .del-title em { font-style: italic; }

  .del-desc {
    font-size: 0.95rem;
    font-weight: 200;
    line-height: 2.1;
    color: var(--ash);
    letter-spacing: 0.04em;
  }

  .del-divider {
    width: 1px;
    background: var(--linen);
    align-self: center;
    height: 80%;
  }

  /* ─── PRICING ────────────────────────────────── */
  .pricing {
    padding: 12vh 6vw;
    background: var(--ink);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(184,151,90,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .pricing-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
  }
  .pricing-eyebrow::before,
  .pricing-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(184,151,90,0.4);
  }

  .pricing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 7rem);
    font-weight: 300;
    color: #F5F0E8;
    line-height: 1;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  .pricing-title em { font-style: italic; color: rgba(245,240,232,0.35); }

  .pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(5rem, 10vw, 12rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin: 1rem 0 0.5rem;
    position: relative;
    z-index: 1;
  }

  .pricing-starting {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(200,191,176,0.4);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
  }

  .pricing-body {
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 2.1;
    color: rgba(200,191,176,0.55);
    max-width: 520px;
    margin: 0 auto 4rem;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
  }

  .pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    padding: 1.2rem 4rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
  }
  .pricing-btn:hover {
    background: var(--gold);
    color: var(--ink);
  }

  /* ─── TESTIMONIALS ───────────────────────────── */
  .testimonials {
    padding: 12vh 6vw;
    background: var(--parchment);
  }

  .test-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
    border-bottom: 1px solid var(--linen);
    padding-bottom: 2.5rem;
  }

  .test-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
  }
  .test-section-title em { font-style: italic; color: var(--ash); }

  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .test-item {
    padding: 3rem 0;
    border-top: 1px solid var(--linen);
    cursor: default;
    transition: padding-left 0.4s ease;
  }
  .test-item:hover { padding-left: 0.8rem; }

  .test-stars {
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
  }

  .test-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: var(--umber);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .test-name {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .test-role {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: var(--stone);
    margin-top: 0.3rem;
  }

  /* ─── FINAL CTA ───────────────────────────────── */
  .final {
    padding: 18vh 6vw;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--ivory);
  }
  .final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 70% at 50% 55%, rgba(222,201,188,0.28) 0%, transparent 65%);
    pointer-events: none;
  }

  .final-eyebrow {
    font-size: 0.54rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
  }

  .final-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 7.5vw, 9.5rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--ink);
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
  }
  .final-title em { font-style: italic; color: var(--ash); }

  .final-sub {
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 2;
    color: var(--ash);
    max-width: 480px;
    margin: 0 auto 5rem;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
  }

  .final-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    background: var(--ink);
    color: var(--ivory);
    font-family: 'Jost', sans-serif;
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    padding: 1.3rem 4.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
  }
  .final-btn:hover {
    background: var(--umber);
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(30,27,24,0.15);
  }

  /* ─── FOOTER ──────────────────────────────────── */
  footer {
    padding: 5rem 6vw 3rem;
    background: var(--parchment);
    border-top: 1px solid var(--linen);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 6vw;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--linen);
    margin-bottom: 2.5rem;
  }

  .f-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 300;
    display: block;
    margin-bottom: 1.5rem;
  }

  .f-tagline {
    font-size: 0.6rem;
    font-weight: 200;
    line-height: 2;
    color: var(--ash);
    max-width: 260px;
    letter-spacing: 0.05em;
  }

  .f-col-h {
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 1.8rem;
  }

  .f-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .f-links a {
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 200;
    letter-spacing: 0.08em;
    color: var(--ash);
    transition: color 0.3s;
  }
  .f-links a:hover { color: var(--ink); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .f-copy {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--stone);
  }
  .f-social {
    display: flex;
    gap: 2.5rem;
  }
  .f-social a {
    text-decoration: none;
    font-size: 0.52rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--stone);
    transition: color 0.3s;
  }
  .f-social a:hover { color: var(--umber); }

  /* ─── ANIMATIONS ──────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes shiftGlow {
    0%   { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(3%, 2%) rotate(8deg); }
  }
  @keyframes floatUp {
    0%   { transform: translateY(100vh); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(-10vh); opacity: 0; }
  }
  @keyframes scrollBounce {
    0%,100% { transform: translateY(0); opacity: 0.4; }
    50%     { transform: translateY(6px); opacity: 0.9; }
  }
  @keyframes grow {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.up { opacity: 1; transform: none; }
  .d1 { transition-delay: 0.12s; }
  .d2 { transition-delay: 0.24s; }
  .d3 { transition-delay: 0.36s; }

  /* ─── MOBILE ──────────────────────────────────────── */
  @media (max-width: 768px) {

    /* Nav */
    nav {
      padding: 1.4rem 5vw;
    }
    .nav-links {
      display: none;
    }

    /* Hero */
    .hero-title {
      font-size: clamp(3rem, 13vw, 5rem);
      line-height: 1;
    }
    .hero-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 2rem;
    }
    .hero-sub {
      font-size: 0.95rem;
      max-width: 100%;
    }
    .hero-cta-wrap {
      align-items: flex-start;
      width: 100%;
    }
    .btn-hero {
      width: 100%;
      justify-content: center;
      font-size: 0.6rem;
    }

    /* What Is It */
    .what {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 10vh 6vw;
    }
    .what-title {
      font-size: clamp(2.4rem, 10vw, 3.5rem);
    }
    .what-body {
      font-size: 0.95rem;
    }

    /* Cinema strips */
    .cinema-strip-duo {
      grid-template-columns: 1fr !important;
      height: auto !important;
    }
    .cinema-strip-duo > div {
      height: 50vw;
      min-height: 220px;
    }

    /* Experience */
    .exp-header {
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-bottom: 4rem;
    }
    .exp-section-title {
      font-size: clamp(2.2rem, 9vw, 3.2rem);
    }
    .exp-features {
      grid-template-columns: 1fr;
    }
    .exp-feat {
      padding: 2.5rem 1.8rem;
    }
    .feat-desc {
      font-size: 0.9rem;
      max-width: 100%;
    }

    /* For Who */
    .for-who {
      grid-template-columns: 1fr;
      padding: 8vh 6vw;
    }
    .for-card {
      padding: 5vh 6vw;
    }
    .for-title {
      font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .for-body {
      font-size: 0.95rem;
      max-width: 100%;
    }

    /* Deliverables */
    .del-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .del-desc {
      font-size: 0.9rem;
    }

    /* Pricing — stack vertically */
    .pricing[id="investment"] {
      grid-template-columns: 1fr !important;
    }
    .pricing[id="investment"] > div:last-child {
      height: 60vw;
      min-height: 280px;
    }
    .pricing-title {
      font-size: clamp(2.4rem, 9vw, 3.5rem) !important;
    }
    .pricing-body {
      font-size: 0.95rem;
    }

    /* Testimonials */
    .test-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .test-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
    .test-section-title {
      font-size: clamp(2rem, 8vw, 2.8rem);
    }

    /* Experience timeline — stack to 2 cols on mobile */
    .exp-timeline {
      grid-template-columns: 1fr 1fr !important;
    }
    .exp-timeline > div:nth-child(2) {
      border-right: none !important;
    }
    .exp-timeline > div {
      border-bottom: 1px solid var(--linen);
    }

    /* Contact form */
    #contact .reveal > div[style*="grid-template-columns:1fr 1fr"] {
      grid-template-columns: 1fr !important;
    }

    /* Final CTA */
    .final-title {
      font-size: clamp(2.8rem, 11vw, 5rem);
    }
    .final-sub {
      font-size: 0.95rem;
    }
    .final-btn {
      width: 100%;
      justify-content: center;
      max-width: 340px;
    }

    /* Footer */
    .footer-top {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }

    /* Cinematic strip text */
    .cinema-strip div[style*="bottom:3rem"] {
      bottom: 1.5rem !important;
      font-size: 0.85rem !important;
    }
    .cinema-strip div[style*="bottom:5rem"] {
      bottom: 2rem !important;
    }
    .cinema-strip div[style*="clamp(2rem"] {
      font-size: clamp(1.6rem, 7vw, 2.5rem) !important;
    }
  }