/* ============================================================
   COMPACT COTTAGES — Unified Design System
   Phase 1 extraction from Origami Home v13 mockup
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Lora:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --color-bg:          #F5F1EA;   /* primary page background — warm parchment */
  --color-bg-soft:     #ECE5D8;   /* secondary background — muted cream */
  --color-bg-warm:     #E5DCC8;   /* section alt — warm tan */
  --color-bg-card:     #FFFCF5;   /* card background — near white */
  --color-bg-dark:     #1F3028;   /* dark section background — deep forest */

  /* Text */
  --color-text:        #2A2622;   /* primary text — dark warm brown */
  --color-text-muted:  #6B6359;   /* secondary text — medium warm brown */
  --color-text-soft:   #8A8175;   /* tertiary text */

  /* Borders */
  --color-border:      #DDD3BF;
  --color-rule:        #E6DDC8;

  /* Brand colours */
  --color-clay:        #C97A50;   /* CTA, accent — warm terracotta */
  --color-clay-deep:   #A85D38;   /* CTA hover, headings */
  --color-teal:        #1F4858;   /* dark headings, dark sections */
  --color-teal-deep:   #14323D;
  --color-sage:        #8FA77B;   /* light accent on dark backgrounds */

  /* Aliases used in components */
  --color-background-primary:   var(--color-bg);
  --color-background-secondary: var(--color-bg-soft);
  --color-text-primary:         var(--color-text);
  --color-text-secondary:       var(--color-text-muted);
  --color-border-tertiary:      var(--color-border);

  /* Typography */
  --font-sans:   'DM Sans', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif:  'Playfair Display', 'EB Garamond', Georgia, "Times New Roman", serif;
  --font-number: 'Lora', Georgia, serif;

  /* Spacing */
  --section-pad: 72px 56px;
  --section-pad-sm: 48px 32px;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(42,38,34,0.07), 0 1px 2px rgba(42,38,34,0.04);
  --shadow-lg:   0 12px 40px rgba(42,38,34,0.12);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1340px; margin: 0 auto; padding: 0 40px; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  border-bottom: 1px solid var(--color-rule);
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-teal);
  letter-spacing: 0.5px;
}
.nav-logo img { height: 64px; width: auto; }
.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-links a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-text);
  padding: 10px 14px;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--color-clay);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--color-clay-deep); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: transparent;
  color: var(--color-clay-deep);
  border: 1.5px solid var(--color-clay);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--color-clay); color: #fff; }

/* ── MEGA MENU ───────────────────────────────────────────────── */
/* Stretch the trigger wrapper to fill the full nav height so there's
   no gap between the trigger and the panel when moving the mouse */
.nav-mega-wrap {
  align-self: stretch;
  display: flex;
  align-items: center;
  position: static;
}
.nav-mega-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-chevron {
  font-size: 7px;
  opacity: 0.5;
  transition: transform .2s ease, opacity .2s;
  line-height: 1;
  margin-top: 1px;
}
.nav-mega-wrap:hover .nav-chevron,
.nav-mega-wrap.is-open .nav-chevron,
.nav-mega-wrap:focus-within .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
/* Trigger underline on wrap hover, not just link hover */
.nav-mega-wrap:hover .nav-mega-trigger,
.nav-mega-wrap.is-open .nav-mega-trigger { color: var(--color-clay-deep); }
.nav-mega-wrap:hover .nav-mega-trigger::after,
.nav-mega-wrap.is-open .nav-mega-trigger::after { transform: scaleX(1); }
/* Panel — positioned absolute to .nav (nearest positioned ancestor) */
.nav-mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 2px solid var(--color-rule);
  box-shadow: 0 10px 32px rgba(42,38,34,0.10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  /* Delay on close gives mouse time to travel from trigger to panel */
  transition: opacity .18s ease .15s, transform .18s ease .15s;
  z-index: 99;
}
.nav-mega-wrap:hover .nav-mega-panel,
.nav-mega-wrap.is-open .nav-mega-panel,
.nav-mega-wrap:focus-within .nav-mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .15s ease, transform .15s ease;
}
.nav-mega-inner {
  display: grid;
  grid-template-columns: 210px 1fr 200px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 56px 32px;
}
.nav-mega-col {
  padding: 0 28px;
  border-right: 0.5px solid var(--color-rule);
}
.nav-mega-col:first-child { padding-left: 0; }
.nav-mega-col:last-child  { border-right: none; padding-right: 0; }
.nav-mega-col-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-clay);
  margin-bottom: 10px;
}
.nav-mega-model {
  display: block;
  padding: 7px 0;
  border-bottom: 0.5px solid var(--color-rule);
  text-decoration: none;
}
.nav-mega-model:last-of-type { border-bottom: none; }
.nav-mega-model-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  transition: color .15s;
}
.nav-mega-model:hover .nav-mega-model-name { color: var(--color-clay-deep); }
.nav-mega-browse {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--color-clay-deep);
  text-decoration: none;
}
.nav-mega-browse:hover { text-decoration: underline; text-underline-offset: 3px; }
.nav-mega-aside-link {
  display: block;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--color-rule);
  text-decoration: none;
}
.nav-mega-aside-link:last-of-type { border-bottom: none; }
.nav-mega-aside-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  transition: color .15s;
}
.nav-mega-aside-desc {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
  line-height: 1.4;
}
.nav-mega-aside-link:hover .nav-mega-aside-name { color: var(--color-clay-deep); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-teal-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,50,61,0.93) 38%, rgba(20,50,61,0.55) 65%, rgba(20,50,61,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 72px 56px;
  max-width: 620px;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 18px;
  font-weight: 600;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── PROOF BAND ───────────────────────────────────────────── */
.proof {
  background: var(--color-teal);
  padding: 22px 56px;
  display: flex;
  gap: 0;
}
.proof-item {
  flex: 1;
  padding: 0 28px;
  border-right: 0.5px solid rgba(255,255,255,0.12);
}
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: none; }
.proof-val {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: -0.3px;
}
.proof-label {
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── SECTION BASE ─────────────────────────────────────────── */
.section {
  padding: var(--section-pad);
}
.section-alt {
  background: var(--color-bg-soft);
}
.section-warm {
  background: var(--color-bg-warm);
}
.section-dark {
  background: var(--color-teal-deep);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.kicker {
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--color-clay);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-dark .kicker { color: var(--color-sage); }

.section h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.section-dark h2 { color: #fff; }

.section-lead {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 44px;
}
.section-dark .section-lead { color: rgba(255,255,255,0.52); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--color-clay);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--color-clay-deep); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.28);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-clay-deep);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-clay);
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--color-clay); color: #fff; }

/* ── "THREE WAYS IN" TILES ────────────────────────────────── */
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 36px;
}
.way {
  background: var(--color-bg-card);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.way-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-clay);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.way h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.way p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
  flex: 1;
}

/* ── MODEL CARD ───────────────────────────────────────────── */
.model-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.model-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.model-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--color-bg-warm);
  position: relative;
}
.model-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.model-card:hover .model-card-img img { transform: scale(1.03); }
.model-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-clay);
  color: #fff;
}
.model-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.model-card-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-clay);
  margin-bottom: 6px;
}
.model-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.model-card-tagline {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.model-card-specs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--color-rule);
}
.model-card-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.model-card-spec-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.model-card-spec-label {
  font-size: 10px;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.model-card-price {
  margin: 14px 0 16px;
  border-top: 1px solid var(--color-rule);
  padding-top: 14px;
}
.model-card-price-val {
  display: block;
  font-family: var(--font-number);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-teal);
  letter-spacing: -0.4px;
  line-height: 1.1;
}
.model-card-price-note {
  display: block;
  font-size: 11.5px;
  color: var(--color-text-muted);
  margin-top: 3px;
}

/* ── CATEGORY LABEL ───────────────────────────────────────── */
.cat-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
.cat-header h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.4px;
  margin-bottom: 0;
}
.cat-header p {
  font-size: 14px;
  color: var(--color-text-muted);
}
.cat-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-teal);
  color: #fff;
}
.cat-tag-clay {
  background: var(--color-clay-deep);
}

/* ── WHY GRID (dark section) ──────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 36px;
}
.why-item {
  background: rgba(255,255,255,0.03);
  padding: 32px 28px;
}
.why-num {
  font-size: 10px;
  color: var(--color-sage);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.why-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
}

/* ── FOUNDER / QUOTE ROW ──────────────────────────────────── */
.founder-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 52px;
  align-items: center;
}
.founder-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-bg-warm);
}
.founder-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.quote-mark {
  font-size: 80px;
  line-height: 0.5;
  color: var(--color-clay);
  opacity: 0.25;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.55;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  font-style: italic;
}
.quote-attr { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }
.quote-attr strong {
  font-weight: 600;
  font-style: normal;
  display: block;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 2px;
}

/* ── MARKETS BAND ─────────────────────────────────────────── */
.markets-band {
  background: var(--color-teal);
  padding: 52px 56px;
}
.market-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.market-pill {
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}
.market-note {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  max-width: 540px;
}
.market-note a { color: var(--color-sage); font-weight: 500; }

/* ── PERSONAS ─────────────────────────────────────────────── */
.personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.persona {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
}
.persona-img {
  height: 180px;
  overflow: hidden;
  background: var(--color-bg-warm);
}
.persona-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.persona-body { padding: 20px; }
.persona-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-clay-deep);
  background: rgba(201,122,80,0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.persona h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 7px;
  line-height: 1.3;
}
.persona p { font-size: 13px; color: var(--color-text-muted); line-height: 1.65; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { max-width: 700px; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  cursor: pointer;
}
.faq-q::before {
  content: "Q";
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  background: var(--color-clay);
  padding: 3px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}
.faq-a {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
  padding-left: 28px;
}

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: var(--color-bg-warm);
  padding: 72px 56px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--color-teal);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-band p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 32px;
}
.cta-price {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--color-clay-deep);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

/* ── STEPS (4-across) ─────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.step {
  background: var(--color-bg-card);
  padding: 28px 24px;
}
.step-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-clay);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.step h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step p { font-size: 13px; color: var(--color-text-muted); line-height: 1.65; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  padding: 32px 56px;
  border-top: 1px solid var(--color-rule);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--color-bg);
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-teal);
  margin-bottom: 6px;
}
.footer-address {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--color-clay-deep); }
.footer-cta { margin-top: 8px; }
.footer-legal {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--color-rule);
  font-size: 11px;
  color: var(--color-text-soft);
}

/* ── FILTER CHIPS ─────────────────────────────────────────── */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-chip {
  padding: 8px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-bg-card);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.filter-chip:hover,
.filter-chip.active {
  border-color: var(--color-clay);
  color: var(--color-clay-deep);
  background: rgba(201,122,80,0.08);
}

/* ── PLACEHOLDER IMAGE ────────────────────────────────────── */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 18px 32px; }
  .hero-content { padding: 60px 32px; }
  .proof { padding: 22px 32px; flex-wrap: wrap; }
  .section { padding: var(--section-pad-sm); }
  .footer { padding: 28px 32px; }
  .markets-band { padding: 48px 32px; }
  .cta-band { padding: 56px 32px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

/* ── HAMBURGER / MOBILE NAV ──────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  margin-left: 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav--open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav--open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-bottom: 2px solid var(--color-rule);
  box-shadow: 0 8px 24px rgba(42,38,34,0.10);
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
  z-index: 98;
}
.nav--open .nav-mobile { max-height: 540px; }
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 4px;
}
.nav-mobile-links a {
  display: block;
  padding: 13px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--color-text);
  border-bottom: 0.5px solid var(--color-rule);
  text-decoration: none;
  transition: color .15s;
}
.nav-mobile-links a:last-child { border-bottom: none; }
.nav-mobile-links a:hover { color: var(--color-clay-deep); }
.nav-mobile-cta-wrap {
  padding: 12px 24px 24px;
}
.nav-mobile-cta-wrap .nav-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero h1 { font-size: 36px; }
  .hero-content { padding: 52px 24px; max-width: 100%; }
  .proof { flex-direction: column; gap: 16px; padding: 24px; }
  .proof-item { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.12); padding: 0 0 16px; }
  .proof-item:last-child { border-bottom: none; padding-bottom: 0; }
  .ways-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .personas { grid-template-columns: 1fr; }
  .founder-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .section { padding: 40px 24px; }
  .cta-band { padding: 48px 24px; }
  .footer { padding: 24px; flex-direction: column; }
}
