/* =========================================================================
   Eli Buys Homes — "Sundae-Disciplined Trust"
   One accent (gold) reserved for conversion touchpoints only.
   ========================================================================= */

:root {
  --ink: #242424;
  --ink-soft: #3a3a3a;
  --paper: #ffffff;
  --bg-light: #EFF4F8;
  --gold: #F5D96F;
  --gold-deep: #e0bf3f;
  --blue-link: #1c547a;
  --gray: #5a5a5a;
  --gray-mist: #8a8f95;
  --line: #e2e6ea;
  --line-soft: #eceff2;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-card: 0 1px 2px rgba(20, 20, 20, .04), 0 10px 30px -12px rgba(20, 20, 20, .12);
  --shadow-lift: 0 6px 16px -4px rgba(20, 20, 20, .18), 0 2px 6px rgba(20, 20, 20, .08);
  --shadow-gold: 0 10px 24px -8px rgba(224, 191, 63, .55);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  --container: 1180px;
}

/* ---------- reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
svg { display: block; }

html, body { overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

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

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ---------- type ---------- */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.h1 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.08; }
.h2 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.14; }
.h3 { font-size: clamp(19px, 2vw, 22px); line-height: 1.3; }

.lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--gray);
  line-height: 1.6;
  font-weight: 400;
}

.section-head { max-width: 660px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.gold-text { color: var(--gold-deep); }
.text-gray { color: var(--gray); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-deep); box-shadow: 0 14px 28px -8px rgba(224,191,63,.65); }

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover { background: #000; }

.btn-outline {
  background: transparent;
  border-color: rgba(36,36,36,.22);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); box-shadow: 0 6px 16px -8px rgba(36,36,36,.25); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.btn-outline-light:hover { border-color: #fff; }

.btn-sm { height: 44px; padding: 0 22px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: 14.5px;
  font-weight: 600;
  padding: 6px 2px;
  position: relative;
  transition: color .15s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: -6px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.header-right { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: right;
}
.header-phone .lbl { font-size: 11px; color: rgba(255,255,255,.5); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.header-phone .num { font-size: 15px; font-weight: 700; color: var(--gold); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-panel {
  display: none;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-panel.is-open { display: block; }
.mobile-panel .container { padding-top: 18px; padding-bottom: 22px; }
.mobile-panel a {
  display: block;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-panel .mp-cta { margin-top: 16px; display: flex; gap: 10px; }

@media (max-width: 900px) {
  .nav-links, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-header .container { height: 66px; }
  .brand img { height: 28px; }
}

/* ---------- sticky bottom mobile CTA (mobile-native touch) ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(36,36,36,.97);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(100%);
  transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta a { flex: 1; height: 48px; font-size: 14.5px; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
}

/* ---------- hero ---------- */
.hero {
  background: var(--ink);
  color: #fff;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(245,217,111,.10), rgba(245,217,111,0) 70%);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--gold); }
.hero-copy .eyebrow::before { background: var(--gold); }
.hero h1 { color: #fff; }
.hero .lede { color: rgba(255,255,255,.7); margin-top: 18px; max-width: 480px; }

.hero-cta-row { display: flex; align-items: center; gap: 18px; margin-top: 32px; flex-wrap: wrap; }
.hero-phone-inline { font-size: 14.5px; color: rgba(255,255,255,.65); }
.hero-phone-inline strong { color: var(--gold); font-weight: 700; }

.trust-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-top: 40px;
  max-width: 460px;
}
.trust-chip { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,.78); font-weight: 600; }
.trust-chip svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); }

.hero-photo-stage {
  position: relative;
  padding: 22px;
}
/* Disciplined stand-in for the original site's scattered photo fan: a single
   real photo, given depth with one offset, outlined accent card peeking out
   behind it — an overlapping-card treatment rather than a literal collage. */
.hero-photo-accent {
  position: absolute;
  top: 0; left: 44px; right: -10px; bottom: -12px;
  border: 1.5px solid rgba(245, 217, 111, .38);
  border-radius: var(--radius-lg);
  transform: rotate(2.4deg);
  z-index: 0;
}
.hero-photo-frame {
  position: relative;
  z-index: 1;
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-lift), 0 30px 60px -20px rgba(0,0,0,.55);
  transform: rotate(-1.6deg);
}
.hero-photo-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background: #000;
}
.hero-photo-caption {
  position: absolute;
  bottom: -14px; left: 40px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px -6px rgba(0,0,0,.4);
  transform: rotate(-1.6deg);
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy .lede { max-width: 100%; }
  .hero { padding: 40px 0 52px; }
  .hero-photo-frame { transform: rotate(0deg); }
  .hero-photo-accent { transform: rotate(0deg); left: 18px; top: 10px; right: -6px; bottom: -8px; }
  .hero-photo-caption { transform: rotate(0deg); left: 24px; }
  .trust-chips { grid-template-columns: 1fr 1fr; }
}

/* ---------- value strip — the trust bar directly under the hero ----------
   Reinterprets the real site's black 4-icon trust bar: a distinct band,
   dark like the hero it sits under, gold icon badges, hairline dividers
   between items on desktop (stat-bar craft, not a bare icon+text row). */
.value-strip {
  background: var(--ink);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.value-strip .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 26px;
  position: relative;
}
.value-item + .value-item::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 30px;
  background: rgba(255, 255, 255, .12);
}
.value-ic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(245, 217, 111, .12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-ic svg { width: 20px; height: 20px; color: var(--gold); }
.value-item span:last-child { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.92); line-height: 1.3; }

@media (max-width: 900px) {
  .value-strip .row { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .value-item { padding: 4px 14px; }
  .value-item + .value-item::before { display: none; }
}

/* ---------- generic sections ---------- */
.section { padding: 76px 0; }
.section-tight { padding: 46px 0; }
.section-roomy { padding: 100px 0; }
.section.bg-light { background: var(--bg-light); }
.section.bg-dark { background: var(--ink); color: #fff; }
.section.bg-dark .h2, .section.bg-dark .h3 { color: #fff; }
.section.bg-dark .lede { color: rgba(255,255,255,.68); }

/* ---------- checklist / narrative split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
}

.check-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 15.5px;
  color: var(--ink-soft);
}
.check-list li:first-child { border-top: none; }
.check-list svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--gold-deep); }

.icon-panel {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-panel svg { width: 100%; max-width: 260px; height: auto; color: var(--ink); }

/* ---------- process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  position: relative;
}
.step-card {
  padding: 8px 22px 0 0;
  position: relative;
}
/* distinct watermark icon per step — a faint, oversized illustration mark
   behind the copy so each step reads visually distinct without competing
   with the numbered gold circle (the signature move, kept as-is). */
.step-icon-wm {
  position: absolute;
  top: 2px; right: 14px;
  width: 46px; height: 46px;
  color: var(--ink);
  opacity: .09;
  z-index: 0;
  pointer-events: none;
}
.step-icon-wm svg { width: 100%; height: 100%; }
.step-card > *:not(.step-icon-wm) { position: relative; z-index: 1; }
@media (max-width: 900px) {
  .step-icon-wm { top: -2px; right: 0; width: 40px; height: 40px; }
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 22px;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}
.step-card::after {
  content: "";
  position: absolute;
  top: 26px; left: 52px; right: -22px;
  height: 2px;
  background-image: linear-gradient(to right, var(--line) 0 6px, transparent 6px 12px);
  background-size: 12px 2px;
  background-repeat: repeat-x;
}
.step-card:last-child::after { display: none; }
.step-card h4 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; color: var(--gray); }

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step-card::after { display: none; }
  .step-card { padding-right: 0; }
}

/* ---------- comparison table ---------- */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
}
.compare-table thead th {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 0 20px 16px;
}
.compare-table thead th.col-eli {
  color: var(--ink);
}
.compare-table td, .compare-table th.row-label {
  padding: 18px 20px;
  font-size: 14.5px;
  border-top: 1px solid var(--line-soft);
  vertical-align: top;
  transition: background-color .15s ease;
}
.compare-table th.row-label { font-weight: 700; color: var(--ink); width: 22%; }
.compare-table tbody tr:first-child td, .compare-table tbody tr:first-child th { border-top: none; }
.compare-table td.muted { color: var(--gray); }
.compare-table td.muted::before { content: "\2013"; color: var(--gray-mist); font-weight: 700; margin-right: 7px; }
.compare-table td.eli-cell { font-weight: 700; color: var(--ink); }

/* Row hover — a light highlight sweeps the whole row; the lifted Eli column
   keeps its own card language but deepens its shadow so the row still reads
   as one unit. */
.compare-table tbody tr:hover th.row-label,
.compare-table tbody tr:hover td.muted { background: var(--bg-light); }
.compare-table tbody tr:hover td.eli-lift { box-shadow: var(--shadow-lift); }

.compare-legend {
  display: flex;
  gap: 22px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-mist);
}
.compare-legend span { display: inline-flex; align-items: center; gap: 6px; }
.compare-legend .check-ico { color: var(--gold-deep); width: 14px; height: 14px; }
.compare-legend .dash-mark { color: var(--gray-mist); font-weight: 800; }

.col-eli-wrap {
  position: relative;
}

/* Eli's column visually lifted */
.compare-table col.col-eli-el {}
.eli-header-cap {
  background: var(--gold);
  border-radius: 14px 14px 0 0;
  padding: 16px 20px 14px;
  text-align: left;
  box-shadow: 0 -1px 0 rgba(0,0,0,.02);
}
.eli-header-cap .name { font-size: 16px; font-weight: 800; color: var(--ink); text-transform: none; letter-spacing: 0; }
.eli-header-cap .sub { font-size: 12px; color: rgba(36,36,36,.65); font-weight: 600; margin-top: 2px; }

.compare-table td.eli-lift {
  background: var(--paper);
  box-shadow: var(--shadow-card);
  border-top: none !important;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}
.compare-table tbody tr:last-child td.eli-lift {
  border-radius: 0 0 14px 14px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 22px;
}
.compare-table th.other-header {
  padding: 16px 20px 14px;
}
.compare-table th.other-header .name { font-size: 15px; font-weight: 700; color: var(--ink); }
.compare-table th.other-header .sub { font-size: 12px; color: var(--gray-mist); font-weight: 600; margin-top: 2px; }

.check-ico { color: var(--gold-deep); width: 16px; height: 16px; display: inline-block; vertical-align: -3px; margin-right: 6px; }
.dash-ico { color: var(--gray-mist); }

@media (max-width: 720px) {
  .compare-table thead th, .compare-table td, .compare-table th.row-label { padding: 14px 14px; font-size: 13.5px; }
  /* Row labels stay put while the rest of the table scrolls horizontally,
     so the comparison never loses its context on a phone. */
  .compare-table th.row-label {
    position: sticky;
    left: 0;
    background: var(--paper);
    box-shadow: 4px 0 8px -4px rgba(0,0,0,.10);
    z-index: 2;
  }
  .compare-table tbody tr:hover th.row-label { background: var(--bg-light); }
}

/* ---------- situations grid ---------- */
.situations-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.situations-scroll::-webkit-scrollbar { display: none; }
.situation-pill {
  scroll-snap-align: start;
  flex: 0 0 auto;
  min-width: 190px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.situation-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(36,36,36,.14); }
.situation-pill svg {
  width: 44px; height: 44px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--gold-deep);
}
.situation-pill span { font-size: 14px; font-weight: 700; }

.situations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .situations-grid { display: none; }
  .situations-scroll { display: flex; }
}
@media (min-width: 901px) {
  .situations-scroll { display: none; }
}
.situations-grid .situation-pill { min-width: 0; }

/* ---------- reviews honest state ---------- */
.reviews-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.reviews-card .g-mark { width: 46px; height: 46px; flex-shrink: 0; }
.reviews-card h4 { font-size: 18px; margin-bottom: 6px; }
.reviews-card p { font-size: 14.5px; color: var(--gray); }
@media (max-width: 720px) {
  .reviews-card { grid-template-columns: 1fr; text-align: center; }
}

/* ---------- FAQ split layout — heading+copy on one side, accordion on the
   other, reinterpreting the original site's split FAQ section. ---------- */
.faq-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.faq-split-intro { max-width: 380px; }
.faq-split-intro .faq-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue-link);
}
@media (min-width: 1100px) {
  .faq-split-intro { position: sticky; top: 108px; }
}
@media (max-width: 900px) {
  .faq-split { grid-template-columns: 1fr; gap: 30px; }
  .faq-split-intro { max-width: 100%; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-size: 16.5px;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  position: relative;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.faq-item .plus::before, .faq-item .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
}
.faq-item .plus::before { width: 10px; height: 1.6px; transform: translate(-50%, -50%); }
.faq-item .plus::after { width: 1.6px; height: 10px; transform: translate(-50%, -50%); transition: opacity .2s ease; }
.faq-item[open] .plus { background: var(--gold); border-color: var(--gold); }
.faq-item[open] .plus::before { background: var(--ink); }
.faq-item[open] .plus::after { opacity: 0; }
.faq-item .faq-body { padding: 0 34px 24px 4px; font-size: 15px; color: var(--gray); }
.faq-item .faq-body ul { margin-top: 10px; }
.faq-item .faq-body li { padding: 4px 0; display: flex; gap: 8px; }
.faq-item .faq-body li::before { content: "—"; color: var(--gold-deep); flex-shrink: 0; }

/* ---------- values grid (about) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.value-card .num { font-size: 12px; font-weight: 800; color: var(--gold-deep); letter-spacing: .06em; }
.value-card h4 { font-size: 17px; margin: 10px 0 8px; }
.value-card p { font-size: 14px; color: var(--gray); }
@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ---------- map moment (hand-built, no live embed) ---------- */
.map-card {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.map-illustration { padding: 30px; display: flex; align-items: center; justify-content: center; background: #1a1a1a; }
.map-illustration svg { width: 100%; max-width: 340px; height: auto; }
.map-info { padding: 44px; color: #fff; }
.map-info .h3 { color: #fff; margin-bottom: 14px; }
.map-info .addr { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
.map-info .addr strong { color: #fff; display: block; font-size: 16px; margin-bottom: 4px; }
@media (max-width: 800px) {
  .map-card { grid-template-columns: 1fr; }
}

/* ---------- final CTA band ---------- */
.cta-band {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -80px; bottom: -120px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,217,111,.14), transparent 70%);
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.65); font-size: 15.5px; }
.cta-band > div:first-child { position: relative; z-index: 1; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1;}
/* Restrained echo of the original site's tilted-paper CTA graphic — one
   faint outlined document mark, not a garish mockup. */
.cta-decor {
  position: absolute;
  right: 44px; bottom: -16px;
  width: 130px; height: 130px;
  color: var(--gold);
  opacity: .10;
  transform: rotate(-9deg);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 760px) {
  .cta-band { grid-template-columns: 1fr; padding: 40px 26px; text-align: left; }
  .cta-decor { display: none; }
}

/* ---------- footer ---------- */
.site-footer { background: #161616; color: rgba(255,255,255,.7); padding: 60px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.5); max-width: 260px; line-height: 1.6; }
.footer-col h5 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,.62); padding: 6px 0; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 13px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 14px;}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
}
.social-row a svg { width: 16px; height: 16px; color: rgba(255,255,255,.75); }
.social-row a:hover { background: var(--gold); }
.social-row a:hover svg { color: var(--ink); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Reserve room below the footer's last row so the fixed mobile sticky-cta
   bar (see .sticky-cta above, shown under 720px) never permanently covers
   the copyright/location line once a user scrolls all the way down. Kept
   after the base .site-footer rule so it actually wins the cascade. */
@media (max-width: 720px) {
  .site-footer { padding-bottom: calc(28px + 78px + env(safe-area-inset-bottom)); }
}

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 52px 0 46px;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(255,255,255,.68); margin-top: 14px; max-width: 640px; }
.crumb { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 16px; }
.crumb a { color: rgba(255,255,255,.7); }
.crumb a:hover { color: var(--gold); }

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-card-list { display: flex; flex-direction: column; gap: 14px; }
.contact-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.contact-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: rgba(36,36,36,.14); }
.contact-tile .ic {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background-color .18s ease;
}
.contact-tile:hover .ic { background: var(--gold); }
.contact-tile .ic svg { width: 22px; height: 22px; color: var(--ink); }
.contact-tile .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-mist); font-weight: 700; }
.contact-tile .val { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-top: 2px; }
.contact-tile .val.gold { color: var(--gold-deep); }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  height: 50px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0 16px;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color .15s ease;
}
.field textarea { height: auto; padding: 14px 16px; min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.consent-line { font-size: 12.5px; color: var(--gray-mist); line-height: 1.6; margin: 18px 0 20px; }
.consent-line a { color: var(--blue-link); text-decoration: underline; }

.form-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* ---------- reveal animation (progressive enhancement — NEVER hides content) ----------
   Opacity is always 1, full stop — content must render even if JS never runs, if the
   IntersectionObserver never fires (e.g. an automated full-page screenshot capturing
   below-fold sections before a scroll event occurs), or if a browser lacks support.
   The only thing JS is allowed to animate is a small, already-visible transform. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js-anim .reveal {
    transform: translateY(14px);
    transition: transform .6s ease;
  }
  .js-anim .reveal.in-view { transform: translateY(0); }
}

/* ---------- misc ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(245,217,111,.16);
  color: var(--gold-deep);
  padding: 6px 12px;
  border-radius: 999px;
}

.divider { height: 1px; background: var(--line-soft); border: none; margin: 0; }

.stat-row { display: flex; gap: 40px; margin-top: 8px; }
.stat-row .stat-label { font-size: 13px; color: var(--gray); }

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