/* ==========================================================================
   GAJJAN & SUCHA — Ultra-Luxury Men's Wardrobe Transformation
   Single stylesheet · Savile Row editorial · Navy & Gold
   ========================================================================== */

/* ----------------------------------------------------------------- Tokens */
:root {
  /* Palette */
  --navy:        #0D1B3E;   /* primary background        */
  --navy-mid:    #1A2B52;   /* cards / section panels    */
  --navy-deep:   #0A1228;   /* footer / deep sections    */
  --gold:        #B8966E;   /* primary accent            */
  --gold-bright: #D4AF7A;   /* hover / highlight         */
  --gold-soft:   rgba(184, 150, 110, 0.22);
  --ivory:       #F5F0E8;   /* body text on dark         */
  --ivory-dim:   rgba(245, 240, 232, 0.66);
  --ivory-faint: rgba(245, 240, 232, 0.40);

  /* Type */
  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body:    'Lato', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --label:   'Montserrat', system-ui, sans-serif;

  /* Fluid type scale */
  --fs-hero:   clamp(3.1rem, 9vw, 7.5rem);
  --fs-h1:     clamp(2.6rem, 6vw, 5rem);
  --fs-h2:     clamp(2rem, 4.2vw, 3.4rem);
  --fs-h3:     clamp(1.5rem, 2.6vw, 2.1rem);
  --fs-quote:  clamp(1.8rem, 4vw, 3.2rem);
  --fs-body:   clamp(1rem, 1.05vw, 1.15rem);
  --fs-label:  0.72rem;

  /* Rhythm */
  --section-y: clamp(5rem, 11vw, 10rem);
  --gutter:    clamp(1.5rem, 5vw, 4rem);
  --maxw:      1280px;
  --maxw-text: 70ch;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 220ms;
  --t-med:  420ms;

  --nav-h: 92px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.75;
  font-weight: 300;
  color: var(--ivory);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--navy); }

/* Accessible focus — gold ring everywhere */
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ------------------------------------------------------------ Typography */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.06; letter-spacing: 0.01em; }

.display-xl { font-size: var(--fs-hero); font-weight: 500; line-height: 0.98; letter-spacing: 0.005em; }
.display-1  { font-size: var(--fs-h1); }
.display-2  { font-size: var(--fs-h2); }
.display-3  { font-size: var(--fs-h3); }

.gold      { color: var(--gold); }
.gold-grad {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 55%, #9A7B53 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--label);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 26px; height: 1px; margin-right: 14px; margin-bottom: 5px;
  background: var(--gold); vertical-align: middle; opacity: 0.7;
}
.eyebrow.center::after {
  content: ""; display: inline-block;
  width: 26px; height: 1px; margin-left: 14px; margin-bottom: 5px;
  background: var(--gold); vertical-align: middle; opacity: 0.7;
}

p { max-width: var(--maxw-text); }
.lede { font-size: clamp(1.15rem, 1.6vw, 1.45rem); color: var(--ivory); line-height: 1.7; font-weight: 300; }
.muted { color: var(--ivory-dim); }

/* ------------------------------------------------------------ Structure */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 920px; }
.section { padding-block: var(--section-y); position: relative; }
.section--mid  { background: var(--navy-mid); }
.section--deep { background: var(--navy-deep); }
.center { text-align: center; }
.stack > * + * { margin-top: 1.25rem; }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 1.1rem; }

/* ---------------------------------------------- Signature crest divider */
.crest-divider {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  width: 100%; max-width: 760px; margin-inline: auto;
}
.crest-divider::before, .crest-divider::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-soft), var(--gold));
}
.crest-divider::after { transform: scaleX(-1); }
.crest-divider .crest-mark {
  width: 46px; flex: none;
  filter: drop-shadow(0 0 10px rgba(184, 150, 110, 0.0));
  animation: crestPulse 5.5s var(--ease) infinite;
}
@keyframes crestPulse {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(184,150,110,0.15)); opacity: 0.88; }
  50%      { filter: drop-shadow(0 0 16px rgba(212,175,122,0.5)); opacity: 1; }
}

/* ------------------------------------------------------------- Buttons */
.btn {
  --bg: var(--gold); --fg: var(--navy);
  font-family: var(--label);
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.7em;
  padding: 1.15em 2.3em;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--gold);
  border-radius: 0;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  cursor: pointer;
}
.btn:hover {
  background: var(--gold-bright); border-color: var(--gold-bright);
  box-shadow: 0 0 0 1px var(--gold-bright), 0 14px 40px -12px rgba(184,150,110,0.6);
  transform: translateY(-2px);
}
.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover {
  background: transparent; color: var(--gold-bright);
  box-shadow: inset 0 0 0 1px var(--gold-bright), 0 0 30px -8px rgba(212,175,122,0.5);
}
.btn--block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform var(--t-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.text-link {
  font-family: var(--label); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.6em;
  padding-bottom: 4px; position: relative;
}
.text-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.text-link:hover { color: var(--gold-bright); }
.text-link:hover::after { transform: scaleX(1); }

.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-row.center { justify-content: center; }

/* -------------------------------------------------------------- Navbar */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              height var(--t-med) var(--ease);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.nav.scrolled {
  background: rgba(10, 18, 40, 0.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--gold-soft);
  height: 74px;
}
.nav__brand { display: flex; align-items: center; gap: 0.85rem; }
.nav__brand .crest-mark { width: 34px; transition: width var(--t-med) var(--ease); }
.nav__brand .wordmark {
  font-family: var(--display); font-size: 1.45rem; font-weight: 600;
  letter-spacing: 0.12em; color: var(--ivory); line-height: 1;
}
.nav__brand .wordmark span { color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2.1rem); }
.nav__links a {
  font-family: var(--label); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory-dim);
  position: relative; padding-block: 6px; transition: color var(--t-fast) var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform var(--t-fast) var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--gold); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { margin-left: 0.6rem; padding: 0.85em 1.6em; }

.nav__toggle {
  display: none; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: flex-end; gap: 6px;
}
.nav__toggle span { display: block; width: 26px; height: 1.5px; background: var(--gold); transition: transform var(--t-fast) var(--ease), opacity var(--t-fast); }

/* Mobile overlay */
.nav__overlay {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(10, 18, 40, 0.98);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.8rem;
  opacity: 0; visibility: hidden; transition: opacity var(--t-med) var(--ease), visibility var(--t-med);
}
.nav__overlay.open { opacity: 1; visibility: visible; }
.nav__overlay a {
  font-family: var(--display); font-size: clamp(1.8rem, 6vw, 2.6rem); color: var(--ivory);
  letter-spacing: 0.04em; transition: color var(--t-fast) var(--ease);
}
.nav__overlay a:hover, .nav__overlay a[aria-current="page"] { color: var(--gold); }
.nav__overlay .btn { margin-top: 1rem; }
body.menu-open { overflow: hidden; }

/* ----------------------------------------------------------------- Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: calc(var(--nav-h) + 3rem) var(--gutter) 5rem;
}
.hero--page { min-height: 78vh; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(26,43,82,0.65), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
/* slow-drifting diagonal gold line texture */
.hero__lines {
  position: absolute; inset: -40%; z-index: 0; opacity: 0.18;
  background-image: repeating-linear-gradient(
    135deg, transparent 0 38px, rgba(184,150,110,0.5) 38px 39px, transparent 39px 78px);
  animation: drift 26s linear infinite;
  will-change: transform;
}
@keyframes drift { from { transform: translate(0,0); } to { transform: translate(78px, 78px); } }
.hero__vignette { position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(80% 70% at 50% 45%, transparent 40%, rgba(10,18,40,0.7) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 1000px; }
.hero__crest { width: clamp(120px, 16vw, 190px); margin: 0 auto clamp(1.5rem, 4vw, 2.5rem); }
.hero__content h1 { margin-bottom: 1.4rem; }
.hero__content .lede { margin-inline: auto; margin-bottom: 2.6rem; max-width: 56ch; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%); z-index: 2;
  font-family: var(--label); font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ivory-faint); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); animation: hintPulse 2.4s var(--ease) infinite; }
@keyframes hintPulse { 0%,100%{ opacity:.3; transform: scaleY(.6);} 50%{ opacity:1; transform: scaleY(1);} }

/* ------------------------------------------------------- Reveal & parallax */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }
[data-parallax] { will-change: transform; }

/* --------------------------------------------------------- Promise strip */
.promise {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--gold-soft); border-bottom: 1px solid var(--gold-soft);
}
.promise__col {
  padding: clamp(2rem, 4vw, 3.4rem) clamp(1.2rem, 3vw, 2.4rem); text-align: center;
  border-left: 1px solid var(--gold-soft);
}
.promise__col:first-child { border-left: none; }
.promise__col .ic { width: 38px; height: 38px; margin: 0 auto 1.2rem; color: var(--gold); }
.promise__col h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--ivory); }
.promise__col p { font-size: 0.98rem; color: var(--ivory-dim); margin-inline: auto; max-width: 30ch; }

/* ----------------------------------------------------------- Philosophy */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.pull-quote { font-family: var(--display); font-style: italic; font-size: var(--fs-quote); line-height: 1.12; color: var(--gold); }
.pull-quote small { display: block; font-style: normal; font-family: var(--label); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ivory-faint); margin-top: 1.5rem; }

/* ------------------------------------------------------------- Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.card {
  position: relative; background: var(--navy-mid);
  border: 1px solid var(--gold-soft); padding: clamp(2rem, 3vw, 2.8rem);
  display: flex; flex-direction: column;
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.card:hover {
  border-color: var(--gold); transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7), 0 0 0 1px var(--gold-soft);
}
.card .kicker { font-family: var(--label); font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.card h3 { font-size: 1.9rem; color: var(--ivory); margin-bottom: 0.6rem; }
.card .price { font-family: var(--display); font-size: 1.4rem; color: var(--gold); margin-bottom: 1.2rem; }
.card p { color: var(--ivory-dim); font-size: 0.98rem; }
.card .card-cta { margin-top: auto; padding-top: 1.6rem; }

/* ------------------------------------------------------ Package tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem); align-items: stretch; }
.tier {
  background: var(--navy-mid); border: 1px solid var(--gold-soft);
  padding: clamp(2.2rem, 3vw, 3rem) clamp(1.8rem, 2.5vw, 2.6rem);
  display: flex; flex-direction: column;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med);
}
.tier:hover { transform: translateY(-6px); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.75); border-color: var(--gold); }
.tier--featured {
  background: linear-gradient(180deg, var(--gold) 0%, #a9885f 100%);
  color: var(--navy); border-color: var(--gold-bright);
  transform: scale(1.04); z-index: 2;
  box-shadow: 0 40px 90px -30px rgba(184,150,110,0.5);
}
.tier--featured:hover { transform: scale(1.04) translateY(-6px); }
.tier__badge { font-family: var(--label); font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; align-self: flex-start; padding: 0.5em 1em; border: 1px solid currentColor; margin-bottom: 1.4rem; }
.tier--featured .tier__badge { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.tier h3 { font-size: 2rem; margin-bottom: 0.3rem; }
.tier .tier__for { font-style: italic; font-family: var(--display); font-size: 1.2rem; opacity: 0.85; margin-bottom: 1.6rem; }
.tier .tier__price { font-family: var(--display); font-size: 2.6rem; line-height: 1; margin-bottom: 0.3rem; }
.tier .tier__price small { font-family: var(--label); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; display: block; opacity: 0.7; margin-bottom: 1.6rem; }
.tier__list { margin: 1.4rem 0 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.tier__list li { display: flex; gap: 0.7rem; font-size: 0.96rem; line-height: 1.5; align-items: flex-start; }
.tier__list li svg { width: 16px; height: 16px; flex: none; margin-top: 5px; color: var(--gold); }
.tier--featured .tier__list li svg { color: var(--navy); }
.tier--featured .tier__list { border-color: rgba(13,27,62,0.2); }
.tier .btn { margin-top: auto; }
.tier--featured .btn { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.tier--featured .btn:hover { background: var(--navy-deep); color: var(--gold-bright); box-shadow: 0 14px 40px -12px rgba(0,0,0,0.6); }

/* ----------------------------------------------------- Before / After */
.beforeafter { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(1.5rem, 4vw, 3rem); }
.ba-col { text-align: center; }
.ba-col .ba-label { font-family: var(--label); font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase; margin-bottom: 1.6rem; }
.ba-col.before .ba-label { color: var(--ivory-faint); }
.ba-col.after .ba-label { color: var(--gold); }
.ba-word { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.3; }
.ba-col.before .ba-word { color: var(--ivory-faint); font-style: italic; font-weight: 400; }
.ba-col.after .ba-word { color: var(--ivory); }
.ba-col.after .ba-word strong { color: var(--gold); font-weight: 600; }
.ba-arrow { color: var(--gold); width: 54px; }
@media (max-width: 760px) { .ba-arrow { transform: rotate(90deg); } }

/* ------------------------------------------------------------ Timeline */
.timeline { position: relative; max-width: 860px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 28px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(var(--gold), var(--gold-soft)); }
.tl-step { position: relative; padding: 0 0 clamp(2.5rem,5vw,3.5rem) clamp(4.5rem, 9vw, 6rem); }
.tl-step:last-child { padding-bottom: 0; }
.tl-step__num {
  position: absolute; left: 0; top: -4px; width: 58px; height: 58px;
  display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%;
  font-family: var(--display); font-size: 1.5rem; color: var(--gold); background: var(--navy);
}
.tl-step h3 { font-size: 1.8rem; color: var(--ivory); margin-bottom: 0.5rem; }
.tl-step p { color: var(--ivory-dim); }

/* ----------------------------------------------------- Editorial rows */
.ed-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-block: clamp(2.5rem, 5vw, 4rem); }
.ed-row:nth-child(even) .ed-row__media { order: 2; }
.ed-row__media {
  aspect-ratio: 4 / 5; border: 1px solid var(--gold-soft); position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy-mid), var(--navy-deep));
  display: grid; place-items: center;
}
.ed-row__media .crest-mark { width: 90px; opacity: 0.35; }
.ed-row__media .tag { position: absolute; top: 1.2rem; left: 1.2rem; font-family: var(--label); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.ed-row h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem; }
.ed-row .num { font-family: var(--label); font-size: 0.7rem; letter-spacing: 0.3em; color: var(--gold); display: block; margin-bottom: 0.8rem; }

/* Chip grid (what's included / accessories) */
.chips { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip {
  font-family: var(--label); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory); padding: 0.7em 1.2em; border: 1px solid var(--gold-soft);
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast), background var(--t-fast);
}
.chip:hover { border-color: var(--gold); color: var(--gold-bright); }

/* Feature/category grid (collections, accessories) */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1rem, 2vw, 1.6rem); }
.feature {
  border: 1px solid var(--gold-soft); padding: clamp(1.8rem, 2.5vw, 2.4rem); background: var(--navy-mid);
  transition: border-color var(--t-med) var(--ease), transform var(--t-med), box-shadow var(--t-med);
}
.feature:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 24px 50px -28px rgba(0,0,0,0.7); }
.feature .ic { width: 34px; height: 34px; color: var(--gold); margin-bottom: 1.2rem; }
.feature h3 { font-size: 1.5rem; color: var(--ivory); margin-bottom: 0.5rem; }
.feature p { color: var(--ivory-dim); font-size: 0.95rem; }

/* ----------------------------------------------------------- Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.post {
  display: flex; flex-direction: column; background: var(--navy-mid); border: 1px solid var(--gold-soft);
  transition: border-color var(--t-med) var(--ease), transform var(--t-med), box-shadow var(--t-med);
}
.post:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7); }
.post__media { aspect-ratio: 3/2; background: linear-gradient(150deg, var(--navy), var(--navy-deep)); display: grid; place-items: center; border-bottom: 1px solid var(--gold-soft); }
.post__media .crest-mark { width: 60px; opacity: 0.3; }
.post__body { padding: clamp(1.6rem, 2.5vw, 2.2rem); display: flex; flex-direction: column; flex: 1; }
.post .kicker { font-family: var(--label); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.post h3 { font-size: 1.6rem; color: var(--ivory); margin-bottom: 0.8rem; line-height: 1.18; }
.post p { color: var(--ivory-dim); font-size: 0.95rem; margin-bottom: 1.5rem; }
.post .text-link { margin-top: auto; }

/* --------------------------------------------------------------- Quote band */
.quote-band { text-align: center; }
.quote-band blockquote { font-family: var(--display); font-style: italic; font-size: var(--fs-quote); line-height: 1.18; color: var(--ivory); max-width: 22ch; margin-inline: auto; }
.quote-band blockquote .gold { font-style: normal; }

/* ------------------------------------------------------------- Crest legend */
.legend { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
.legend__items { display: grid; gap: 1.6rem; }
.legend__item { border-left: 1px solid var(--gold); padding-left: 1.4rem; }
.legend__item h4 { font-family: var(--label); font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.legend__item p { color: var(--ivory-dim); font-size: 0.96rem; }
.legend__crest { display: grid; place-items: center; }
.legend__crest .crest-mark { width: clamp(160px, 22vw, 240px); }

/* ----------------------------------------------------------------- Form */
.form-wrap { max-width: 720px; margin-inline: auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; }
.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--label); font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ivory);
  background: var(--navy-mid); border: 1px solid var(--gold-soft); border-radius: 0;
  padding: 0.95em 1.1em; transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ivory-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 0 24px -10px rgba(212,175,122,0.6);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8966E' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1em center; padding-right: 2.6em; }
.form-note { text-align: center; margin-top: 2.5rem; color: var(--ivory-dim); font-size: 0.95rem; }
.form-success { display: none; text-align: center; padding: 1.4em; border: 1px solid var(--gold); color: var(--gold-bright); font-family: var(--label); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.5rem; }
.form-success.show { display: block; }

/* --------------------------------------------------------- Legal page */
.legal { max-width: 800px; margin-inline: auto; }
.legal h2 { font-size: 1.7rem; color: var(--gold); margin: 2.5rem 0 0.8rem; }
.legal p, .legal li { color: var(--ivory-dim); margin-bottom: 1rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; }

/* --------------------------------------------------------------- Footer */
.footer { background: var(--navy-deep); padding-block: clamp(3.5rem, 7vw, 6rem) 2.5rem; border-top: 1px solid var(--gold-soft); }
.footer__crest { width: 90px; margin: 0 auto 1.2rem; }
.footer__brand { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.footer__brand .wordmark { font-family: var(--display); font-size: 1.8rem; letter-spacing: 0.16em; color: var(--ivory); }
.footer__brand .wordmark span { color: var(--gold); }
.footer__brand p { color: var(--ivory-faint); font-size: 0.9rem; margin: 0.6rem auto 0; max-width: 40ch; }
.footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding-top: clamp(2.5rem,5vw,3.5rem); border-top: 1px solid var(--gold-soft); }
.footer__col h4 { font-family: var(--label); font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer__col p, .footer__col a { color: var(--ivory-dim); font-size: 0.95rem; display: block; margin-bottom: 0.6rem; }
.footer__col a { transition: color var(--t-fast) var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__tagline { font-family: var(--display); font-style: italic; font-size: 1.3rem; color: var(--ivory); }
.footer__bottom { text-align: center; margin-top: clamp(2.5rem,5vw,3.5rem); padding-top: 2rem; border-top: 1px solid var(--gold-soft); font-size: 0.78rem; letter-spacing: 0.08em; color: var(--ivory-faint); }

/* ============================================================ Responsive */
@media (max-width: 1024px) {
  .split, .legend, .ed-row, .ed-row:nth-child(even) .ed-row__media { grid-template-columns: 1fr; }
  .ed-row__media { order: -1 !important; aspect-ratio: 16/9; }
  .legend__crest { order: -1; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1080px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 880px) {
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tier--featured { transform: scale(1); }
  .tier--featured:hover { transform: translateY(-6px); }
  .card-grid, .blog-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 760px) {
  .promise { grid-template-columns: 1fr; }
  .promise__col { border-left: none; border-top: 1px solid var(--gold-soft); }
  .promise__col:first-child { border-top: none; }
  .beforeafter { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; text-align: center; }
  .nav__brand .wordmark { font-size: 1.2rem; }
}

/* --------------------------------------------------- Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__lines { animation: none; }
}
