/* ==========================================================================
   Lindsay Benavides Real Estate — Design System
   Palette: near-black ink + warm taupe/mocha on cream/ivory
   Type: Playfair Display (display serif) + Inter (UI/body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand */
  --ink: #17130e;          /* logo black */
  --ink-soft: #2a2521;
  --taupe: #9c8571;        /* wordmark mocha — primary accent */
  --taupe-dark: #7c684f;   /* accessible taupe for text on light */
  --taupe-deep: #5f4f3c;
  --taupe-tint: #ece3d8;
  --taupe-wash: #f3ece2;

  --cream: #faf7f1;        /* page background */
  --cream-2: #f4ede3;      /* alternating sections */
  --ivory: #fffdf9;        /* cards */
  --line: #e6ddcf;         /* hairline borders */
  --line-soft: #efe8dc;

  --charcoal: #1a1613;     /* dark sections / footer */
  --charcoal-2: #241f1a;

  --text: #33302b;         /* body text */
  --muted: #6c6459;        /* secondary text */
  --muted-light: #a49a8c;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1200px;
  --container-narrow: 820px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 14px 44px -20px rgba(95, 79, 60, 0.30);
  --shadow-lg: 0 34px 80px -34px rgba(95, 79, 60, 0.42);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Warm boutique dark surface (espresso, not cold black) */
  --espresso: #2c231b;
  --espresso-2: #372c22;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--text); }
.lede { font-size: 1.2rem; color: var(--muted); line-height: 1.7; }

a { color: var(--taupe-dark); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--ink); }

img { max-width: 100%; display: block; }
strong { color: var(--ink); font-weight: 600; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: var(--container-narrow); }

/* Sections */
.section { padding: 104px 0; }
.section--tight { padding: 64px 0; }
.section--cream { background: var(--cream-2); }
.section--wash { background: var(--taupe-wash); }
.section--dark { background: linear-gradient(160deg, var(--espresso) 0%, var(--espresso-2) 100%); color: #e8e1d6; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: #c3b9aa; }
.section--dark .eyebrow { color: var(--taupe); }

/* Eyebrow / labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--taupe);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.1rem; color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { text-decoration: none; }

.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--taupe-deep); color: #fff; transform: translateY(-2px); }

.btn--taupe { background: var(--taupe-dark); color: #fff; }
.btn--taupe:hover { background: var(--taupe-deep); color: #fff; transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }

.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 11px 22px; font-size: 0.75rem; }

/* Announcement bar */
.announce {
  background: var(--charcoal);
  color: #d8cfc0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 9px 24px;
}
.announce a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  font-weight: 500;
  margin-top: 2px;
}
.brand:hover .brand-name, .brand:hover .brand-mark { color: var(--taupe-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--taupe-dark);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 18px; flex: none; }
.nav-phone { font-weight: 600; color: var(--ink); font-size: 0.82rem; white-space: nowrap; }
.nav-phone a { color: var(--ink); }
.nav-phone a:hover { color: var(--taupe-dark); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  min-height: 640px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 0;
}
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy h1 em { font-style: italic; color: var(--taupe-dark); }
.hero-copy .lede { max-width: 48ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media {
  position: relative;
  min-height: 560px;
  background: var(--taupe-tint);
}
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.hero-badge {
  position: absolute;
  left: 0; bottom: 36px;
  background: var(--ivory);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}
.hero-badge .stars { color: var(--taupe); letter-spacing: 3px; font-size: 0.9rem; }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.hero-badge span { font-size: 0.78rem; color: var(--muted); }

/* Trust bar */
.trust-bar { border-top: 1px solid var(--line); background: var(--cream); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 34px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
.trust-item .t-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-item .t-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   Grids / Cards
   ========================================================================== */
.grid { display: grid; gap: 32px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--2-wide { grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }

.card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media {
  aspect-ratio: 4 / 3;
  background: var(--taupe-tint);
  overflow: hidden;
  position: relative;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media.placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-light); font-size: 0.8rem; text-align: center; padding: 16px;
}
.card-body { padding: 26px 28px 30px; }
.card-body h3 { margin-bottom: 8px; font-size: 1.25rem; }
.card-body h3 a { color: var(--ink); }
.card-body h3 a:hover { color: var(--taupe-dark); }
.card-tag {
  display: inline-block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--taupe-dark);
  margin-bottom: 12px;
}
.card-price { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.4rem; margin-bottom: 4px; }
.card-meta { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* Service card variant */
.service-card {
  padding: 40px 36px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--taupe); }
.service-card .s-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--taupe);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); margin-bottom: 20px; }
.service-card .s-link {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; color: var(--ink);
}
.service-card .s-link:hover { color: var(--taupe-dark); }

.placeholder-note { font-size: 0.72rem; color: var(--muted-light); font-style: italic; }

/* Feature list */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text); }
.feature-list li::before {
  content: "";
  flex: none;
  width: 8px; height: 8px;
  margin-top: 9px;
  background: var(--taupe);
  transform: rotate(45deg);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quote-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 34px 30px;
}
.quote-card .stars { color: var(--taupe); letter-spacing: 3px; margin-bottom: 16px; font-size: 0.95rem; }
.quote-card p { color: var(--ink); font-family: var(--font-display); font-style: italic; font-size: 1.12rem; line-height: 1.55; }
.quote-name { font-weight: 600; color: var(--ink); font-style: normal; font-family: var(--font-body); font-size: 0.9rem; margin-top: 10px; }
.quote-name span { display: block; color: var(--muted); font-weight: 400; font-size: 0.82rem; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { font-weight: 500; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; display: block; }
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--ivory);
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
input::placeholder, textarea::placeholder { color: var(--muted-light); }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(156, 133, 113, 0.15);
}
textarea { resize: vertical; min-height: 130px; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 10px; }
.cta-banner p { color: #c3b9aa; margin: 0; max-width: 46ch; }

/* Split feature (image + text) */
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--taupe-tint);
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media.tall { aspect-ratio: 3 / 4; }

/* Map placeholder */
.map-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, var(--cream-2), var(--cream-2) 14px, var(--taupe-tint) 14px, var(--taupe-tint) 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--line);
}

/* Stat / values row */
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-item .v-icon {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--taupe);
  margin-bottom: 14px;
}
.value-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-item p { color: var(--muted); font-size: 0.96rem; }

/* Newsletter */
.newsletter-form { display: flex; gap: 12px; max-width: 480px; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--charcoal);
  color: #b7ac9c;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-grid h4 { color: #fff; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); font-weight: 600; }
.site-footer a { color: #b7ac9c; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-size: 0.92rem; }
.footer-brand .brand-name { color: #fff; font-size: 1.1rem; display: block; }
.footer-brand .brand-mark-lg { font-family: var(--font-display); font-size: 2rem; color: #fff; letter-spacing: 0.04em; margin-bottom: 6px; }
.footer-brand .brand-sub { color: var(--taupe); }
.footer-brand p { color: #948a7b; margin-top: 16px; font-size: 0.9rem; line-height: 1.7; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.8rem;
  color: #857b6c;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 4px; }
.footer-legal a { color: #b7ac9c; font-weight: 500; }
.footer-legal a:hover { color: #fff; }
.footer-credit { font-size: 0.78rem; }
.footer-credit a { color: var(--taupe); font-weight: 600; }
.footer-credit a:hover { color: #fff; }

/* Scroll-reveal (cinematic) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.grid .reveal:nth-child(2), .value-row .reveal:nth-child(2), .trust-grid .reveal:nth-child(2) { transition-delay: 0.09s; }
.grid .reveal:nth-child(3), .value-row .reveal:nth-child(3), .trust-grid .reveal:nth-child(3) { transition-delay: 0.18s; }
.grid .reveal:nth-child(4), .trust-grid .reveal:nth-child(4) { transition-delay: 0.27s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }
.footer-bottom a { color: #857b6c; }
.footer-bottom a:hover { color: #fff; }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  color: #b7ac9c;
}
.social-row a:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.06); }

/* ==========================================================================
   Interior page hero
   ========================================================================== */
.page-hero {
  background: var(--cream-2);
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 0; }
.page-hero .lede { margin-top: 18px; max-width: 60ch; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }

/* Steps */
.steps { display: grid; gap: 28px; }
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--taupe);
  color: var(--taupe-dark);
  background: var(--taupe-wash);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
}
.step h3 { margin-bottom: 6px; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 22px 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--taupe); font-size: 1.4rem; font-family: var(--font-body); }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--muted); padding-bottom: 22px; margin: 0; }

/* Utilities */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.muted { color: var(--muted); }
.divider-link { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--ink); }

/* Prose (legal / long-form) */
.prose h2 { margin-top: 2em; font-size: 1.5rem; }
.prose > h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5em; font-size: 1.12rem; }
.prose ul { margin: 0 0 1.2em; padding-left: 1.2em; }
.prose li { margin-bottom: 0.5em; color: var(--text); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2.4em; }
.prose .legal-note { background: var(--taupe-wash); border-left: 3px solid var(--taupe); padding: 18px 22px; border-radius: var(--radius); color: var(--muted); font-size: 0.95rem; margin: 0 0 2em; }

/* Article (blog post) */
.article { max-width: 760px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 14px; margin: 0 0 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.article-meta .avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex: none; }
.article-meta .m-name { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.article-meta .m-sub { font-size: 0.82rem; color: var(--muted); }
.article-figure { border-radius: var(--radius); overflow: hidden; margin: 0 0 36px; box-shadow: var(--shadow); }
.article-figure img { width: 100%; display: block; }
.article-lead { font-size: 1.2rem; line-height: 1.7; color: var(--ink); margin-bottom: 32px; }
.toc { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin: 0 0 36px; }
.toc h4 { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; font-family: var(--font-body); font-weight: 600; }
.toc ol { margin: 0; padding-left: 1.1em; }
.toc li { margin-bottom: 7px; }
.toc a { color: var(--ink); }
.toc a:hover { color: var(--taupe-dark); }
.pull-quote { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.45; color: var(--ink); font-style: italic; border-left: 3px solid var(--taupe); padding: 6px 0 6px 26px; margin: 36px 0; }
.stat-callout { background: var(--taupe-wash); border-radius: var(--radius); padding: 28px; margin: 32px 0; }
.stat-callout h4 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe-dark); margin-bottom: 18px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-grid .s-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.stat-grid .s-lbl { font-size: 0.8rem; color: var(--muted); }
.stat-callout .note { font-size: 0.8rem; color: var(--muted); margin: 16px 0 0; }
.article-share { display: flex; gap: 10px; align-items: center; margin: 40px 0 0; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.article-share a { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ink); font-weight: 600; font-size: 0.78rem; }
.article-share a:hover { border-color: var(--taupe); color: var(--taupe-dark); }
.author-box { display: flex; gap: 24px; align-items: flex-start; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; margin: 48px 0 0; }
.author-box img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; flex: none; }
.author-box h4 { margin-bottom: 8px; font-size: 1.2rem; }
.author-box p { color: var(--muted); margin-bottom: 14px; }
@media (max-width: 640px) {
  .stat-grid { grid-template-columns: 1fr; gap: 14px; }
  .author-box { flex-direction: column; gap: 18px; }
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-mount { margin: 0 auto; max-width: 1040px; }
.reviews-fallback {
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  background: var(--ivory);
  padding: 60px 32px;
  text-align: center;
}
.reviews-fallback .g-badge {
  width: 66px; height: 66px; border-radius: 50%;
  background: var(--cream-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 2rem; color: var(--ink);
}
.reviews-fallback .stars { color: var(--taupe); letter-spacing: 4px; font-size: 1.2rem; margin-bottom: 14px; }
.reviews-fallback h3 { margin-bottom: 10px; }
.reviews-fallback p { color: var(--muted); max-width: 46ch; margin: 0 auto 24px; }
.reviews-fallback .hero-actions { justify-content: center; }

/* ==========================================================================
   Calculators
   ========================================================================== */
.calc-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.calc-tab {
  font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600; color: var(--muted); background: transparent; border: 1px solid var(--line);
  padding: 13px 26px; border-radius: 40px; cursor: pointer; transition: all 0.2s var(--ease);
}
.calc-tab:hover { color: var(--ink); border-color: var(--taupe); }
.calc-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.calc-panel[hidden] { display: none; }
.calc-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 40px; align-items: start; }
.calc-form { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; }
.calc-field { margin-bottom: 22px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field .hint { font-size: 0.78rem; color: var(--muted); margin: 6px 0 0; }
.calc-input-money { position: relative; }
.calc-input-money::before { content: "$"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 0.98rem; }
.calc-input-money input { padding-left: 28px; }
.calc-input-pct input { padding-right: 34px; }
.calc-input-pct { position: relative; }
.calc-input-pct::after { content: "%"; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 0.98rem; }
.calc-check { display: flex; align-items: center; gap: 10px; }
.calc-check input { width: auto; }
.calc-check label { margin: 0; text-transform: none; letter-spacing: 0; font-size: 0.95rem; }

.calc-result { background: var(--charcoal); color: #fff; border-radius: var(--radius-lg); padding: 34px; position: sticky; top: 96px; }
.calc-result h3 { color: #fff; font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.calc-hero-num { font-family: var(--font-display); font-size: 3rem; color: #fff; line-height: 1; margin: 10px 0 4px; }
.calc-hero-sub { color: #c3b9aa; font-size: 0.88rem; margin-bottom: 26px; }
.calc-line { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.92rem; color: #c3b9aa; }
.calc-line span:last-child { color: #fff; font-weight: 600; }
.calc-line.total span { color: #fff; font-weight: 600; }
.calc-note { font-size: 0.8rem; color: #a49a8c; margin: 18px 0 0; line-height: 1.6; }
.calc-warn { color: #e6b98a; }

/* ==========================================================================
   Floating chat / WhatsApp widget
   ========================================================================== */
.chat-widget { position: fixed; right: 24px; bottom: 24px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.chat-launch {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--ink); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; position: relative;
  box-shadow: 0 12px 30px -8px rgba(26, 22, 19, 0.55);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.chat-launch:hover { background: var(--taupe-deep); transform: translateY(-2px); }
.chat-launch svg { position: absolute; transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); }
.chat-launch .ic-close { opacity: 0; transform: rotate(-45deg) scale(0.7); }
.chat-widget.open .chat-launch .ic-chat { opacity: 0; transform: rotate(45deg) scale(0.7); }
.chat-widget.open .chat-launch .ic-close { opacity: 1; transform: none; }

.chat-panel {
  width: 312px; max-width: calc(100vw - 40px);
  background: var(--ivory); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  animation: chatIn 0.25s var(--ease);
}
@keyframes chatIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.chat-panel-head { display: flex; align-items: center; gap: 14px; padding: 20px 22px; background: var(--charcoal); color: #fff; }
.chat-panel-head strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.chat-panel-head span { font-size: 0.78rem; color: #c3b9aa; }
.chat-avatar {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--taupe-dark); color: #fff; font-family: var(--font-display);
  font-weight: 600; font-size: 1.05rem; display: flex; align-items: center; justify-content: center;
}
.chat-opt { display: flex; align-items: center; gap: 14px; padding: 16px 22px; border-top: 1px solid var(--line-soft); color: var(--ink); transition: background 0.2s var(--ease); }
.chat-opt:hover { background: var(--taupe-wash); color: var(--ink); }
.chat-opt svg { flex: none; color: var(--taupe-dark); }
.chat-opt span { display: flex; flex-direction: column; line-height: 1.2; }
.chat-opt strong { font-size: 0.95rem; }
.chat-opt small { font-size: 0.78rem; color: var(--muted); }
.chat-opt--wa { color: #fff; background: #25d366; }
.chat-opt--wa:hover { background: #1eb658; color: #fff; }
.chat-opt--wa svg, .chat-opt--wa small { color: #fff; }
.chat-opt--wa small { opacity: 0.9; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-grid > *, .grid > * { min-width: 0; }
  .hero-copy { padding: 64px 0 48px; }
  .hero-media { min-height: 440px; aspect-ratio: auto; width: 100%; }
  .grid--2-wide { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta .nav-phone, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px 30px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav { position: relative; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-result { position: static; }
  .value-row { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 44px 32px; }
  .container { padding: 0 24px; }
}

/* =============================================================================
   Home Valuation — multi-step lead flow
   ========================================================================== */
.val-wrap {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.val-progress {
  height: 5px;
  background: var(--taupe-tint);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}
.val-progress-fill {
  height: 100%;
  width: 0;
  background: var(--taupe-dark);
  border-radius: 999px;
  transition: width 0.5s var(--ease);
}
.val-steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  gap: 6px;
}
.val-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted-light);
  transition: color 0.3s var(--ease);
}
.val-steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--taupe-tint);
  color: var(--muted);
  font-size: 0.8rem;
  transition: all 0.3s var(--ease);
}
.val-steps li.active { color: var(--ink); }
.val-steps li.active span { background: var(--ink); color: #fff; }
.val-steps li.done span { background: var(--taupe-dark); color: #fff; }
.val-steps li.done span::before { content: "✓"; }
.val-steps li.done span { font-size: 0; }
.val-steps li.done span::before { font-size: 0.8rem; }

.val-step { border: 0; padding: 0; margin: 0; min-width: 0; }
.val-step[hidden] { display: none; }
.val-step.active { animation: valFade 0.45s var(--ease); }
@keyframes valFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.val-step-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1.2;
  padding: 0;
}
.val-step-sub { color: var(--muted); margin: 8px 0 26px; font-size: 1rem; }
.val-field { margin-bottom: 20px; }
.val-field > label { display: block; }
.val-opt { color: var(--muted-light); text-transform: none; letter-spacing: 0; font-weight: 400; }

/* Choice cards */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.choice-grid--4 { grid-template-columns: repeat(4, 1fr); }
.choice {
  padding: 14px 10px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-align: center;
}
.choice:hover { border-color: var(--taupe); background: var(--ivory); transform: translateY(-2px); }
.choice.selected {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow);
}

/* Consent + recap */
.choice-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  font-size: 0.86rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.5;
}
.choice-consent input { width: auto; margin-top: 3px; flex-shrink: 0; }
.val-review {
  background: var(--taupe-wash);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 8px;
}
.val-review h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin: 0 0 12px;
}
.val-review ul { list-style: none; margin: 0; padding: 0; }
.val-review li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.val-review li:first-child { border-top: 0; }
.val-review li span { color: var(--muted); }
.val-review li strong { color: var(--ink); text-align: right; }

.val-error {
  color: #b23b3b;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 18px 0 0;
}
.val-nav {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 30px;
}
.val-nav [data-val-next], .val-nav [data-val-submit] { margin-left: auto; }

/* Success */
.val-success { text-align: center; padding: 20px 10px 10px; animation: valFade 0.5s var(--ease); }
.val-success-mark {
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--taupe-dark);
  color: #fff;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
}
.val-success h2 { margin-bottom: 12px; }
.val-success p { color: var(--muted); max-width: 52ch; margin: 0 auto 28px; font-size: 1.05rem; }

/* Trust strip below the form */
.val-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.val-trust-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}
.val-trust-item strong { display: block; color: var(--ink); font-size: 0.98rem; margin-bottom: 6px; }
.val-trust-item span { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

@media (max-width: 820px) {
  .val-wrap { padding: 26px 20px; }
  .val-steps li { font-size: 0; gap: 0; }
  .val-steps li span { font-size: 0.8rem; }
  .val-steps li.done span { font-size: 0; }
  .val-steps li.done span::before { font-size: 0.8rem; }
  .choice-grid, .choice-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .val-trust { grid-template-columns: 1fr; gap: 14px; }
  .val-step-title { font-size: 1.4rem; }
}

/* =============================================================================
   MILESTONE 1 — Premium editorial homepage + visitor-intent system
   ========================================================================== */

/* ---- Editorial hero ---- */
.hero2 {
  position: relative;
  padding: clamp(40px, 6vw, 84px) 0 clamp(48px, 6vw, 88px);
  background:
    radial-gradient(120% 90% at 85% 0%, var(--taupe-wash) 0%, rgba(243,236,226,0) 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
}
.hero2-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero2-eyebrow { margin-bottom: 20px; }
.hero2 h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.hero2 h1 em { font-style: italic; color: var(--taupe-deep); }
.hero2-sub {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.65;
  margin: 0 0 26px;
}

/* Portrait treatment — fixes the flat lilac studio background */
.hero2-media { position: relative; }
.hero2-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero2-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  filter: saturate(0.9) contrast(1.03);
}
.hero2-portrait::after { /* warm the cool studio backdrop into the palette */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(156,133,113,0.42), rgba(95,79,60,0.28));
  mix-blend-mode: soft-light;
  z-index: 1;
}
.hero2-media::before { /* offset accent block for editorial depth */
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--taupe);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.6;
}
.hero2-chip {
  position: absolute;
  left: -14px; bottom: 22px;
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  max-width: 230px;
  z-index: 2;
}
.hero2-chip .stars { color: var(--taupe); letter-spacing: 3px; font-size: 0.9rem; }
.hero2-chip strong { display: block; font-family: var(--font-display); font-size: 1.05rem; margin: 4px 0 2px; color: var(--ink); }
.hero2-chip span { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }

/* Quick-contact + disclosure microline under the selector */
.hero2-quick {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 18px;
  margin-top: 22px;
}
.hero2-quick a.quick-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.9rem; font-weight: 600; color: var(--ink);
}
.hero2-quick a.quick-link svg { width: 17px; height: 17px; }
.hero2-quick .wa { color: #1f8f4e; }
.hero2-disclosure { font-size: 0.72rem; color: var(--muted-light); margin-top: 14px; line-height: 1.5; }

/* ---- Visitor-intent selector ---- */
.intent { margin-top: 6px; }
.intent-label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--taupe-dark); font-weight: 600; margin-bottom: 12px;
}
.intent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.intent-btn {
  display: flex; align-items: center; gap: 11px;
  text-align: left;
  padding: 13px 15px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
  cursor: pointer;
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
}
.intent-btn .ic {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--taupe-wash);
  color: var(--taupe-deep);
}
.intent-btn .ic svg { width: 16px; height: 16px; }
.intent-btn:hover {
  transform: translateY(-2px);
  border-color: var(--taupe);
  box-shadow: var(--shadow);
  background: #fff;
}
.intent-btn.selected {
  background: var(--taupe-deep); color: #fff; border-color: var(--taupe-deep);
}
.intent-btn.selected .ic { background: rgba(255,255,255,0.16); color: #fff; }
.intent-skip {
  display: inline-block; margin-top: 14px;
  font-size: 0.85rem; color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}
.intent-skip:hover { color: var(--ink); border-color: var(--taupe); }

/* ---- Personalized path panel ---- */
.path {
  background: linear-gradient(155deg, var(--espresso) 0%, var(--espresso-2) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
  animation: valFade 0.5s var(--ease);
  margin: 44px 0 0;
  scroll-margin-top: 90px;
}
.path-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.path-eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); font-weight: 600; }
.path h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 6px 0 0; }
.path-reset { font-size: 0.82rem; color: var(--muted-light); background: none; border: 0; cursor: pointer; }
.path-reset:hover { color: #fff; }
.path-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 28px; }
.path-step {
  display: block;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
}
.path-step:hover { background: rgba(255,255,255,0.08); }
.path-step:hover { border-color: var(--taupe); transform: translateY(-2px); }
.path-step .sn { font-family: var(--font-display); font-size: 1.1rem; color: var(--taupe); }
.path-step .st { display: block; margin-top: 8px; font-weight: 600; color: #fff; font-size: 0.98rem; }
.path-step .sd { display: block; margin-top: 4px; font-size: 0.83rem; color: #b7ad9e; line-height: 1.45; }
.path-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ---- Owned "tools" band (replaces away-sending search + fake listings) ---- */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tool-card {
  display: flex; flex-direction: column;
  padding: 30px 26px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tool-card .ti {
  width: 46px; height: 46px; border-radius: var(--radius);
  background: var(--taupe-wash); color: var(--taupe-deep);
  display: grid; place-items: center; margin-bottom: 18px;
}
.tool-card .ti svg { width: 24px; height: 24px; }
.tool-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.tool-card p { color: var(--muted); font-size: 0.94rem; flex-grow: 1; }
.tool-card .s-link { margin-top: 16px; }

/* ---- Mobile sticky action bar ---- */
.mobile-bar { display: none; }
@media (max-width: 820px) {
  .mobile-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: rgba(23,19,14,0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 6px 2px; color: #fff; font-size: 0.66rem; letter-spacing: 0.02em;
  }
  .mobile-bar a svg { width: 19px; height: 19px; }
  .mobile-bar a.accent { color: var(--taupe); }
  body { padding-bottom: 66px; }
  .chat-widget { bottom: 74px; }
}

/* ---- Hero responsive ---- */
@media (max-width: 900px) {
  .hero2-grid { grid-template-columns: 1fr; }
  .hero2-media { max-width: 440px; margin: 0 auto; order: -1; }
  .intent-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .intent-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .hero2-chip { left: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
