/* ============================================================
   BRIGHTHOLD REALTY — VMN0
   Editorial U.S. Advisory Visual System
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Core palette */
  --navy:       #0A1B33;
  --ivory:      #F7F5F1;
  --ivory-2:    #EDE9E2;
  --gold:       #C89A4B;
  --gold-light: #D4AA64;
  --sage:       #A8B29A;
  --sage-light: #C4CEBC;
  --sky:        #8FB6D9;
  --sky-light:  #BDD4EA;

  /* Text */
  --text-primary:  #1A1A1A;
  --text-muted:    #6B6B6B;
  --text-light:    #9A9A9A;
  --text-cream:    #F7F5F1;
  --text-cream-70: rgba(247,245,241,.70);

  /* Borders */
  --border:       rgba(10,27,51,.12);
  --border-dark:  rgba(247,245,241,.18);
  --border-gold:  rgba(200,154,75,.35);

  /* Spacing */
  --section-v:   96px;
  --section-v-sm:56px;
  --container:   1240px;
  --nav-h:       72px;

  /* Type scale */
  --t-xs:   .75rem;
  --t-sm:   .875rem;
  --t-base: 1rem;
  --t-lg:   1.125rem;
  --t-xl:   1.375rem;
  --t-2xl:  1.75rem;
  --t-3xl:  2.25rem;
  --t-4xl:  clamp(2.5rem, 5vw, 3.75rem);
  --t-hero: clamp(2.75rem, 6vw, 4.5rem);

  /* Motion */
  --ease: cubic-bezier(.22,1,.36,1);
  --dur:  .25s;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

.display { font-family: 'Cormorant Garamond', Georgia, serif; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1 { font-size: var(--t-4xl); }
h2 { font-size: var(--t-3xl); }
h3 { font-size: var(--t-xl); font-weight: 500; }
p  { line-height: 1.7; color: var(--text-muted); }

.label {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.eyebrow {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

em { font-style: italic; }

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── SKIP LINK ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  padding: 8px 16px;
  background: var(--navy);
  color: var(--text-cream);
  font-size: var(--t-sm);
  border-radius: 4px;
  z-index: 9999;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 8px; }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--navy);
  z-index: 100;
  display: flex;
  align-items: center;
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; margin-right: auto; }
.nav__logo img { height: 40px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--text-cream-70);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link--active { color: var(--text-cream); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: .05em;
  border-radius: 2px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--gold); color: var(--navy); }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-cream);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--navy);
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 32px;
  z-index: 99;
  overflow-y: auto;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile .nav__link {
  font-size: var(--t-lg);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  width: 100%;
}

/* ── SECTION BASE ───────────────────────────────────────── */
.section { padding: var(--section-v) 0; }
.section--sm { padding: var(--section-v-sm) 0; }
.bg-ivory   { background: var(--ivory); }
.bg-ivory-2 { background: var(--ivory-2); }
.bg-navy    { background: var(--navy); }
.bg-sage    { background: #EEF1EC; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: .05em;
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.btn-primary   { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }
.btn-navy      { background: var(--navy); color: var(--ivory); }
.btn-navy:hover { background: #122244; }
.btn-outline   { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--ivory); }
.btn-outline-light { background: transparent; color: var(--ivory); border: 1.5px solid rgba(247,245,241,.4); }
.btn-outline-light:hover { border-color: var(--ivory); }
.btn-ghost { background: transparent; color: var(--gold); padding: 0; font-size: var(--t-sm); font-weight: 500; }
.btn-ghost svg { transition: transform var(--dur) var(--ease); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ── DIVIDER ────────────────────────────────────────────── */
.rule { display: block; width: 32px; height: 1px; background: var(--gold); margin: 20px 0; }
.rule--center { margin: 20px auto; }

/* ── REVEAL ANIMATION ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  background: var(--navy);
  overflow: hidden;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  position: relative;
  z-index: 2;
}
.hero__right {
  position: relative;
  overflow: hidden;
}
.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 40%);
}
.hero__label { margin-bottom: 20px; }
.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--t-hero);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text-cream);
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.hero__title em { color: var(--gold); font-style: italic; display: block; }
.hero__sub {
  font-size: var(--t-lg);
  line-height: 1.6;
  color: var(--text-cream-70);
  max-width: 460px;
  margin-bottom: 44px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-cream-70);
}
.hero__scroll-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ══════════════════════════════════════════════════════════
   PATH CARDS (Choose Your Path)
   ══════════════════════════════════════════════════════════ */
.paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 48px;
}
.path-card {
  background: var(--ivory);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background var(--dur) var(--ease);
  text-decoration: none;
  color: inherit;
}
.path-card:hover { background: #F0EDE5; }
.path-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.path-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.path-card h3 {
  font-size: var(--t-xl);
  margin-bottom: 12px;
  color: var(--navy);
}
.path-card p {
  font-size: var(--t-sm);
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 24px;
}
.path-card__cta {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.path-card__cta svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--dur) var(--ease); }
.path-card:hover .path-card__cta svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════
   MARKETS SECTION (homepage preview)
   ══════════════════════════════════════════════════════════ */
.markets-preview { background: #EEF1EC; }
.markets-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.markets-preview__header .label { margin-bottom: 8px; }
.markets-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.market-card {
  background: var(--ivory);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.market-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,27,51,.10); }
.market-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.market-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.market-card:hover .market-card__img img { transform: scale(1.04); }
.market-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.market-card__body { padding: 24px 22px 22px; }
.market-card__city {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--t-2xl);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.1;
}
.market-card p {
  font-size: var(--t-sm);
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.55;
}
.market-card__link {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 5px;
}
.market-card__link svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--dur) var(--ease); }
.market-card:hover .market-card__link svg { transform: translateX(3px); }

.markets-preview__more {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--ivory);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.markets-preview__more-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-chip {
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-muted);
  background: var(--ivory-2);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════════
   KNOWLEDGE CENTER (homepage preview)
   ══════════════════════════════════════════════════════════ */
.knowledge-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.knowledge-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 280px;
  gap: 20px;
  align-items: stretch;
}
.k-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.k-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(10,27,51,.07); }
.k-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ivory-2);
}
.k-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.k-card:hover .k-card__img img { transform: scale(1.04); }
.k-card__body { padding: 22px 22px 20px; flex: 1; display: flex; flex-direction: column; }
.k-card__cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.k-card h3 {
  font-size: var(--t-lg);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
}
.k-card__read {
  font-size: var(--t-sm);
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
}
.k-card__read svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--dur) var(--ease); }
.k-card:hover .k-card__read svg { transform: translateX(3px); }

/* CTA card (last in knowledge grid) */
.k-card--cta {
  background: var(--navy);
  border-color: var(--navy);
  justify-content: center;
  padding: 32px 28px;
  text-align: center;
}
.k-card--cta:hover { border-color: var(--gold); }
.k-card--cta svg.k-icon { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto 20px; }
.k-card--cta h3 { color: var(--text-cream); font-size: var(--t-xl); margin-bottom: 12px; }
.k-card--cta p { color: var(--text-cream-70); font-size: var(--t-sm); margin-bottom: 24px; }

/* ══════════════════════════════════════════════════════════
   WHY BRIGHTHOLD (trust section)
   ══════════════════════════════════════════════════════════ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.why__pillar { display: flex; flex-direction: column; gap: 8px; }
.why__pillar-icon {
  width: 36px; height: 36px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: 4px;
}
.why__pillar h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--t-lg);
  font-weight: 500;
  color: var(--navy);
}
.why__pillar p { font-size: var(--t-sm); color: var(--text-muted); }
.why__visual { position: relative; }
.why__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.why__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 50%;
  height: 50%;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
  opacity: .35;
}

/* ══════════════════════════════════════════════════════════
   FINAL CTA BAND
   ══════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--text-cream); font-size: var(--t-3xl); margin-bottom: 16px; }
.cta-band p { color: var(--text-cream-70); max-width: 480px; margin: 0 auto 36px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: #071528;
  padding: 64px 0 36px;
  color: var(--text-cream-70);
}
.footer__grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p {
  font-size: var(--t-sm);
  color: var(--text-cream-70);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 200px;
}
.footer__logo { height: 36px; width: auto; margin-bottom: 4px; }
.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-cream);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: var(--t-sm);
  color: var(--text-cream-70);
  transition: color var(--dur) var(--ease);
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: var(--t-xs); color: rgba(247,245,241,.4); }
.footer__bottom a { color: rgba(247,245,241,.4); transition: color var(--dur) var(--ease); }
.footer__bottom a:hover { color: var(--gold); }
.footer__legal { display: flex; gap: 20px; }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: var(--nav-h);
  min-height: 340px;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.page-hero__inner { position: relative; z-index: 2; padding: 56px 0; }
.page-hero .label { color: var(--gold); margin-bottom: 12px; }
.page-hero h1 { color: var(--text-cream); }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.breadcrumb a { font-size: var(--t-sm); color: var(--text-cream-70); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { width: 12px; height: 1px; background: var(--border-dark); }
.breadcrumb__current { font-size: var(--t-sm); color: var(--text-cream-70); }

/* ══════════════════════════════════════════════════════════
   MARKETS PAGE
   ══════════════════════════════════════════════════════════ */
.markets-hub__header { margin-bottom: 64px; max-width: 600px; }
.markets-hub__header h2 { margin-bottom: 16px; }
.markets-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 64px;
}
.market-feature {
  background: var(--ivory);
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 320px;
  text-decoration: none;
  color: inherit;
  transition: background var(--dur) var(--ease);
}
.market-feature:hover { background: #F2EFE8; }
.market-feature__img { overflow: hidden; }
.market-feature__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.market-feature:hover .market-feature__img img { transform: scale(1.03); }
.market-feature__body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.market-feature__tag {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  width: fit-content;
}
.tag--primary   { background: rgba(10,27,51,.08); color: var(--navy); }
.tag--secondary { background: rgba(168,178,154,.2); color: #5A6B4F; }
.tag--authority { background: rgba(143,182,217,.15); color: #2E6A9E; }
.market-feature__city {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--t-3xl);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.market-feature__state {
  font-size: var(--t-sm);
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.market-feature p { font-size: var(--t-base); color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.market-feature__link {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}
.market-feature__link svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--dur) var(--ease); }
.market-feature:hover .market-feature__link svg { transform: translateX(3px); }

/* Authority markets grid */
.authority-markets { margin-top: 16px; }
.authority-markets h3 { font-size: var(--t-xl); color: var(--navy); margin-bottom: 28px; }
.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.authority-city {
  background: var(--ivory);
  padding: 24px 22px;
  text-decoration: none;
  color: inherit;
  transition: background var(--dur) var(--ease);
}
.authority-city:hover { background: var(--ivory-2); }
.authority-city__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--t-xl);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.authority-city__state { font-size: var(--t-xs); color: var(--text-light); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.authority-city p { font-size: var(--t-sm); color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════
   KNOWLEDGE CENTER PAGE
   ══════════════════════════════════════════════════════════ */
.kc-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.kc-cat {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--ivory);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.kc-cat:hover, .kc-cat.is-active {
  background: var(--navy);
  color: var(--text-cream);
  border-color: var(--navy);
}
.kc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.kc-article {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.kc-article:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(10,27,51,.07); }
.kc-article__img { aspect-ratio: 16/9; overflow: hidden; background: var(--ivory-2); }
.kc-article__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.kc-article:hover .kc-article__img img { transform: scale(1.04); }
.kc-article__body { padding: 24px 24px 22px; flex: 1; display: flex; flex-direction: column; }
.kc-article__cat { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.kc-article h3 { font-size: var(--t-xl); color: var(--navy); line-height: 1.25; margin-bottom: 10px; }
.kc-article p { font-size: var(--t-sm); color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.kc-article__read { font-size: var(--t-sm); color: var(--gold); font-weight: 500; display: flex; align-items: center; gap: 5px; margin-top: auto; }
.kc-article__read svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--dur) var(--ease); }
.kc-article:hover .kc-article__read svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════ */
.about-why {
  background: var(--navy);
  padding: var(--section-v) 0;
}
.about-why h2 { color: var(--text-cream); margin-bottom: 24px; }
.about-why p { color: var(--text-cream-70); max-width: 640px; }
.about-why .rule { background: var(--gold); }

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.team-card {
  background: var(--ivory);
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 400px;
}
.team-card__img { overflow: hidden; }
.team-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-card__body { padding: 44px 48px; min-width: 0; overflow-wrap: break-word; }
.team-card__role {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-card h3 {
  font-size: var(--t-2xl);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.15;
}
.team-card p { font-size: var(--t-base); margin-bottom: 16px; }
.team-card p:last-of-type { margin-bottom: 28px; }

.how-we-work { background: var(--ivory-2); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 48px;
}
.how-step {
  background: var(--ivory);
  padding: 36px 32px;
}
.how-step__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  margin-bottom: 16px;
}
.how-step h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: var(--t-xl);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
.how-step p { font-size: var(--t-sm); }

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: start;
}
.contact-intro h2 { margin-bottom: 20px; }
.contact-intro p { max-width: 420px; margin-bottom: 36px; }
.contact-offices { display: flex; flex-direction: column; gap: 24px; margin-top: 48px; }
.contact-office {
  padding: 24px 28px;
  background: var(--ivory-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 3px 3px 0;
}
.contact-office h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: var(--t-xl); color: var(--navy); margin-bottom: 8px; }
.contact-office p { font-size: var(--t-sm); line-height: 1.55; }

.contact-form-wrap {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 44px 40px;
}
.contact-form-wrap h3 { font-size: var(--t-2xl); color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap .sub { font-size: var(--t-sm); color: var(--text-muted); margin-bottom: 32px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: var(--t-sm); font-weight: 500; color: var(--text-primary); margin-bottom: 7px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--ivory);
  font-size: var(--t-base);
  font-family: inherit;
  color: var(--text-primary);
  transition: border-color var(--dur) var(--ease);
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; margin-top: 8px; justify-content: center; font-size: var(--t-base); }

/* ══════════════════════════════════════════════════════════
   ARTICLE / KNOWLEDGE DETAIL
   ══════════════════════════════════════════════════════════ */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.article-body h2 { font-size: var(--t-2xl); color: var(--navy); margin: 40px 0 16px; }
.article-body h3 { font-size: var(--t-xl); color: var(--navy); margin: 28px 0 12px; }
.article-body p { margin-bottom: 20px; font-size: var(--t-lg); line-height: 1.72; }
.article-body ul { margin: 16px 0 20px 20px; }
.article-body ul li { font-size: var(--t-base); color: var(--text-muted); margin-bottom: 8px; list-style: disc; }
.article-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); }
.sidebar-cta {
  background: var(--navy);
  border-radius: 3px;
  padding: 32px 28px;
  margin-bottom: 24px;
}
.sidebar-cta h4 { color: var(--text-cream); font-family: 'Cormorant Garamond', Georgia, serif; font-size: var(--t-xl); margin-bottom: 12px; }
.sidebar-cta p { font-size: var(--t-sm); color: var(--text-cream-70); margin-bottom: 20px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__right { display: none; }
  .hero__left { padding: 80px 48px; }
  .knowledge-preview__grid { grid-template-columns: 1fr 1fr; }
  .k-card--cta { grid-column: 1 / -1; flex-direction: row; text-align: left; align-items: center; gap: 24px; padding: 28px 32px; }
  .k-card--cta svg.k-icon { margin: 0; flex-shrink: 0; }
  .markets-preview__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .markets-full-grid { grid-template-columns: 1fr; }
  .market-feature { grid-template-columns: 280px 1fr; }
}

@media (max-width: 860px) {
  :root { --section-v: 64px; }
  .container { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .paths__grid { grid-template-columns: 1fr; }
  .markets-preview__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .why__visual { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .team-card__img { aspect-ratio: 4/3; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-sidebar { display: none; }
  .authority-grid { grid-template-columns: 1fr 1fr; }
  .kc-grid { grid-template-columns: 1fr 1fr; }
  .markets-preview__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .knowledge-preview__header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 580px) {
  :root { --nav-h: 60px; }
  .hero__left { padding: 56px 24px; }
  .hero__title { font-size: clamp(2rem, 10vw, 2.75rem); }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .paths__grid, .kc-grid, .how-steps, .authority-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .market-feature { grid-template-columns: 1fr; }
  .market-feature__img { aspect-ratio: 16/9; }
  .why__pillars { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════
   LAUNCH STANDARD — WhatsApp, mobile bar, trust sections, form
   ════════════════════════════════════════════════════════════ */

/* ── Floating WhatsApp button ─────────────────────────────── */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px 13px 16px;
  background: #1FA855;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(10,27,51,.28);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(10,27,51,.34); color:#fff; }
.wa-float svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.wa-float__label { white-space: nowrap; }

/* ── Mobile sticky action bar (WhatsApp + Call) ───────────── */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 210;
    background: var(--navy);
    border-top: 1px solid var(--border-dark);
    box-shadow: 0 -4px 24px rgba(10,27,51,.28);
  }
  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 8px;
    color: var(--text-cream);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .02em;
  }
  .mobile-bar a:first-child { border-right: 1px solid var(--border-dark); }
  .mobile-bar a.is-wa { color: #5FE08C; }
  .mobile-bar svg { width: 19px; height: 19px; flex-shrink: 0; }
  .mobile-bar .is-wa svg { fill: #5FE08C; }
  .mobile-bar .is-call svg { stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  /* keep floating WA above the bar on mobile */
  .wa-float { bottom: 74px; right: 16px; padding: 11px 16px 11px 13px; font-size: .82rem; }
  /* clearance so footer/content isn't hidden behind the bar */
  body { padding-bottom: 54px; }
}

/* ── Form success / error states ──────────────────────────── */
.form-status { display: none; margin-top: 18px; padding: 18px 20px; border-radius: 4px; font-size: var(--t-sm); line-height: 1.6; }
.form-status.is-visible { display: block; }
.form-status--ok { background: rgba(31,168,85,.10); border: 1px solid rgba(31,168,85,.35); color: #1A6B38; }
.form-status--err { background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.30); color: #9B2C20; }
.contact-form.is-sending .form-submit { opacity: .6; pointer-events: none; }

/* ── WhatsApp inline CTA (hero / contact primary) ─────────── */
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 3px;
  background: #1FA855; color: #fff; font-weight: 600; font-size: var(--t-sm);
  letter-spacing: .02em; text-decoration: none; border: 1px solid #1FA855;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-wa:hover { background: #178a45; color:#fff; transform: translateY(-1px); }
.btn-wa svg { width: 18px; height: 18px; fill: #fff; }

.contact-primary {
  background: var(--navy);
  border-radius: 4px;
  padding: 32px 34px;
  margin-bottom: 28px;
}
.contact-primary h3 { color: var(--text-cream); font-family: 'Cormorant Garamond', Georgia, serif; font-size: var(--t-2xl); margin-bottom: 8px; }
.contact-primary p { color: var(--text-cream-70); font-size: var(--t-sm); margin-bottom: 20px; }
.contact-primary .meta { font-size: var(--t-xs); color: var(--text-cream-70); margin-top: 14px; margin-bottom: 0; }
.contact-secondary-label { font-size: var(--t-xs); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; display: block; }

/* ── Why We Started (origin) ──────────────────────────────── */
.why-started { background: var(--ivory-2); }
.why-started__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.why-started__photo { position: relative; }
.why-started__photo img { width: 100%; height: 100%; max-height: 540px; object-fit: cover; border-radius: 4px; display: block; }
.why-started__photo .tag { position: absolute; left: 0; bottom: -1px; background: var(--navy); color: var(--text-cream); font-size: var(--t-xs); letter-spacing: .12em; text-transform: uppercase; padding: 10px 18px; }
.why-started__body p { margin-bottom: 18px; color: var(--text-muted); }
.why-started__body p.lead { font-size: var(--t-lg); color: var(--text-primary); }
.why-started__sig { margin-top: 8px; font-size: var(--t-sm); font-weight: 600; color: var(--gold); }

/* ── Our Commitment ───────────────────────────────────────── */
.commitment__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 48px; margin-top: 8px; }
.commitment__item { padding-left: 20px; border-left: 2px solid var(--border-gold); }
.commitment__item h4 { font-family: 'Inter', sans-serif; font-size: var(--t-base); color: var(--navy); margin-bottom: 6px; }
.commitment__item p { font-size: var(--t-sm); color: var(--text-muted); margin: 0; }
.commitment__intro { font-style: italic; color: var(--text-muted); font-size: var(--t-lg); max-width: 560px; margin-top: 10px; }

/* ── What You Can Expect + trust strip ────────────────────── */
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center;
  margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border);
}
.trust-strip__item { display: flex; align-items: center; gap: 10px; font-size: var(--t-sm); color: var(--text-muted); }
.trust-strip__item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

@media (max-width: 860px) {
  .why-started__grid { grid-template-columns: 1fr; gap: 32px; }
  .why-started__photo img { max-height: 420px; }
  .commitment__grid { grid-template-columns: 1fr; gap: 22px; }
}

.how-steps--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width:980px){ .how-steps--three { grid-template-columns: 1fr 1fr; } }

/* ── Header language switcher (EN | ES) ───────────────────── */
.nav__lang { display: flex; align-items: center; gap: 7px; margin-left: 10px; }
.nav__lang-opt { font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--text-cream-70); text-decoration: none; transition: color .2s ease; }
.nav__lang-opt:hover { color: var(--text-cream); }
.nav__lang-opt.is-active { color: var(--gold); }
.nav__lang-sep { color: rgba(247,245,241,.30); font-size: .78rem; }
.nav__lang--mobile { margin: 20px 0 0; gap: 16px; }
.nav__lang--mobile .nav__lang-opt { font-size: 1.05rem; }
@media (max-width: 1024px) { .nav__lang:not(.nav__lang--mobile) { display: none; } }

/* ── Logo size optimization (+~25%) ───────────────────────── */
.nav__logo img { height: 50px; width: auto; }
@media (max-width: 580px) { .nav__logo img { height: 42px; } }

/* ── Cookie banner ────────────────────────────────────────── */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 240; background: var(--navy); color: var(--text-cream); border: 1px solid var(--border-dark); border-radius: 6px; box-shadow: 0 12px 40px rgba(10,27,51,.34); padding: 20px 22px; display: none; }
.cookie-banner.is-visible { display: block; }
.cookie-banner__inner { max-width: var(--mw); margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-banner__text { flex: 1 1 360px; font-size: .85rem; line-height: 1.6; color: var(--text-cream-70); }
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .02em; padding: 10px 18px; border-radius: 3px; cursor: pointer; border: 1px solid transparent; text-decoration: none; display: inline-flex; align-items: center; }
.cookie-btn--accept { background: var(--gold); color: var(--navy); }
.cookie-btn--reject { background: transparent; color: var(--text-cream); border-color: rgba(247,245,241,.30); }
.cookie-btn--prefs { background: transparent; color: var(--text-cream-70); border-color: transparent; }
.cookie-btn--prefs:hover { color: var(--text-cream); }
@media (max-width: 760px) { .cookie-banner { bottom: 64px; } .cookie-banner__actions { width: 100%; } .cookie-btn { flex: 1; justify-content: center; } }

/* ── Item 4: consistent thumbnail cropping ────────────────── */
.kc-article__img img, .k-card__img img, .market-card__img img, .market-feature__img img { object-position: center; }

/* ── Item 6: About portraits — show more shoulders/torso ──── */
.team-card__img { aspect-ratio: 4/5; }
.team-card__img img { object-position: center 22%; }
@media (max-width: 1072px) { .team-card__img { aspect-ratio: 4/3; } }

/* ── Legal-template footer social icon (constrain oversized SVG) ── */
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social-link { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border: 1px solid var(--border-dark); border-radius: 50%; transition: border-color .2s ease, background .2s ease; }
.footer__social-link:hover { border-color: var(--gold); }
.footer__social-link svg { width: 18px; height: 18px; fill: var(--text-cream-70); }
.footer__social-link:hover svg { fill: var(--gold); }

/* ════════════════════════════════════════════════════════════
   WHATSAPP GUIDED CONVERSATION MODAL
   ════════════════════════════════════════════════════════════ */
.wa-modal-overlay{position:fixed;inset:0;z-index:300;background:rgba(10,27,51,.62);backdrop-filter:blur(4px);display:none;align-items:flex-end;justify-content:center;}
.wa-modal-overlay.is-open{display:flex;animation:waFade .25s ease;}
@media(min-width:760px){.wa-modal-overlay{align-items:center;}}
@keyframes waFade{from{opacity:0}to{opacity:1}}
.wa-modal{background:var(--ivory,#F7F5F1);width:100%;max-width:520px;max-height:92vh;display:flex;flex-direction:column;border-radius:14px 14px 0 0;overflow:hidden;box-shadow:0 -10px 50px rgba(10,27,51,.4);animation:waUp .3s cubic-bezier(.16,1,.3,1);}
@media(min-width:760px){.wa-modal{border-radius:12px;animation:waPop .3s cubic-bezier(.16,1,.3,1);}}
@keyframes waUp{from{transform:translateY(40px)}to{transform:translateY(0)}}
@keyframes waPop{from{transform:scale(.96);opacity:.6}to{transform:scale(1);opacity:1}}
.wa-modal__head{background:var(--navy,#0A1B33);color:var(--text-cream,#F7F5F1);padding:18px 22px;display:flex;align-items:center;gap:12px;flex-shrink:0;}
.wa-modal__avatar{width:38px;height:38px;border-radius:50%;background:#1FA855;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.wa-modal__avatar svg{width:22px;height:22px;fill:#fff;}
.wa-modal__id{flex:1;min-width:0;}
.wa-modal__id b{font-family:'Inter',sans-serif;font-size:.92rem;font-weight:600;display:block;line-height:1.2;}
.wa-modal__id span{font-size:.72rem;color:var(--text-cream-70,rgba(247,245,241,.7));}
.wa-modal__close{background:none;border:none;color:var(--text-cream-70,rgba(247,245,241,.7));font-size:1.5rem;line-height:1;cursor:pointer;padding:4px 6px;}
.wa-modal__close:hover{color:#fff;}
.wa-modal__progress{height:3px;background:rgba(247,245,241,.15);flex-shrink:0;}
.wa-modal__progress-bar{height:100%;background:var(--gold,#C89A4B);transition:width .3s ease;width:14%;}
.wa-modal__body{padding:26px 24px;overflow-y:auto;flex:1;}
.wa-step{display:none;animation:waStep .28s ease;}
.wa-step.is-active{display:block;}
@keyframes waStep{from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:translateX(0)}}
.wa-step__kicker{font-size:.7rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:var(--gold,#C89A4B);margin-bottom:8px;}
.wa-step__q{font-family:'Cormorant Garamond',Georgia,serif;font-size:1.5rem;line-height:1.25;color:var(--navy,#0A1B33);margin-bottom:18px;}
.wa-opt{display:flex;align-items:center;gap:12px;width:100%;text-align:left;padding:14px 16px;margin-bottom:10px;background:#fff;border:1px solid var(--border,#E3DED4);border-radius:8px;font-family:'Inter',sans-serif;font-size:.92rem;color:var(--text-primary,#1a1a1a);cursor:pointer;transition:border-color .18s,background .18s;}
.wa-opt:hover{border-color:var(--gold,#C89A4B);}
.wa-opt__dot{width:18px;height:18px;border-radius:50%;border:2px solid var(--border,#cfc8ba);flex-shrink:0;transition:border-color .18s;}
.wa-opt.is-sel{border-color:var(--gold,#C89A4B);background:rgba(200,154,75,.07);}
.wa-opt.is-sel .wa-opt__dot{border-color:var(--gold,#C89A4B);background:var(--gold,#C89A4B);box-shadow:inset 0 0 0 3px #fff;}
.wa-field{margin-bottom:14px;}
.wa-field label{display:block;font-size:.78rem;font-weight:600;letter-spacing:.02em;color:var(--text-muted,#555);margin-bottom:6px;}
.wa-input,.wa-textarea{width:100%;padding:12px 14px;border:1px solid var(--border,#E3DED4);border-radius:8px;font-family:'Inter',sans-serif;font-size:.92rem;color:var(--text-primary,#1a1a1a);background:#fff;}
.wa-input:focus,.wa-textarea:focus{outline:none;border-color:var(--gold,#C89A4B);}
.wa-textarea{resize:vertical;min-height:90px;}
.wa-cond{margin-top:6px;}
.wa-consent{display:flex;gap:11px;align-items:flex-start;margin-top:8px;font-size:.82rem;color:var(--text-muted,#555);line-height:1.5;}
.wa-consent input{margin-top:3px;width:17px;height:17px;flex-shrink:0;accent-color:var(--gold,#C89A4B);}
.wa-consent a{color:var(--gold,#C89A4B);text-decoration:underline;}
.wa-help{font-size:.8rem;color:var(--text-muted,#666);margin-top:10px;line-height:1.5;}
.wa-preview{background:#E7F3EA;border:1px solid #Bfe3C8;border-radius:10px;padding:16px 18px;font-family:'Inter',sans-serif;font-size:.85rem;line-height:1.55;color:#234;white-space:pre-wrap;max-height:230px;overflow-y:auto;}
.wa-modal__foot{padding:16px 24px;border-top:1px solid var(--border,#E3DED4);display:flex;gap:12px;align-items:center;flex-shrink:0;background:var(--ivory,#F7F5F1);}
.wa-back{background:none;border:none;color:var(--text-muted,#666);font-family:'Inter',sans-serif;font-size:.88rem;font-weight:600;cursor:pointer;padding:10px 4px;}
.wa-back:hover{color:var(--navy,#0A1B33);}
.wa-next{margin-left:auto;display:inline-flex;align-items:center;gap:9px;padding:13px 26px;border:none;border-radius:6px;background:var(--gold,#C89A4B);color:var(--navy,#0A1B33);font-family:'Inter',sans-serif;font-size:.9rem;font-weight:600;cursor:pointer;transition:background .18s,opacity .18s;}
.wa-next:hover{background:#b6883c;}
.wa-next:disabled{opacity:.45;cursor:not-allowed;}
.wa-next--wa{background:#1FA855;color:#fff;}
.wa-next--wa:hover{background:#178a45;}
.wa-next--wa svg{width:17px;height:17px;fill:#fff;}
