/* ============================================================
   Bay Area Auto Detailing — premium editorial dark theme
   ============================================================ */
:root {
  --bg:        #0a0a0b;
  --bg-2:      #0e0e11;
  --bg-3:      #131317;
  --line:      rgba(255,255,255,0.11);
  --line-soft: rgba(255,255,255,0.06);
  --text:      #f4f5f7;
  --muted:     #8d9099;
  --muted-2:   #62646b;
  --red:       #b01e2b;
  --red-2:     #d3283a;
  --red-soft:  rgba(176,30,43,0.14);
  --radius:    2px;
  --maxw:      1200px;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --font:      'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display:   'Sora', var(--font);
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; color: var(--text); }
.muted { color: var(--muted); }
.accent { color: var(--red-2); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 26px; }

.skip-link { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--red); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 12px; }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--display); font-weight: 700; font-size: .72rem;
  letter-spacing: 2.6px; text-transform: uppercase; color: var(--muted);
}
.eyebrow-line { width: 34px; height: 1px; background: var(--red-2); }
.eyebrow-center { justify-content: center; }
.eyebrow-center::before { content: ""; width: 34px; height: 1px; background: var(--red-2); }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: .78rem;
  letter-spacing: 1.6px; text-transform: uppercase; padding: 16px 30px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -150%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-20deg); pointer-events: none;
}
.btn-primary:hover::after { animation: sheen .75s var(--ease); }
@keyframes sheen { to { left: 165%; } }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-2); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line); }
.btn-outline:hover { border-color: var(--red-2); color: #fff; background: var(--red-soft); transform: translateY(-2px); }
.btn-underline {
  padding: 16px 6px; text-transform: uppercase; font-family: var(--display); font-weight: 700;
  font-size: .78rem; letter-spacing: 1.6px; color: var(--text);
  border-bottom: 1px solid var(--red-2); border-radius: 0;
}
.btn-underline:hover { color: var(--red-2); }
.btn-block { width: 100%; }
.btn-sm { padding: 13px 22px; font-size: .72rem; }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible,
.ba-handle:focus-visible, .nav-toggle:focus-visible { outline: 2px solid var(--red-2); outline-offset: 3px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,11,0.6); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line-soft); background: rgba(10,10,11,0.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.02rem; letter-spacing: 1px; text-transform: uppercase; }
.brand-tag { font-size: .62rem; color: var(--muted-2); letter-spacing: 3px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a {
  padding: 10px 16px; color: var(--muted); font-family: var(--display); font-weight: 600;
  font-size: .74rem; letter-spacing: 1.4px; text-transform: uppercase; transition: color .16s;
}
.nav > a:hover { color: var(--text); }
.nav-cta { color: #fff !important; background: var(--red); margin-left: 10px; padding: 12px 22px !important; border-radius: var(--radius); }
.nav-cta:hover { background: var(--red-2); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 1px solid var(--line); border-radius: var(--radius); padding: 11px 10px; cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; background: var(--bg); }
.hero-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 62%; background: #050506 url("../images/hero-car.jpg") center right / cover no-repeat; transform-origin: 68% 50%; animation: heroZoom 2.6s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.14); } to { transform: scale(1); } }
.hero-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 0%, rgba(10,10,11,0.86) 16%, rgba(10,10,11,0.35) 42%, transparent 68%); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg) 1%, transparent 22%); }
.hero-inner { position: relative; z-index: 2; padding: 96px 0; }
.hero-content { max-width: 560px; }
.eyebrow-red { color: var(--red-2); }
.hero .eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-family: var(--display); font-weight: 800;
  letter-spacing: -2px; line-height: 0.98; font-size: clamp(2.9rem, 6.4vw, 5.4rem); margin-bottom: 26px;
}
.lede { font-size: clamp(1.05rem, 1.7vw, 1.24rem); color: #b8bbc2; max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin-top: 38px; }
.hero-features { display: flex; margin-top: 54px; }
.hf { display: flex; align-items: flex-start; gap: 12px; padding: 0 26px; border-left: 1px solid var(--line-soft); }
.hf:first-child { padding-left: 0; border-left: none; }
.hf-ico { color: var(--red-2); flex-shrink: 0; margin-top: 1px; }
.hf h3 { font-family: var(--display); font-weight: 700; font-size: .76rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.hf p { color: var(--muted); font-size: .84rem; line-height: 1.4; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-bottom: 1px solid var(--line-soft); background: var(--bg-2); padding: 22px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 30px; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { font-family: var(--display); font-weight: 700; font-size: clamp(1.1rem, 2.4vw, 1.7rem); letter-spacing: 1px; text-transform: uppercase; color: #26272c; white-space: nowrap; }
.marquee-track .sep { color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- sections ---------- */
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2, .value-copy h2, .about-copy h2, .book-copy h2, .cta-banner h2 {
  font-family: var(--display); font-weight: 700; letter-spacing: -1px; line-height: 1.06;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
}
.section-sub { color: var(--muted); margin-top: 18px; font-size: 1.06rem; max-width: 60ch; }

/* ---------- value ---------- */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.value-copy p { color: var(--muted); margin-top: 20px; font-size: 1.08rem; }
.value-list { list-style: none; padding: 0; }
.value-list li { display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line-soft); align-items: baseline; }
.value-list li:last-child { border-bottom: 1px solid var(--line-soft); }
.value-list .vn { font-family: var(--display); font-weight: 700; font-size: .78rem; color: var(--red-2); letter-spacing: 1px; flex-shrink: 0; }
.value-list p { color: var(--muted); font-size: 1rem; }

/* ---------- services (horizontal carousel) ---------- */
.svc-scroller { position: relative; }
.svc-track {
  display: flex; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft);
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -ms-overflow-style: none; cursor: grab; overscroll-behavior-x: contain;
}
.svc-track::-webkit-scrollbar { display: none; }
.svc-track.dragging { cursor: grabbing; }
.svc-track.dragging .svc { pointer-events: none; }
.svc {
  flex: 0 0 340px; max-width: 84vw;
  background: var(--bg-2); padding: 34px 30px; display: flex; flex-direction: column; gap: 14px;
  transition: background .2s, box-shadow .2s; user-select: none;
}
.svc:hover { background: var(--bg-3); box-shadow: inset 0 2px 0 var(--red-2); }
.svc-controls { display: flex; align-items: center; gap: 24px; margin-top: 26px; }
.svc-progress { position: relative; flex: 1; height: 2px; background: var(--line); overflow: hidden; }
.svc-progress-bar { position: absolute; top: 0; left: 0; height: 100%; width: 30%; background: var(--red-2); transition: left .25s var(--ease), width .25s var(--ease); }
.svc-hint { font-size: .72rem; color: var(--muted-2); letter-spacing: .3px; white-space: nowrap; }
.svc-arrows { display: flex; gap: 10px; flex-shrink: 0; }
.svc-arrow { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--text); font-family: var(--display); font-size: 1.3rem; line-height: 1; cursor: pointer; transition: border-color .18s, background .18s, color .18s, opacity .18s; }
.svc-arrow:hover:not(:disabled) { border-color: var(--red-2); background: var(--red-soft); color: #fff; }
.svc-arrow:disabled { opacity: .28; cursor: default; }
.svc-num { font-family: var(--display); font-weight: 600; font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); }
.accent-num { color: var(--red-2); }
.svc h3 { font-family: var(--display); font-weight: 600; font-size: 1.24rem; letter-spacing: -.3px; line-height: 1.2; }
.svc p { color: var(--muted); font-size: .94rem; flex: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line-soft); margin-top: 4px; }
.price { font-family: var(--display); font-weight: 700; font-size: 1.16rem; }
.price em { font-style: normal; font-weight: 500; font-size: .74rem; color: var(--muted); margin-left: 2px; }
.link-cta { font-family: var(--display); font-weight: 700; font-size: .7rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--red-2); transition: color .18s; }
.link-cta:hover { color: #fff; }
.svc-cta-cell { justify-content: center; gap: 16px; align-items: flex-start; }
.svc-cta-cell h3 { font-size: 1.14rem; }

/* ---------- packages ---------- */
.pkgs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pkg { border: 1px solid var(--line); background: var(--bg-2); padding: clamp(28px, 3.4vw, 44px); display: flex; flex-direction: column; }
.pkg-feature { border-color: rgba(211,40,58,0.45); background: linear-gradient(180deg, rgba(176,30,43,0.08), var(--bg-2)); }
.pkg-tag { align-self: flex-start; font-family: var(--display); font-weight: 700; font-size: .64rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); padding: 6px 12px; border-radius: 100px; margin-bottom: 20px; }
.pkg-tag-red { color: #ffb9c0; border-color: rgba(211,40,58,0.5); background: var(--red-soft); }
.pkg-head h3 { font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -.5px; }
.pkg-desc { color: var(--muted); margin-top: 12px; font-size: 1rem; }
.pkg-inc-label { font-family: var(--display); font-weight: 600; font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); margin: 28px 0 16px; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.pkg-inc { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.pkg-inc li { position: relative; padding-left: 28px; color: var(--text); font-size: .96rem; }
.pkg-inc li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--red-2); font-weight: 700; }
.pkg-foot { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.pkg-price { font-family: var(--display); font-weight: 800; font-size: 1.9rem; }

/* ---------- process ---------- */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.step { background: var(--bg-2); padding: 30px 24px; }
.step-n { font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: var(--red-2); display: block; margin-bottom: 18px; }
.step h3 { font-family: var(--display); font-weight: 600; font-size: 1.02rem; letter-spacing: -.2px; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: .9rem; }

/* ---------- before/after grid ---------- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.ba-tile figcaption { font-family: var(--display); font-weight: 600; font-size: .92rem; color: var(--muted); margin-top: 14px; letter-spacing: .3px; }
.ba { position: relative; overflow: hidden; user-select: none; border: 1px solid var(--line); aspect-ratio: 3 / 2; touch-action: pan-y; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before-wrap { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 0 0 50%); will-change: clip-path; }
.ba-label { position: absolute; top: 16px; z-index: 3; font-family: var(--display); font-weight: 700; font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; padding: 6px 11px; background: rgba(8,8,10,0.72); backdrop-filter: blur(4px); color: #e8eaee; }
.ba-label-l { left: 16px; }
.ba-label-r { right: 16px; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 46px; transform: translateX(-50%); display: grid; place-items: center; cursor: ew-resize; z-index: 4; }
.ba-line { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.9); }
.ba-grip { position: relative; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--red); color: #fff; font-size: .9rem; letter-spacing: 2px; font-weight: 700; box-shadow: 0 6px 18px rgba(0,0,0,0.55); border: 2px solid #fff; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 14px; }
.g-item { position: relative; overflow: hidden; border: 1px solid var(--line-soft); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 13px; font-family: var(--display); font-weight: 600; font-size: .82rem; letter-spacing: .4px; background: linear-gradient(0deg, rgba(5,5,7,0.9), transparent); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.gallery-note { margin-top: 18px; font-size: .8rem; color: var(--muted-2); text-align: center; letter-spacing: .3px; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.about-copy .eyebrow { margin-bottom: 20px; }
.about-copy p { color: var(--muted); margin-top: 18px; font-size: 1.06rem; }
.about-copy .btn { margin-top: 30px; }
.about-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line); }
.about-stat { background: var(--bg); padding: 34px 26px; display: flex; flex-direction: column; gap: 6px; }
.about-stat strong { font-family: var(--display); font-weight: 800; font-size: 2rem; }
.about-stat span { font-size: .82rem; color: var(--muted); letter-spacing: .3px; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { border-top: 2px solid var(--red); background: var(--bg-2); padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; }
.stars { color: var(--red-2); letter-spacing: 3px; font-size: .95rem; }
.review p { font-size: 1.08rem; line-height: 1.5; }
.review cite { color: var(--muted); font-style: normal; font-size: .84rem; font-weight: 600; font-family: var(--display); letter-spacing: 1px; text-transform: uppercase; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; padding: clamp(70px, 10vw, 130px) 0; text-align: center; }
.cta-bg { position: absolute; inset: 0; z-index: -1; background: #050506 url("../images/hero-bg.svg") center/cover no-repeat; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(5,5,6,0.74); }
.cta-inner { max-width: 720px; margin-inline: auto; }
.cta-banner .eyebrow { color: #b9bcc4; margin-bottom: 22px; }
.cta-banner h2 { margin-bottom: 0; }
.cta-sub { color: #b3b6bd; margin-top: 18px; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }

/* ---------- book / contact ---------- */
.section-book { background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.book-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.book-copy .eyebrow { margin-bottom: 20px; }
.book-copy > p { color: var(--muted); margin-top: 16px; max-width: 44ch; font-size: 1.04rem; }
.book-facts { list-style: none; padding: 26px 0; margin: 26px 0 30px; border-block: 1px solid var(--line-soft); display: grid; gap: 16px; }
.book-facts li { display: flex; flex-direction: column; gap: 3px; font-size: .98rem; }
.book-facts span { font-family: var(--display); font-size: .64rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted-2); }
.book-facts a { color: var(--text); }
.book-facts a:hover { color: var(--red-2); }

.book-form { background: var(--bg); border: 1px solid var(--line); padding: clamp(24px, 3vw, 38px); }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-family: var(--display); font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: 1.6px; text-transform: uppercase; }
.field .opt { color: var(--muted-2); font-weight: 400; letter-spacing: .5px; text-transform: none; }
.field input, .field select, .field textarea {
  width: 100%; min-width: 0; max-width: 100%;
  font-family: var(--font); font-size: .96rem; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 13px 15px; transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238d9099' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input.invalid, .field select.invalid { border-color: var(--red-2); box-shadow: 0 0 0 3px rgba(211,40,58,0.18); }
.form-fineprint { font-size: .74rem; color: var(--muted-2); margin-top: 14px; text-align: center; }
.form-success { margin-top: 18px; padding: 20px; border: 1px solid rgba(211,40,58,0.45); background: var(--red-soft); display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.form-success[hidden] { display: none; }
.form-success strong { font-family: var(--display); font-size: 1.05rem; }
.form-success p { font-size: .92rem; color: #c9ccd2; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding-top: 62px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; padding-bottom: 44px; }
.footer-brand .brand-name { font-family: var(--display); font-weight: 800; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-brand p { color: var(--muted); margin-top: 14px; max-width: 32ch; font-size: .94rem; }
.footer-col { display: flex; flex-direction: column; gap: 13px; }
.footer-h { font-family: var(--display); font-weight: 700; font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.footer-col a { color: var(--muted); font-size: .94rem; width: fit-content; transition: color .16s; }
.footer-col a:hover { color: var(--red-2); }
.footer-hours { color: var(--muted-2); font-size: .84rem; }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; border-top: 1px solid var(--line-soft); padding-block: 24px; font-size: .82rem; color: var(--muted-2); }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* section accent line draws in with its header */
.js .section-head .eyebrow-line { transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease) .15s; }
.js .section-head.in .eyebrow-line { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .svc, .g-item img { transition: none; }
  .hero-photo { animation: none; }
  .btn-primary::after { display: none; }
  .js .section-head .eyebrow-line { transform: none; transition: none; }
  .marquee-track { animation: none; }
}

/* overflow safety */
.value-copy, .value-list, .book-copy, .book-form, .about-copy, .about-panel, .svc, .step, .review, .pkg, .footer-brand, .feature { min-width: 0; }
.book-facts a, .footer-col a, .book-facts li, .lede { overflow-wrap: anywhere; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-photo { width: 55%; }
  .hf { padding: 0 18px; }
}

@media (max-width: 860px) {
  .value-grid, .pkgs, .ba-grid, .about-grid, .book-grid, .reviews { grid-template-columns: 1fr; }
  .about-grid { gap: 34px; }
  .reviews { gap: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  /* hero → full-bleed photo behind content */
  .hero { min-height: auto; }
  .hero-photo { width: 100%; }
  .hero-photo::before { background: linear-gradient(180deg, rgba(10,10,11,0.5) 0%, rgba(10,10,11,0.38) 34%, rgba(10,10,11,0.92) 100%); }
  .hero-photo::after { display: none; }
  .hero-inner { padding: 78px 0 68px; }
  .hero-content { max-width: 640px; }
  .hero-features { flex-wrap: wrap; margin-top: 40px; }
  .hf { flex: 1 1 44%; padding: 0 18px 0 0; border-left: none; }
}

@media (max-width: 700px) {
  .nav {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(10,10,11,0.98); backdrop-filter: blur(14px); padding: 14px 26px 24px;
    border-bottom: 1px solid var(--line); transform: translateY(-135%); transition: transform .32s var(--ease);
  }
  .nav.open { transform: translateY(0); }
  .nav > a { padding: 15px 8px; font-size: .92rem; border-bottom: 1px solid var(--line-soft); }
  .nav-cta { text-align: center; margin: 12px 0 0; }
  .nav-toggle { display: flex; }

  .hero-features { flex-direction: column; margin-top: 34px; }
  .hf { flex: none; padding: 15px 0; border-left: none; border-top: 1px solid var(--line-soft); }
  .hf:first-child { padding-top: 0; border-top: none; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-wide { grid-column: span 2; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions .btn-primary { width: 100%; }
  .cta-actions .btn { width: 100%; }
}
