/* ============================================================
   BDT STRATEGIC HOME SALES — Luxury Editorial Stylesheet v2
   Bianca Dabish Toma | Max Broock Realtors
   ============================================================ */

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

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  --cream:       #F4EFE9;
  --charcoal:    #2F2F2F;
  --taupe:       #D8CEC2;
  --warm-sand:   #EBE0D6;
  --gold:        #C2A57A;
  --espresso:    #1F1F1F;
  --muted:       #7A716B;
  --white:       #FFFFFF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:       76px;
  --max-w:       1220px;
  --pad-x:       60px;
  --pad-y:       120px;
  --gap:         56px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur:         0.3s;
  --trans:       all var(--dur) var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background-color: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; transition: color 0.2s; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography System ───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  color: var(--espresso);
}

h1 { font-size: clamp(2.8rem, 5.5vw, 5rem);    letter-spacing: -0.025em; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem);  letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem);  letter-spacing: -0.01em; }
h4 { font-size: 1.1rem; letter-spacing: -0.005em; }

p  { line-height: 1.85; max-width: 60ch; overflow-wrap: break-word; word-break: break-word; }

/* Eyebrow — the signature refined label */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.text-muted { color: var(--muted); }
.text-cream { color: var(--cream); }

/* ── Layout Utils ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  box-sizing: border-box;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}
.grid-2--center { align-items: center; }
.grid-2--4060   { grid-template-columns: 4fr 6fr; }
.grid-2--6040   { grid-template-columns: 6fr 4fr; }

/* Prevent grid children from overflowing their column */
.grid-2 > *, .grid-3 > * { min-width: 0; }

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

/* ── Gold Accent Lines ───────────────────────────────────────── */
.gold-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(194,165,122,0.3) 100%);
  margin: 2rem 0;
}
.gold-line--center { margin-left: auto; margin-right: auto; margin-top: 2rem; margin-bottom: 2rem; }
.gold-line--wide   { width: 80px; }

/* ── Dark / Sand Section States ──────────────────────────────── */
.section--espresso { background-color: var(--espresso); }
.section--espresso h1,
.section--espresso h2,
.section--espresso h3,
.section--espresso h4 { color: var(--cream); }
.section--espresso p  { color: rgba(216,206,194,0.72); }
.section--espresso .eyebrow { color: var(--gold); }

.section--sand { background-color: var(--warm-sand); }
.section--taupe { background-color: var(--taupe); }

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(244,239,233,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(194,165,122,0.2);
  z-index: 1000;
  transition: background 0.4s var(--ease),
              box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(244,239,233,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(194,165,122,0.32);
  box-shadow: 0 1px 40px rgba(31,31,31,0.07);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav__logo     { flex-shrink: 0; display: flex; align-items: center; }
.nav__logo-img { height: 52px; width: auto; display: block; }

.nav__logo-fallback { display: none; flex-direction: column; line-height: 1.1; }
.nav__logo-fallback .logo-main {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.04em;
}
.nav__logo-fallback .logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  white-space: nowrap;
  padding-bottom: 3px;
  transition: color 0.22s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background-color: var(--gold);
  transition: width 0.25s var(--ease);
}

.nav__link:hover        { color: var(--espresso); }
.nav__link:hover::after { width: 100%; }
.nav__link.active       { color: var(--gold); }
.nav__link.active::after { width: 100%; }

/* CTA pill */
.nav__cta {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background-color: var(--espresso);
  padding: 11px 28px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: var(--trans);
}
.nav__cta:hover { background-color: var(--gold); color: var(--espresso); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--charcoal);
  transform-origin: center;
  transition: var(--trans);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────────
   Full viewport height. Large Playfair Display tagline.
   Editorial layout: eyebrow at top, tagline center-bottom.
   ─────────────────────────────────────────────────────────── */
/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--cream);
  overflow: hidden;
}

/* Subtle warm radial on the left */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 15% 50%, rgba(235,224,214,0.55) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero::after { display: none; }

/* ── Image panel — full-height, right-anchored, blended ── */
.hero__img-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  z-index: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  display: block;
  opacity: 0.92;
  filter: contrast(0.93) saturate(0.9);
}

/* Gradient mask: left fade + softened top edge */
.hero__img-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right,
      #F4EFE9 0%,
      rgba(244,239,232,0.95) 25%,
      rgba(244,239,232,0.65) 45%,
      rgba(244,239,232,0.18) 70%,
      rgba(244,239,232,0.05) 100%
    ),
    linear-gradient(to bottom,
      #F4EFE9 0%,
      rgba(244,239,232,0.6) 8%,
      transparent 22%,
      transparent 88%,
      rgba(244,239,233,0.2) 100%
    );
}

/* ── Text content — left column ── */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow row with leading line */
.hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 1.8rem;
}

.hero__lead-line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(194,165,122,0.3));
  flex-shrink: 0;
}

/* THE headline */
.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--espresso);
  max-width: 680px;
  margin-bottom: 0;
}

/* Italic gold accent word */
.hero__tagline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* Thin divider */
.hero__rule {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, rgba(194,165,122,0.5) 0%, rgba(216,206,194,0.2) 100%);
  margin: 22px 0 18px;
}

/* Body copy */
.hero__sub {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 580px;
  margin-bottom: 0;
}
.hero__sub strong { color: var(--charcoal); font-weight: 500; }

/* CTA buttons */
.hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* Affiliate line */
.hero__affiliate {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 14px;
}


/* ── PAGE HERO (interior pages) ───────────────────────────────
   Smaller than home hero, still editorial.
   ─────────────────────────────────────────────────────────── */
.page-hero {
  background-color: var(--warm-sand);
  padding: calc(var(--nav-h) + 88px) var(--pad-x) 88px;
  position: relative;
  overflow: hidden;
}

/* Subtle corner texture */
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse 80% 80% at 90% 30%, rgba(194,165,122,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Eyebrow with leading line */
.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2rem;
}
.page-hero__eyebrow .eyebrow { margin-bottom: 0; }
.page-hero__lead-line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(194,165,122,0.3));
}

.page-hero h1 { max-width: 820px; line-height: 1.08; }

.page-hero__sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  margin-top: 2rem;
  line-height: 1.85;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary     { background-color: var(--espresso); color: var(--cream); }
.btn--primary:hover { background-color: var(--gold);     color: var(--espresso); }

.btn--outline     { background: transparent; color: var(--espresso); border: 1px solid rgba(47,47,47,0.35); }
.btn--outline:hover { background-color: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.btn--gold {
  background-color: var(--gold);
  color: var(--espresso);
  position: relative;
  overflow: hidden;
}
.btn--gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn--gold:hover {
  background-color: #d4b88c;
  color: var(--espresso);
  filter: brightness(1.05);
}
.btn--gold:hover::after { left: 160%; }

.btn--outline-light { background: transparent; color: var(--cream); border: 1px solid rgba(216,206,194,0.3); }
.btn--outline-light:hover { background-color: var(--cream); color: var(--espresso); border-color: var(--cream); }

.btn--sm { padding: 11px 24px; font-size: 0.59rem; }

/* ── SECTION HEADER ──────────────────────────────────────────── */
.section-header { margin-bottom: 72px; }
.section-header--center { text-align: center; }
.section-header--center p,
.section-header--center .gold-line { margin-left: auto; margin-right: auto; }

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background-color: var(--cream);
  padding: 52px 44px;
  border-top: 1px solid var(--gold);
  transition: border-top-color 0.25s, background-color 0.25s;
  display: flex;
  flex-direction: column;
}
.card:hover { border-top-color: rgba(194,165,122,0.8); }
.card--sand { background-color: var(--warm-sand); }

.card h3 { font-size: 1.35rem; margin-bottom: 1rem; line-height: 1.25; }
.card h4 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.card p  { font-size: 0.9rem; color: var(--muted); max-width: none; line-height: 1.78; }

/* ── PROCESS STEPS ───────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; }

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 44px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(216,206,194,0.55);
}
.step:last-child { border-bottom: none; }

/* Number: italic Playfair, faded gold — very editorial */
.step__num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  padding-top: 4px;
}

.step__content h3 { font-size: 1.45rem; margin-bottom: 0.9rem; }
.step__content p  { font-size: 0.94rem; color: var(--muted); max-width: none; line-height: 1.82; }

/* ── FEATURE LIST ────────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; }

.feature-item {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(216,206,194,0.5);
  align-items: start;
}
.feature-item:last-child { border-bottom: none; }

.feature-item__bar {
  width: 3px;
  height: 32px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(194,165,122,0.2) 100%);
  margin-top: 4px;
}

.feature-item__text h4 { font-size: 1rem; margin-bottom: 6px; color: var(--espresso); }
.feature-item__text p  { font-size: 0.9rem; color: var(--muted); max-width: none; line-height: 1.78; }

/* ── STAT BLOCK ──────────────────────────────────────────────── */
.stat-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(216,206,194,0.55);
}

.stat-item {
  padding: 52px 40px;
  border-right: 1px solid rgba(216,206,194,0.55);
}
.stat-item:last-child { border-right: none; }

.stat-item__num {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-item__label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── FORMS ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 32px; }

.form-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
}

/* Underline-only inputs — clean, editorial */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 0 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(216,206,194,0.8);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.22s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(216,206,194,0.9); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Light variant (on dark background) */
.form--light .form-label  { color: rgba(216,206,194,0.65); }
.form--light .form-input,
.form--light .form-select,
.form--light .form-textarea {
  border-bottom-color: rgba(216,206,194,0.22);
  color: var(--cream);
}
.form--light .form-input::placeholder,
.form--light .form-textarea::placeholder { color: rgba(216,206,194,0.28); }
.form--light .form-input:focus,
.form--light .form-textarea:focus { border-bottom-color: var(--gold); }

/* Boxed input variant for inline/lead forms */
.form-input--boxed {
  padding: 15px 20px;
  border: 1px solid rgba(216,206,194,0.55);
  border-bottom: 1px solid rgba(216,206,194,0.55);
}
.form-input--boxed:focus { border-color: var(--gold); }

/* Inline form */
.form-inline { display: flex; }
.form-inline .form-input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid rgba(216,206,194,0.4);
  border-right: none;
}
.form-inline .form-input:focus { border-color: var(--gold); }

/* ── NEIGHBORHOOD SECTIONS ───────────────────────────────────── */
.neighborhood-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(216,206,194,0.5);
}
.neighborhood-section:last-child { border-bottom: none; }

.neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.neighborhood-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(216,206,194,0.75);
  padding: 7px 14px;
}

/* Grid of neighborhood tiles */
.neighborhoods-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(194,165,122,0.3);
}

.neighborhood-tile {
  padding: 56px 44px;
  border-right: 1px solid rgba(194,165,122,0.25);
  border-bottom: 1px solid rgba(194,165,122,0.25);
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.neighborhood-tile:hover {
  background-color: rgba(235,224,214,0.65);
  box-shadow: inset 0 0 0 1px rgba(194,165,122,0.4);
}
.neighborhood-tile:nth-child(3n)       { border-right: none; }
.neighborhood-tile:nth-last-child(-n+3) { border-bottom: none; }

.neighborhood-tile h3 { font-size: 1.25rem; margin-bottom: 12px; }
.neighborhood-tile p  { font-size: 0.87rem; color: var(--muted); max-width: none; line-height: 1.72; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-block { display: flex; flex-direction: column; }

.contact-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(216,206,194,0.5);
}
.contact-item:first-child { border-top: 1px solid rgba(216,206,194,0.5); }

.contact-item__label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-item__value {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  color: var(--espresso);
}
.contact-item__value a:hover { color: var(--gold); }

/* ── RESOURCE CARDS ──────────────────────────────────────────── */
.resource-card {
  background-color: var(--warm-sand);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 1px solid var(--gold);
}

.resource-card h3 { font-size: 1.55rem; margin-bottom: 1rem; line-height: 1.2; }
.resource-card p  { font-size: 0.9rem; color: var(--muted); max-width: none; flex-grow: 1; margin-bottom: 2.5rem; line-height: 1.75; }

/* ── PULL QUOTE ──────────────────────────────────────────────── */
.pull-quote { padding: 40px 0; text-align: center; max-width: 820px; margin: 0 auto; }

.pull-quote__mark {
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  margin-bottom: -2rem;
  display: block;
}

.pull-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--espresso);
  line-height: 1.5;
  max-width: none;
}

.pull-quote__attr {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2.5rem;
}

/* ── AFFILIATION BLOCK ───────────────────────────────────────── */
.affiliation-block {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 44px 52px;
  background-color: var(--warm-sand);
  border-left: 2px solid var(--gold);
  margin-top: 0;
}
.affiliation-block img { height: 40px; width: auto; flex-shrink: 0; opacity: 0.8; }
.affiliation-block p  { font-size: 0.9rem; color: var(--muted); max-width: none; }

/* ── LEAD BANNER ─────────────────────────────────────────────── */
.lead-banner {
  background-color: var(--espresso);
  padding: var(--pad-y) var(--pad-x);
}

.lead-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead-banner h2 { color: var(--cream); }
.lead-banner p  { color: rgba(216,206,194,0.65); margin-top: 1.25rem; }

/* Centered variant */
.lead-banner--center .lead-banner__inner {
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 580px;
  text-align: center;
}
.lead-banner--center .lead-banner__inner p { margin-left: auto; margin-right: auto; }
.lead-banner--center .form-inline { max-width: 480px; margin: 0 auto; }

/* ── DIVIDER LINE ────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(216,206,194,0.6) 20%,
    rgba(216,206,194,0.6) 80%,
    transparent 100%);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background-color: var(--espresso);
  color: var(--taupe);
  padding: 96px var(--pad-x) 48px;
}

.footer__inner { max-width: var(--max-w); margin: 0 auto; }

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(216,206,194,0.1);
}
.footer__top--wide {
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
}
.footer__top--wide { grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; }

.footer__brand { display: flex; flex-direction: column; gap: 20px; }

.footer__logo-img { height: auto; width: 200px; max-width: 100%; object-fit: contain; opacity: 0.85; }

.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
}
.footer__logo-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

.footer__tagline {
  font-size: 0.86rem;
  color: rgba(216,206,194,0.44);
  line-height: 1.75;
  max-width: 300px;
}

.footer__col h5 {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__links { display: flex; flex-direction: column; gap: 14px; }

.footer__link {
  font-size: 0.86rem;
  color: rgba(216,206,194,0.5);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--cream); }

.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact a { font-size: 0.9rem; color: rgba(216,206,194,0.65); transition: color 0.2s; }
.footer__contact a:hover { color: var(--cream); }

.footer__bottom {
  padding-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copy        { font-size: 0.76rem; color: rgba(216,206,194,0.28); line-height: 1.7; }
.footer__disclaimer  { font-size: 0.68rem; color: rgba(216,206,194,0.2);  max-width: 480px; text-align: right; line-height: 1.65; }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.22s; }
[data-reveal-delay="3"] { transition-delay: 0.38s; }

/* Section-level reveal — gentler, wider window */
[data-section-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-section-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── GOLD SECTION DIVIDER ────────────────────────────────────── */
.section-divider-gold {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(194,165,122,0.4) 20%,
    rgba(194,165,122,0.4) 80%,
    transparent 100%
  );
}

/* ── FROSTED GLASS FORM (lead banner) ───────────────────────── */
.lead-form-glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 36px 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Hero-specific fade-ups (run on load) */
.fade-up   { animation: fadeUp 0.8s var(--ease) both; }
.delay-1   { animation-delay: 0.12s; }
.delay-2   { animation-delay: 0.28s; }
.delay-3   { animation-delay: 0.44s; }
.delay-4   { animation-delay: 0.62s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root {
    --pad-x: 40px;
    --pad-y: 96px;
    --nav-h: 72px;
    --gap: 40px;
  }

  .hero__tagline { font-size: clamp(2.4rem, 3.5vw, 4.2rem); }
  .nav__links    { gap: 24px; }
  .footer__top, .footer__top--wide { grid-template-columns: 1fr 1fr; gap: 48px; }
  .neighborhoods-tiles { grid-template-columns: repeat(2, 1fr); }
  .stat-block    { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --pad-x: 24px;
    --pad-y: 72px;
    --nav-h: 64px;
    --gap: 32px;
  }

  /* Mobile nav */
  .nav__inner  { padding: 0 24px; }
  .nav__cta    { display: none; }
  .nav__toggle { display: flex; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background-color: var(--cream);
    flex-direction: column;
    padding: 28px 24px 36px;
    gap: 22px;
    border-bottom: 1px solid var(--taupe);
    box-shadow: 0 12px 48px rgba(31,31,31,0.12);
    z-index: 999;
  }
  .nav__links.open { display: flex; }
  .nav__link { font-size: 0.82rem; padding: 4px 0; }

  /* Hero mobile */
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .hero::before { display: none; }
  /* Image stacks at top on mobile, natural flow */
  .hero__img-panel {
    position: relative;
    width: 100%;
    height: 60vw;
    min-height: 220px;
    max-height: 360px;
    order: -1;
  }
  .hero__img-panel::before {
    background: linear-gradient(to bottom,
      transparent 60%,
      rgba(244,239,233,0.6) 85%,
      #F4EFE9 100%
    );
  }
  .hero__inner {
    padding: 36px 24px 64px;
  }
  .hero__tagline { font-size: clamp(2.2rem, 9vw, 3.2rem); max-width: none; }
  .hero__sub { max-width: none; }
  .hero__rule { max-width: none; }

  /* Page hero mobile */
  .page-hero { padding: calc(var(--nav-h) + 48px) 24px 56px; }

  /* Grids → single column */
  .grid-2, .grid-2--4060, .grid-2--6040 { grid-template-columns: 1fr; }
  .grid-3        { grid-template-columns: 1fr; }
  .neighborhoods-tiles { grid-template-columns: 1fr; }
  .stat-block    { grid-template-columns: 1fr 1fr; }
  .form-grid-2   { grid-template-columns: 1fr; }

  /* Inline form → stacked */
  .form-inline { flex-direction: column; }
  .form-inline .form-input { border-right: 1px solid rgba(216,206,194,0.4); border-bottom: none; }

  /* Lead banner → stacked */
  .lead-banner { padding: 72px 24px; }
  .lead-banner__inner { grid-template-columns: 1fr; gap: 48px; }

  /* Footer */
  .footer { padding: 72px 24px 40px; }
  .footer__top, .footer__top--wide { grid-template-columns: 1fr !important; gap: 40px; }
  .footer__bottom { flex-direction: column; }
  .footer__disclaimer { text-align: left; max-width: 100%; }

  /* Tiles — single column */
  .neighborhood-tile { border-right: none !important; }

  /* Steps */
  .step { grid-template-columns: 48px 1fr; gap: 20px; }
  .step__num { font-size: 2.4rem; }

  /* Affiliation */
  .affiliation-block { flex-direction: column; align-items: flex-start; gap: 20px; padding: 36px 28px; }

  /* Prevent text overflow on all elements */
  p, h1, h2, h3, h4, li, td, th, a { overflow-wrap: break-word; word-break: break-word; }
  p { max-width: 100%; }

  /* Scale down headings so long words (e.g. "Fox Run Green") don't bleed off-screen */
  h1 { font-size: clamp(1.9rem, 6.5vw, 2.8rem); }
  h2 { font-size: clamp(1.7rem, 5.5vw, 2.2rem); }
  h3 { font-size: clamp(1.3rem, 4vw,  1.8rem); }

  /* Cards — reduce horizontal padding on narrow screens */
  .card { padding: 40px 28px; }

  /* Stat items */
  .stat-item { padding: 36px 24px; }

  /* Buttons — allow wrapping so they don't blow out the layout */
  .btn { white-space: normal; }

  /* Step grid items */
  .step > * { min-width: 0; }

  /* Feature items */
  .feature-item > * { min-width: 0; }

  /* Neighborhood tile padding */
  .neighborhood-tile { padding: 40px 24px; }

  /* Section header */
  .section-header { margin-bottom: 48px; }

  /* Ensure images never exceed their container */
  img { max-width: 100%; height: auto; }
}

.frg-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

/* Fox Run Green content layout */
.frg-content-row {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.frg-content-row > * { min-width: 0; }

/* Quick Snapshot table */
.frg-snapshot {
  margin-top: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.frg-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  margin-top: 16px;
}

.frg-table thead tr {
  border-bottom: 1.5px solid var(--gold);
}

.frg-table th {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px;
  text-align: left;
}

.frg-table td {
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 14px 16px;
  line-height: 1.4;
}

.frg-table td:last-child {
  font-weight: 500;
  color: var(--charcoal);
}

.frg-table__row--alt { background-color: var(--warm-sand); }

@media (max-width: 768px) {
  .frg-hero-row { flex-direction: column; align-items: flex-start; }
  .frg-hero-row img { height: 200px; width: 100%; object-fit: cover; object-position: center; }
  .frg-content-row { grid-template-columns: 1fr; gap: 24px; }
  .frg-table td, .frg-table th { padding: 12px 10px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  :root { --pad-y: 56px; }
  .stat-block { grid-template-columns: 1fr; }
  .stat-item  { border-right: 1px solid rgba(216,206,194,0.55); border-bottom: 1px solid rgba(216,206,194,0.55); }
  .card, .resource-card { padding: 40px 28px; }
  .hero__btns { flex-direction: column; width: 100%; }
  .hero__btns .btn { width: 100%; text-align: center; }
}

/* ── Accessibility ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up, .delay-1, .delay-2, .delay-3, .delay-4 {
    animation: none;
    opacity: 1;
  }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  [data-section-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── HOME VALUE PAGE ─────────────────────────────────────────── */
/* Full-width image hero */
.hv-hero-full {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
}

/* Image fills the section, anchored left so flowers stay visible */
.hv-hero-full__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

/* Text overlay — sits in the natural cream negative space on the right */
.hv-hero-full__text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 44%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 32px) var(--pad-x) 56px 40px;
  z-index: 2;
}

.hv-hero-full__text .eyebrow {
  display: block;
  margin-bottom: 1.4rem;
}

.hv-hero-full__text h1 {
  font-size: clamp(1.75rem, 2.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1.3rem;
  max-width: none;
}

.hv-hero-full__sub {
  font-size: 0.97rem;
  color: var(--charcoal);
  opacity: 0.78;
  line-height: 1.82;
  max-width: 420px;
  margin-bottom: 1.6rem;
}

.hv-hero-full__text .gold-line { margin-bottom: 2rem; }

/* Form section */
.hv-form-section {
  background-color: var(--warm-sand);
  padding: 72px var(--pad-x) var(--pad-y);
}

.hv-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}

/* Small header above the form */
.hv-form-header {
  margin-bottom: 2.8rem;
}
.hv-form-header h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 0.6rem;
  color: var(--espresso);
}
.hv-form-header p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: none;
  margin-bottom: 1.4rem;
}

.hv-reassurance {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
  margin-top: 18px;
  max-width: none;
  font-style: italic;
}

/* Credibility section */
.hv-cred {
  background-color: var(--espresso);
  padding: var(--pad-y) var(--pad-x);
}

.hv-cred__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.hv-cred h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.4rem;
  max-width: 640px;
  overflow-wrap: break-word;
}

.hv-cred__body {
  font-size: 1rem;
  color: rgba(216,206,194,0.75);
  max-width: 650px;
  line-height: 1.85;
  margin-bottom: 3.6rem;
}

.hv-cred .eyebrow { color: var(--gold); margin-bottom: 1.4rem; }

.hv-cred-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.hv-cred-point { min-width: 0; }

.hv-cred-point .gold-line {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.hv-cred-point h4 {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.hv-cred-point p {
  font-size: 0.88rem;
  color: rgba(216,206,194,0.62);
  line-height: 1.75;
  max-width: none;
}

/* ── HOME VALUE — MOBILE ─────────────────────────────────────── */
@media (max-width: 768px) {
  /* Hero: image on top showing flowers, text block below on cream */
  .hv-hero-full {
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: var(--nav-h);
  }

  .hv-hero-full__img {
    position: static;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: left top; /* keep flowers in frame */
  }

  .hv-hero-full__text {
    position: static;
    width: 100%;
    max-width: 100%;
    padding: 48px 24px 52px;
    background-color: var(--cream);
  }

  /* 1. Headline — confident but not overwhelming at ~32px */
  .hv-hero-full__text h1 {
    font-size: 2rem;
  }

  .hv-hero-full__sub {
    max-width: 100%;
    opacity: 1;
  }

  /* Form section */
  .hv-form-section {
    padding: 56px 24px 72px;
  }

  /* 2 + 3. Credibility section — tighter padding, force points visible */
  .hv-cred {
    padding: 52px 24px 56px;
  }

  .hv-cred__body {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hv-cred-points {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Each stacked point gets its own padding and a bottom border divider */
  .hv-cred-point {
    padding: 24px 0;
    border-bottom: 1px solid rgba(216,206,194,0.12);
  }
  .hv-cred-point:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Force credibility points visible on mobile — IntersectionObserver
     can miss elements nested inside a section-level reveal on short screens */
  .hv-cred [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ================================================================
   CAMPAIGN — YOUR NUMBER  (your-number.html)
   Mobile-first: built for QR code → phone traffic.
   Desktop improves on the base but mobile is primary.
   ================================================================ */

/* ─────────────────────────────────────────────────────────────────
   HERO — Mobile base
   Image stacks at top, text flows below. No min-height on mobile
   so the fold stays readable without scrolling.
   ───────────────────────────────────────────────────────────────── */
.cn-hero {
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}

/* ── Photo panel (mobile: natural flow, full width) ── */
.cn-hero__img-panel {
  position: relative;
  width: 100%;
  height: 62vw;        /* ~240px on iPhone 14 */
  min-height: 220px;
  max-height: 420px;
  overflow: hidden;
}

.cn-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%; /* marble counter + flowers in frame */
  display: block;
  opacity: 0.93;
  filter: contrast(0.95) saturate(0.9);
}

/* Gradient: top stays sharp, bottom melts into cream */
.cn-hero__img-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(244,239,233,0.15) 0%,
    transparent            40%,
    rgba(244,239,233,0.55) 78%,
    var(--cream)           100%
  );
  pointer-events: none;
}

/* ── Text block (mobile) ── */
.cn-hero__inner {
  padding: 28px 24px 56px;
}

.cn-hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.4rem;
}

.cn-hero__line {
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(194,165,122,0.3));
  flex-shrink: 0;
}

/* Keep the eyebrow on one line on small screens */
.cn-hero__eyebrow {
  white-space: nowrap;
  letter-spacing: 0.11em;
  font-size: 0.56rem;
}

/* Headline — big but not overwhelming on a small screen */
.cn-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 10vw, 5.6rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--espresso);
  margin-bottom: 0;
}

.cn-hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* Subheadline: serif italic */
.cn-hero__sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 4vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.62;
  max-width: none;
  margin-bottom: 0;
}

/* Short supporting copy — trimmed for mobile */
.cn-hero__body {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: none;
  margin-top: 1.1rem;
}

/* CTA — full-width touch target on mobile */
.cn-hero__cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  padding: 18px 24px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

.cn-hero__affiliate {
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 14px;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────────
   FORM SECTION — Mobile base
   Single column. Desktop copy column hidden on mobile.
   ───────────────────────────────────────────────────────────────── */
.cn-split {
  padding: 0 0 56px; /* no side padding on mobile — form bleeds to edges */
  background-color: var(--warm-sand);
}

.cn-split__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Desktop copy column: hidden on mobile (shown on desktop) */
.cn-split__copy { display: none; }

/* Mobile form header (shown only on mobile, hidden on desktop) */
.cn-form-mobile-header {
  padding: 40px 24px 32px;
}

.cn-split__heading {
  font-size: clamp(1.55rem, 6vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.cn-split__intro {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: none;
  margin-top: 1.2rem;
}

/* Form card: no border-radius, edge-to-edge on mobile */
.cn-form-panel {
  background-color: var(--cream);
  padding: 36px 24px 44px;
}

/* ── Form internals ─────────────────────────────────────────── */

/* Touch-friendly inputs — taller hit area for thumbs */
.cn-input-touch {
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 1rem; /* prevents iOS zoom on focus */
  min-height: 52px;
}

.cn-form-optional {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  font-style: italic;
  margin-left: 4px;
}

/* Price $ prefix wrapper */
.cn-price-wrap {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid rgba(216,206,194,0.8);
  transition: border-color 0.22s;
}
.cn-price-wrap:focus-within { border-bottom-color: var(--gold); }

.cn-price-prefix {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--muted);
  padding: 18px 6px 18px 0;
  flex-shrink: 0;
  user-select: none;
  line-height: 1;
}

.cn-price-input {
  border-bottom: none !important;
  padding-left: 0;
  flex: 1;
}

/* Textarea — taller on mobile for comfort */
.form-textarea { min-height: 100px; font-size: 1rem; }

/* Submit — full width, generous height for thumb tap */
.cn-submit-btn {
  width: 100%;
  margin-top: 12px;
  padding: 20px 24px;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  min-height: 58px;
}

.cn-form-note {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  margin-top: 16px;
  max-width: none;
  font-style: italic;
  line-height: 1.65;
}

/* Assurance list (desktop only) */
.cn-assurance-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.cn-assurance-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.cn-assurance-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
  opacity: 0.65;
}

/* ─────────────────────────────────────────────────────────────────
   WHAT HAPPENS AFTER — Mobile base: stacked single column
   ───────────────────────────────────────────────────────────────── */
.cn-process {
  padding: 56px 24px 64px;
  background-color: var(--cream);
  border-top: 1px solid rgba(194,165,122,0.2);
}

.cn-process__inner { max-width: var(--max-w); margin: 0 auto; }
.cn-process__header { margin-bottom: 40px; }

.cn-process__title {
  font-size: clamp(1.4rem, 5.5vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 0;
}

/* Stacked on mobile */
.cn-process__points {
  display: flex;
  flex-direction: column;
}

.cn-process__point {
  padding: 28px 0;
  border-top: 1px solid rgba(194,165,122,0.28);
}
.cn-process__point:last-child {
  border-bottom: 1px solid rgba(194,165,122,0.28);
}

.cn-process__num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 10px;
}

.cn-process__point p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: none;
}

/* ── Disclaimer ──────────────────────────────────────────────── */
.cn-disclaimer {
  padding: 24px 24px 28px;
  background-color: var(--cream);
  border-top: 1px solid rgba(216,206,194,0.4);
}
.cn-disclaimer__inner { max-width: var(--max-w); margin: 0 auto; }
.cn-disclaimer p {
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.7;
  line-height: 1.72;
  font-style: italic;
  max-width: none;
}

/* ─────────────────────────────────────────────────────────────────
   DESKTOP UPGRADES  ≥ 900px
   Hero: image pins right, text lives left (like homepage).
   Form: two-column revealed, copy column shown.
   Process: three-column grid.
   ───────────────────────────────────────────────────────────────── */
@media (min-width: 900px) {

  /* Hero: full-viewport, image pins to right half */
  .cn-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
  }

  .cn-hero__img-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 50%;
    height: auto;
    max-height: none;
  }

  /* Desktop fade: melts from right-panel into the cream left side */
  .cn-hero__img-panel::after {
    background:
      linear-gradient(to right,
        var(--cream)              0%,
        rgba(244,239,232,0.92)   18%,
        rgba(244,239,232,0.55)   38%,
        rgba(244,239,232,0.12)   65%,
        rgba(244,239,232,0.02)  100%
      ),
      linear-gradient(to bottom,
        var(--cream)             0%,
        rgba(244,239,232,0.45)   7%,
        transparent             20%,
        transparent             88%,
        rgba(244,239,232,0.15) 100%
      );
  }

  .cn-hero__photo {
    object-position: 32% center; /* show counter/letter/flowers */
  }

  .cn-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: calc(var(--nav-h) + 80px) var(--pad-x) 96px;
    max-width: 56%; /* text takes left 56% */
  }

  .cn-hero__headline { font-size: clamp(3rem, 4.5vw, 5.8rem); }

  .cn-hero__sub  { max-width: 520px; }
  .cn-hero__body { max-width: 500px; }

  .cn-hero__cta {
    display: inline-block;
    width: auto;
    padding: 16px 36px;
    font-size: 0.64rem;
  }

  .cn-hero__affiliate { text-align: left; }

  /* Form: two-column, copy revealed */
  .cn-split {
    padding: var(--pad-y) var(--pad-x);
  }

  .cn-split__inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 88px;
    align-items: start;
  }

  /* Show desktop copy column, hide mobile header */
  .cn-split__copy        { display: block; padding-top: 8px; }
  .cn-form-mobile-header { display: none; }

  .cn-form-panel {
    padding: 52px 48px;
    margin: 0; /* reset mobile bleed */
  }

  /* Restore desktop input sizing */
  .cn-input-touch {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 0.95rem;
    min-height: auto;
  }
  .cn-price-prefix { padding-top: 14px; padding-bottom: 14px; font-size: 0.95rem; }
  .form-textarea { font-size: 0.95rem; }

  /* Process: three-column */
  .cn-process {
    padding: var(--pad-y) var(--pad-x);
  }
  .cn-process__header { margin-bottom: 56px; }

  .cn-process__points {
    flex-direction: row;
    border-top: 1px solid rgba(194,165,122,0.3);
  }

  .cn-process__point {
    flex: 1;
    padding: 44px 44px 44px 0;
    border-top: none;
    border-bottom: none;
    border-right: 1px solid rgba(194,165,122,0.2);
  }
  .cn-process__point:last-child {
    border-right: none;
    border-bottom: none;
    padding-right: 0;
  }
  .cn-process__point:not(:first-child) { padding-left: 44px; }

  /* Disclaimer */
  .cn-disclaimer {
    padding: 28px var(--pad-x) 32px;
  }
  .cn-disclaimer p { text-align: center; }
}
