/* ═══════════════════════════════════════════════════════════════════
   Heavenly Body Massage — components & layout
   Builds entirely on css/tokens.css, which every page links FIRST.
   This file imports nothing and depends on no framework.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Room for the mobile sticky bar so it never covers the last line. */
  padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 800px) {
  body { padding-bottom: 0; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--ink);
  margin: 0 0 var(--s-4);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); line-height: var(--lh-snug); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }

p { margin: 0 0 var(--s-4); max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: var(--gold-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 1.25em; margin: 0 0 var(--s-4); }
li { margin-bottom: var(--s-2); max-width: var(--measure); }

hr { border: 0; border-top: 1px solid var(--border); margin: var(--s-7) 0; }

/* ── Focus — never removed, always visible ───────────────────────── */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
/* Older engines without :focus-visible still get a ring. */
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute;
  left: var(--s-4);
  top: -100px;
  z-index: calc(var(--z-header) + 10);
  background: var(--ink);
  color: var(--ivory);
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-pill);
  font-size: var(--t-small);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--s-4); color: var(--ivory); }

/* ── Layout ──────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); }
.section--tint { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: var(--ivory); }
.section--ink h2, .section--ink h3 { color: var(--ivory); }
.section--ink p { color: #E6E0D8; }

.section-head { max-width: 46rem; margin-bottom: var(--s-7); }
.section-head--centre { margin-inline: auto; text-align: center; }
.section-head--centre p { margin-inline: auto; }

.eyebrow {
  display: block;
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--s-3);
}
.section--ink .eyebrow { color: #D8BC85; }

.lead {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  line-height: var(--lh-body);
}

.muted { color: var(--ink-soft); }
.small { font-size: var(--t-small); }
.micro { font-size: var(--t-micro); }
.centre { text-align: center; }

.grid { display: grid; gap: var(--s-5); }
@media (min-width: 620px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 620px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 620px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.split { display: grid; gap: var(--s-7); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
  .split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: var(--s-3) var(--s-6);
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--t-body);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: var(--sh-md);
}
.btn--primary:hover { background: var(--sage-dark); color: var(--white); box-shadow: var(--sh-lg); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--beige);
}
.btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--ink-faint); }

.btn--solid-light {
  background: var(--ivory);
  color: var(--ink);
}
.btn--solid-light:hover { background: var(--white); color: var(--ink); }

.btn--sm { min-height: 40px; padding: var(--s-2) var(--s-4); font-size: var(--t-small); }
.btn--full { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.btn-row--centre { justify-content: center; }

/* ── Header ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  min-height: 68px;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.05;
  flex-shrink: 0;
}
.wordmark:hover { color: var(--ink); }
.wordmark__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.wordmark__sub {
  font-size: 0.6rem;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 2px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list li { margin: 0; }
.nav-list a {
  display: inline-block;
  padding: var(--s-2) 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav-list a:hover { color: var(--ink); border-bottom-color: var(--beige); }
.nav-list a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--sage); }

.header-actions { display: flex; align-items: center; gap: var(--s-3); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--gold-deep); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle:hover { background: var(--cream); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 899px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--ivory);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-lg);
    padding: var(--s-4) var(--gutter) var(--s-6);
  }
  /* With JS off the toggle is hidden and the nav shows as a normal
     wrapped list, so every page stays fully navigable. */
  .site-nav.is-open { display: block; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-list a {
    padding: var(--s-4) 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-list a[aria-current="page"] { color: var(--gold-deep); }
  .header-phone span { display: none; }
  .header-phone {
    width: 46px;
    height: 46px;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
  }
  .header-actions .btn { padding-inline: var(--s-4); font-size: var(--t-small); }
}

/* No JS: the toggle is meaningless, so hide it and let the nav flow. */
.no-js .nav-toggle { display: none; }
@media (max-width: 899px) {
  .no-js .site-nav {
    display: block;
    position: static;
    box-shadow: none;
    padding: 0 0 var(--s-3);
    border-bottom: 0;
  }
  .no-js .header-inner { flex-wrap: wrap; }
  .no-js .site-nav { order: 3; width: 100%; }
  .no-js .nav-list { flex-direction: row; flex-wrap: wrap; gap: var(--s-4); }
  .no-js .nav-list a { padding: var(--s-2) 0; border-bottom: 2px solid transparent; font-size: 0.95rem; }
}

@media (max-width: 420px) {
  .wordmark__name { font-size: 1.1rem; }
  .wordmark__sub { display: none; }
}

/* ── Location bar ────────────────────────────────────────────────── */
.location-bar {
  background: var(--ink);
  color: #E6E0D8;
  font-size: var(--t-small);
}
.location-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-2) var(--s-5);
  padding-block: var(--s-3);
  text-align: center;
}
.location-bar a { color: var(--ivory); font-weight: 600; }
.location-bar a:hover { color: #D8BC85; }
.location-bar__item { display: inline-flex; align-items: center; gap: var(--s-2); }
.location-bar svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.75; }

/* ── Sticky mobile bar ───────────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  height: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px));
  padding: var(--s-2) var(--s-4) calc(var(--s-2) + env(safe-area-inset-bottom, 0px));
  background: rgba(251, 248, 243, 0.97);
  backdrop-filter: saturate(140%) blur(10px);
  border-top: 1px solid var(--border);
}
.sticky-bar .btn { min-height: 46px; font-size: 0.95rem; }
@media (min-width: 800px) { .sticky-bar { display: none; } }

/* ── Breadcrumbs ─────────────────────────────────────────────────── */
.breadcrumbs {
  padding-block: var(--s-4);
  font-size: var(--t-small);
  color: var(--ink-faint);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li { margin: 0; display: inline-flex; align-items: center; gap: var(--s-2); }
.breadcrumbs li + li::before { content: "/"; color: var(--beige); }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--ink); }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero__grid { display: grid; gap: var(--s-7); align-items: center; }
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--s-8); }
}
.hero__title {
  font-size: var(--t-hero);
  margin-bottom: var(--s-5);
}
.hero__title em {
  font-style: italic;
  color: var(--gold-deep);
}
.hero__lead { font-size: var(--t-lead); color: var(--ink-soft); max-width: 34rem; }

.hero__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  background: var(--sand);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
@media (max-width: 939px) {
  .hero__media img { aspect-ratio: 16 / 10; }
}

.hero__points {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-5);
  font-size: var(--t-small);
  color: var(--ink-soft);
}
.hero__points li {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.hero__points li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Page hero for interior pages */
.page-hero {
  background: var(--cream);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { max-width: 20ch; }
.page-hero .lead { max-width: 48rem; }

/* ── Rating ──────────────────────────────────────────────────────── */
.rating {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-2) var(--s-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
  font-size: var(--t-small);
  margin-bottom: var(--s-5);
}
.rating__stars { color: var(--gold-deep); font-size: 1rem; letter-spacing: 0.08em; }
.rating__score { font-weight: 700; color: var(--ink); }
.rating a { color: var(--ink-soft); }

/* ── Cards ───────────────────────────────────────────────────────── */
.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-sm);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover { box-shadow: var(--sh-lg); transform: translateY(-2px); }
.card h3 { margin-bottom: var(--s-3); }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card__foot { margin-top: auto; padding-top: var(--s-5); }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-deep);
  text-decoration: none;
}
.card__link:hover { color: var(--ink); text-decoration: underline; }
.card__link::after { content: "\2192"; transition: transform var(--dur) var(--ease); }
.card__link:hover::after { transform: translateX(3px); }

.card--media { padding: 0; overflow: hidden; }
.card--media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; background: var(--sand); }
.card--media .card__body { padding: var(--s-6); display: flex; flex-direction: column; flex: 1; }

.card--flat { background: var(--ivory); box-shadow: none; }
.card--flat:hover { transform: none; box-shadow: var(--sh-sm); }

.card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}
.card__price small {
  font-family: var(--font-body);
  font-size: var(--t-small);
  font-weight: 400;
  color: var(--ink-soft);
}

/* Icon badge */
.badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--sage-tint);
  color: var(--sage-dark);
  margin-bottom: var(--s-4);
  flex-shrink: 0;
}
.badge-icon svg { width: 22px; height: 22px; }

/* ── Price / menu table ──────────────────────────────────────────── */
.menu-group { margin-bottom: var(--s-8); }
.menu-group:last-child { margin-bottom: 0; }

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.menu-item {
  margin: 0;
  max-width: none;
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: var(--s-3);
}
@media (min-width: 760px) {
  .menu-item { grid-template-columns: 1fr auto; align-items: start; gap: var(--s-6); }
}
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 var(--s-2);
}
.menu-item__desc { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.menu-item__prices {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: flex-start;
}
@media (min-width: 760px) {
  .menu-item__prices { justify-content: flex-end; max-width: 22rem; }
}
.price-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 84px;
  padding: var(--s-2) var(--s-3);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  line-height: 1.2;
}
.price-chip__mins {
  font-size: var(--t-micro);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.price-chip__amt {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}
.menu-note {
  margin-top: var(--s-5);
  padding: var(--s-4) var(--s-5);
  background: var(--sage-tint);
  border-radius: var(--r-md);
  font-size: var(--t-small);
  color: var(--ink-soft);
}
.menu-note p { max-width: none; }

/* ── Steps ───────────────────────────────────────────────────────── */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--s-4);
}

/* ── Reviews ─────────────────────────────────────────────────────── */
.quote {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-sm);
  margin: 0;
}
.quote__stars { color: var(--gold-deep); letter-spacing: 0.1em; margin-bottom: var(--s-3); }
.quote blockquote { margin: 0 0 var(--s-4); }
.quote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: var(--lh-snug);
  color: var(--ink);
}
.quote figcaption {
  margin-top: auto;
  font-size: var(--t-small);
  color: var(--ink-faint);
}

/* ── Map placeholder ─────────────────────────────────────────────── */
.map-card {
  display: block;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    repeating-linear-gradient(45deg, rgba(124,140,116,0.05) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--sage-tint), var(--sand));
  min-height: 300px;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow var(--dur) var(--ease);
}
.map-card:hover { box-shadow: var(--sh-lg); color: var(--ink); }
.map-card__inner {
  position: absolute;
  inset: auto var(--s-5) var(--s-5) var(--s-5);
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--s-5);
  box-shadow: var(--sh-md);
}
.map-card__inner p { margin-bottom: var(--s-2); font-size: 0.95rem; }
.map-card__pin {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-lg);
  color: var(--sage-dark);
}
.map-card__pin svg { width: 26px; height: 26px; }

/* ── Detail / FAQ accordion ──────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }
.faq {
  border-bottom: 1px solid var(--border);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  background: none;
  border: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  line-height: var(--lh-snug);
}
.faq__q:hover { color: var(--gold-deep); }
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--ink-soft);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq__icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); opacity: 0; }

.faq__a { padding: 0 0 var(--s-5); }
.faq__a p { color: var(--ink-soft); }
/* With JS disabled nothing is collapsed — every answer is simply visible. */
.faq__a[hidden] { display: none; }

/* ── Forms ───────────────────────────────────────────────────────── */
.field { margin-bottom: var(--s-5); }
.field label {
  display: block;
  font-size: var(--t-small);
  font-weight: 600;
  margin-bottom: var(--s-2);
  color: var(--ink);
}
.field .hint { display: block; font-weight: 400; color: var(--ink-soft); margin-top: 2px; }
.input, .textarea, .select {
  width: 100%;
  min-height: 48px;
  padding: var(--s-3) var(--s-4);
  font-family: var(--font-body);
  font-size: var(--t-body);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.textarea { min-height: 140px; resize: vertical; line-height: var(--lh-body); }
.input:hover, .textarea:hover, .select:hover { border-color: var(--ink-faint); }
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(124, 140, 116, 0.18);
}

/* ── Info panel ──────────────────────────────────────────────────── */
.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-sm);
}
.panel--tint { background: var(--sage-tint); border-color: transparent; box-shadow: none; }

.detail-list { list-style: none; margin: 0; padding: 0; }
.detail-list > li {
  display: grid;
  gap: var(--s-1);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
  max-width: none;
}
.detail-list > li:last-child { border-bottom: 0; padding-bottom: 0; }
.detail-list dt, .detail-list__label {
  font-size: var(--t-micro);
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.detail-list dd { margin: 0; }

/* ── Local area chips ────────────────────────────────────────────── */
.chip-row { display: flex; flex-wrap: wrap; gap: var(--s-2); list-style: none; padding: 0; margin: var(--s-5) 0 0; }
.chip-row li { margin: 0; }
.chip {
  display: inline-block;
  padding: var(--s-2) var(--s-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: var(--t-small);
  color: var(--ink-soft);
}

/* ── Prose (legal pages) ─────────────────────────────────────────── */
.prose h2 { margin-top: var(--s-7); }
.prose h3 { margin-top: var(--s-6); }
.prose > :first-child { margin-top: 0; }

.notice {
  padding: var(--s-5);
  background: var(--sage-tint);
  border-left: 4px solid var(--sage);
  border-radius: var(--r-md);
  margin-bottom: var(--s-6);
}
.notice p { max-width: none; font-size: 0.95rem; }
.notice strong { color: var(--ink); }

/* ── CTA band ────────────────────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  padding-block: var(--section-y);
}
.cta-band h2 { color: var(--ivory); max-width: 22ch; margin-inline: auto; }
.cta-band p { color: #E6E0D8; margin-inline: auto; max-width: 46ch; }
.cta-band .eyebrow { color: #D8BC85; }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding-block: var(--s-8) var(--s-6);
  font-size: 0.95rem;
}
.footer-grid { display: grid; gap: var(--s-7); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }

.site-footer h2, .site-footer h3 {
  font-family: var(--font-body);
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--s-4);
}
.site-footer p { color: var(--ink-soft); }
.site-footer address { font-style: normal; color: var(--ink-soft); }
.site-footer a { color: var(--ink-soft); text-decoration: none; }
.site-footer a:hover { color: var(--ink); text-decoration: underline; }

.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: var(--s-3); }
.footer-list a { display: inline-block; padding: 2px 0; }

.footer-brand .wordmark { margin-bottom: var(--s-4); }
.footer-tag {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  font-style: italic;
}

.footer-bottom {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  align-items: center;
  justify-content: space-between;
  font-size: var(--t-small);
  color: var(--ink-faint);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: var(--s-4); list-style: none; margin: 0; padding: 0; }
.footer-bottom li { margin: 0; }

.footer-local {
  margin-top: var(--s-5);
  font-size: var(--t-small);
  color: var(--ink-faint);
  max-width: none;
}

/* ── 404 ─────────────────────────────────────────────────────────── */
.err {
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: clamp(4rem, 12vw, 8rem);
}
.err__code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 8rem);
  line-height: 1;
  color: var(--beige);
  margin-bottom: var(--s-4);
}

/* ── Scroll reveal ───────────────────────────────────────────────── */
/* Only applied once JS confirms support, so with JS off nothing hides. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover { transform: none; }
}

/* ── Print ───────────────────────────────────────────────────────── */
@media print {
  .site-header, .sticky-bar, .location-bar, .btn-row, .cta-band { display: none !important; }
  body { padding-bottom: 0; background: #fff; }
  .faq__a[hidden] { display: block !important; }
}

/* ── Narrow-screen header fixes ──────────────────────────────────────
   At 375px the header row (wordmark + phone + Book + menu) was 13px
   wider than the viewport, which made the whole page scroll sideways.
   The header phone is the thing to drop: the sticky bottom bar already
   carries a full-width Call button on exactly these screens, so nothing
   is lost. The wordmark is also allowed to shrink rather than forcing
   the row open. */
@media (max-width: 479px) {
  .header-phone { display: none; }
  .wordmark { flex-shrink: 1; min-width: 0; }
  /* Let the full business name wrap onto two lines rather than truncate.
     A clipped brand name on the most-used screen is worse than two lines. */
  .wordmark__name {
    font-size: 0.98rem;
    line-height: 1.12;
    white-space: normal;
  }
  .wordmark__sub { display: none; }
}

/* Belt-and-braces: nothing should ever make the page scroll sideways.
   Wide content (tables, code) must scroll inside its own container. */
html, body { overflow-x: clip; }

/* ── Missing-image fallback ──────────────────────────────────────────
   Set by js/main.js when an <img> fails to load. The client's own
   photography does not exist yet, so rather than show a broken-image
   icon we present the wrapper as an intentional tonal panel with a
   subtle mark. Nothing here implies it depicts the premises. */
.hero__media.is-missing img { display: none; }
.hero__media.is-missing {
  background:
    radial-gradient(120% 90% at 30% 15%, var(--cream) 0%, transparent 60%),
    linear-gradient(155deg, var(--sand) 0%, var(--beige) 100%);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
}
@media (max-width: 939px) {
  .hero__media.is-missing { aspect-ratio: 16 / 10; }
}
/* A small centred mark so the panel reads as considered, not empty. */
.hero__media.is-missing::after {
  content: "";
  width: clamp(38px, 7vw, 60px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.42;
  background:
    radial-gradient(circle at 50% 50%, var(--gold) 0 14%, transparent 15%),
    conic-gradient(from 210deg, transparent 0 62%, var(--gold) 62% 68%, transparent 68%);
}
