/* ===================================================================
   FG AESTHETIC CENTRE — Design System
   "See Beauty Differently"
   =================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --navy:        #1B2A4A;
  --navy-deep:   #131F38;
  --navy-soft:   #2C3E60;
  --ivory:       #F6F2EC;
  --ivory-warm:  #EFE8DD;
  --white:       #FFFFFF;
  --gold:        #B0895C;
  --gold-light:  #C9A877;
  --gold-soft:   #E6D6BE;
  --charcoal:    #2A2A2A;
  --greige:      #8C8378;
  --greige-light:#B7AFA3;
  --line:        rgba(27, 42, 74, 0.12);

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Jost", "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --gutter: clamp(1.25rem, 5vw, 5rem);

  --radius: 4px;
  --shadow-soft: 0 18px 50px -20px rgba(27, 42, 74, 0.25);
  --shadow-card: 0 12px 40px -18px rgba(27, 42, 74, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; color: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; color: var(--navy); line-height: 1.08; letter-spacing: 0.005em; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p  { font-size: clamp(0.98rem, 1.1vw, 1.06rem); color: #4a4a4a; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.2rem;
}
.eyebrow--light { color: var(--gold-light); }

.serif-accent { font-family: var(--font-serif); font-style: italic; color: var(--gold); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 9rem); }
.section--ivory { background: var(--ivory); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy); color: var(--ivory); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(246, 242, 236, 0.78); }

.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section-head p { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  padding: 1.05rem 2.4rem;
  border-radius: var(--radius);
  transition: all 0.45s var(--ease);
  position: relative;
}
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--navy { background: var(--navy); color: var(--ivory); }
.btn--navy:hover { background: var(--gold); transform: translateY(-2px); }
.btn--outline { border: 1px solid currentColor; color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.btn--outline-light { border: 1px solid rgba(246,242,236,0.5); color: var(--ivory); }
.btn--outline-light:hover { background: var(--ivory); color: var(--navy); }
.btn--ghost { color: var(--navy); padding-inline: 0; }
.btn--ghost::after { content: ""; position: absolute; bottom: 0.6rem; left: 0; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0.4); transform-origin: left; transition: transform 0.45s var(--ease); }
.btn--ghost:hover::after { transform: scaleX(1); }

/* ---------- Logo / Monogram ---------- */
.logo { display: inline-flex; align-items: center; gap: 0.75rem; }
.logo__img { height: 44px; width: auto; display: block; flex: 0 0 auto; transition: filter 0.4s var(--ease); }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-family: var(--font-sans); font-size: 0.98rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
.logo__sub { font-family: var(--font-sans); font-size: 0.52rem; letter-spacing: 0.34em; text-transform: uppercase; margin-top: 3px; opacity: 0.7; }

/* ===================================================================
   NAVBAR
   =================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--gutter);
  transition: all 0.5s var(--ease);
  color: var(--navy); /* default: dark text for light hero (home) */
}
/* Pages with a dark (navy) page header behind the nav */
.nav--over-dark { color: var(--ivory); }
.nav--over-dark .logo__img { filter: brightness(0) invert(1); }
.nav.is-solid {
  background: rgba(246, 242, 236, 0.92);
  backdrop-filter: blur(14px);
  color: var(--navy);
  padding-block: 1rem;
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-solid .logo__img { filter: none; }
.nav__links { display: flex; gap: 2.2rem; align-items: center; }
.nav__links a {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 400;
  position: relative; padding-block: 4px; opacity: 0.9; transition: opacity 0.3s;
}
.nav__links a::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform 0.4s var(--ease); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta { padding: 0.7rem 1.5rem !important; font-size: 0.72rem !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 28px; z-index: 110; }
.nav__toggle span { height: 1.5px; width: 100%; background: currentColor; transition: all 0.4s var(--ease); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img, .hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__media img { animation: slowZoom 14s ease-out forwards; }
.hero__overlay { position: absolute; inset: 0; background:
  linear-gradient(100deg, var(--ivory) 0%, rgba(246,242,236,0.94) 26%, rgba(246,242,236,0.6) 46%, rgba(246,242,236,0.18) 64%, transparent 80%); }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero__inner { max-width: 620px; }
.hero h1 { color: var(--navy); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__tag { font-size: 1.05rem; letter-spacing: 0.06em; color: var(--navy-soft); margin-bottom: 2.5rem; max-width: 440px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 2.5rem; left: var(--gutter); z-index: 2; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 0.8rem; }
.hero__scroll::before { content: ""; width: 50px; height: 1px; background: var(--gold); }

@keyframes slowZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* ---------- Marquee / brand strip ---------- */
.strip { background: var(--navy); color: var(--ivory); padding-block: 1.4rem; overflow: hidden; }
.strip__track { display: flex; gap: 3.5rem; white-space: nowrap; animation: marquee 28s linear infinite; }
.strip__track span { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; letter-spacing: 0.04em; opacity: 0.92; display: inline-flex; align-items: center; gap: 3.5rem; }
.strip__track span::after { content: "✦"; color: var(--gold-light); font-style: normal; font-size: 0.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===================================================================
   FEATURE / INTRO split
   =================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.split__media--tall img { aspect-ratio: 3/4; }
.split__badge { position: absolute; bottom: -28px; left: -28px; background: var(--gold); color: var(--white); padding: 1.4rem 1.8rem; border-radius: var(--radius); box-shadow: var(--shadow-card); }
.split__badge strong { font-family: var(--font-serif); font-size: 2.2rem; display: block; line-height: 1; }
.split__badge span { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; }
.split__body h2 { margin-bottom: 1.4rem; }
.split__body p + p { margin-top: 1.1rem; }
.split__body .btn { margin-top: 2rem; }

/* ===================================================================
   TREATMENT CARDS
   =================================================================== */
.grid { display: grid; gap: 1.6rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.4rem 2rem; transition: all 0.5s var(--ease);
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: 1.3rem; margin-bottom: 1.5rem; }
.card h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
.card p { font-size: 0.95rem; }
.card__link { margin-top: 1.4rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); transition: gap 0.3s; }
.card:hover .card__link { gap: 0.9rem; color: var(--gold); }

/* Treatment list rows */
.tlist { border-top: 1px solid var(--line); }
.trow {
  display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center;
  padding: 2rem 0; border-bottom: 1px solid var(--line);
  transition: background 0.4s, padding-inline 0.4s var(--ease);
}
.trow:hover { background: var(--white); padding-inline: 1.5rem; }
.trow__num { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); }
.trow__name { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--navy); }
.trow__desc { font-size: 0.92rem; color: var(--greige); margin-top: 0.3rem; max-width: 520px; }
.trow__cta { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); white-space: nowrap; }

/* Category tabs / pills */
.pills { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.pill { padding: 0.6rem 1.4rem; border: 1px solid var(--line); border-radius: 100px; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); transition: all 0.35s; }
.pill:hover, .pill.active { background: var(--navy); color: var(--ivory); border-color: var(--navy); }

/* ===================================================================
   PROMO BANNER
   =================================================================== */
.promo {
  position: relative; border-radius: 6px; overflow: hidden;
  background: var(--navy); color: var(--ivory);
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch;
  box-shadow: var(--shadow-soft);
}
.promo__body { padding: clamp(2.5rem, 5vw, 4.5rem); }
.promo__media { position: relative; min-height: 420px; }
.promo__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo__body p { color: rgba(246, 242, 236, 0.82); }
.promo h2 { color: var(--white); margin-bottom: 1rem; }
.promo__price { display: flex; align-items: baseline; gap: 1rem; margin: 1.8rem 0; }
.promo__was { text-decoration: line-through; color: var(--greige-light); font-size: 1.1rem; }
.promo__now { font-family: var(--font-serif); font-size: clamp(2.8rem, 6vw, 4.2rem); color: var(--gold-light); line-height: 1; }
.promo__list { margin: 1.5rem 0 2rem; }
.promo__list li { padding: 0.5rem 0; padding-left: 1.6rem; position: relative; font-size: 0.95rem; color: rgba(246,242,236,0.85); }
.promo__list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-light); font-size: 0.7rem; top: 0.7rem; }

/* Image-based promo / campaign figures */
.promo-figure { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); position: relative; }
.promo-figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.promo-figure:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.promo-figure:hover img { transform: scale(1.03); }

/* Full-width storefront / image band */
.imageband { position: relative; height: clamp(320px, 48vw, 560px); overflow: hidden; }
.imageband img { width: 100%; height: 100%; object-fit: cover; }
.imageband__cap { position: absolute; inset: auto 0 0 0; padding: 2rem var(--gutter); background: linear-gradient(0deg, rgba(19,31,56,0.7), transparent); color: var(--ivory); font-family: var(--font-serif); font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-style: italic; }

/* Centered brand lockup */
.brandlockup { max-width: 260px; margin: 0 auto 2rem; }

/* ===================================================================
   TESTIMONIAL
   =================================================================== */
.testi { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.testi__media img { aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); }
.testi__quote { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-style: italic; color: var(--navy); line-height: 1.35; }
.testi__quote::before { content: "“"; font-size: 3rem; color: var(--gold); display: block; line-height: 0.6; margin-bottom: 0.5rem; }
.testi__author { margin-top: 1.8rem; }
.testi__author strong { font-family: var(--font-sans); display: block; letter-spacing: 0.04em; color: var(--navy); }
.testi__author span { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ===================================================================
   STATS / TRUST
   =================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat strong { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold-light); display: block; line-height: 1; }
.stat span { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; margin-top: 0.6rem; display: block; }

/* ===================================================================
   FORMS
   =================================================================== */
.form { display: grid; gap: 1.4rem; }
.form--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 300;
  padding: 0.95rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); color: var(--charcoal); transition: border-color 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: 0.8rem; color: var(--greige); }
.form__success { background: var(--gold-soft); color: var(--navy); padding: 1rem 1.3rem; border-radius: var(--radius); font-size: 0.9rem; display: none; }
.form__success.show { display: block; }

/* ===================================================================
   SHOP
   =================================================================== */
.product { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: all 0.5s var(--ease); }
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.product__img { aspect-ratio: 1; background: var(--ivory-warm); display: grid; place-items: center; position: relative; overflow: hidden; }
.product__img .ph { font-family: var(--font-serif); font-size: 3rem; color: var(--gold-soft); }
.product__tag { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--white); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 100px; }
.product__body { padding: 1.6rem; }
.product__cat { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.product h3 { font-size: 1.25rem; margin: 0.4rem 0 0.6rem; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; }
.product__price { font-family: var(--font-serif); font-size: 1.4rem; color: var(--navy); }
.product__add { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); border: 1px solid var(--navy); padding: 0.6rem 1rem; border-radius: var(--radius); transition: all 0.35s; }
.product__add:hover { background: var(--navy); color: var(--ivory); }

/* ===================================================================
   PAGE HEADER (interior pages)
   =================================================================== */
.pagehead { background: var(--navy); color: var(--ivory); padding: clamp(8rem, 14vw, 12rem) 0 clamp(4rem, 7vw, 6rem); text-align: center; position: relative; overflow: hidden; }
.pagehead::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(176,137,92,0.18), transparent 50%); }
.pagehead .container { position: relative; z-index: 2; }
.pagehead h1 { color: var(--white); }
.pagehead p { color: rgba(246,242,236,0.75); max-width: 560px; margin: 1.2rem auto 0; }
.breadcrumb { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--navy-deep); color: var(--ivory); padding-top: clamp(4rem, 8vw, 6rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 3rem; padding-bottom: 4rem; }
.footer__brand .logo { color: var(--ivory); margin-bottom: 1.4rem; }
.footer .logo__img { filter: brightness(0) invert(1); }
.footer__brand p { color: rgba(246,242,236,0.6); font-size: 0.92rem; max-width: 280px; }
.footer h4 { font-family: var(--font-sans); font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.4rem; font-weight: 500; }
.footer__links li { margin-bottom: 0.7rem; }
.footer__links a { font-size: 0.92rem; color: rgba(246,242,236,0.7); transition: color 0.3s; }
.footer__links a:hover { color: var(--gold-light); }
.footer__social { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.footer__social a { width: 38px; height: 38px; border: 1px solid rgba(246,242,236,0.2); border-radius: 50%; display: grid; place-items: center; transition: all 0.35s; font-size: 0.9rem; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(246,242,236,0.12); padding-block: 1.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: rgba(246,242,236,0.5); }

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 860px) {
  .nav__links { position: fixed; inset: 0; flex-direction: column; justify-content: center; background: var(--navy); color: var(--ivory); transform: translateX(100%); opacity: 0; transition: transform 0.55s var(--ease), opacity 0.45s var(--ease); gap: 2rem; }
  .nav__links.open { transform: translateX(0); opacity: 1; }
  /* Smooth the bar's color/shadow change when opening over a scrolled (solid) nav */
  .nav { transition: background 0.55s var(--ease), box-shadow 0.45s var(--ease), color 0.45s var(--ease), padding 0.5s var(--ease); }
  .nav__links a { transition: opacity 0.3s, color 0.3s; }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  /* Open menu = cohesive navy bar, even when scrolled (.is-solid).
     Without this the bar stays ivory and the X icon turns invisible. */
  .nav.is-open,
  .nav.is-open.is-solid {
    color: var(--ivory);
    background: var(--navy);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav.is-open .logo__img,
  .nav.is-open.is-solid .logo__img { filter: brightness(0) invert(1); }
  /* Full-screen menu sits below the bar's logo/toggle but above page content */
  .nav__links { z-index: 105; }

  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .split, .testi, .promo, .form--2, .stats { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .stats { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; }
  .promo__media { min-height: 300px; order: -1; }
  .hero__overlay { background: linear-gradient(180deg, rgba(246,242,236,0.92) 0%, rgba(246,242,236,0.6) 45%, rgba(19,31,56,0.4) 100%); }
  .hero__media img { object-position: 70% center; }
  .trow { grid-template-columns: auto 1fr; }
  .trow__cta { display: none; }
  .split__badge { left: 1rem; bottom: 1rem; }
}
@media (max-width: 520px) {
  .grid--4 { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
