/* ============================================================
   ROOTS BASEMENTS — SITE STYLES
   Same brand family as the Roots design book:
   dark olive · gold · orange · cream · condensed uppercase type
   ============================================================ */

:root {
  --olive: #3a3b36;
  --olive-dark: #2c2d28;
  --olive-deep: #22231f;
  --ink: #23241d;
  --grey: #6f6d61;
  --grey-light: #bcb8a8;
  --paper: #f6f4ec;
  --cream: #ece2c8;
  --white: #ffffff;
  --gold: #af8841;
  --gold-bright: #b89248;
  --gold-soft: #d9c890;
  --orange: #f15622;
  --script: "Snell Roundhand", "Savoye LET", "Brush Script MT", cursive;
  --cond: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
a { color: inherit; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.wrap.narrow { max-width: 860px; }

/* ---------- type ---------- */
h1, h2 { font-family: var(--cond); font-weight: 700; text-transform: uppercase; line-height: 1.04; letter-spacing: 0.015em; }
h1 { font-size: clamp(44px, 7vw, 84px); }
h2 { font-size: clamp(34px, 4.6vw, 58px); }
.kicker { font-family: var(--cond); font-size: 13px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-sub { max-width: 640px; margin: 22px 0 0; font-size: 17px; color: var(--grey); }
.section-sub.light { color: var(--grey-light); margin-left: auto; margin-right: auto; }
.script-line { font-family: var(--script); font-size: clamp(26px, 3vw, 38px); color: var(--gold-soft); margin-bottom: 10px; }
.script-accent { font-family: var(--script); font-size: 24px; color: var(--gold); display: block; margin-top: 8px; }
.script-accent.big { font-size: 30px; }

/* ---------- buttons ---------- */
.btn { font-family: var(--cond); font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  border: 0; cursor: pointer; text-decoration: none; display: inline-block; text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 6px 22px rgba(175,136,65,.35); }
.btn-gold:hover { background: var(--gold-bright); box-shadow: 0 10px 28px rgba(175,136,65,.45); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(236,226,200,.45); }
.btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn-ghost-dark { background: transparent; color: var(--grey); border: 1px solid var(--grey-light); }
.btn-ghost-dark:hover { color: var(--ink); border-color: var(--grey); }
.btn-big { font-size: 16px; padding: 18px 42px; }
.btn-small { font-size: 13px; padding: 11px 22px; }
.btn:disabled { opacity: .4; cursor: default; transform: none; }

/* ---------- reveal on scroll (only hidden when JS is running) ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- topo motif ---------- */
.topo { position: absolute; inset: 0; opacity: .14; pointer-events: none;
  background-image: repeating-radial-gradient(circle at 82% 18%, transparent 0 46px, rgba(217,200,144,.5) 46px 47.5px),
                    repeating-radial-gradient(circle at 12% 88%, transparent 0 64px, rgba(217,200,144,.35) 64px 65.5px); }

/* ============ STICKY BAR ============ */
.bar { position: fixed; top: 0; left: 0; right: 0; z-index: 60; background: rgba(44,45,40,.96);
  backdrop-filter: blur(8px); transform: translateY(-100%); transition: transform .35s ease;
  border-bottom: 1px solid rgba(175,136,65,.35); }
.bar.show { transform: none; }
.bar-inner { max-width: 1240px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; gap: 26px; }
.bar-brand { font-family: var(--cond); font-weight: 700; letter-spacing: .18em; color: var(--cream); text-decoration: none; font-size: 16px; }
.bar-brand span { color: var(--gold-bright); }
.bar-links { display: flex; gap: 22px; flex: 1; justify-content: center; }
.bar-links a { font-family: var(--cond); font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--grey-light); text-decoration: none; }
.bar-links a:hover { color: var(--gold-soft); }
.bar-right { display: flex; align-items: center; gap: 18px; }
.bar-phone { font-family: var(--cond); font-weight: 600; letter-spacing: .1em; color: var(--gold-soft); text-decoration: none; font-size: 15px; }
@media (max-width: 900px) { .bar-links, .bar-phone { display: none; } .bar-inner { justify-content: space-between; } }

/* ============ 1 · ARRIVAL ============ */
.arrival { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; color: var(--cream); overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #46473f 0%, var(--olive) 45%, var(--olive-deep) 100%); }
.arrival-inner { position: relative; padding: 12px 24px 28px; max-width: 900px; }
.arrival-mark { margin: 0 auto 10px; }
.mark-script { display: block; font-family: var(--script); font-size: clamp(88px, 15vw, 210px);
  color: var(--gold-bright); line-height: 1; text-shadow: 0 6px 30px rgba(0,0,0,.45); }
.mark-word { display: inline-block; font-family: var(--cond); font-weight: 600; font-size: clamp(14px, 2.1vw, 24px);
  letter-spacing: .38em; text-indent: .38em; text-transform: uppercase; color: var(--cream);
  margin-top: 14px; padding: 8px 22px; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.arrival h1 { color: var(--white); text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.arrival-sub { margin: 26px auto 0; max-width: 560px; font-size: 18px; color: var(--grey-light); }
.arrival-ctas { margin-top: 38px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.arrival-proof { margin-top: 44px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px;
  font-family: var(--cond); font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); }
.arrival-proof i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; }
.arrival-scroll { position: relative; margin: 30px auto 34px; display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; color: var(--grey-light); font-size: 13px; letter-spacing: .04em; max-width: 420px; text-align: center; padding: 0 20px; }
.arrival-scroll b { font-size: 18px; color: var(--gold-soft); animation: drift 2.4s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ============ 2 · PROMISE ============ */
.promise { background: var(--paper); padding: 110px 0 90px; }
.promise-copy { margin-top: 30px; font-size: 18px; max-width: 680px; }
.promise-copy p + p { margin-top: 18px; }
.promise-copy em { color: var(--gold); font-style: italic; }
.promise-sign { font-weight: 600; }
.promise-pillars { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { background: var(--white); border-top: 3px solid var(--gold); padding: 26px 24px; box-shadow: 0 8px 30px rgba(35,36,29,.07); }
.pillar b { font-family: var(--cond); font-size: 20px; letter-spacing: .12em; display: block; margin-bottom: 8px; }
.pillar span { color: var(--grey); font-size: 15px; }
@media (max-width: 760px) { .promise-pillars { grid-template-columns: 1fr; } }

/* ============ 3 · QUESTIONS ============ */
.questions { background: var(--olive); color: var(--cream); padding: 110px 0; position: relative; }
.questions h2 { color: var(--white); }
.questions .section-sub { color: var(--grey-light); }
.qa-list { margin-top: 50px; border-top: 1px solid rgba(236,226,200,.16); }
.qa { border-bottom: 1px solid rgba(236,226,200,.16); }
.qa summary { list-style: none; cursor: pointer; padding: 26px 8px; display: flex; align-items: baseline; gap: 20px;
  font-family: var(--cond); font-size: clamp(19px, 2.4vw, 26px); font-weight: 600; letter-spacing: .02em;
  transition: color .2s ease; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--gold-soft); }
.qa[open] summary { color: var(--gold-soft); }
.qa-num { font-size: 14px; letter-spacing: .2em; color: var(--gold); flex-shrink: 0; }
.qa summary::after { content: "+"; margin-left: auto; font-size: 24px; color: var(--gold); font-weight: 400; transition: transform .25s ease; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa-body { padding: 0 8px 30px 52px; max-width: 760px; color: var(--grey-light); font-size: 16.5px; }
.qa-body b { color: var(--cream); }
.qa-body p + p { margin-top: 14px; }
.qa-how { border-left: 2px solid var(--gold); padding-left: 16px; }
@media (max-width: 640px) { .qa-body { padding-left: 8px; } }

/* ============ 4 · THE ROOTS WAY ============ */
.way { background: var(--paper); padding: 110px 0 90px; }
.way-steps { margin-top: 54px; list-style: none; position: relative; }
.way-steps::before { content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(var(--gold-soft), var(--gold)); opacity: .5; }
.way-step { display: flex; gap: 30px; padding: 0 0 44px; position: relative; }
.way-n { width: 56px; height: 56px; border-radius: 50%; background: var(--olive); color: var(--gold-soft);
  font-family: var(--cond); font-weight: 700; font-size: 24px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 2px solid var(--gold); z-index: 1; }
.way-t b { font-family: var(--cond); font-size: 24px; letter-spacing: .1em; display: block; }
.way-t em { font-family: var(--cond); font-style: normal; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: block; margin: 2px 0 10px; }
.way-t p { color: var(--grey); max-width: 620px; }
.way-cta { text-align: center; margin-top: 20px; color: var(--grey); }

/* ============ 5 · ROOMS ============ */
.rooms { background: var(--white); padding: 110px 0; }
.room-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.room { background: var(--paper); box-shadow: 0 10px 34px rgba(35,36,29,.08); overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease; }
.room:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(35,36,29,.14); }
.room-img { aspect-ratio: 4 / 3; display: flex; align-items: flex-end; justify-content: flex-start; padding: 14px;
  position: relative; }
.room-img span { font-family: var(--cond); font-size: 11px; letter-spacing: .25em; color: rgba(246,244,236,.8);
  border: 1px solid rgba(246,244,236,.4); padding: 5px 10px; }
/* Placeholder gradients — replaced by real photos as they arrive:
   drop image in ../assets/ and set e.g. .ph-theater { background: url(...) center/cover; } */
.ph-theater { background: linear-gradient(135deg, #2c2d28, #4a4335); }
.ph-suite   { background: linear-gradient(135deg, #4a4335, #6f6d61); }
.ph-bar     { background: linear-gradient(135deg, #3a3b36, #af8841); }
.ph-gym     { background: linear-gradient(135deg, #23241d, #3a3b36); }
.ph-play    { background: linear-gradient(135deg, #6f6d61, #b89248); }
.ph-office  { background: linear-gradient(135deg, #2c2d28, #6f6d61); }
.room figcaption { padding: 20px 22px 24px; }
.room figcaption b { font-family: var(--cond); font-size: 19px; letter-spacing: .12em; display: block; margin-bottom: 6px; }
.room figcaption span { color: var(--grey); font-size: 14.5px; display: block; }
.room-note { margin-top: 30px; text-align: center; font-size: 13.5px; color: var(--grey); font-style: italic; }
@media (max-width: 900px) { .room-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .room-grid { grid-template-columns: 1fr; } }

/* ============ 6 · INVESTMENT ============ */
.investment { background: var(--paper); padding: 110px 0; }
.tier-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.tier { background: var(--white); padding: 36px 30px; box-shadow: 0 10px 34px rgba(35,36,29,.08); position: relative;
  display: flex; flex-direction: column; }
.tier-feature { background: var(--olive); color: var(--cream); transform: scale(1.03); box-shadow: 0 18px 50px rgba(35,36,29,.25); }
.tier-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange);
  color: var(--white); font-family: var(--cond); font-size: 11px; letter-spacing: .25em; padding: 6px 16px; }
.tier-name { font-family: var(--cond); font-size: 17px; font-weight: 600; letter-spacing: .25em; color: var(--gold); }
.tier-price { font-family: var(--cond); font-weight: 700; font-size: 46px; margin: 8px 0 2px; }
.tier-tag { font-family: var(--script); font-size: 21px; color: var(--gold); margin-bottom: 20px; }
.tier ul { list-style: none; margin-top: 4px; }
.tier li { padding: 9px 0 9px 26px; position: relative; font-size: 15px; border-top: 1px solid rgba(111,109,97,.15); }
.tier-feature li { border-top-color: rgba(236,226,200,.15); }
.tier li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.invest-honest { margin: 60px auto 0; max-width: 760px; background: var(--white); border-left: 4px solid var(--gold);
  padding: 28px 32px; box-shadow: 0 8px 30px rgba(35,36,29,.07); }
.invest-honest b { font-family: var(--cond); letter-spacing: .2em; font-size: 15px; display: block; margin-bottom: 8px; }
.invest-honest p { color: var(--grey); }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } .tier-feature { transform: none; } }

/* ============ 7 · BUILDER ============ */
.builder { background: var(--white); padding: 110px 0; }
.builder-copy { margin-top: 30px; font-size: 18px; }
.builder-copy p + p { margin-top: 18px; }
.builder-copy em { color: var(--gold); }
.builder-facts { margin-top: 46px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fact { border-top: 3px solid var(--gold); background: var(--paper); padding: 18px 16px; }
.fact b { font-family: var(--cond); font-size: 16px; letter-spacing: .12em; display: block; }
.fact span { color: var(--grey); font-size: 13.5px; }
@media (max-width: 760px) { .builder-facts { grid-template-columns: repeat(2, 1fr); } }

/* ============ 8 · VISION INVITE ============ */
.vision-invite { position: relative; background: radial-gradient(110% 100% at 50% 100%, #46473f 0%, var(--olive) 55%, var(--olive-deep) 100%);
  color: var(--cream); padding: 130px 0; text-align: center; overflow: hidden; }
.vision-invite h2 { color: var(--white); }
.vision-invite .section-sub { max-width: 620px; margin-left: auto; margin-right: auto; }
.vision-invite .btn { margin-top: 36px; }
.invite-alt { margin-top: 24px; font-size: 15px; color: var(--grey-light); }
.invite-alt a { color: var(--gold-soft); text-decoration: none; font-weight: 600; }

/* ============ FOOTER ============ */
.foot { background: var(--olive-deep); color: var(--grey-light); padding: 60px 0 0; }
.foot-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.foot b { font-family: var(--cond); letter-spacing: .2em; font-size: 15px; color: var(--cream); display: block; margin-bottom: 12px; }
.foot-brand span, .foot-col span, .foot-col a { display: block; font-size: 14px; margin-bottom: 6px; text-decoration: none; }
.foot-col a:hover { color: var(--gold-soft); }
.foot .script-accent { color: var(--gold-soft); }
.foot-legal { border-top: 1px solid rgba(236,226,200,.12); padding: 18px 28px; text-align: center; font-size: 12.5px; }
@media (max-width: 760px) { .foot-inner { grid-template-columns: 1fr; } }

/* ============ VISION BUILDER OVERLAY ============ */
.vb { position: fixed; inset: 0; z-index: 100; background: rgba(34,35,31,.88); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px; }
.vb[hidden] { display: none; }
.vb-shell { background: var(--paper); width: min(780px, 100%); max-height: 92vh; display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,.5); animation: vbIn .35s ease; }
@keyframes vbIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.vb-top { padding: 20px 26px 0; }
.vb-brand { font-family: var(--cond); font-weight: 700; letter-spacing: .2em; font-size: 13px; }
.vb-brand span { color: var(--gold); }
.vb-progress { margin-top: 14px; height: 4px; background: rgba(111,109,97,.2); }
.vb-progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); transition: width .4s ease; }
.vb-meta { display: flex; justify-content: space-between; align-items: center; padding: 10px 0 0;
  font-family: var(--cond); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--grey); }
.vb-close { border: 0; background: none; font-size: 30px; line-height: 1; cursor: pointer; color: var(--grey); }
.vb-close:hover { color: var(--ink); }
.vb-body { padding: 26px 26px 10px; overflow-y: auto; flex: 1; }
.vb-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 26px 22px; }
.vb-nav .btn { font-size: 14px; padding: 13px 28px; }
.vb-save { font-size: 12px; color: var(--grey); font-style: italic; }
@media (max-width: 560px) { .vb-save { display: none; } }

/* vision builder steps */
.vb-q { font-family: var(--cond); font-weight: 700; font-size: clamp(24px, 3.4vw, 34px); text-transform: uppercase; line-height: 1.1; }
.vb-hint { color: var(--grey); margin: 8px 0 22px; font-size: 15px; }
.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.chip { border: 1.5px solid var(--grey-light); background: var(--white); padding: 16px 14px; cursor: pointer;
  font-family: var(--cond); font-size: 16px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  text-align: center; transition: all .18s ease; user-select: none; }
.chip small { display: block; font-family: var(--sans); font-size: 12px; font-weight: 400; text-transform: none;
  letter-spacing: 0; color: var(--grey); margin-top: 4px; }
.chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.chip.sel { border-color: var(--gold); background: var(--olive); color: var(--cream); box-shadow: 0 8px 22px rgba(58,59,54,.25); }
.chip.sel small { color: var(--gold-soft); }
.vb-field { margin-bottom: 18px; }
.vb-field label { font-family: var(--cond); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--grey); display: block; margin-bottom: 6px; }
.vb-field input, .vb-field textarea { width: 100%; border: 1.5px solid var(--grey-light); background: var(--white);
  padding: 14px 16px; font-family: var(--sans); font-size: 16px; outline: none; transition: border-color .18s; }
.vb-field input:focus, .vb-field textarea:focus { border-color: var(--gold); }
.vb-error { color: var(--orange-dark, #cf4413); font-size: 14px; margin-top: 10px; display: none; }
.vb-error.show { display: block; }

/* summary step */
.vb-summary { background: var(--white); border-top: 3px solid var(--gold); padding: 24px 26px; box-shadow: 0 8px 30px rgba(35,36,29,.08); }
.vb-summary h4 { font-family: var(--cond); letter-spacing: .2em; font-size: 14px; color: var(--gold); margin-bottom: 14px; }
.vb-summary dl { display: grid; grid-template-columns: 130px 1fr; gap: 8px 16px; font-size: 15px; }
.vb-summary dt { font-family: var(--cond); text-transform: uppercase; letter-spacing: .1em; font-size: 12.5px; color: var(--grey); padding-top: 2px; }
.vb-summary dd { font-weight: 500; }

/* done step */
.vb-done { text-align: center; padding: 30px 10px 20px; }
.vb-done .script-line { color: var(--gold); }
.vb-done h3 { font-family: var(--cond); font-size: 34px; text-transform: uppercase; margin-bottom: 14px; }
.vb-done p { color: var(--grey); max-width: 480px; margin: 0 auto 10px; }
.vb-done .btn { margin: 18px 8px 0; }

/* ============ PAGE PROGRESS BAR ============ */
.page-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 80;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright)); transition: width .1s linear; }

/* ============ THE WALKTHROUGH (scroll-driven build) ============ */
.walk { position: relative; height: 640vh; background: var(--olive-deep); }
.walk-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex;
  flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding: 20px; }
.walk-head { text-align: center; }
.walk-head .kicker { margin-bottom: 8px; }
.walk-title { color: var(--white); font-size: clamp(26px, 3.4vw, 44px); }
.walk-title-accent { color: var(--gold-bright); }
.walk-scene { width: min(1020px, 94vw); }
.walk-scene svg { display: block; width: 100%; height: auto; max-height: 56vh;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.45)); }
.scene-stage { transition: none; will-change: opacity; }
.walk-caption { text-align: center; max-width: 640px; min-height: 128px; }
.walk-dots { display: flex; gap: 10px; justify-content: center; margin-bottom: 12px; }
.walk-dot { width: 34px; height: 4px; background: rgba(236,226,200,.18); transition: background .3s ease; }
.walk-dot.on { background: var(--gold-bright); }
.walk-week { font-family: var(--cond); font-size: 12px; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: 6px; }
.walk-stage-title { font-family: var(--cond); font-weight: 700; text-transform: uppercase;
  font-size: clamp(20px, 2.6vw, 30px); color: var(--white); letter-spacing: .04em; }
.walk-copy { color: var(--grey-light); font-size: 15.5px; margin-top: 8px; }
.walk-hint { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: var(--cond); font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-soft); transition: opacity .4s ease; display: flex; align-items: center; gap: 8px; }
.walk-hint b { animation: drift 2.4s ease-in-out infinite; }
@media (max-height: 700px) { .walk-head { display: none; } .walk-scene svg { max-height: 52vh; } }
@media (max-width: 640px) {
  .walk { height: 560vh; }
  .walk-caption { min-height: 150px; }
  .walk-copy { font-size: 14px; }
}

/* ============ AREAS WE SERVE ============ */
.areas { background: var(--olive); color: var(--cream); padding: 110px 0; }
.areas h2 { color: var(--white); }
.areas .section-sub { color: var(--grey-light); }
.area-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.area { border: 1px solid rgba(236,226,200,.18); padding: 24px 22px; transition: border-color .25s ease, transform .25s ease; }
.area:hover { border-color: var(--gold); transform: translateY(-4px); }
.area b { font-family: var(--cond); font-size: 19px; letter-spacing: .16em; display: block; color: var(--gold-soft); }
.area em { font-family: var(--cond); font-style: normal; font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--orange); display: block; margin-top: 2px; }
.area span { display: block; margin-top: 10px; font-size: 14px; color: var(--grey-light); }
.area-home { background: rgba(175,136,65,.12); border-color: rgba(175,136,65,.5); }
@media (max-width: 1000px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .area-grid { grid-template-columns: 1fr; } }

/* ============ VISION PACKET (print) ============ */
.packet { display: none; }
@media print {
  body > *:not(.packet) { display: none !important; }
  .packet { display: block !important; font-family: var(--sans); color: var(--ink); }
  .packet-page { padding: .4in .55in; }
  .packet-head { background: var(--olive); color: var(--cream); padding: .35in .45in; text-align: center;
    -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .packet-head .script-line { font-size: 24px; margin-bottom: 4px; }
  .packet-head h1 { font-size: 34px; color: var(--white); }
  .packet-head .packet-sub { font-family: var(--cond); letter-spacing: .25em; text-transform: uppercase; font-size: 11px; color: var(--gold-soft); margin-top: 8px; }
  .packet-block { margin-top: .28in; border-top: 3px solid var(--gold); background: #fbfaf5; padding: 16px 20px; }
  .packet-block h4 { font-family: var(--cond); letter-spacing: .2em; text-transform: uppercase; font-size: 13px; color: var(--gold); margin-bottom: 8px; }
  .packet-block p, .packet-block li { font-size: 13.5px; }
  .packet-block ul { margin-left: 18px; }
  .packet-foot { margin-top: .3in; text-align: center; font-family: var(--cond); letter-spacing: .2em;
    text-transform: uppercase; font-size: 11px; color: var(--grey); }
}

/* ============================================================
   READY-TO-CALL BAR  (pinned to the very top of every page)
   ============================================================ */
.callbar{position:sticky;top:0;z-index:90;height:46px;display:flex;align-items:center;
  justify-content:center;gap:16px;padding:0 18px;background:var(--gold,#af8841);color:#22231f;
  font-family:var(--cond);font-size:13px;letter-spacing:.16em;text-transform:uppercase;
  white-space:nowrap;overflow:hidden;box-shadow:0 1px 0 rgba(0,0,0,.2)}
.callbar-lead{font-weight:500;opacity:.92}
.callbar-num{color:#22231f;text-decoration:none;font-weight:700;letter-spacing:.1em;
  border-bottom:1px solid rgba(34,35,31,.5);padding-bottom:1px;transition:border-color .2s}
.callbar-num:hover{border-bottom-color:#22231f}
/* the scroll nav and the progress line now start below the call bar */
.bar{top:46px}
.page-progress{top:46px}
@media (max-width:720px){
  .callbar{height:42px;font-size:11px;letter-spacing:.1em;gap:10px}
  .callbar-lead{display:none}
  .bar{top:42px}
  .page-progress{top:42px}
}
