/* =====================================================
   ENCOMPASS — CARE LANDING PAGES
   Shared stylesheet for the SEO landing pages.
   Matches the homepage design language (Playfair / Inter /
   Oswald, copper palette). Drop-in alongside index.html.
   ===================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --white: #FFFFFF;
  --cream: #F9F7F4;
  --cream-deep: #F2EFE9;
  --border: #E8E3DC;
  --espresso: #1C1410;
  --espresso-deep: #0E0906;
  --charcoal: #2C2624;
  --ink: #1A1410;
  --mid-gray: #746B64;
  --light-gray: #A8A098;
  --copper: #C1714F;
  --copper-light: #E8A98A;
  --copper-deep: #A85A38;
  --copper-glow: rgba(193, 113, 79, 0.08);
  --serif: 'Playfair Display', Georgia, serif; /* @kind font */
  --sans: 'Inter', system-ui, -apple-system, sans-serif; /* @kind font */
  --label: 'Oswald', 'Inter', sans-serif; /* @kind font */
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Shared type utilities ---------- */
.section-label {
  font-family: var(--label);
  font-size: 12px; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--copper-deep);
}
.section-label.center { text-align: center; }
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 500; line-height: 1.12; letter-spacing: -.01em;
  color: var(--ink); margin-top: 16px;
}
.section-h2 em { font-style: italic; color: var(--copper-deep); }
.section-sub {
  font-size: 17px; line-height: 1.75; color: var(--mid-gray);
  max-width: 680px; margin-top: 18px;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  font-family: var(--label);
  font-size: 12px; font-weight: 600;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--copper-deep);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 2px; text-decoration: none;
  cursor: pointer; border: 1px solid transparent; transition: all .3s ease;
}
.btn-gold { background: var(--copper); color: var(--white); }
.btn-gold:hover { background: var(--copper-deep); transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(193,113,79,.28); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--copper); color: var(--copper-deep); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* ============================================================
   NAV  (injected by care-chrome.js)
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 40px; gap: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding .4s ease, box-shadow .4s ease;
}
.site-nav.scrolled { padding: 6px 40px; box-shadow: 0 1px 20px rgba(0,0,0,.05); }
.nav-mark { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-mark img { height: 78px; width: auto; transition: height .4s ease; }
.site-nav.scrolled .nav-mark img { height: 64px; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-trigger {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: #8a8a8a; text-decoration: none; background: none; border: none;
  cursor: pointer; transition: color .3s ease; position: relative;
  display: inline-flex; align-items: center; gap: 6px; padding: 0; font-family: var(--sans);
}
.nav-links > li > a::after, .nav-trigger::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0; height: 1px;
  background: var(--copper); transform: scaleX(0); transition: transform .3s ease;
}
.nav-links > li > a:hover, .nav-trigger:hover { color: var(--copper-deep); }
.nav-links > li > a:hover::after, .nav-trigger:hover::after { transform: scaleX(1); }
.nav-trigger .chev { width: 9px; height: 9px; transition: transform .3s ease; }
.nav-item-dropdown:hover .nav-trigger .chev,
.nav-item-dropdown:focus-within .nav-trigger .chev { transform: rotate(180deg); }
.nav-trigger.active { color: var(--copper-deep); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 300px; background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; box-shadow: 0 18px 50px rgba(28,20,16,.14);
  padding: 10px; opacity: 0; visibility: hidden; transition: opacity .26s ease, transform .26s ease;
  list-style: none;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-dropdown li a {
  display: block; padding: 11px 14px; border-radius: 3px; text-decoration: none;
  transition: background .2s ease;
}
.nav-dropdown li a:hover { background: var(--cream); }
.nav-dropdown .dd-title {
  font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink);
  letter-spacing: .01em; text-transform: none;
}
.nav-dropdown li a:hover .dd-title { color: var(--copper-deep); }
.nav-dropdown .dd-desc {
  font-size: 12px; line-height: 1.5; color: var(--light-gray);
  letter-spacing: 0; text-transform: none; margin-top: 2px;
}
.nav-cta {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 11px 22px; background: var(--copper); color: var(--white);
  text-decoration: none; border-radius: 2px; transition: all .3s ease; flex-shrink: 0;
}
.nav-cta:hover { background: var(--copper-deep); transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(193,113,79,.25); }
.nav-toggle { display: none; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .site-nav, .site-nav.scrolled { padding: 10px 20px; }
  .nav-mark img, .site-nav.scrolled .nav-mark img { height: 64px; }
}

/* ============================================================
   LANDING HERO
   ============================================================ */
.lp-hero {
  padding: 168px 40px 90px;
  background:
    radial-gradient(1100px 460px at 85% -8%, var(--copper-glow), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.lp-hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
}
.lp-hero-text { max-width: 600px; }
.lp-breadcrumb {
  font-family: var(--label); font-size: 11px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--light-gray);
  margin-bottom: 22px;
}
.lp-breadcrumb a { color: var(--light-gray); text-decoration: none; }
.lp-breadcrumb a:hover { color: var(--copper-deep); }
.lp-h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(38px, 5.2vw, 60px); line-height: 1.06; letter-spacing: -.015em;
  color: var(--ink); margin: 16px 0 0;
}
.lp-h1 em { font-style: italic; color: var(--copper-deep); }
.lp-hero-sub { font-size: 18px; line-height: 1.7; color: var(--mid-gray); margin-top: 22px; }
.lp-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* credential badges */
.cred-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.cred {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border); border-radius: 100px;
  padding: 9px 16px 9px 13px; font-size: 12.5px; font-weight: 600; color: var(--charcoal);
  letter-spacing: .02em; box-shadow: 0 2px 10px rgba(28,20,16,.04);
}
.cred svg { width: 15px; height: 15px; color: var(--copper); flex: none; }

.lp-hero-media { position: relative; }
.lp-hero-media img {
  width: 100%; height: 540px; object-fit: cover; border-radius: 6px;
  box-shadow: 0 30px 70px rgba(28,20,16,.18);
}
.lp-hero-media .media-badge {
  position: absolute; left: -24px; bottom: 36px;
  background: var(--ink); color: var(--white); padding: 20px 26px; border-radius: 5px;
  box-shadow: 0 20px 44px rgba(0,0,0,.28); max-width: 240px;
}
.lp-hero-media .media-badge .mb-num {
  font-family: var(--serif); font-size: 38px; font-weight: 500; color: var(--copper-light); line-height: 1;
}
.lp-hero-media .media-badge .mb-txt {
  font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,.8); margin-top: 8px;
}

@media (max-width: 920px) {
  .lp-hero { padding: 132px 20px 64px; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-hero-media img { height: 380px; }
  .lp-hero-media .media-badge { left: 16px; bottom: 16px; }
}

/* ============================================================
   GENERIC SECTION SHELLS
   ============================================================ */
.lp-section { padding: 100px 40px; }
.lp-section.tight { padding: 80px 40px; }
.lp-section.cream { background: var(--cream); }
.lp-section.ink { background: var(--ink); color: var(--white); }
.lp-section.ink .section-h2 { color: var(--white); }
.lp-section.ink .section-h2 em { color: var(--copper-light); }
.lp-section.ink .section-sub { color: rgba(255,255,255,.66); }
.lp-wrap { max-width: 1180px; margin: 0 auto; }
.lp-wrap-narrow { max-width: 820px; margin: 0 auto; }
.lp-head-center { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.lp-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Differentiator grid ---------- */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.diff-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 38px 32px; transition: transform .4s ease, box-shadow .4s ease;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(28,20,16,.1); }
.diff-ico {
  width: 52px; height: 52px; border-radius: 50%; background: var(--copper-glow);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.diff-ico svg { width: 24px; height: 24px; color: var(--copper-deep); }
.diff-card h3 {
  font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--ink); line-height: 1.25;
}
.diff-card p { font-size: 14.5px; line-height: 1.7; color: var(--mid-gray); margin-top: 12px; }
.cream .diff-card { background: var(--white); }
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr; } }

/* ---------- Prose / approach blocks ---------- */
.prose-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.prose-split.reverse .prose-media { order: -1; }
.prose-media img { width: 100%; height: 460px; object-fit: cover; border-radius: 6px;
  box-shadow: 0 24px 56px rgba(28,20,16,.14); }
.prose-body p { font-size: 16px; line-height: 1.8; color: var(--charcoal); margin-top: 18px; }
.prose-body p:first-of-type { margin-top: 22px; }
.prose-body .lead { font-size: 18px; color: var(--charcoal); }
@media (max-width: 900px) {
  .prose-split { grid-template-columns: 1fr; gap: 32px; }
  .prose-split.reverse .prose-media { order: 0; }
  .prose-media img { height: 320px; }
}

/* ---------- Feature list (checklist) ---------- */
.check-list { list-style: none; margin-top: 22px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; font-size: 15.5px; line-height: 1.6; color: var(--charcoal); }
.check-list li svg { width: 20px; height: 20px; color: var(--copper); flex: none; margin-top: 3px; }
.check-list li b { color: var(--ink); font-weight: 600; }

/* ---------- Stages (numbered steps) ---------- */
.stages { display: grid; gap: 0; max-width: 880px; margin: 0 auto; }
.stage {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px;
  padding: 32px 0; border-top: 1px solid var(--border);
}
.stage:last-child { border-bottom: 1px solid var(--border); }
.stage-num { font-family: var(--serif); font-size: 40px; font-weight: 500; color: var(--copper); line-height: 1; }
.stage h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); }
.stage p { font-size: 15px; line-height: 1.72; color: var(--mid-gray); margin-top: 10px; }
@media (max-width: 700px) { .stage { grid-template-columns: 54px 1fr; gap: 18px; }
  .stage-num { font-size: 30px; } }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.cmp { max-width: 980px; margin: 0 auto; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.cmp-row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.cmp-row + .cmp-row { border-top: 1px solid var(--border); }
.cmp-cell { padding: 22px 26px; font-size: 14.5px; line-height: 1.6; color: var(--charcoal); }
.cmp-cell.dim { color: var(--mid-gray); }
.cmp-head .cmp-cell {
  font-family: var(--label); font-size: 12px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; background: var(--cream-deep); color: var(--ink);
}
.cmp-head .cmp-cell.feature-h { background: var(--ink); color: var(--white); }
.cmp-col-encompass { background: var(--copper-glow); position: relative; }
.cmp-head .cmp-col-encompass { background: var(--copper); color: var(--white); }
.cmp-cell.rowlabel { font-weight: 600; color: var(--ink); background: var(--cream); }
@media (max-width: 760px) {
  .cmp-row { grid-template-columns: 1fr; }
  .cmp-cell { padding: 14px 18px; }
  .cmp-cell.rowlabel { border-top: 2px solid var(--copper); }
  .cmp-head { display: none; }
  .cmp-cell::before { content: attr(data-col); display: block; font-family: var(--label);
    font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--copper-deep); margin-bottom: 4px; }
  .cmp-cell.rowlabel::before { content: none; }
}

/* ============================================================
   PRICING
   ============================================================ */
.price-hero {
  text-align: center; background: var(--ink); color: var(--white);
  border-radius: 10px; padding: 56px 40px; max-width: 760px; margin: 0 auto;
}
.price-hero .ph-label { font-family: var(--label); font-size: 12px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--copper-light); }
.price-hero .ph-amt { font-family: var(--serif); font-size: clamp(52px, 9vw, 84px); font-weight: 500; line-height: 1; margin: 14px 0 6px; }
.price-hero .ph-amt span { font-size: 28px; color: rgba(255,255,255,.6); }
.price-hero .ph-note { font-size: 14px; color: rgba(255,255,255,.62); letter-spacing: .04em; }
.price-hero .ph-sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.8); margin-top: 22px; max-width: 520px; margin-left: auto; margin-right: auto; }

.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; max-width: 980px; margin: 56px auto 0; }
.incl-col h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.incl-col .incl-tag { font-family: var(--label); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.incl-col.in .incl-tag { color: var(--copper-deep); }
.incl-col.out .incl-tag { color: var(--light-gray); }
@media (max-width: 760px) { .incl-grid { grid-template-columns: 1fr; gap: 30px; } }

.x-list { list-style: none; margin-top: 18px; display: grid; gap: 12px; }
.x-list li { display: flex; gap: 12px; font-size: 14.5px; line-height: 1.55; color: var(--charcoal); }
.x-list li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.x-list.in li svg { color: var(--copper); }
.x-list.out li svg { color: var(--light-gray); }
.x-list.out li { color: var(--mid-gray); }

/* comparison "what families actually pay" callout */
.moat-box {
  max-width: 900px; margin: 56px auto 0; background: var(--cream); border: 1px solid var(--border);
  border-left: 3px solid var(--copper); border-radius: 0 8px 8px 0; padding: 34px 38px;
}
.moat-box h3 { font-family: var(--serif); font-size: 23px; font-weight: 500; color: var(--ink); }
.moat-box p { font-size: 15.5px; line-height: 1.75; color: var(--charcoal); margin-top: 12px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tst {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 34px 30px; display: flex; flex-direction: column;
}
.ink .tst { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); }
.tst-stars { color: var(--copper); letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
.tst-quote { font-family: var(--serif); font-size: 18px; font-style: italic; line-height: 1.55;
  color: var(--ink); flex: 1; }
.ink .tst-quote { color: var(--white); }
.tst-by { margin-top: 20px; font-size: 13px; }
.tst-by b { display: block; color: var(--copper-deep); font-weight: 600; letter-spacing: .02em; }
.ink .tst-by b { color: var(--copper-light); }
.tst-by span { color: var(--light-gray); }
.placeholder-flag {
  display: inline-block; margin: 0 auto 36px; font-family: var(--label); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--copper-deep);
  background: var(--copper-glow); border: 1px dashed var(--copper-light);
  padding: 7px 16px; border-radius: 100px;
}
@media (max-width: 900px) { .tst-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border); padding: 4px 0;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 26px; font-weight: 300; color: var(--copper); transition: transform .3s ease;
}
.faq details[open] summary::after { content: '\2013'; }
.faq details[open] summary { color: var(--copper-deep); }
.faq .faq-a { padding: 0 44px 26px 0; }
.faq .faq-a p { font-size: 15.5px; line-height: 1.78; color: var(--mid-gray); }
.faq .faq-a p + p { margin-top: 14px; }

/* ============================================================
   MID-PAGE CTA BAND
   ============================================================ */
.cta-band {
  background:
    linear-gradient(120deg, rgba(193,113,79,.12), transparent 60%),
    var(--ink);
  color: var(--white); padding: 70px 40px; text-align: center;
}
.cta-band h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 500; line-height: 1.15; }
.cta-band h2 em { font-style: italic; color: var(--copper-light); }
.cta-band p { font-size: 16px; color: rgba(255,255,255,.72); max-width: 560px; margin: 16px auto 0; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.cta-band .cta-phone {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif);
  font-size: 24px; color: var(--white); text-decoration: none;
}
.cta-band .cta-phone svg { width: 20px; height: 20px; color: var(--copper-light); }

/* ============================================================
   TOUR FORM (bottom)
   ============================================================ */
.tour { background: var(--cream); padding: 100px 40px; }
.tour-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.tour-info .section-h2 { margin-top: 14px; }
.tour-info p { font-size: 16px; line-height: 1.75; color: var(--mid-gray); margin-top: 18px; }
.tour-points { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.tour-points li { display: flex; gap: 12px; font-size: 15px; color: var(--charcoal); }
.tour-points li svg { width: 19px; height: 19px; color: var(--copper); flex: none; margin-top: 3px; }
.tour-contact { margin-top: 30px; display: grid; gap: 8px; font-size: 15px; }
.tour-contact a { color: var(--copper-deep); text-decoration: none; font-weight: 600; }

.form-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 40px; box-shadow: 0 20px 50px rgba(28,20,16,.07); }
.form-heading { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--ink); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--mid-gray); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--cream);
  border: 1px solid var(--border); border-radius: 4px; padding: 13px 14px; transition: border-color .25s ease, background .25s ease;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--copper); background: var(--white); }
.form-submit { margin-top: 6px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: 12.5px; color: var(--light-gray); text-align: center; margin-top: 14px; }
@media (max-width: 900px) {
  .tour-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
}

/* ============================================================
   MAP
   ============================================================ */
.map-wrap { max-width: 1180px; margin: 0 auto; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 16px 40px rgba(28,20,16,.08); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(.92); }

/* ============================================================
   FOOTER  (injected by care-chrome.js)
   ============================================================ */
.footer { background: var(--espresso-deep); color: rgba(255,255,255,.7); padding: 80px 40px 40px; }
.footer-top { max-width: 1180px; margin: 0 auto; display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer-hero-logo img { width: 220px; filter: brightness(0) invert(1); opacity: .92; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.6;
  color: rgba(255,255,255,.66); margin-top: 20px; max-width: 280px; }
.footer-col h4 { font-family: var(--label); font-size: 12px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-nav { list-style: none; display: grid; gap: 11px; }
.footer-nav a, .footer-nav li { font-size: 14px; color: rgba(255,255,255,.66); text-decoration: none;
  line-height: 1.5; transition: color .25s ease; }
.footer-nav a:hover { color: var(--copper-light); }
.footer-social { display: flex; gap: 12px; margin-bottom: 18px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all .25s ease; }
.footer-social a:hover { background: var(--copper); border-color: var(--copper); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.7); }
.footer-social a:hover svg { fill: var(--white); }
.footer-bottom { max-width: 1180px; margin: 48px auto 0; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; font-size: 12.5px; color: rgba(255,255,255,.5); }
.footer-bottom strong { color: rgba(255,255,255,.7); }
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer { padding: 60px 20px 32px; }
}
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* generic responsive padding */
@media (max-width: 700px) {
  .lp-section, .lp-section.tight { padding: 64px 20px; }
  .tour { padding: 64px 20px; }
  .cta-band { padding: 56px 20px; }
}
