:root {
  --ink: #10231d;
  --ink-2: #18352c;
  --ink-3: #24493d;
  --paper: #f7f5ec;
  --paper-2: #eeeadc;
  --white: #ffffff;
  --acid: #d8ff4f;
  --acid-2: #bfe82e;
  --ember: #ff7043;
  --sky: #a9d7ff;
  --muted: #66746f;
  --line: rgba(16, 35, 29, 0.14);
  --line-dark: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 12px 28px rgba(16, 35, 29, 0.09);
  --shadow-lg: 0 30px 80px rgba(8, 25, 20, 0.2);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --max: 1180px;
  --header-h: 78px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.17em; }

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
}

::selection { color: var(--ink); background: var(--acid); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 18px;
  top: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--ink-3);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker::before,
.eyebrow::before {
  width: 8px;
  height: 8px;
  background: var(--ember);
  border-radius: 50%;
  content: "";
  box-shadow: 11px 0 0 -2px var(--acid-2);
}

.kicker-light,
.eyebrow-light { color: rgba(255, 255, 255, 0.78); }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, .display {
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 6.6rem);
  line-height: 0.91;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.6vw, 4.25rem);
  line-height: 1;
}

h3 { margin-bottom: 10px; font-size: 1.25rem; line-height: 1.25; letter-spacing: -0.02em; }

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.lead-light { color: rgba(255, 255, 255, 0.72); }

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

.text-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: var(--ember);
  text-decoration-thickness: 2px;
}

.announcement {
  position: relative;
  z-index: 90;
  color: var(--white);
  background: #091a15;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.announcement-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-align: center;
}

.announcement strong { color: var(--acid); }

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  color: var(--white);
  background: rgba(16, 35, 29, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 14px 14px 14px 4px;
  box-shadow: inset 0 -2px 0 rgba(16, 35, 29, 0.13);
}

.brand-mark svg { width: 29px; height: 29px; }

.brand-type { display: flex; flex-direction: column; line-height: 1; }

.brand-type strong { font-size: 0.98rem; letter-spacing: -0.035em; }

.brand-type span { margin-top: 4px; color: var(--acid); font-size: 0.64rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }

.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 26px; }

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--acid);
  content: "";
  transition: right 0.25s var(--ease);
}

.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.header-phone { color: var(--white); font-size: 0.82rem; font-weight: 850; text-decoration: none; }

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 10px;
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle-lines { position: relative; }
.nav-toggle-lines::before { position: absolute; transform: translateY(-6px); }
.nav-toggle-lines::after { position: absolute; transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  z-index: 79;
  inset: calc(36px + var(--header-h)) 0 auto;
  max-height: calc(100vh - 114px);
  overflow-y: auto;
  padding: 24px 20px 30px;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: 0.25s var(--ease);
}

.mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }

.mobile-nav a:not(.button) {
  display: block;
  padding: 15px 4px;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-nav .button { width: 100%; margin-top: 20px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--acid);
  border-radius: 999px;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover { background: var(--acid-2); border-color: var(--acid-2); box-shadow: 0 10px 30px rgba(216, 255, 79, 0.18); transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button-dark:hover { background: var(--ink-2); border-color: var(--ink-2); box-shadow: var(--shadow-sm); }
.button-ghost { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, 0.35); }
.button-ghost:hover { color: var(--ink); background: var(--white); border-color: var(--white); box-shadow: none; }
.button-outline { color: var(--ink); background: transparent; border-color: rgba(16, 35, 29, 0.3); }
.button-outline:hover { color: var(--white); background: var(--ink); border-color: var(--ink); box-shadow: none; }
.button-sm { min-height: 41px; padding: 9px 16px; font-size: 0.78rem; }
.button-lg { min-height: 56px; padding: 15px 26px; font-size: 0.98rem; }
.button-block { width: 100%; }

.icon-arrow { width: 17px; height: 17px; transition: transform 0.2s ease; }
.button:hover .icon-arrow { transform: translateX(3px); }

.hero {
  position: relative;
  overflow: clip;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.13) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 100%);
  opacity: 0.24;
  content: "";
}

.hero-orbit {
  position: absolute;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  right: -22vw;
  top: -14vw;
  border: 1px solid rgba(216, 255, 79, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(216, 255, 79, 0.025), 0 0 0 200px rgba(216, 255, 79, 0.018);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
  padding-block: 92px 104px;
}

.hero-copy { max-width: 720px; }
.hero-copy h1 span { color: var(--acid); }
.hero-copy .lead { max-width: 660px; margin-bottom: 32px; }

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin-bottom: 34px; }

.micro-proof { display: flex; flex-wrap: wrap; gap: 9px 22px; padding: 0; margin: 0; list-style: none; }

.micro-proof li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.72); font-size: 0.8rem; font-weight: 700; }

.micro-proof svg { width: 17px; height: 17px; color: var(--acid); flex: 0 0 auto; }

.hero-note {
  max-width: 630px;
  margin: 30px 0 0;
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.69);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 3px solid var(--ember);
  border-radius: 5px 12px 12px 5px;
  font-size: 0.78rem;
  line-height: 1.55;
}

.intake-card {
  position: relative;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intake-accent {
  position: absolute;
  width: 56px;
  height: 56px;
  right: -10px;
  top: -18px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--ember);
  border: 5px solid var(--ink);
  border-radius: 50%;
  transform: rotate(8deg);
}

.intake-accent svg { width: 28px; height: 28px; }

.intake-head { padding: 28px 30px 18px; border-bottom: 1px solid var(--line); }
.intake-head h2 { margin-bottom: 8px; font-family: inherit; font-size: 1.55rem; letter-spacing: -0.04em; line-height: 1.15; }
.intake-head p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

.form-stepper { display: flex; gap: 7px; margin-bottom: 16px; }
.form-stepper span { height: 5px; flex: 1; background: #e4e8e3; border-radius: 99px; }
.form-stepper span.active { background: var(--ember); }

.lead-form { padding: 24px 30px 28px; }

.form-stage[hidden] { display: none; }

.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.field-grid .full { grid-column: 1 / -1; }

.field { display: grid; gap: 7px; }
.field + .field { margin-top: 15px; }
.field-grid .field + .field { margin-top: 0; }

.field label, .field-label { font-size: 0.76rem; font-weight: 850; letter-spacing: 0.025em; }
.field-label .optional { color: var(--muted); font-weight: 600; }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fbfcf8;
  border: 1px solid #cbd3cf;
  border-radius: 10px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea { min-height: 92px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #88948f; opacity: 1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #91a099; }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--white); border-color: var(--ink-3); box-shadow: 0 0 0 4px rgba(36, 73, 61, 0.11); }
.field [aria-invalid="true"] { border-color: #c43b22; box-shadow: 0 0 0 3px rgba(196, 59, 34, 0.1); }

.field-error { min-height: 0; margin: -2px 0 0; color: #a72d19; font-size: 0.73rem; font-weight: 750; }

.form-next { margin-top: 20px; }

.form-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0 0 18px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.form-back:hover { color: var(--ink); }

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin: 17px 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--ink); }

.form-status { min-height: 22px; margin: 12px 0 0; color: var(--muted); font-size: 0.79rem; font-weight: 700; text-align: center; }
.form-status.error { color: #a72d19; }
.form-status.success { color: #1c6849; }

.form-security { display: flex; justify-content: center; gap: 7px; align-items: center; margin: 13px 0 0; color: var(--muted); font-size: 0.68rem; text-align: center; }
.form-security svg { width: 14px; height: 14px; }

.trust-ribbon { color: var(--ink); background: var(--acid); border-bottom: 1px solid rgba(16,35,29,0.14); }
.trust-ribbon-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 104px; display: flex; align-items: center; gap: 13px; padding: 20px 24px; border-right: 1px solid rgba(16,35,29,0.16); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 0.88rem; line-height: 1.25; }
.trust-item span { display: block; margin-top: 4px; font-size: 0.71rem; line-height: 1.35; }
.trust-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: var(--white); background: var(--ink); border-radius: 50%; }
.trust-icon svg { width: 17px; height: 17px; }

.section { position: relative; padding-block: clamp(76px, 10vw, 126px); }
.section-paper { background: var(--paper); }
.section-white { background: var(--white); }
.section-dark { color: var(--white); background: var(--ink); }
.section-soft { background: var(--paper-2); }

.section-head { max-width: 800px; margin-bottom: 50px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p:last-child { margin-bottom: 0; }

.option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.option-card { position: relative; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 3px 0 rgba(16,35,29,0.03); }
.option-card.featured { color: var(--white); background: var(--ink); border-color: var(--ink); transform: translateY(-12px); box-shadow: var(--shadow-lg); }
.option-badge { display: inline-flex; padding: 6px 10px; margin-bottom: 22px; color: var(--ink); background: var(--acid); border-radius: 999px; font-size: 0.67rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.option-card h3 { font-size: 1.45rem; }
.option-card p { color: var(--muted); font-size: 0.9rem; }
.option-card.featured p { color: rgba(255,255,255,0.7); }
.check-list { display: grid; gap: 12px; padding: 0; margin: 23px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 27px; font-size: 0.86rem; }
.check-list li::before { position: absolute; left: 0; top: 2px; width: 18px; height: 18px; display: grid; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; content: "✓"; font-size: 0.68rem; font-weight: 950; }
.check-list.caution li::before { background: #ffd8cc; content: "!"; }

.decision-note { display: flex; align-items: flex-start; gap: 16px; margin-top: 31px; padding: 22px 24px; background: rgba(255,255,255,0.72); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.decision-note svg { width: 25px; height: 25px; flex: 0 0 auto; color: var(--ember); }
.decision-note p { margin: 0; color: var(--muted); font-size: 0.86rem; }
.decision-note strong { color: var(--ink); }

.process-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.process-copy { position: sticky; top: calc(var(--header-h) + 42px); }
.process-copy .lead { margin-bottom: 28px; }
.process-steps { display: grid; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.process-step { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 28px; background: var(--ink-2); }
.process-number { width: 50px; height: 50px; display: grid; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50% 50% 50% 12%; font-family: Georgia, serif; font-size: 1.15rem; font-weight: 800; }
.process-step h3 { margin-top: 3px; }
.process-step p { margin-bottom: 0; color: rgba(255,255,255,0.67); font-size: 0.88rem; }

.structure-panel { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: stretch; }
.structure-main { padding: clamp(32px, 5vw, 58px); color: var(--white); background: var(--ink); border-radius: var(--radius-lg); }
.structure-main h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.structure-main .lead { max-width: 630px; }
.structure-aside { display: grid; gap: 16px; }
.structure-card { padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.structure-card .mini-label { color: var(--ember); font-size: 0.67rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.structure-card h3 { margin-top: 9px; }
.structure-card p { margin-bottom: 0; color: var(--muted); font-size: 0.83rem; }

.disclosure-callout { position: relative; overflow: hidden; padding: 32px; margin-top: 28px; background: var(--acid); border-radius: var(--radius); }
.disclosure-callout::after { position: absolute; width: 130px; height: 130px; right: -55px; bottom: -70px; background: var(--ember); border-radius: 50%; content: ""; opacity: 0.8; }
.disclosure-callout h3 { max-width: 780px; font-family: Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.4rem); }
.disclosure-callout p { max-width: 920px; margin-bottom: 0; font-size: 0.88rem; }

.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.fit-card { padding: clamp(28px, 4vw, 44px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.fit-card.not-fit { background: transparent; }
.fit-card h3 { font-family: Georgia, serif; font-size: 2rem; }

.market-feature {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: clamp(42px, 8vw, 104px);
  align-items: center;
}

.market-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.market-visual::before { position: absolute; inset: 0; background-image: radial-gradient(circle at center, rgba(216,255,79,0.9) 0 3px, transparent 4px); background-size: 44px 44px; opacity: 0.19; content: ""; }
.market-visual::after { position: absolute; width: 330px; height: 330px; left: -130px; bottom: -165px; background: var(--ember); border-radius: 50%; content: ""; }
.market-counter { position: absolute; z-index: 1; inset: auto 32px 30px; }
.market-counter strong { display: block; color: var(--acid); font-family: Georgia, serif; font-size: clamp(5rem, 11vw, 8rem); line-height: 0.8; letter-spacing: -0.07em; }
.market-counter span { display: block; max-width: 290px; margin-top: 18px; color: rgba(255,255,255,0.75); font-weight: 800; }
.market-copy .lead { margin-bottom: 25px; }

.market-search-wrap { max-width: 700px; margin: 0 auto 34px; }
.market-search { position: relative; }
.market-search svg { position: absolute; width: 20px; height: 20px; left: 17px; top: 50%; color: var(--muted); transform: translateY(-50%); }
.market-search input { width: 100%; min-height: 58px; padding: 13px 18px 13px 50px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); outline: 0; }
.market-search input:focus { border-color: var(--ink-3); box-shadow: 0 0 0 4px rgba(36,73,61,0.1), var(--shadow-sm); }
.market-results-count { margin: 12px 0 0; color: var(--muted); font-size: 0.76rem; text-align: center; }

.markets-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.market-link { position: relative; min-height: 88px; display: flex; align-items: center; gap: 12px; padding: 17px; background: var(--white); border: 1px solid var(--line); border-radius: 13px; text-decoration: none; transition: 0.22s var(--ease); }
.market-link:hover { border-color: rgba(16,35,29,0.38); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.market-rank { width: 35px; height: 35px; display: grid; place-items: center; flex: 0 0 auto; color: var(--ink); background: var(--paper-2); border-radius: 50%; font-size: 0.66rem; font-weight: 900; }
.market-link[data-featured="true"] .market-rank { background: var(--acid); }
.market-name strong { display: block; font-size: 0.85rem; line-height: 1.2; }
.market-name span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.66rem; }
.market-link[hidden] { display: none; }

.faq-list { display: grid; gap: 11px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.faq-item summary { position: relative; padding: 22px 62px 22px 24px; font-weight: 850; line-height: 1.35; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; width: 30px; height: 30px; right: 20px; top: 50%; display: grid; place-items: center; color: var(--ink); background: var(--acid); border-radius: 50%; content: "+"; font-size: 1.25rem; transform: translateY(-50%); transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 24px 23px; color: var(--muted); font-size: 0.92rem; }
.faq-answer p:last-child { margin-bottom: 0; }

.cta-panel { position: relative; overflow: hidden; padding: clamp(38px, 7vw, 76px); color: var(--white); background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); }
.cta-panel::before { position: absolute; width: 330px; height: 330px; right: -150px; top: -190px; background: var(--acid); border-radius: 50%; content: ""; opacity: 0.9; }
.cta-panel::after { position: absolute; width: 200px; height: 200px; right: 90px; bottom: -150px; background: var(--ember); border-radius: 50%; content: ""; }
.cta-content { position: relative; z-index: 1; max-width: 800px; }
.cta-panel h2 { max-width: 760px; }
.cta-panel .lead { max-width: 650px; margin-bottom: 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.page-hero { position: relative; overflow: hidden; padding-block: 96px 92px; color: var(--white); background: var(--ink); }
.page-hero::after { position: absolute; width: 460px; height: 460px; right: -190px; top: -250px; border: 80px solid rgba(216,255,79,0.1); border-radius: 50%; content: ""; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 980px; font-size: clamp(3rem, 7vw, 6rem); }
.page-hero .lead { max-width: 740px; margin-bottom: 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; color: rgba(255,255,255,0.55); font-size: 0.74rem; }
.breadcrumbs a { color: rgba(255,255,255,0.8); }

.city-hero-grid { display: grid; grid-template-columns: 1fr minmax(360px, 0.68fr); gap: clamp(42px, 7vw, 90px); align-items: center; }
.city-stat-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.city-stat { padding: 13px 16px; background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark); border-radius: 12px; }
.city-stat strong { display: block; color: var(--acid); font-size: 1rem; }
.city-stat span { color: rgba(255,255,255,0.6); font-size: 0.67rem; }

.quick-form { padding: 28px; color: var(--ink); background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.quick-form h2 { margin-bottom: 8px; font-family: inherit; font-size: 1.55rem; letter-spacing: -0.04em; }
.quick-form > p { color: var(--muted); font-size: 0.84rem; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(44px, 8vw, 100px); align-items: start; }
.prose { font-size: 1.02rem; line-height: 1.8; }
.prose h2 { margin-top: 2.2em; font-size: clamp(2rem, 4vw, 3rem); }
.prose h3 { margin-top: 2em; font-size: 1.35rem; }
.prose p, .prose li { color: #43524d; }
.prose a { color: var(--ink); font-weight: 750; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose blockquote { margin: 30px 0; padding: 22px 25px; color: var(--ink); background: var(--paper-2); border-left: 4px solid var(--ember); border-radius: 0 14px 14px 0; }
.prose blockquote p { margin: 0; color: inherit; }

.side-card { position: sticky; top: calc(var(--header-h) + 32px); padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.side-card h3 { font-size: 1.1rem; }
.side-card p { color: var(--muted); font-size: 0.82rem; }
.side-list { display: grid; gap: 10px; padding: 0; margin: 19px 0; list-style: none; }
.side-list li { padding-bottom: 10px; border-bottom: 1px solid var(--line); font-size: 0.78rem; }
.side-list li:last-child { border-bottom: 0; }

.related-markets { display: flex; flex-wrap: wrap; gap: 9px; }
.related-markets a { padding: 7px 11px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: 0.72rem; font-weight: 800; text-decoration: none; }
.related-markets a:hover { background: var(--acid); border-color: var(--acid-2); }

.comparison-table-wrap { overflow-x: auto; margin-top: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--white); }
.comparison-table th, .comparison-table td { padding: 17px 19px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison-table th { color: var(--ink); background: var(--paper-2); font-size: 0.78rem; }
.comparison-table td { color: var(--muted); font-size: 0.82rem; }
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table td:nth-child(3), .comparison-table th:nth-child(3) { background: rgba(216,255,79,0.16); }

.legal-meta { display: flex; flex-wrap: wrap; gap: 13px 22px; margin-top: 24px; color: rgba(255,255,255,0.6); font-size: 0.78rem; }
.legal-card { margin-bottom: 18px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.legal-card h2 { font-family: inherit; font-size: 1.35rem; letter-spacing: -0.025em; }
.legal-card p:last-child { margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 24px; }
.contact-card { padding: clamp(28px, 4vw, 46px); border-radius: var(--radius-lg); }
.contact-card.dark { color: var(--white); background: var(--ink); }
.contact-card.light { background: var(--white); border: 1px solid var(--line); }
.contact-detail { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.contact-detail:last-child { border-bottom: 0; }
.contact-detail svg { width: 22px; height: 22px; color: var(--acid); flex: 0 0 auto; }
.contact-detail strong { display: block; font-size: 0.78rem; }
.contact-detail a, .contact-detail span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

.not-found { min-height: 70vh; display: grid; place-items: center; padding-block: 80px; text-align: center; }
.not-found-code { color: var(--ember); font-family: Georgia, serif; font-size: clamp(7rem, 22vw, 14rem); font-weight: 800; line-height: 0.7; letter-spacing: -0.08em; }
.not-found h1 { margin-top: 30px; font-size: clamp(2.4rem, 6vw, 4rem); }

.site-footer { color: var(--white); background: #071611; }
.footer-main { display: grid; grid-template-columns: 1.45fr repeat(3, 0.72fr); gap: 44px; padding-block: 72px 54px; }
.footer-brand p { max-width: 410px; margin: 22px 0; color: rgba(255,255,255,0.62); font-size: 0.83rem; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 10px 18px; color: rgba(255,255,255,0.75); font-size: 0.78rem; }
.footer-contact a { color: var(--acid); font-weight: 800; }
.footer-col h2 { margin-bottom: 18px; font-family: inherit; font-size: 0.72rem; letter-spacing: 0.11em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.62); font-size: 0.8rem; text-decoration: none; }
.footer-links a:hover { color: var(--acid); }
.footer-disclosure { padding: 24px 0; color: rgba(255,255,255,0.52); border-top: 1px solid var(--line-dark); font-size: 0.68rem; line-height: 1.6; }
.footer-bottom { padding: 18px 0 28px; color: rgba(255,255,255,0.45); border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.7rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-legal a { color: inherit; }

.mobile-cta {
  position: fixed;
  z-index: 70;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 6px;
  background: rgba(16,35,29,0.95);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
  backdrop-filter: blur(15px);
}
.mobile-cta a { min-height: 45px; display: grid; place-items: center; color: var(--white); border-radius: 999px; font-size: 0.77rem; font-weight: 900; text-decoration: none; }
.mobile-cta a:last-child { color: var(--ink); background: var(--acid); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .header-phone { display: none; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 40px; }
  .hero-copy h1 { font-size: clamp(3.4rem, 6.6vw, 5.25rem); }
  .trust-ribbon-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(16,35,29,0.16); }
  .markets-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.4fr repeat(2, 0.8fr); }
  .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 850px) {
  :root { --header-h: 70px; }
  .announcement-inner { min-height: 33px; font-size: 0.69rem; }
  .mobile-nav { inset: calc(33px + var(--header-h)) 0 auto; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 70px 82px; }
  .hero-copy { max-width: 760px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 11vw, 5.6rem); }
  .hero-form-column { width: min(100%, 570px); }
  .option-grid { grid-template-columns: 1fr; }
  .option-card.featured { transform: none; }
  .process-grid, .structure-panel, .market-feature, .city-hero-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .process-copy, .side-card { position: static; }
  .market-visual { min-height: 370px; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .city-hero-grid .quick-form { max-width: 580px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  body { padding-bottom: 78px; }
  .container, .narrow { width: min(100% - 28px, var(--max)); }
  .brand-mark { width: 40px; height: 40px; border-radius: 12px 12px 12px 4px; }
  .brand-type strong { font-size: 0.86rem; }
  .brand-type span { font-size: 0.57rem; }
  .header-actions .button { display: none; }
  .hero-grid { padding-block: 56px 70px; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .micro-proof { display: grid; }
  .intake-head { padding: 25px 22px 16px; }
  .lead-form { padding: 22px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-grid .full { grid-column: auto; }
  .trust-ribbon-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 88px; border-right: 0; border-bottom: 1px solid rgba(16,35,29,0.16); }
  .trust-item:nth-child(2) { border-bottom: 1px solid rgba(16,35,29,0.16); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding-block: 74px; }
  .section-head { margin-bottom: 38px; }
  .fit-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 48px 1fr; gap: 14px; padding: 23px 19px; }
  .process-number { width: 43px; height: 43px; }
  .structure-main, .disclosure-callout { padding: 26px 23px; }
  .markets-grid { grid-template-columns: 1fr; }
  .market-link { min-height: 76px; }
  .page-hero { padding-block: 66px 62px; }
  .page-hero h1 { font-size: clamp(2.75rem, 14vw, 4.5rem); }
  .quick-form { padding: 23px; }
  .cta-panel { padding: 35px 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; padding-block: 58px 40px; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
  .footer-bottom-inner { align-items: flex-start; flex-direction: column; }
  .mobile-cta { display: grid; }
}

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

@media print {
  .announcement, .site-header, .mobile-nav, .mobile-cta, .hero-actions, .cta-panel, .site-footer { display: none !important; }
  body { color: #000; background: #fff; padding: 0; }
  .hero, .page-hero, .section-dark { color: #000; background: #fff; }
  .section { padding-block: 30px; }
  a { color: #000; }
}

