/* ============================================================
   Rise Local — styles
   Sections in order: tokens · base · layout · header · buttons ·
   hero · marquee · services · how · work · pricing · why ·
   testimonials · faq · cta · footer · reveal · responsive
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
/* Grain / paper texture for depth — sits above bg, below content */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, .site-header, .site-footer { position: relative; z-index: 1; }

/* Scroll-progress bar at top of viewport */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  z-index: 100;
  transition: width 0.12s ease-out;
  pointer-events: none;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Tokens ---------- */
:root {
  --bg: #f4f1e8;
  --bg-soft: #e2dcc6;
  --bg-card: #ffffff;
  --ink: #1c2e1f;
  --ink-soft: #3a4d3d;
  --muted: #6a7a6c;
  --accent: #6b8e23;
  --accent-dark: #4a6618;
  --accent-soft: rgba(107, 142, 35, 0.12);
  --line: #d4ceb8;
  --line-soft: #ddd6c0;
  --shadow-sm: 0 1px 2px rgba(28, 46, 31, 0.05), 0 2px 6px rgba(28, 46, 31, 0.05);
  --shadow-md: 0 4px 12px rgba(28, 46, 31, 0.07), 0 12px 32px rgba(28, 46, 31, 0.07);
  --shadow-lg: 0 8px 24px rgba(28, 46, 31, 0.09), 0 24px 64px rgba(28, 46, 31, 0.09);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --max: 1180px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .section-eyebrow { margin-bottom: 12px; }
.section-head .section-title  { margin-bottom: 14px; }
.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(244, 241, 232, 0.85);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-mark {
  color: var(--accent);
  width: 26px;
  height: 26px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav > a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav > a:hover { color: var(--ink); }
.nav-phone {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: var(--ink) !important;
  font-weight: 600 !important;
}
.nav-phone svg { color: var(--accent); }
.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--bg);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink); }
.btn-full { width: 100%; }

/* ---------- Typography helpers ---------- */
.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: pulse 2s ease-in-out infinite;
}
.eyebrow-light { color: var(--accent); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-soft); }
  50% { box-shadow: 0 0 0 8px rgba(107, 142, 35, 0.05); }
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(244, 241, 232, 0.82) 0%, rgba(244, 241, 232, 0.90) 100%),
    radial-gradient(circle at 85% 10%, rgba(107, 142, 35, 0.18) 0%, rgba(107, 142, 35, 0) 50%),
    radial-gradient(circle at 10% 90%, rgba(107, 142, 35, 0.08) 0%, rgba(107, 142, 35, 0) 40%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28,46,31,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,46,31,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  opacity: 0.5;
}
.hero-inner { position: relative; z-index: 2; }
.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.hero-title .accent { color: var(--accent); }
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroLineReveal 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-line:nth-child(1) { animation-delay: 0.15s; }
.hero-line:nth-child(2) { animation-delay: 0.3s; }
.hero-line:nth-child(3) { animation-delay: 0.45s; }
@keyframes heroLineReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Logo mark SVG draw-in on load */
.logo-mark path {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: logoDraw 1.2s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}
.logo-mark path:nth-child(2) { animation-delay: 0.3s; }
@keyframes logoDraw {
  to { stroke-dashoffset: 0; }
}

/* Cursor spotlight on dark sections */
.testimonials, .cta-band {
  position: relative;
}
.testimonials::after, .cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
                              rgba(107, 142, 35, 0.18),
                              transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.testimonials.spotlight-on::after,
.cta-band.spotlight-on::after { opacity: 1; }
.testimonials > .container, .cta-band > .container { position: relative; z-index: 2; }

/* Magnetic CTA — JS sets --mag-x / --mag-y as deltas */
.btn-primary {
  position: relative;
  transform: translate3d(var(--mag-x, 0), var(--mag-y, 0), 0);
  transition: background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, transform 0.18s ease;
}
.hero-sub {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 0 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  max-width: 640px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-trust li {
  font-size: 14px;
  color: var(--ink-soft);
}
.hero-trust strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.marquee-track .sep {
  color: var(--accent);
  font-size: 10px;
  opacity: 0.9;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Services ---------- */
.services { padding: 96px 0; }
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.card p {
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.card-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--ink-soft);
}
.card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- How it works ---------- */
.how {
  background: var(--bg-soft);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 600px;
  height: 600px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%231c2e1f' stroke-width='1.2'%3E%3Cpath d='M-50 60 Q150 30 300 80 T650 60'/%3E%3Cpath d='M-50 110 Q150 80 300 130 T650 110'/%3E%3Cpath d='M-50 160 Q150 130 300 180 T650 160'/%3E%3Cpath d='M-50 210 Q150 180 300 230 T650 210'/%3E%3Cpath d='M-50 260 Q150 230 300 280 T650 260'/%3E%3Cpath d='M-50 310 Q150 280 300 330 T650 310'/%3E%3Cpath d='M-50 360 Q150 330 300 380 T650 360'/%3E%3Cpath d='M-50 410 Q150 380 300 430 T650 410'/%3E%3Cpath d='M-50 460 Q150 430 300 480 T650 460'/%3E%3Cpath d='M-50 510 Q150 480 300 530 T650 510'/%3E%3Cpath d='M-50 560 Q150 530 300 580 T650 560'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  transform: rotate(180deg);
}
.how > .container { position: relative; z-index: 1; }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(28, 46, 31, 0.2);
}
.step h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.step p {
  margin: 0;
  color: var(--ink-soft);
}

/* ---------- Featured work ---------- */
.work { padding: 96px 0; }
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.work-grid:has(.work-card:only-child) {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
}
.work-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.work-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg-soft);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.mockup {
  position: absolute;
  top: 22%;
  left: 6%;
  right: 6%;
  width: 88%;
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(28, 46, 31, 0.2));
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.work-card:hover .mockup {
  transform: translateY(-3px) scale(1.02);
}
.site-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.site-preview iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1440px;
  height: 900px;
  transform-origin: 0 0;
  border: none;
  pointer-events: none;
}
.work-tag {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.work-body { padding: 24px; }
.work-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.work-body p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 15px;
}
.work-stat {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}
.work-stat strong {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  margin-right: 6px;
}
.work-location {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.work-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.work-link:hover { border-bottom-color: var(--accent); }
.work-links { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin-top: 12px; }
.work-links .work-link { margin-top: 0; }
.work-link-sep { color: var(--ink-soft); opacity: 0.5; font-size: 13px; }

/* ---------- Exclusivity (the moat) ---------- */
.exclusivity {
  padding: 110px 0;
  background: var(--ink);
  color: #f0ede4;
  position: relative;
  overflow: hidden;
}
.exclusivity::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(107, 142, 35, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(107, 142, 35, 0.10) 0%, transparent 55%);
  pointer-events: none;
}
.exclusivity-inner { position: relative; z-index: 1; }

.exclusivity-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.excl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 28px;
}
.excl-shield { width: 16px; height: 16px; color: var(--accent); }
.excl-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: #f6f3e8;
}
.excl-accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}
.excl-lede {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(240, 237, 228, 0.78);
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.excl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0 auto 56px;
  max-width: 1080px;
}
.excl-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.excl-card:hover {
  border-color: rgba(107, 142, 35, 0.55);
  background: rgba(107, 142, 35, 0.07);
  transform: translateY(-3px);
}
.excl-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.excl-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 12px;
  color: #f6f3e8;
  letter-spacing: -0.01em;
}
.excl-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(240, 237, 228, 0.72);
}

.excl-why {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.excl-why p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(240, 237, 228, 0.85);
}
.excl-why strong { color: #f6f3e8; }
.excl-why em { color: var(--accent); font-style: italic; }

/* The compounding / network block */
.excl-flywheel {
  max-width: 920px;
  margin: 48px auto 48px;
  padding: 44px 44px 40px;
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.13) 0%, rgba(107, 142, 35, 0.05) 60%, transparent 100%);
  border: 1px solid rgba(107, 142, 35, 0.32);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.excl-flywheel::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(107, 142, 35, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.excl-flywheel-head {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.excl-flywheel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 16px;
}
.excl-flywheel-eyebrow svg { color: var(--accent); }
.excl-flywheel h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  color: #f6f3e8;
}
.excl-flywheel h3 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}
.excl-flywheel-body {
  position: relative;
  z-index: 1;
}
.excl-flywheel-body p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(240, 237, 228, 0.82);
  margin: 0 0 18px;
}
.excl-flywheel-kicker {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 17px !important;
  color: #f0ede4 !important;
}
.excl-flywheel-kicker em {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.excl-cta {
  text-align: center;
}
.excl-cta .btn-primary {
  font-size: 16px;
  padding: 16px 32px;
}
.excl-cta-sub {
  margin: 16px 0 0;
  font-size: 14px;
  color: rgba(240, 237, 228, 0.55);
}

/* Pricing card exclusivity badge */
.price-list li.price-excl {
  list-style: none;
  margin: 0 -4px 14px;
  padding: 10px 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(107, 142, 35, 0.28);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-list li.price-excl::before { content: none; }
.price-excl .excl-mark {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.price-excl strong { color: var(--ink); font-weight: 700; }

/* ---------- Pricing ---------- */
.pricing {
  padding: 96px 0;
  background: var(--bg-soft);
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.price-card-featured {
  border-color: var(--accent);
  border-width: 2px;
  background:
    linear-gradient(180deg, rgba(107,142,35,0.06) 0%, rgba(107,142,35,0) 30%),
    var(--bg-card);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.price-from {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.price-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 4px 0 4px;
}
.price-range {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 8px 0 6px;
}
.price-plus {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-soft);
}
.price-meta {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--muted);
}
.price-list {
  list-style: none;
  padding: 0 0 24px;
  margin: 0;
  flex: 1;
}
.price-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.price-list li:last-child { border-bottom: 0; }
.price-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent);
  font-weight: 700;
}

.price-reassurance {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.price-reassurance h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.price-nevers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  text-align: left;
}
.price-nevers li {
  font-size: 15px;
  color: var(--ink-soft);
}
.never-x {
  display: inline-block;
  width: 22px;
  color: #a83a2a;
  font-weight: 700;
}
@media (min-width: 720px) {
  .price-nevers { grid-template-columns: 1fr 1fr; gap: 10px 24px; }
}

/* ---------- Estimator (quote tool) ---------- */
.estimator { padding: 96px 0; background: var(--bg-soft); }
.estimator-tool {
  max-width: 760px;
  margin: 0 auto;
}
.estimator-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.est-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.est-step.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.est-step.done {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-dark);
}
.est-line {
  width: 36px;
  height: 1.5px;
  background: var(--line);
  transition: background 0.25s ease;
}
.est-line.done { background: var(--accent); }

.estimator-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: 0 4px 18px rgba(28,46,31,0.05);
  position: relative;
  overflow: hidden;
}
.est-panel { display: block; }
.est-panel.hidden { display: none; }
.est-question {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.est-hint {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
}
.est-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.est-option {
  text-align: left;
  padding: 14px 18px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
}
.est-option:hover {
  border-color: var(--accent);
  background: var(--bg-card);
  transform: translateY(-1px);
}
.est-option.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 600;
}
.est-option.selected::after {
  content: '✓';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-dark);
  font-weight: 700;
}
.est-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.est-actions .btn { min-width: 0; }

/* Result */
.est-result {
  text-align: center;
}
.est-result-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 6px;
}
.est-result-tier {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.est-result-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}
.est-result-onetime {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1.1;
}
.est-result-plus {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--ink-soft);
}
.est-result-timeline {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.est-result-timeline strong {
  color: var(--ink);
  font-weight: 700;
}
.est-result-breakdown {
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 24px;
}
.est-result-breakdown h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
}
.est-breakdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.est-breakdown-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}
.est-breakdown-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.est-result-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.est-disclaimer {
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0;
  opacity: 0.85;
}

.est-footer-note {
  text-align: center;
  margin: 24px auto 0;
  font-size: 13px;
  color: var(--ink-soft);
  max-width: 520px;
}
.est-footer-icon {
  display: inline-block;
  margin-right: 4px;
}

@media (min-width: 720px) {
  .est-options { grid-template-columns: 1fr 1fr; }
}

/* ---------- Quote modal (post-estimator) ---------- */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.quote-modal[data-state="open"] {
  opacity: 1;
  pointer-events: auto;
}
.quote-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 46, 31, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.quote-modal-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 16px;
  padding: 36px 32px 28px;
  max-width: 520px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: 0 25px 70px rgba(28, 46, 31, 0.35);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
  font-family: 'Inter', system-ui, sans-serif;
}
.quote-modal[data-state="open"] .quote-modal-card {
  transform: translateY(0) scale(1);
}
.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.quote-modal-close:hover {
  background: var(--bg);
  color: var(--ink);
}
.quote-modal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 8px;
}
.quote-modal-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.quote-modal-sub {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}
.quote-modal-summary {
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.quote-modal-summary strong {
  color: var(--ink);
  font-weight: 700;
}
.quote-modal-summary .qm-tier {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 4px;
}
.quote-modal-form .field {
  margin-bottom: 14px;
}
.quote-modal-form .field:last-of-type {
  margin-bottom: 18px;
}
.quote-modal-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.quote-modal-form .field-opt {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 12px;
}
.quote-modal-form input,
.quote-modal-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s ease;
  box-sizing: border-box;
}
.quote-modal-form input:focus,
.quote-modal-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.quote-modal-form textarea {
  resize: vertical;
  min-height: 70px;
  font-family: inherit;
}
.quote-modal-form .form-status {
  margin: 10px 0 0;
  font-size: 13px;
  min-height: 18px;
}
.quote-modal-form .form-status.success { color: #4a6618; }
.quote-modal-form .form-status.error { color: #b3261e; }

@media (max-width: 480px) {
  .quote-modal { padding: 0; align-items: flex-end; }
  .quote-modal-card {
    border-radius: 16px 16px 0 0;
    padding: 28px 22px 22px;
    max-height: 92vh;
  }
}
@media (prefers-reduced-motion: reduce) {
  .quote-modal, .quote-modal-card { transition: none !important; }
}

/* ---------- Why ---------- */
.why {
  padding: 96px 0;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.why-copy .section-title { max-width: 520px; }
.why-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 28px;
}
.why-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.why-points li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.why-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  width: 36px;
}
.why-points h4 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 600;
}
.why-points p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- About ---------- */
.about {
  padding: 96px 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
/* Topographic contour pattern — sits behind container, decorative */
.about::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 700px;
  height: 700px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600' fill='none' stroke='%231c2e1f' stroke-width='1.2'%3E%3Cpath d='M-50 60 Q150 30 300 80 T650 60'/%3E%3Cpath d='M-50 110 Q150 80 300 130 T650 110'/%3E%3Cpath d='M-50 160 Q150 130 300 180 T650 160'/%3E%3Cpath d='M-50 210 Q150 180 300 230 T650 210'/%3E%3Cpath d='M-50 260 Q150 230 300 280 T650 260'/%3E%3Cpath d='M-50 310 Q150 280 300 330 T650 310'/%3E%3Cpath d='M-50 360 Q150 330 300 380 T650 360'/%3E%3Cpath d='M-50 410 Q150 380 300 430 T650 410'/%3E%3Cpath d='M-50 460 Q150 430 300 480 T650 460'/%3E%3Cpath d='M-50 510 Q150 480 300 530 T650 510'/%3E%3Cpath d='M-50 560 Q150 530 300 580 T650 560'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}
.about > .container { position: relative; z-index: 1; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.about-photo {
  text-align: center;
}
.photo-frame {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-md);
  max-width: 280px;
  margin: 0 auto;
  position: relative;
}
.photo-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  pointer-events: none;
}
.photo-frame svg,
.photo-frame img {
  border-radius: 8px;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.photo-caption {
  margin-top: 18px;
}
.photo-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  letter-spacing: -0.01em;
}
.photo-role {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.about-copy .section-eyebrow { margin-bottom: 12px; }
.about-copy .section-title { max-width: 420px; }
.about-lede {
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 20px;
  max-width: 540px;
  line-height: 1.4;
}
.about-lede em {
  color: var(--accent);
  font-style: italic;
}
.about-copy p {
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 540px;
}
.about-promise {
  margin-top: 24px !important;
  padding: 20px 22px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
}
.about-promise strong { color: var(--ink); }

.about-sub {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 28px 0 10px;
}

.about-personal {
  margin-top: 20px !important;
  font-size: 14px;
  color: var(--muted);
}
.about-personal em { font-style: italic; }

.about-signoff {
  margin-top: 28px !important;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Tilt cards — set up the 3D context */
.card, .work-card, .price-card, .post {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ---------- Resources / Blog ---------- */
.resources { padding: 96px 0; }
.posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.post {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.post:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.post-tag {
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.post-time {
  font-size: 13px;
  color: var(--muted);
}
.post h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.post p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
  flex: 1;
}
.post-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  padding-bottom: 1px;
  transition: gap 0.15s ease;
}
.post-link:hover {
  color: var(--accent-dark);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--ink);
  color: var(--bg);
  padding: 96px 0;
}
.testimonials .section-title { color: var(--bg); }
.testimonials .section-eyebrow { color: var(--accent); }
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.quote {
  margin: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.quote::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 20px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}
.quote blockquote {
  margin: 16px 0 22px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--bg);
  position: relative;
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quote-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--bg);
}
.quote-role {
  font-size: 14px;
  color: rgba(250, 248, 243, 0.6);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 96px 0;
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.faq-copy .section-title { max-width: 380px; }
.faq-copy p {
  color: var(--ink-soft);
  margin-top: 0;
}
.faq-copy a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 32px 18px 0;
  list-style: none;
  position: relative;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- CTA + Contact ---------- */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -240px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 142, 35, 0.3) 0%, rgba(107, 142, 35, 0) 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.cta-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--bg);
}
.cta-sub {
  font-size: 18px;
  color: rgba(250, 248, 243, 0.75);
  max-width: 460px;
  margin: 0 0 24px;
}
.cta-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-bullets li {
  font-size: 16px;
  color: var(--bg);
}
.cta-bullets li::first-letter { color: var(--accent); font-weight: 700; }
.contact-direct {
  font-size: 15px;
  color: rgba(250, 248, 243, 0.75);
  margin: 0;
  line-height: 1.9;
}
.contact-direct a {
  color: var(--bg);
  border-bottom: 1px solid var(--accent);
}
.contact-form {
  background: var(--bg-card);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}
.field-opt {
  color: var(--muted);
  font-weight: 400;
}
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-status {
  margin: 14px 0 0;
  font-size: 14px;
  min-height: 1em;
}
.form-status.success { color: #2d6a31; }
.form-status.error { color: #a83a2a; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  background: var(--bg);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-tag {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 320px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.footer-nav a:hover { color: var(--ink); }
.footer-meta {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.footer-address {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.footer-address strong { color: var(--ink); font-weight: 700; }
.footer-address a {
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--line);
}
.footer-address a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.footer-areas {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer-areas-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0 0 6px;
}
.footer-areas-list {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Chatbot ---------- */
.chatbot {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  font-family: 'Inter', system-ui, sans-serif;
}
.chatbot-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(28,46,31,0.25), 0 2px 6px rgba(28,46,31,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease, background 0.2s ease;
}
.chatbot-bubble:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--accent-dark);
}
.chatbot-bubble svg { width: 26px; height: 26px; transition: opacity 0.2s ease, transform 0.2s ease; }
.chatbot-icon-close { position: absolute; opacity: 0; transform: rotate(-90deg); }
.chatbot[data-state="open"] .chatbot-icon-chat { opacity: 0; transform: rotate(90deg); }
.chatbot[data-state="open"] .chatbot-icon-close { opacity: 1; transform: rotate(0); }
.chatbot-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #d4827e;
  color: #fff;
  border: 2px solid var(--bg);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.chatbot[data-state="open"] .chatbot-badge,
.chatbot[data-engaged="true"] .chatbot-badge { opacity: 0; transform: scale(0); }

.chatbot-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 40px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(28,46,31,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.chatbot[data-state="open"] .chatbot-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--ink);
  color: #f0ede4;
}
.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.chatbot-avatar svg { width: 22px; height: 22px; }
.chatbot-titles { flex: 1; min-width: 0; }
.chatbot-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  margin: 0;
  letter-spacing: -0.01em;
}
.chatbot-status {
  font-size: 11px;
  margin: 2px 0 0;
  color: rgba(240,237,228,0.7);
  display: flex;
  align-items: center;
  gap: 5px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6bcf7f;
  display: inline-block;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,207,127,0.6); }
  50% { box-shadow: 0 0 0 4px rgba(107,207,127,0); }
}
.chatbot-close {
  background: transparent;
  border: none;
  color: rgba(240,237,228,0.7);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}
.chatbot-close:hover { background: rgba(255,255,255,0.1); color: #fff; }

.chatbot-body {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  animation: chatMsgIn 0.28s ease;
}
@keyframes chatMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
  align-self: flex-start;
  background: var(--bg-card);
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-msg a { color: inherit; text-decoration: underline; }
.chat-msg.bot a { color: var(--accent-dark); }
.chat-msg strong { font-weight: 700; }
.chat-typing {
  align-self: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 4px;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  background: var(--ink-soft);
  border-radius: 50%;
  animation: typingDot 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.30s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 14px 4px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.chat-quick-btn {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
}
.chat-quick-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.chatbot-form {
  display: flex;
  gap: 8px;
  padding: 10px 14px 12px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.chatbot-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-card);
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  min-width: 0;
}
.chatbot-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.chatbot-form button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.chatbot-form button:hover { background: var(--accent-dark); }
.chatbot-disclaimer {
  margin: 0;
  padding: 0 14px 10px;
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  background: var(--bg);
}

@media (max-width: 480px) {
  .chatbot-panel {
    width: calc(100vw - 24px);
    height: calc(100vh - 100px);
    bottom: 76px;
  }
  .chatbot { right: 12px; bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .chat-msg, .chatbot-panel, .chatbot-icon-chat, .chatbot-icon-close { transition: none !important; animation: none !important; }
  .status-dot { animation: none !important; }
}

/* ---------- Blog post article ---------- */
.post-article {
  max-width: 740px;
  margin: 80px auto 72px;
  padding: 0 24px;
  position: relative;
}
.post-header {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.post-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
}
.post-eyebrow a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 1px;
}
.post-eyebrow a:hover { color: var(--accent); border-color: var(--accent); }
.post-eyebrow .post-tag {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 999px;
}

.post-tag-local {
  background: var(--ink) !important;
  color: #f0ede4 !important;
}
.post-featured {
  border-color: var(--accent);
  position: relative;
}
.post-featured::before {
  content: 'KF';
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}
.post-header h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
}
.post-deck {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

.post-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.post-body p { margin: 0 0 22px; }
.post-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 48px 0 16px;
  color: var(--ink);
}
.post-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  margin: 32px 0 10px;
}
.post-body ul, .post-body ol {
  margin: 0 0 24px;
  padding-left: 20px;
}
.post-body li { margin-bottom: 8px; }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body em { font-style: italic; }
.post-body a {
  color: var(--accent-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.post-body a:hover { color: var(--ink); }
.post-body blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.post-body code {
  background: var(--bg-soft);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
}
.post-body .callout {
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 16px;
}
.post-body .callout strong { color: var(--accent-dark); }
.post-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

.post-footer {
  margin-top: 64px;
  padding: 36px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  text-align: center;
}
.post-related {
  margin: 56px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}
.post-related-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.post-related ul { list-style: none; padding: 0; margin: 0; }
.post-related li { margin-bottom: 10px; }
.post-related a {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.post-related a:hover { border-bottom-color: var(--accent); color: var(--accent); }
.post-footer h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.post-footer p {
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .excl-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .why-points { grid-template-columns: 1fr 1fr; }
  .hero-trust { grid-template-columns: repeat(4, 1fr); }
  .posts { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .why-inner { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
  .faq-inner { grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
  .about-inner { grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
  .posts { grid-template-columns: repeat(4, 1fr); }
  .cta-inner { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .footer-inner { grid-template-columns: 1.2fr 1fr auto; gap: 48px; align-items: center; }
  .footer-meta { text-align: right; }
}
@media (max-width: 880px) {
  .nav-phone { display: none !important; }
}
@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; }
  .nav.open { display: flex; }
  .nav > a { padding: 14px 24px; }
  .nav-phone { display: flex !important; padding: 14px 24px; }
  .nav-cta { margin: 8px 24px; text-align: center; }
  .nav-toggle { display: block; }

  .hero { padding: 64px 0 56px; }
  .services, .how, .work, .pricing, .why, .testimonials, .faq, .cta-band, .about, .resources { padding: 64px 0; }
  .hero-cta { margin-bottom: 40px; }
  .hero-trust { padding-top: 24px; grid-template-columns: 1fr 1fr; }

  .marquee-track { font-size: 16px; gap: 24px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .hero-video { display: none; }
}
