:root {
  --cream: #FDF6E3;
  --paper: #FFFFFF;
  --sandstone: #D4C5B0;
  --taupe: #C8B99A;
  --sage: #7A9E7E;
  --teal: #1A5F5F;
  --gold: #C9A84C;
  --saddle: #8B5E3C;
  --coffee: #2D1F14;
  --warm-white: #FDFAF5;
  --sage-tint: #EEF5EC;
  --blue-tint: #EAF3F5;
  --ink-soft: #6B5848;
  --ink-muted: #7A6A5D;
  --line: rgba(45, 31, 20, 0.14);
  --shadow: 0 18px 55px rgba(45, 31, 20, 0.12);
  --shadow-hover: 0 26px 70px rgba(26, 95, 95, 0.18);
  --radius: 8px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 28px;
  --space-6: 40px;
  --space-7: 56px;
  --space-8: 80px;
  --space-9: 108px;
  --space-10: 128px;
  --space-11: 144px;
  --space-12: 160px;
  --space-13: 192px;
  --space-14: 224px;
  --space-15: 256px;
  --space-16: 320px;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.375rem;
  --text-5xl: 3.25rem;
  --text-6xl: 4.75rem;
  --container: 1200px;
  --max-w-xl: 1280px;
  --narrow: 720px;
  --card-radius: 12px;
  --focus: 0 0 0 4px rgba(26, 95, 95, 0.18);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  color: var(--coffee);
  background:
    linear-gradient(90deg, rgba(26, 95, 95, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 168, 76, 0.026) 1px, transparent 1px),
    var(--cream);
  background-size: 88px 88px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

::selection {
  color: var(--cream);
  background: var(--teal);
}

::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: var(--warm-white); }
::-webkit-scrollbar-thumb {
  background: var(--teal);
  border: 2px solid var(--warm-white);
  border-radius: 999px;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
svg { display: block; max-width: 100%; }
svg path, svg circle, svg line, svg polyline, svg rect { vector-effect: non-scaling-stroke; }

h1, h2, h3, p, ul, ol, blockquote { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  color: var(--coffee);
}
h1 {
  max-width: 850px;
  margin-bottom: var(--space-4);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  line-height: 0.98;
}
h2 {
  margin-bottom: var(--space-3);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  line-height: 1.08;
}
h3 {
  margin-bottom: var(--space-1);
  font-size: var(--text-xl);
  line-height: 1.22;
  letter-spacing: 0;
}
p {
  color: var(--ink-soft);
  margin-bottom: var(--space-3);
}
ul, ol { color: var(--ink-soft); }

.container {
  width: min(var(--container), calc(100% - var(--space-7)));
  margin-inline: auto;
}
.container--narrow,
.narrow {
  width: min(var(--narrow), calc(100% - var(--space-7)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: var(--space-2) max(var(--space-4), calc((100vw - var(--container)) / 2));
  background: rgba(253, 250, 245, 0.9);
  border-bottom: 1px solid rgba(200, 185, 154, 0.55);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-width: 0;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--teal);
  background: var(--paper);
  border: 1px solid rgba(26, 95, 95, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(45, 31, 20, 0.08);
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px 10px auto;
  height: 9px;
  border: 2px solid rgba(201, 168, 76, 0.75);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}
.brand-mark svg { width: 30px; height: 30px; }
.brand-mark path:first-child { fill: currentColor; stroke: none; }
.brand-mark path:last-child {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
}
.brand strong,
.brand small { display: block; }
.brand strong { font-size: var(--text-base); line-height: 1.1; }
.brand small {
  color: var(--ink-soft);
  font-size: var(--text-xs);
  font-weight: 750;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 var(--space-2);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  font-weight: 850;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
  background: rgba(122, 158, 126, 0.16);
  outline: none;
  transform: translateY(-1px);
}
.site-nav .nav-cta {
  padding-inline: var(--space-4);
  color: var(--cream);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(26, 95, 95, 0.22);
}
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--cream);
  background: #164f4f;
  box-shadow: var(--shadow-hover);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(45, 31, 20, 0.06);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--coffee);
  transition: transform 180ms ease, opacity 180ms ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(26, 95, 95, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(201, 168, 76, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 78% 12%, rgba(201, 168, 76, 0.25), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(122, 158, 126, 0.2), transparent 34%),
    linear-gradient(180deg, var(--warm-white), var(--cream));
  background-size: 88px 88px, 88px 88px, auto, auto, auto;
}
.hero {
  min-height: 680px;
  padding: var(--space-9) 0 var(--space-11);
}
.page-hero {
  padding: var(--space-8) 0 var(--space-7);
}
.grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.13;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
}
.sunburst {
  position: absolute;
  top: var(--space-5);
  right: max(var(--space-4), calc((100vw - var(--max-w-xl)) / 2));
  width: min(28vw, 250px);
  color: var(--gold);
  opacity: 0.24;
}
.sunburst circle {
  fill: rgba(201, 168, 76, 0.22);
  stroke: var(--gold);
  stroke-width: 2;
}
.sunburst path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: var(--space-9);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  max-width: 760px;
  margin-bottom: var(--space-5);
  color: #24170f;
  font-size: clamp(var(--text-5xl), 7vw, 5.35rem);
  line-height: 0.96;
}
.eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--saddle);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-lede {
  max-width: 680px;
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  line-height: 1.58;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-6) 0 var(--space-4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  min-height: 48px;
  padding: 0 var(--space-4);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn svg { width: 18px; height: 18px; }
.btn svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  outline: none;
}
.btn-primary {
  color: var(--cream);
  background: var(--teal);
  box-shadow: 0 14px 34px rgba(26, 95, 95, 0.25);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #164f4f;
  box-shadow: var(--shadow-hover);
}
.btn-secondary {
  color: var(--coffee);
  background: var(--paper);
  border-color: rgba(200, 185, 154, 0.78);
  box-shadow: 0 9px 24px rgba(45, 31, 20, 0.07);
}
.hero-secondary {
  color: var(--teal);
  background: rgba(253, 250, 245, 0.72);
  border-color: rgba(26, 95, 95, 0.28);
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus-visible { box-shadow: var(--shadow-hover); }
.btn-ghost {
  color: var(--coffee);
  border-color: rgba(45, 31, 20, 0.22);
  background: transparent;
}
.btn-light {
  color: var(--teal);
  background: var(--cream);
  box-shadow: 0 10px 26px rgba(45, 31, 20, 0.12);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-1);
}
.trust-strip span,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 var(--space-3);
  border: 1px solid rgba(200, 185, 154, 0.76);
  border-radius: 999px;
  color: var(--saddle);
  background: rgba(255, 255, 255, 0.76);
  font-size: var(--text-xs);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 390px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 0 0;
  border: 1px solid rgba(26, 95, 95, 0.16);
  border-radius: 32px 32px 16px 16px;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(26, 95, 95, 0.12) 24% 25%, transparent 25% 49%, rgba(26, 95, 95, 0.12) 49% 50%, transparent 50% 74%, rgba(26, 95, 95, 0.12) 74% 75%, transparent 75%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(238, 245, 236, 0.58));
  box-shadow: var(--shadow);
}
.hero-visual::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 16px;
  left: 12%;
  height: 72px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.28), rgba(139, 94, 60, 0.14));
  opacity: 0.78;
}
.floating-home {
  position: absolute;
  top: 12px;
  right: 4%;
  z-index: 2;
  width: min(260px, 66%);
  filter: drop-shadow(0 18px 26px rgba(45, 31, 20, 0.16));
  animation: bob 4.8s ease-in-out infinite;
}
.home-porch {
  fill: var(--teal);
  stroke: rgba(45, 31, 20, 0.14);
  stroke-width: 2;
}
.home-roof,
.home-shadow,
.home-step,
.home-awning,
.chat-line {
  fill: none;
  stroke: var(--cream);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-roof {
  stroke: var(--saddle);
  stroke-width: 9;
}
.home-shadow {
  stroke: rgba(45, 31, 20, 0.16);
  stroke-width: 8;
}
.home-door {
  fill: var(--saddle);
  stroke: var(--cream);
  stroke-width: 2;
}
.home-window {
  fill: var(--cream);
  stroke: rgba(45, 31, 20, 0.2);
  stroke-width: 2;
}
.chat {
  fill: var(--gold);
  stroke: var(--coffee);
  stroke-width: 2;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

.hero-card,
.price-card,
.phone,
.feature-card,
.steps article,
.step-card,
.trust-badge,
.before-after article,
.timeline article,
.faq-item,
.info-card,
.service-card,
.check-panel,
.comparison-table,
.intake-form {
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.hero-card {
  position: absolute;
  right: 0;
  bottom: var(--space-3);
  width: min(100%, 390px);
  padding: var(--space-4);
}
.panel-top,
.request-card,
.mini-map { border-radius: 12px; }
.panel-top {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-3);
  padding: var(--space-2);
  color: var(--cream);
  background: var(--teal);
  font-weight: 900;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.22);
}
.request-card {
  padding: var(--space-4);
  background: var(--warm-white);
}
.request-card span {
  display: block;
  margin-bottom: var(--space-1);
  color: var(--saddle);
  font-size: var(--text-sm);
  font-weight: 900;
}
.mini-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
  margin-top: var(--space-3);
  padding: var(--space-2);
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.16), rgba(201, 168, 76, 0.18));
}
.mini-map span {
  display: grid;
  place-items: center;
  min-height: 72px;
  border: 1px solid rgba(26, 95, 95, 0.16);
  border-radius: 10px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.hero-skyline {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;
}
.hero-skyline svg {
  width: 100%;
  height: 220px;
}
.sky-ground { fill: var(--sage); }
.sky-buildings { fill: var(--teal); }
.sky-line,
.sky-roof-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 7;
  stroke-linecap: round;
}
.sky-roof { fill: var(--saddle); }

.section {
  position: relative;
  padding: var(--space-8) 0;
}
.homepage .section-sage { padding: var(--space-9) 0; }
.section-paper { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-sage { background: var(--sage-tint); }
.section-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 95, 95, 0.24), rgba(201, 168, 76, 0.3), transparent);
}
.section-divider.wavy {
  height: 12px;
  background: radial-gradient(18px 8px at 18px 0, transparent 18px, rgba(26,95,95,.16) 19px, transparent 20px) repeat-x;
  background-size: 72px 12px;
}
.section-compact { padding: var(--space-6) 0; }

.section-heading {
  max-width: 780px;
  margin: 0 auto var(--space-6);
  text-align: center;
}
.section-heading.left {
  margin-inline: 0;
  text-align: left;
}
.center-action {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: var(--space-6);
  align-items: center;
}
.preview-grid { margin-top: var(--space-1); }
.price-snapshot {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}
.price-snapshot span {
  display: block;
  padding: var(--space-4);
  border-radius: 12px;
  color: var(--teal);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-4xl);
  font-weight: 900;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}
.boundary-card {
  border-color: rgba(200, 80, 40, 0.3);
  background: rgba(200, 80, 40, 0.04);
}
.boundary-card:hover {
  border-color: rgba(200, 80, 40, 0.5);
  box-shadow: 0 18px 55px rgba(200, 80, 40, 0.1);
}
.info-card {
  position: relative;
  padding: var(--space-6);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26, 95, 95, 0.22);
}
.info-card h2:last-child,
.info-card p:last-child,
.price-card p:last-child,
.trust-badge p:last-child,
.service-card p:last-child { margin-bottom: 0; }

.comparison-table {
  display: grid;
  margin-top: var(--space-5);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table > div {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
}
.comparison-table-four > div {
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
}
.comparison-table span,
.comparison-table strong {
  min-width: 0;
  padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.comparison-table > div:last-child span { border-bottom: 0; }
.comparison-table strong {
  color: var(--cream);
  background: var(--teal);
}

.steps,
.pricing-grid,
.trust-grid,
.storm-grid,
.demo-grid {
  display: grid;
  gap: var(--space-5);
}
.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps article {
  padding: var(--space-6);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.steps article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin: 0 auto var(--space-6);
}
.step-card {
  padding: var(--space-5);
}
.step-card h2 {
  font-size: var(--text-2xl);
}
.step-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-3);
  border-radius: 50%;
  color: var(--cream);
  background: var(--teal);
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(122, 158, 126, 0.16);
}
.thanks-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin: 0 auto var(--space-5);
}
.thanks-cta .btn { min-width: 180px; }

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.pricing-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-width: 0;
  padding: var(--space-6);
  overflow: hidden;
  border-top: 5px solid var(--sandstone);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.price-card:nth-child(3),
.price-card.accent-gold-card {
  border-top-color: var(--gold);
}
.price-card.featured {
  color: var(--cream);
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 168, 76, 0.2), transparent 28%),
    var(--teal);
  border-top-color: var(--gold);
  transform: scale(1.02);
  box-shadow: 0 24px 70px rgba(26, 95, 95, 0.28), 0 0 0 8px rgba(201, 168, 76, 0.1);
}
.price-card.featured:hover { transform: translateY(-3px) scale(1.02); }
.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--cream), var(--gold));
  background-size: 220% 100%;
  animation: shimmer 2.8s linear infinite;
}
@keyframes shimmer { to { background-position: 220% 0; } }
.price-card.featured p,
.price-card.featured .price span,
.price-card.featured li { color: rgba(253, 246, 227, 0.88); }
.price-card.featured h3,
.price-card.featured .price { color: var(--cream); }
.price-card .badge {
  align-self: flex-start;
  color: var(--coffee);
  background: var(--gold);
  border: 0;
}
.price {
  margin: var(--space-1) 0;
  color: var(--coffee);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(var(--text-4xl), 4vw, var(--text-5xl));
  font-weight: 900;
  line-height: 1;
}
.price span {
  color: var(--ink-soft);
  font-family: inherit;
  font-size: var(--text-base);
}
.feature-checks {
  display: grid;
  gap: var(--space-1);
  margin: var(--space-2) 0 var(--space-3);
  padding: 0;
  list-style: none;
}
.feature-checks li {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--ink-soft);
  font-weight: 750;
}
.feature-checks svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--sage);
}
.feature-checks path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.price-card .btn { margin-top: auto; }
.homepage .pricing-grid { gap: var(--space-6); }
.homepage .price-card {
  gap: var(--space-3);
  padding: var(--space-6) var(--space-5);
}
.homepage .price-card.featured {
  border-color: rgba(201, 168, 76, 0.56);
}
.homepage .price-card.accent-gold-card {
  border-color: rgba(201, 168, 76, 0.5);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.1), var(--paper) 44%);
}
.homepage .price {
  margin: 0 0 var(--space-1);
}
.homepage .feature-checks { gap: var(--space-2); }
.plan-note {
  max-width: 760px;
  margin: var(--space-4) auto 0;
  text-align: center;
  font-weight: 750;
}
.pricing-grid-compact .price-card { padding: var(--space-4); }
.pricing-grid-compact .price-card .price { font-size: var(--text-3xl); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 172px;
  padding: var(--space-5);
  overflow: hidden;
  border-top: 5px solid var(--teal);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  outline: none;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -30px;
  width: 96px;
  height: 96px;
  border: 13px solid rgba(201, 168, 76, 0.16);
  border-radius: 50%;
}
.accent-gold { border-top-color: var(--gold); }
.accent-sage { border-top-color: var(--sage); }
.accent-saddle { border-top-color: var(--saddle); }
.accent-teal { border-top-color: var(--teal); }
.service-badge,
.feature-icon svg,
.trust-badge svg,
.timeline svg {
  width: 48px;
  height: 48px;
}
.service-badge {
  margin-bottom: var(--space-3);
  color: var(--teal);
}
.service-badge path,
.service-badge circle,
.service-badge line,
.service-badge polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-grid span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--coffee);
  font-weight: 900;
}

.feature-list { display: grid; gap: var(--space-4); }
.feature-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: start;
  gap: var(--space-4);
  padding: var(--space-6);
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  color: var(--cream);
  background: var(--teal);
}
.feature-icon svg { width: 34px; height: 34px; }
.feature-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.storm {
  color: var(--coffee);
  background: linear-gradient(135deg, rgba(253, 250, 245, 0.96), rgba(238, 245, 236, 0.9));
}
.storm-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
}
.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}
.before-after article {
  padding: var(--space-5);
  border-top: 5px solid var(--gold);
}
.before-after article:nth-child(2) { border-top-color: var(--teal); }
.before-after ul {
  margin: 0;
  padding-left: var(--space-4);
}

.trust-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}
.trust-line {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  font-weight: 850;
  text-align: center;
  margin-bottom: var(--space-4);
  letter-spacing: 0;
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}
.trust-badge {
  padding: var(--space-5);
  border-left: 5px solid var(--sage);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.trust-badge svg {
  margin-bottom: var(--space-2);
  color: var(--teal);
}
.trust-badge path,
.trust-badge circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-wrap { position: relative; }
.timeline-line {
  position: absolute;
  top: 44px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--saddle), var(--teal));
}
.timeline-line span {
  position: absolute;
  top: -6px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--teal);
  border-radius: 50%;
  background: var(--paper);
}
.timeline-line span:nth-child(1) { left: 0; border-color: var(--sage); }
.timeline-line span:nth-child(2) { left: 33%; border-color: var(--gold); }
.timeline-line span:nth-child(3) { left: 66%; border-color: var(--saddle); }
.timeline-line span:nth-child(4) { right: 0; border-color: var(--teal); }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}
.timeline article {
  min-width: 0;
  padding: var(--space-5);
}
.timeline svg { margin-bottom: var(--space-3); }
.timeline path,
.timeline circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.timeline span {
  display: inline-block;
  margin-bottom: var(--space-1);
  color: var(--coffee);
  font-weight: 900;
}
.season.spring { background: #F5FAEE; color: var(--sage); }
.season.summer { background: #FFF5D7; color: var(--gold); }
.season.fall { background: #F7EBDD; color: var(--saddle); }
.season.winter { background: var(--blue-tint); color: var(--teal); }

.demo-section {
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.14), rgba(253, 246, 227, 0.8));
}
.demo-grid {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
}
blockquote {
  margin: var(--space-5) 0 0;
  padding-left: var(--space-3);
  border-left: 4px solid var(--gold);
  color: var(--coffee);
}
cite {
  color: var(--saddle);
  font-style: normal;
  font-weight: 850;
}
.phone {
  width: min(100%, 430px);
  margin-left: auto;
  padding: 14px;
  background: var(--paper);
  border: 8px solid var(--coffee);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(45, 31, 20, 0.2);
}
.phone-top {
  width: 86px;
  height: 6px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(45, 31, 20, 0.18);
}
.chat-window {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 430px;
  overflow: auto;
  padding: var(--space-3);
  border-radius: 24px;
  background: linear-gradient(180deg, #F7FAFB, var(--paper));
  scroll-behavior: smooth;
}
.bubble {
  max-width: 82%;
  padding: 11px 14px;
  border-radius: 18px;
  font-weight: 720;
  box-shadow: 0 4px 10px rgba(45, 31, 20, 0.06);
}
.bubble.user {
  align-self: flex-end;
  color: var(--coffee);
  background: var(--cream);
  border-bottom-right-radius: 5px;
}
.bubble.ops {
  align-self: flex-start;
  color: var(--cream);
  background: var(--teal);
  border-bottom-left-radius: 5px;
}
.typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 5px;
  padding: 13px 14px;
  border-radius: 18px;
  border-bottom-left-radius: 5px;
  background: var(--teal);
}
.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.55;
  animation: typing 1.1s ease-in-out infinite;
}
.typing span:nth-child(2) { animation-delay: 0.14s; }
.typing span:nth-child(3) { animation-delay: 0.28s; }
@keyframes typing {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
  40% { transform: translateY(-5px); opacity: 1; }
}

.chat-mockup-wrapper {
  display: flex;
  justify-content: center;
  padding: var(--space-3) 0;
}
.chat-mockup { display: flex; justify-content: center; }
.chat-phone-frame {
  width: min(340px, 100%);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.chat-phone-header {
  background: var(--teal);
  padding: var(--space-2) var(--space-3);
}
.chat-phone-label {
  color: rgba(253, 250, 245, 0.72);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3);
}
.chat-bubble {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: var(--text-sm);
  line-height: 1.5;
}
.chat-bubble--homeowner {
  align-self: flex-start;
  color: var(--coffee);
  background: var(--sage-tint);
  border-bottom-left-radius: 4px;
}
.chat-bubble--ops {
  align-self: flex-end;
  color: var(--cream);
  background: var(--teal);
  border-bottom-right-radius: 4px;
}

.faq-list {
  display: grid;
  gap: var(--space-4);
}
.faq-item {
  overflow: hidden;
  border-left: 5px solid transparent;
  border-bottom: 1px solid rgba(45, 31, 20, 0.1);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.faq-item.open { border-left-color: var(--teal); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  width: 100%;
  min-height: 56px;
  padding: var(--space-4);
  border: 0;
  color: var(--coffee);
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-question:focus-visible {
  outline: none;
  box-shadow: inset var(--focus);
}
.faq-question svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: var(--teal);
  transition: transform 220ms ease;
}
.faq-question path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 var(--space-4) var(--space-4);
}

.intake-form {
  display: grid;
  gap: var(--space-5);
  padding: var(--space-6);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}
.full-span { grid-column: 1 / -1; }
.intake-form label,
.intake-form legend {
  color: var(--coffee);
  font-size: var(--text-sm);
  font-weight: 850;
}
.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  min-height: 48px;
  margin-top: var(--space-1);
  padding: 12px 14px;
  border: 1px solid rgba(45, 31, 20, 0.22);
  border-radius: 12px;
  color: var(--coffee);
  background: var(--warm-white);
}
.intake-form textarea {
  min-height: 116px;
  resize: vertical;
}
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: var(--focus);
}
.intake-form fieldset {
  margin: 0;
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
}
.compact-fieldset { padding: var(--space-4); }
.compact-fieldset.full-span {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}
.compact-fieldset.full-span legend { grid-column: 1 / -1; }
.landlord-fields {
  display: none;
  background: var(--sage-tint);
}
.landlord-fields.is-active { display: grid; }
.maintenance-section {
  margin: 0;
  padding: var(--space-4);
  border: 1px solid rgba(26, 95, 95, 0.22);
  border-top: 4px solid var(--teal);
  border-radius: var(--card-radius);
  background: var(--cream);
}
.maintenance-section legend {
  margin-bottom: var(--space-2);
  color: var(--teal);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.field-hint,
.inline-disclaimer {
  color: var(--ink-muted);
  font-size: var(--text-sm);
}
.field-hint { margin: calc(var(--space-2) * -1) 0 0; }
.addons-hint {
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
}
.addons-notes-hint {
  margin-top: 0;
  font-size: var(--text-sm);
}
.inline-disclaimer {
  margin: 0;
  padding: var(--space-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-1);
}
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  margin-top: var(--space-1);
}
.checkbox-group {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.check-grid label,
.radio-row label,
.checkbox-label,
.consent {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--ink-soft);
  font-weight: 750;
}
.checkbox-label {
  min-height: 44px;
  cursor: pointer;
}
.check-grid input,
.radio-row input,
.consent input,
.checkbox-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--teal);
}
.upload-box {
  padding: var(--space-4);
  border: 1px dashed rgba(26, 95, 95, 0.36);
  border-radius: var(--card-radius);
  background: var(--sage-tint);
}
.upload-box span {
  display: block;
  margin-top: var(--space-1);
  color: var(--ink-soft);
  font-weight: 650;
}
.consent {
  align-items: flex-start;
  line-height: 1.45;
}
.form-success {
  padding: var(--space-3);
  border-radius: 12px;
  color: var(--cream);
  background: var(--teal);
  font-weight: 850;
}
.form-error {
  margin-bottom: 0;
  padding: var(--space-3);
  border-radius: 12px;
  color: var(--cream);
  background: var(--saddle);
  font-weight: 750;
}

.simple-category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  min-height: 44px;
  padding: 0 var(--space-4);
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(45, 31, 20, 0.07);
  font-size: var(--text-sm);
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.category-pill:hover {
  transform: translateY(-3px);
  color: var(--teal);
  border-color: var(--sage);
  box-shadow: var(--shadow-hover);
}
.category-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.category-pill svg path,
.category-pill svg line,
.category-pill svg polyline {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.two-column,
.track-cards,
.trust-preview-grid {
  display: grid;
  gap: var(--space-4);
}
.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.track-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}
.care-track-section .section-heading { margin-bottom: var(--space-5); }
.track-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 270px;
  padding: var(--space-6);
  border-top: 5px solid var(--teal);
  background: linear-gradient(180deg, var(--paper), rgba(253, 250, 245, 0.92));
}
.track-card p { margin-bottom: auto; }
.track-card .btn {
  align-self: flex-start;
  min-width: 138px;
}
.track-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.track-card-header h3 { margin-bottom: 0; }
.track-icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(26, 95, 95, 0.2);
  border-radius: 14px;
  color: var(--teal);
  background: var(--sage-tint);
}
.track-icon-gold {
  color: var(--saddle);
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.45);
}
.track-icon svg {
  width: 26px;
  height: 26px;
}
.track-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-preview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trust-stack { display: grid; gap: var(--space-4); }
.text-list li { align-items: flex-start; }
.text-list li::before,
.check-panel li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.check-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3) var(--space-4);
  margin: 0;
  padding: var(--space-6);
  list-style: none;
}
.check-panel li {
  display: flex;
  gap: var(--space-1);
  color: var(--ink-soft);
  font-weight: 750;
}
.addon-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin: var(--space-3) 0 0;
}
.addon-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 var(--space-2);
  border: 1px solid rgba(26, 95, 95, 0.2);
  border-radius: 999px;
  color: var(--teal);
  background: var(--sage-tint);
  font-size: var(--text-sm);
  font-weight: 850;
}
.center-pills { justify-content: center; }
.boundary-card {
  border-top: 5px solid var(--saddle);
}
.boundary-card ul {
  display: grid;
  gap: var(--space-1);
  margin: var(--space-2) 0 0;
  padding-left: var(--space-4);
  color: var(--ink-soft);
  font-weight: 750;
}

.concierge-graphic {
  width: min(620px, 100%);
  margin: 0 auto var(--space-5);
  color: var(--teal);
}
.concierge-graphic svg { filter: drop-shadow(0 15px 28px rgba(45, 31, 20, 0.1)); }
.concierge-graphic path:first-child { fill: var(--teal); }
.concierge-graphic path:nth-child(2),
.concierge-graphic path:nth-child(4) {
  fill: none;
  stroke: var(--cream);
  stroke-width: 6;
  stroke-linecap: round;
}
.concierge-graphic path:nth-child(3) {
  fill: var(--paper);
  stroke: rgba(26, 95, 95, 0.22);
  stroke-width: 2;
}
.concierge-graphic circle { fill: var(--gold); }

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(201, 168, 76, 0.18), transparent 34%),
    linear-gradient(180deg, var(--warm-white), var(--cream));
}
.final-cta p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { justify-content: center; }

.site-footer {
  padding: var(--space-7) 0 var(--space-9);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(253, 246, 227, 0.05) 1px, transparent 1px),
    var(--coffee);
  background-size: 44px 44px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: var(--space-6);
  align-items: start;
}
.site-footer p { color: rgba(253, 246, 227, 0.78); }
.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--text-2xl);
}
.footer-icons {
  display: flex;
  gap: var(--space-1);
  margin-top: var(--space-3);
}
.footer-icons svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid rgba(253, 246, 227, 0.18);
  border-radius: 10px;
  color: var(--gold);
}
.footer-icons path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.disclaimer {
  margin: 0;
  padding: var(--space-4);
  border: 1px solid rgba(253, 246, 227, 0.18);
  border-radius: 12px;
  background: rgba(253, 246, 227, 0.07);
  font-weight: 750;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: none;
  padding: 10px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(253, 250, 245, 0.96);
  border-top: 1px solid rgba(26, 95, 95, 0.18);
  box-shadow: 0 -18px 44px rgba(45, 31, 20, 0.14);
  backdrop-filter: blur(16px);
  transform: translateY(120%);
  transition: transform 220ms ease;
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--teal);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(26, 95, 95, 0.24);
}
.mobile-cta svg {
  width: 18px;
  height: 18px;
}
.mobile-cta path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.price-card.section-reveal { transform: translateY(24px) scale(0.98); }
.price-card.section-reveal.is-visible { transform: translateY(0) scale(1); }
.price-card.featured.section-reveal { transform: translateY(24px) scale(1); }
.price-card.featured.section-reveal.is-visible { transform: translateY(0) scale(1.02); }

@media (max-width: 1020px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    width: min(84vw, 360px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
    padding: var(--space-4);
    border-left: 1px solid var(--line);
    background: var(--paper);
    box-shadow: -24px 0 60px rgba(45, 31, 20, 0.15);
    transform: translateX(110%);
    transition: transform 220ms ease;
  }
  body.nav-open .site-nav { transform: translateX(0); }
  .site-nav a {
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 var(--space-3);
    border-radius: 12px;
  }
  .site-nav .nav-cta { justify-content: center; }
  .hero-grid,
  .storm-grid,
  .trust-grid,
  .demo-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: var(--space-8) 0 var(--space-10);
  }
  .hero h1 { font-size: clamp(var(--text-5xl), 10vw, var(--text-6xl)); }
  .hero-visual { min-height: 310px; }
  .phone { margin: 0; }
  .steps,
  .pricing-grid-three,
  .track-cards,
  .trust-preview-grid,
  .two-column,
  .check-panel,
  .trust-badges,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .timeline-wrap {
    overflow-x: auto;
    padding-bottom: var(--space-2);
  }
  .timeline { min-width: 820px; }
  .timeline-line {
    min-width: 760px;
    right: auto;
    width: 760px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
    background: var(--cream);
    font-size: var(--text-sm);
  }
  .container,
  .container--narrow,
  .narrow {
    width: min(100% - var(--space-4), var(--container));
  }
  .site-header {
    min-height: 68px;
    padding: var(--space-2) var(--space-3);
  }
  .brand small { display: none; }
  .site-nav { top: 68px; width: min(88vw, 340px); }
  .hero {
    padding: var(--space-7) 0 var(--space-9);
  }
  .page-hero {
    padding: var(--space-6) 0 var(--space-5);
  }
  h1 {
    font-size: clamp(var(--text-4xl), 14vw, var(--text-5xl));
    line-height: 1.02;
  }
  .hero h1 {
    max-width: 11ch;
    margin-bottom: var(--space-4);
    font-size: clamp(var(--text-4xl), 14vw, var(--text-5xl));
    line-height: 1;
  }
  h2 {
    font-size: clamp(var(--text-3xl), 10vw, var(--text-4xl));
  }
  h3 { font-size: var(--text-lg); }
  .hero-grid { gap: var(--space-5); }
  .hero-actions,
  .trust-strip,
  .thanks-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions { gap: var(--space-2); }
  .btn { width: 100%; min-height: 48px; }
  .hero-visual { min-height: 260px; }
  .floating-home {
    width: 140px;
    right: var(--space-3);
  }
  .hero-skyline svg { height: 170px; }
  .section { padding: var(--space-7) 0; }
  .section-heading { margin-bottom: var(--space-5); }
  .steps,
  .pricing-grid-three,
  .before-after,
  .service-grid,
  .trust-badges,
  .track-cards,
  .trust-preview-grid,
  .two-column,
  .check-panel,
  .info-grid,
  .form-grid,
  .check-grid,
  .compact-fieldset.full-span {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .price-card.featured { grid-column: auto; }
  .info-card,
  .price-card,
  .feature-card,
  .trust-badge,
  .intake-form,
  .check-panel {
    padding: var(--space-4);
  }
  .price-card.featured,
  .price-card.featured:hover,
  .price-card.featured.section-reveal.is-visible {
    transform: none;
  }
  .service-card {
    min-height: 136px;
    padding: var(--space-4);
  }
  .feature-card { grid-template-columns: 1fr; }
  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table > div { min-width: 680px; }
  .comparison-table-four > div { min-width: 860px; }
  .chat-window { height: 380px; }
  .faq-question {
    min-height: 56px;
    padding: var(--space-3);
  }
  .faq-answer p { padding: 0 var(--space-3) var(--space-3); }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: var(--space-6) 0 calc(var(--space-9) + env(safe-area-inset-bottom)); }
  .mobile-cta { display: block; }
}

@media (max-width: 390px) {
  .container,
  .container--narrow,
  .narrow {
    width: min(100% - var(--space-3), var(--container));
  }
  .site-header { padding-inline: var(--space-2); }
  .brand { gap: var(--space-1); }
  .brand strong { font-size: var(--text-sm); }
  .hero-actions { margin-top: var(--space-4); }
  .intake-form { gap: var(--space-4); }
  .radio-row { gap: var(--space-2); }
}

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