/* ═══════════════════════════════════════════════════════════════
   OAK CITY — DESIGN SYSTEM
   Claude-design-inspired, dark luxury local-service brand
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ───────────────────────────────────────────────────── */
:root {
  /* Surface */
  --bg: #0a0a0b;
  --bg-elev: #0f0f11;
  --surface: #131316;
  --surface-2: #1a1a1f;
  --surface-3: #20202a;
  --hairline: rgba(255,255,255,0.06);
  --hairline-strong: rgba(255,255,255,0.10);

  /* Type */
  --text: #f3f1ea;
  --text-soft: #d6d3c8;
  --muted: rgba(243,241,234,0.70);
  --muted-2: rgba(243,241,234,0.50);

  /* Brand */
  --accent: #34d399;        /* emerald */
  --accent-hi: #6ee7b7;
  --accent-deep: #1f8a5e;
  --accent-glow: rgba(52,211,153,0.22);
  --accent-soft: rgba(52,211,153,0.10);

  /* Signal */
  --warn: #f59e0b;
  --danger: #ef4444;
  --danger-soft: rgba(239,68,68,0.12);

  /* Type scale */
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'General Sans', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.5);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.45);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 0 1px var(--hairline-strong), 0 30px 80px rgba(52,211,153,0.06);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset / base ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(1100px 600px at 80% -200px, rgba(52,211,153,0.06), transparent 60%),
    radial-gradient(900px 500px at -10% 60%, rgba(52,211,153,0.04), transparent 60%),
    var(--bg);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent-glow); color: var(--text); }

/* ── Type ─────────────────────────────────────────────────────── */
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  padding: 6px 14px;
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: var(--r-pill);
  background: rgba(52,211,153,0.04);
  backdrop-filter: blur(10px);
}
.eyebrow::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.h-display {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1.02; letter-spacing: -0.025em;
  color: var(--text);
}
.h-display .accent { color: var(--accent); }
.h-section {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
}
.h-card {
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--muted); line-height: 1.7;
  max-width: 64ch;
}

/* ── Layout ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 120px 0;
  position: relative;
}
.section-sm { padding: 72px 0; }
.section-tight { padding: 56px 0; }
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
  .container, .container-narrow { padding: 0 20px; }
}

/* ── Navbar ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(10,10,11,0.72);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(10,10,11,0.88);
  border-bottom: 1px solid var(--hairline);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 16px; letter-spacing: -0.01em;
  color: var(--text);
}
.nav-brand-mark {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(52,211,153,0.22), rgba(52,211,153,0.05));
  border: 1px solid rgba(52,211,153,0.30);
  position: relative;
  overflow: hidden;
}
.nav-brand-mark svg { width: 18px; height: 18px; color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 8px 14px; border-radius: var(--r-pill);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--accent);
  color: #052213;
  font-size: 14px; font-weight: 600;
  border: none; border-radius: var(--r-pill);
  transition: transform 0.18s var(--ease-out), background 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(52,211,153,0.18);
}
.nav-cta:hover { transform: translateY(-1px); background: var(--accent-hi); box-shadow: 0 6px 22px rgba(52,211,153,0.28); }
.nav-burger {
  display: none;
  background: transparent; border: 1px solid var(--hairline);
  width: 38px; height: 38px; border-radius: 10px;
  align-items: center; justify-content: center;
  color: var(--text);
}
.nav-mobile {
  display: none;
  position: fixed; inset: 60px 0 0 0;
  background: rgba(10,10,11,0.96);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column; gap: 6px;
}
.nav-mobile a {
  display: block;
  padding: 14px 16px;
  font-size: 18px; font-weight: 500;
  color: var(--text);
  border-radius: 12px;
  border: 1px solid var(--hairline);
}
.nav-mobile.is-open { display: flex; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease-out), background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #052213;
  box-shadow: 0 6px 22px rgba(52,211,153,0.22), inset 0 -1px 0 rgba(0,0,0,0.12);
}
.btn-primary:hover { background: var(--accent-hi); transform: translateY(-1px); box-shadow: 0 10px 30px rgba(52,211,153,0.32); }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--hairline-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(52,211,153,0.40); color: var(--accent); }
.btn-danger {
  background: var(--danger);
  color: #fff;
  box-shadow: 0 6px 22px rgba(239,68,68,0.30);
}
.btn-danger:hover { background: #dc2626; transform: translateY(-1px); }
.btn-lg { padding: 17px 32px; font-size: 16px; }

/* ── Pills / chips ────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  font-size: 13px; font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  color: var(--text-soft);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.pill:hover { border-color: rgba(52,211,153,0.30); color: var(--text); }
.pill-accent {
  background: rgba(52,211,153,0.08);
  border-color: rgba(52,211,153,0.25);
  color: var(--accent);
}
.pill-danger {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.25);
  color: #fca5a5;
}

/* ── Cards ────────────────────────────────────────────────────── */
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 200px at var(--mx,50%) var(--my,0%), rgba(52,211,153,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}
.card:hover { border-color: rgba(52,211,153,0.25); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }
.card-flat {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 22px;
}

/* ── Page Hero (interior pages) ───────────────────────────────── */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 600px at 50% 0%, rgba(52,211,153,0.10), transparent 60%),
    linear-gradient(180deg, rgba(52,211,153,0.03), transparent 70%);
  z-index: -1;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black 30%, transparent 80%);
  z-index: -1;
}
.page-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.page-hero h1 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.04; letter-spacing: -0.025em;
  margin: 18px 0 22px;
  color: var(--text);
}
.page-hero h1 .accent { color: var(--accent); }
.page-hero p.lead {
  margin: 0 auto 36px;
  text-align: center;
}
.page-hero .hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.page-hero .hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .page-hero { padding: 136px 0 46px; }
}
@media (max-width: 560px) {
  .page-hero h1 { font-size: clamp(2.15rem, 10.4vw, 3.3rem); }
  .page-hero p.lead { margin-bottom: 24px; }
  .page-hero .hero-actions { flex-direction: column; align-items: stretch; }
  .page-hero .hero-actions .btn { width: 100%; }
  .page-hero .hero-badges { gap: 6px; margin-top: 20px; }
}

/* ── Article body ─────────────────────────────────────────────── */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
  font-size: 17px;
  line-height: 1.78;
}
@media (max-width: 768px) {
  .article {
    padding: 52px 20px 72px;
    font-size: 16px;
  }
}
.article h2 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.15; letter-spacing: -0.015em;
  color: var(--text);
  margin: 64px 0 18px;
  padding-top: 8px;
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin: 36px 0 10px;
}
.article h4 {
  font-size: 17px; font-weight: 600;
  margin: 28px 0 8px;
  color: var(--text);
}
.article p {
  color: var(--text-soft);
  margin-bottom: 18px;
}
.article a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(52,211,153,0.35); text-underline-offset: 3px; }
.article a:hover { text-decoration-color: var(--accent); }
.article ul, .article ol {
  color: var(--text-soft);
  margin: 12px 0 22px 22px;
}
.article li { margin-bottom: 10px; padding-left: 4px; }
.article ul li::marker { color: var(--accent); }
.article ol { counter-reset: ol-c; list-style: none; margin-left: 0; }
.article ol li {
  counter-increment: ol-c;
  position: relative; padding-left: 44px;
  margin-bottom: 14px;
}
.article ol li::before {
  content: counter(ol-c, decimal-leading-zero);
  position: absolute; left: 0; top: 2px;
  font-family: var(--serif); font-style: italic;
  color: var(--accent); font-size: 18px;
}
.article strong { color: var(--text); font-weight: 600; }

/* ── Highlight / info / warning boxes ─────────────────────────── */
.callout {
  background: linear-gradient(180deg, rgba(52,211,153,0.06), rgba(52,211,153,0.02));
  border: 1px solid rgba(52,211,153,0.20);
  border-radius: var(--r-lg);
  padding: 28px;
  margin: 32px 0;
  position: relative;
}
.callout-label {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.callout p:last-child { margin-bottom: 0; }
.callout-info {
  border-left: 3px solid var(--accent);
  background: rgba(52,211,153,0.04);
}
.callout-warn {
  border-color: rgba(245,158,11,0.30);
  background: rgba(245,158,11,0.06);
}
.callout-warn .callout-label { color: var(--warn); }
.callout-danger {
  border-color: rgba(239,68,68,0.30);
  background: rgba(239,68,68,0.06);
}
.callout-danger .callout-label { color: #fca5a5; }

/* ── Pricing table (refined) ──────────────────────────────────── */
.pricing-table {
  background: linear-gradient(180deg, var(--surface), var(--bg-elev));
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 36px 0;
}
.pricing-table-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  background: rgba(52,211,153,0.05);
  border-bottom: 1px solid var(--hairline);
}
.pricing-table-head .pt-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
}
.pricing-table-head .pt-meta {
  font-size: 12px; color: var(--muted-2);
}
.price-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  transition: background 0.2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: rgba(255,255,255,0.02); }
.price-row.highlighted {
  background: rgba(52,211,153,0.04);
  border-left: 3px solid var(--accent);
}
.price-label {
  display: flex; flex-direction: column; gap: 4px;
}
.price-label-name { font-weight: 600; color: var(--text); font-size: 15px; }
.price-label-meta { font-size: 13px; color: var(--muted); }
.price-value {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--accent);
  white-space: nowrap;
}

/* ── Service / feature grid cards ─────────────────────────────── */
.feature-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover { border-color: rgba(52,211,153,0.25); transform: translateY(-2px); }
.feature-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(52,211,153,0.10);
  border: 1px solid rgba(52,211,153,0.20);
  border-radius: 10px;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 14px;
}
.feature-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Service image card (homepage) ────────────────────────────── */
.svc-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.svc-card:hover { transform: translateY(-4px); border-color: rgba(52,211,153,0.30); box-shadow: var(--shadow-md); }
.svc-card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.svc-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.svc-card:hover .svc-card-media img { transform: scale(1.06); }
.svc-card-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,11,0.85));
  pointer-events: none;
}
.svc-card-body { padding: 22px 24px; }
.svc-card-title { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.svc-card-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.svc-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
}
.svc-card-meta .price { color: var(--accent); font-weight: 600; font-family: var(--serif); font-style: italic; font-size: 16px; }
.svc-card-meta .arrow {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(52,211,153,0.10);
  color: var(--accent);
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
.svc-card:hover .svc-card-meta .arrow { transform: translateX(3px); background: rgba(52,211,153,0.20); }

/* ── Steps (process) ──────────────────────────────────────────── */
.steps {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step-c;
  margin: 30px 0;
}
.step {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 24px 22px;
  position: relative;
  counter-increment: step-c;
  transition: border-color 0.25s, transform 0.25s;
}
.step:hover { border-color: rgba(52,211,153,0.25); transform: translateY(-2px); }
.step::before {
  content: counter(step-c, decimal-leading-zero);
  display: block;
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--accent);
  line-height: 1; margin-bottom: 14px;
}
.step h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq {
  max-width: 760px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 17px; font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '';
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='2.2'><path d='M6 9l6 6 6-6'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.35s var(--ease-out), background-color 0.2s;
  flex-shrink: 0;
}
details[open] .faq-q::after { transform: rotate(180deg); }
.faq-a {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
  padding-top: 12px;
  max-width: 70ch;
}
.faq-a a { color: var(--accent); }

/* ── Trust strip / badges ─────────────────────────────────────── */
.trust-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 22px;
  padding: 18px 26px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  font-size: 13px; color: var(--text-soft);
}
.trust-row .sep {
  width: 1px; height: 14px;
  background: var(--hairline-strong);
}
.trust-row .item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.trust-row .item strong { color: var(--text); font-weight: 600; }
@media (max-width: 360px) {
  .trust-row {
    display: grid !important;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
  }
  .trust-row .sep { display: none; }
}

/* ── Marquee ──────────────────────────────────────────────────── */
.marquee {
  background: var(--bg-elev);
  padding: 22px 0;
  overflow: hidden;
  max-width: 100vw;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}
.marquee-content { display: flex; align-items: center; flex-shrink: 0; }
.marquee-item {
  display: inline-flex; align-items: center;
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0 28px;
}
.marquee-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 28px;
  opacity: 0.55;
}
@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ── CTA block ────────────────────────────────────────────────── */
.cta {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(52,211,153,0.10), transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: 70px 40px;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 75%);
}
.cta > * { position: relative; }
.cta h2 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta p {
  font-size: 17px; color: var(--muted); max-width: 56ch; margin: 0 auto 32px;
}
.cta-phone {
  display: inline-block;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: var(--accent);
  margin: 12px 0 24px;
  letter-spacing: -0.02em;
}
.cta-phone:hover { color: var(--accent-hi); }
.cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.cta-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .cta { padding: 50px 24px; border-radius: 22px; }
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--hairline);
  padding: 70px 28px 28px;
  margin-top: 80px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px 32px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--hairline);
}
.footer-brand h3 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; color: var(--muted); max-width: 36ch; line-height: 1.6; }
.footer-brand .footer-phone {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--muted-2);
}
.footer-bottom a { color: var(--muted-2); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── Reveal animations (no JS required, IO upgrades) ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.05s; }
.reveal-d2 { transition-delay: 0.12s; }
.reveal-d3 { transition-delay: 0.20s; }
.reveal-d4 { transition-delay: 0.28s; }
.reveal-d5 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ── Section divider ──────────────────────────────────────────── */
.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--hairline-strong), transparent);
  margin: 0;
}

/* ── Misc utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }

/* Tag / chip clusters */
.chip-cluster { display: flex; flex-wrap: wrap; gap: 8px; }

/* Two-column split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

/* Compare grid */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}
.compare-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
}
.compare-card.featured {
  border-color: rgba(52,211,153,0.35);
  background: linear-gradient(180deg, rgba(52,211,153,0.05), var(--surface));
  box-shadow: 0 0 0 1px rgba(52,211,153,0.12);
}
.compare-card h4 {
  font-size: 18px; font-weight: 600; margin-bottom: 10px;
}
.compare-card .compare-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  padding: 4px 10px; border-radius: 100px;
  background: rgba(52,211,153,0.10);
  border: 1px solid rgba(52,211,153,0.20);
  margin-bottom: 14px;
}
.compare-card ul {
  list-style: none; padding: 0; margin: 0;
}
.compare-card ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-soft);
  font-size: 14.5px;
  border-bottom: 1px solid var(--hairline);
}
.compare-card ul li:last-child { border-bottom: none; }
.compare-card ul li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(52,211,153,0.12) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3'><path d='M5 12l5 5L20 7'/></svg>") center/12px no-repeat;
}
@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* Generic two-tone background section */
.bg-elev { background: var(--bg-elev); }
.bg-surface { background: var(--surface); }

/* Stat tiles */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 30px 0;
}
.stat-tile {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 26px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 10px;
}

/* Service link strip (in-page CTA) */
.svc-strip {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 28px;
  margin: 40px auto;
  max-width: 820px;
}
.svc-strip h3 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin: 0 0 16px;
}
.svc-strip-links {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 14px;
}
.svc-strip-links a {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(52,211,153,0.06);
  border: 1px solid rgba(52,211,153,0.20);
  color: var(--text);
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.svc-strip-links a:hover { background: rgba(52,211,153,0.12); transform: translateY(-1px); }
.svc-strip p { font-size: 13px; color: var(--muted); margin: 0; }
.svc-strip p a { color: var(--accent); font-weight: 600; }
