/* ══════════════════════════════════════════════════════════════════════
   Steve's Shoe & Pedorthic Center — North Kingstown, RI

   Design language follows the approved concept: light, calm, clinical-warm.
   Deep brick red (toned down from the logo's bright red), true black for
   type, a warm neutral that reads as paper rather than cream pastel, and
   a cool gray for structure. No dark page backgrounds — only two dark
   bands (the CTA break and the footer) exactly as the concept shows.

   Layout is a single 1240px column with generous vertical rhythm. Cards
   are lightly rounded with a hairline border; the red is used for action,
   emphasis and eyebrow labels — never as a large flat wash.
   ══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Figtree:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand red, pulled darker and browner than the logo so it reads as
     confident rather than loud. --red-soft is the only tint we allow. */
  --red: #a8321f;
  --red-deep: #8a2617;
  --red-bright: #c14a34;
  --red-soft: #fbf0ed;

  --ink: #1c1a19;
  --ink-2: #2a2725;
  --ink-3: #3d3936;

  --background: #ffffff;
  /* Warm neutral. Deliberately desaturated — paper, not cream pastel. */
  --surface: #f7f4ef;
  --surface-2: #efeae2;
  --card: #ffffff;

  --foreground: #1c1a19;
  --muted: #6c6560;
  --muted-light: #928a83;
  --muted-dark: #b6ada4;

  --border: #e3ddd4;
  --border-strong: #d3cabd;
  --border-dark: #3a3532;

  --gold: #b98a3c;

  --max-width: 1240px;
  --gutter: 1.25rem;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(28, 26, 25, 0.05);
  --shadow: 0 4px 16px rgba(28, 26, 25, 0.07);
  --shadow-lg: 0 18px 46px rgba(28, 26, 25, 0.13);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Height of the pinned mobile action bar; used to pad the page bottom. */
  --mobile-bar: 0px;
}

@media (min-width: 768px) {
  :root { --gutter: 2rem; }
}

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

html {
  scroll-behavior: smooth;
  /* Anchor targets clear the sticky header. */
  scroll-padding-top: 8rem;
  -webkit-text-size-adjust: 100%;
}

html, body { max-width: 100%; overflow-x: clip; }

body {
  margin: 0;
  padding-bottom: var(--mobile-bar);
  -webkit-tap-highlight-color: rgba(168, 50, 31, 0.15);
  font-family: 'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.15rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.65rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1.0625rem; font-family: 'Figtree', sans-serif; font-weight: 700; }

p, li, td, th, blockquote, figcaption, label { overflow-wrap: break-word; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

strong { font-weight: 700; color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 860px; }

/* ─── Shared section furniture ─────────────────────────────────────── */

section { padding-block: clamp(3.25rem, 7vw, 5.5rem); }

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.9rem;
}

.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.075rem; }

.lede { font-size: clamp(1.075rem, 1.6vw, 1.2rem); color: var(--muted); }

.tint { background: var(--surface); }
.tint-2 { background: var(--surface-2); }

/* ─── Buttons ──────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--primary { background: var(--red); border-color: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; }

.btn--dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); border-color: var(--ink-3); color: #fff; }

.btn--outline { background: transparent; border-color: var(--border-strong); color: var(--ink); }
.btn--outline:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.btn--ghost-light { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); color: #fff; }
.btn--ghost-light:hover { background: #fff; border-color: #fff; color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-row.is-centered { justify-content: center; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--red);
}
.textlink::after { content: '\2192'; transition: transform 0.2s var(--ease); }
.textlink:hover::after { transform: translateX(4px); }

/* ─── Header ───────────────────────────────────────────────────────── */

.topbar {
  background: var(--ink);
  color: #cfc7bf;
  font-size: 0.8125rem;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  min-height: 2.5rem;
}
.topbar ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topbar li { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar svg { width: 0.95rem; height: 0.95rem; color: var(--red-bright); }
.topbar a { color: #fff; font-weight: 600; text-decoration: none; }
.topbar a:hover { color: var(--red-bright); }
@media (max-width: 900px) { .topbar ul { display: none; } .topbar .wrap { justify-content: center; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow); }
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.75rem;
}

/* Logo only — the wordmark is already inside the artwork, so no text sits
   beside it. Sized to fill the header height without crowding the nav. */
.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.brand img { width: clamp(120px, 14vw, 172px); height: auto; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle svg { width: 1.35rem; height: 1.35rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded='true'] .icon-close { display: block; }
.nav-toggle[aria-expanded='true'] .icon-open { display: none; }

.main-nav ul { display: flex; align-items: center; gap: 0.15rem; margin: 0; padding: 0; list-style: none; }
.main-nav > ul > li { position: relative; }
.main-nav a {
  display: block;
  padding: 0.6rem 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.is-section,
.main-nav a[aria-current='page'] { color: var(--red); background: var(--red-soft); }

.has-sub > a::after {
  content: '';
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 16.5rem;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.main-nav ul.submenu { display: block; }
.has-sub:hover > .submenu,
.has-sub:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a { padding: 0.6rem 0.75rem; font-weight: 500; }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-actions .btn { padding: 0.7rem 1.15rem; font-size: 0.9375rem; }
@media (max-width: 1120px) { .header-actions .btn--outline { display: none; } }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; order: 3; }
  .header-actions { order: 2; }
  .header-actions .btn { display: none; }
  .main-nav {
    order: 4;
    display: none;
    width: 100%;
    padding-bottom: 1rem;
    border-top: 1px solid var(--border);
    margin-top: -1px;
  }
  .main-nav.is-open { display: block; }
  .site-header .wrap { flex-wrap: wrap; padding-block: 0.75rem; }
  .main-nav > ul { display: block; padding-top: 0.75rem; }
  .main-nav a { padding: 0.75rem 0.5rem; font-size: 1.05rem; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border);
    border-radius: 0;
    margin: 0 0 0.5rem 0.75rem;
    padding: 0;
    min-width: 0;
  }
  .submenu a { font-size: 0.975rem; color: var(--muted); }
  .has-sub > a::after { float: right; margin-top: 0.55rem; }
}

/* ─── Hero ─────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

/* Slideshow frames stack on top of each other and crossfade. The ::after
   gradient is the last child, so it always paints above them. */
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  /* Resting state matches the end of hero-drift, so a slide that loses
     .is-active mid-fade holds its scale instead of snapping back. */
  transform: scale(1.055);
  transition: opacity 1.1s ease-in-out;
}
.hero__slide.is-active {
  opacity: 1;
  animation: hero-drift 5s linear forwards;
}
@keyframes hero-drift {
  from { transform: scale(1); }
  to { transform: scale(1.055); }
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,18,17,0.94) 0%, rgba(20,18,17,0.82) 42%, rgba(20,18,17,0.45) 100%);
}
.hero .wrap { position: relative; padding-block: clamp(3.5rem, 9vw, 7rem); }

.hero__dots {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(1.25rem, 3vw, 2.25rem);
  display: flex;
  gap: 0.5rem;
}
.hero__dots button {
  width: 2rem;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255,255,255,0.32);
  cursor: pointer;
  transition: background 0.25s ease;
}
.hero__dots button:hover { background: rgba(255,255,255,0.6); }
.hero__dots button.is-active { background: var(--red-bright); }
.hero__dots button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

@media (max-width: 640px) {
  /* Below the stats block there is no room to overlay; tuck them inline. */
  .hero__dots { position: static; margin-top: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; transform: none; }
  .hero__slide.is-active { animation: none; }
}
.hero__inner { max-width: 43rem; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--red-bright); }
.hero p { color: rgba(255,255,255,0.82); font-size: clamp(1.05rem, 1.7vw, 1.2rem); max-width: 34rem; }
.hero .eyebrow { color: var(--red-bright); }
.hero .btn-row { margin-top: 2rem; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  gap: 1rem 1.75rem;
  max-width: 40rem;
  margin: 2.75rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  list-style: none;
}
.hero__stats b {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red-bright);
}
.hero__stats span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.15rem;
}

/* Compact hero for interior pages. */
.page-hero {
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.page-hero__inner { max-width: 46rem; }
.page-hero p { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.175rem); }

.crumbs { font-size: 0.85rem; color: var(--muted-light); margin-bottom: 1rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; list-style: none; }
.crumbs li::after { content: '/'; margin-left: 0.4rem; color: var(--border-strong); }
.crumbs li:last-child::after { content: none; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--red); }

/* ─── Military discount band ───────────────────────────────────────── */

.band {
  padding-block: 0.85rem;
  background: var(--red);
  color: #fff;
  font-size: 0.95rem;
}
.band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.35rem 0.75rem; text-align: center; }
.band strong { color: #fff; }
.band svg { width: 1.1rem; height: 1.1rem; flex: none; }

/* ─── Card grids ───────────────────────────────────────────────────── */

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr)); }

.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.card__media { aspect-ratio: 4 / 3; background: var(--surface-2); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem; }
.card__body h3 { margin-bottom: 0.5rem; }
.card__body p { color: var(--muted); font-size: 0.975rem; }
.card__body .textlink { margin-top: auto; padding-top: 1rem; }

/* ─── Feature split (image + checklist) ────────────────────────────── */

.split {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--wide-text { grid-template-columns: 1fr; }
@media (min-width: 900px) { .split--wide-text { grid-template-columns: 0.85fr 1fr; } }
.split.is-reversed .split__media { order: 2; }

.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); }
.split__media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.9rem;
  background: var(--red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 6px;
}

.checklist { display: grid; gap: 1.25rem 1.75rem; margin: 0 0 2rem; padding: 0; list-style: none; }
@media (min-width: 560px) { .checklist { grid-template-columns: 1fr 1fr; } }
.checklist li { display: grid; grid-template-columns: 1.6rem 1fr; gap: 0.75rem; }
.checklist svg { width: 1.4rem; height: 1.4rem; margin-top: 0.15rem; color: var(--red); }
.checklist h4 { margin: 0 0 0.15rem; }
.checklist p { font-size: 0.925rem; color: var(--muted); margin: 0; }

/* ─── Simple bulleted content lists ────────────────────────────────── */

.ticks { margin: 0 0 1.5rem; padding: 0; list-style: none; display: grid; gap: 0.7rem; }
.ticks li { position: relative; padding-left: 1.85rem; color: var(--ink-2); }
.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.7rem;
  height: 0.4rem;
  border-left: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red);
  transform: rotate(-45deg);
}

/* ─── Dark CTA break ───────────────────────────────────────────────── */

.cta-break {
  position: relative;
  background: var(--ink);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-break__media { position: absolute; inset: 0; }
.cta-break__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.cta-break__media::after { content: ''; position: absolute; inset: 0; background: rgba(20,18,17,0.72); }
.cta-break .wrap { position: relative; max-width: 46rem; }
.cta-break h2 { color: #fff; }
.cta-break p { color: rgba(255,255,255,0.78); }
.cta-break .eyebrow { color: var(--red-bright); }
.cta-break .btn-row { margin-top: 1.75rem; justify-content: center; }

/* ─── Reviews ──────────────────────────────────────────────────────── */

.review {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
/* The pool ships every review in the HTML and script.js hides all but the
   row we show. `display: flex` above would otherwise outrank the browser's
   own [hidden] rule, so the whole pool would render. */
.review[hidden] { display: none; }
.stars { display: flex; gap: 0.15rem; margin-bottom: 0.9rem; color: var(--gold); }
.stars svg { width: 1.05rem; height: 1.05rem; }
.review blockquote {
  margin: 0 0 1.4rem;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink-2);
}
.review figcaption { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.review figcaption b { font-size: 0.95rem; }
.reviews__source {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-light);
}
.reviews__source a { color: var(--muted); text-decoration: underline; }
.reviews__source a:hover { color: var(--red); }
.avatar {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex: none;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.95rem;
}
/* Reviews come from Google, so the mark stands in for a profile photo. */
.avatar--google { background: #fff; border: 1px solid var(--border); }
.avatar--google img { width: 1.15rem; height: 1.15rem; }

/* ─── Brand strip ──────────────────────────────────────────────────── */

.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.brands li {
  display: grid;
  place-items: center;
  min-height: 6.5rem;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
/* The brand marks have very different proportions — Saucony is 4:1,
   Sigvaris nearly 2:1. Capping height rather than width keeps them all
   optically the same size in the row. */
.brands img {
  width: auto;
  max-width: 100%;
  max-height: 2.9rem;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 0.2s var(--ease);
}
.brands li:hover img { opacity: 1; }

/* Logo sits above the copy, not beside it — the wordmarks read better with
   the full card width behind them. */
.brand-detail { display: grid; gap: 1.25rem; align-items: start; grid-template-columns: 1fr; }
.brand-detail__mark {
  display: grid;
  place-items: center;
  min-height: 8rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.brand-detail__mark img {
  width: auto;
  max-width: min(100%, 14rem);
  max-height: 4rem;
  object-fit: contain;
}

/* ─── Info / hours panel ───────────────────────────────────────────── */

.panel {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.panel h3 { margin-bottom: 1rem; }

.hours { width: 100%; border-collapse: collapse; font-size: 0.975rem; }
.hours th, .hours td { padding: 0.7rem 0; text-align: left; border-bottom: 1px solid var(--border); }
.hours td { text-align: right; color: var(--muted); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }
.hours .is-open td { color: var(--red); font-weight: 700; }

.note {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border-left: 3px solid var(--red);
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.note strong { color: var(--ink); }

.contact-list { display: grid; gap: 1.25rem; margin: 0 0 2rem; padding: 0; list-style: none; }
.contact-list li { display: grid; grid-template-columns: 2.6rem 1fr; gap: 0.9rem; align-items: start; }
.contact-list .ico {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 8px;
}
.contact-list svg { width: 1.2rem; height: 1.2rem; }
.contact-list b {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 0.15rem;
}
.contact-list a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--red); }

.map {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 17rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Microsoft Bookings embed. Tall by default because the booking flow runs
   service -> date -> time -> details inside the frame with no host scroll. */
.booking {
  width: 100%;
  height: clamp(34rem, 78vh, 58rem);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.booking iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 640px) {
  /* Bookings needs real height on a phone, but must clear the pinned bar. */
  .booking { height: calc(100dvh - var(--mobile-bar) - 2rem); min-height: 30rem; }
}

/* ─── Forms ────────────────────────────────────────────────────────── */

.form { display: grid; gap: 1.1rem; }
.form fieldset { margin: 0; padding: 0; border: 0; }
.form fieldset + fieldset { margin-top: 1.25rem; padding-top: 1.75rem; border-top: 1px solid var(--border); }
.form legend {
  padding: 0;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.form legend + p { color: var(--muted); font-size: 0.925rem; margin-bottom: 1.25rem; }

.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .field-row--2 { grid-template-columns: 1fr 1fr; }
  .field-row--3 { grid-template-columns: 2fr 1fr 1fr; }
}
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.875rem; font-weight: 700; color: var(--ink-2); }
.field .req { color: var(--red); }
.field small { font-size: 0.8rem; color: var(--muted-light); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 8rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(168, 50, 31, 0.14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-dark); }

.consent { display: grid; grid-template-columns: 1.15rem 1fr; gap: 0.75rem; align-items: start; }
.consent input { width: 1.15rem; height: 1.15rem; margin-top: 0.3rem; accent-color: var(--red); }
.consent label { font-size: 0.9rem; font-weight: 400; color: var(--muted); line-height: 1.55; }

/* Honeypot — hidden from people, visible to naive bots. */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  background: var(--red-soft);
  border: 1px solid #f0d5cf;
  color: var(--red-deep);
}

/* ─── Gallery ──────────────────────────────────────────────────────── */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gallery button {
  display: block;
  width: 100%;
  padding: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.gallery button:hover img { transform: scale(1.05); }
.gallery figcaption {
  padding: 0.7rem 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: left;
  background: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 1.5rem;
  background: rgba(18, 16, 15, 0.93);
}
.lightbox[open] { display: grid; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 82vh; border-radius: 8px; }
.lightbox p { margin: 1rem 0 0; color: rgba(255,255,255,0.8); text-align: center; font-size: 0.95rem; }
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close:hover { background: #fff; color: var(--ink); }

/* ─── FAQ ──────────────────────────────────────────────────────────── */

.faq { display: grid; gap: 0.75rem; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex: none;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
}
.faq details[open] summary::after { content: '\2013'; }
.faq details[open] summary { border-bottom: 1px solid var(--border); }
.faq div { padding: 1.1rem 1.35rem; color: var(--muted); font-size: 0.975rem; }

/* ─── Footer ───────────────────────────────────────────────────────── */

.site-footer { background: var(--ink); color: #b8b0a8; font-size: 0.95rem; }
.site-footer a { color: #d8d1ca; text-decoration: none; }
.site-footer a:hover { color: var(--red-bright); }
.site-footer h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.6rem; }

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-block: clamp(2.75rem, 6vw, 4rem);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }

.footer-brand img { width: 92px; background: #fff; padding: 0.45rem; border-radius: 8px; }
.footer-brand p { margin-top: 1.1rem; max-width: 22rem; }

.socials { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  color: #fff;
}
.socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.socials svg { width: 1.15rem; height: 1.15rem; }

/* All four badges stay on a single row at every width — the type and gaps
   scale down rather than wrapping, and the row scrolls if it ever can't fit.
   Selectors are scoped to .site-footer so they outrank the `.site-footer ul`
   grid above, which would otherwise stack these one per row. */
.site-footer .footer-badges {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 2.5rem);
  padding-block: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin: 0;
  padding-inline: 0;
  list-style: none;
  font-size: clamp(0.58rem, 1.9vw, 0.8125rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8d857e;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-footer .footer-badges::-webkit-scrollbar { display: none; }
.site-footer .footer-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
}
.site-footer .footer-badges svg { width: 1em; height: 1em; flex: none; color: var(--red-bright); }
@media (max-width: 480px) {
  .site-footer .footer-badges svg { display: none; }
  .site-footer .footer-badges { gap: 0.7rem; letter-spacing: 0.02em; }
}

.colophon {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-block: 1.4rem;
  font-size: 0.8125rem;
  color: #7d756e;
}

/* ─── Pinned mobile action bar ─────────────────────────────────────── */

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  display: none;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}
.mobile-bar .btn { flex: 1; padding: 0.8rem 0.5rem; }

@media (max-width: 1000px) {
  :root { --mobile-bar: 4.75rem; }
  .mobile-bar { display: flex; }
}

/* On the narrowest phones the bar takes the full width and the labels
   shrink before the buttons do. */
@media (max-width: 380px) {
  .mobile-bar { gap: 0.4rem; padding-inline: 0.5rem; }
  .mobile-bar .btn { font-size: 0.9rem; padding-inline: 0.35rem; }
}

@media print {
  .site-header, .topbar, .mobile-bar, .cta-break, .site-footer { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
