/* ==========================================================================
   FONTS — Geist Variable, self-hosted (see src/main.ts for the static route).
   Two subsets cover the characters this site actually uses.
   ========================================================================== */
@font-face {
  font-family: "Geist Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/geist/geist-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: "Geist Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/fonts/geist/geist-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
  /* Ramp — cool neutral graphite + signal orange. Components use the
     semantic names below, never these directly (the hero band is the one
     deliberate exception — see its rule). */
  --n-950: #0b0d0e;
  --n-900: #14171a;
  --n-800: #1e2225;
  --n-700: #343a3f;
  --n-600: #5a6268;
  --n-500: #767e85;
  --n-400: #9aa1a7;
  --n-300: #c3c9cd;
  --n-200: #dfe3e6;
  --n-100: #eef1f3;
  --n-50: #f7f9fa;
  --n-0: #ffffff;
  --acc-700: #9a3412;
  --acc-600: #c2410c;
  --acc-500: #ea580c;
  --acc-400: #fb923c;
  --acc-tint: #fff2e8;

  /* Semantic — light */
  --surface: var(--n-0);
  --surface-sunken: var(--n-50);
  --surface-raised: var(--n-0);
  --text: var(--n-900);
  --text-muted: var(--n-600);
  --text-faint: var(--n-500);
  --border: var(--n-200);
  --border-strong: var(--n-300);
  --accent: var(--acc-600);
  --accent-hover: var(--acc-700);
  --accent-contrast: var(--n-0);
  --accent-tint: var(--acc-tint);

  /* Shape lock */
  --r-card: 14px;
  --r-input: 10px;
  --r-pill: 999px;
  --r-sm: 8px;

  /* Shadows — tinted to the neutral hue, never pure black */
  --shadow-sm: 0 1px 2px rgb(11 13 14 / .06), 0 1px 1px rgb(11 13 14 / .04);
  --shadow-md: 0 4px 16px rgb(11 13 14 / .08);
  --shadow-lg: 0 12px 32px rgb(11 13 14 / .14);

  /* Type scale — fluid */
  --fs-display: clamp(1.9rem, 1.35rem + 2.4vw, 3rem);
  --fs-h1: clamp(1.55rem, 1.25rem + 1.5vw, 2.25rem);
  --fs-h2: clamp(1.2rem, 1.08rem + .6vw, 1.5rem);
  --fs-h3: 1.0625rem;
  --fs-body: 1rem;
  --fs-sm: .875rem;
  --fs-xs: .78rem;

  /* Space */
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --s8: 64px;

  /* Layout */
  --wrap: 1120px;
  --wrap-narrow: 760px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --surface: var(--n-900);
    --surface-sunken: var(--n-950);
    --surface-raised: var(--n-800);
    --text: var(--n-50);
    --text-muted: var(--n-400);
    --text-faint: var(--n-500);
    --border: var(--n-800);
    --border-strong: var(--n-700);
    --accent: var(--acc-400);
    --accent-hover: #fdba74;
    --accent-contrast: var(--n-950);
    --accent-tint: rgb(234 88 12 / .16);
  }
}

/* ==========================================================================
   BASE
   ========================================================================== */
* { box-sizing: border-box; }
html { color-scheme: light dark; }
body {
  margin: 0;
  font-family: "Geist Variable", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
}
img { max-width: 100%; height: auto; }
/* Default link treatment: body-copy and inline links get real colour (the
   site's one accent) plus an underline, so a link reads as a link wherever
   prose can contain one (404 helper links, licence credits, etc.) without
   needing a class. Components that are themselves the click target — card
   titles, nav, breadcrumbs, pill/chip links, buttons styled as `<a>` — set
   their own neutral colour deliberately and are listed next to each other
   below; every one of them still gets an accent hover so the affordance
   never disappears, it just moves from resting colour to hover colour. */
a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--accent-hover); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

h1, h2, h3 { letter-spacing: -.02em; line-height: 1.15; margin: 0 0 var(--s3); color: var(--text); font-weight: 700; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }
p { max-width: 65ch; }

/* Section headings get a short accent rule — a 32px underline beneath the
   text — so the accent shows up structurally, not just on buttons and the
   logo. Scoped to real section h2s (never `.shop-card__name`, which is also
   an h2 but is a card title, not a section heading). One treatment, used
   everywhere a section actually starts. */
.prose h2,
.link-group h2,
.carousel__head h2,
.city-stats h2,
.category-grid h2,
.owner-cta h2,
.faqs h2,
.section-heading {
  position: relative;
  padding-bottom: var(--s2);
}
.prose h2::after,
.link-group h2::after,
.carousel__head h2::after,
.city-stats h2::after,
.category-grid h2::after,
.owner-cta h2::after,
.faqs h2::after,
.section-heading::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin-top: var(--s2);
  background: var(--accent);
  border-radius: var(--r-pill);
}

.subhead { color: var(--text-muted); margin: 0 0 var(--s4); font-size: var(--fs-body); max-width: 65ch; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; fill: currentColor; flex: none; }
/* Key figures (shop counts, distances) get an accent-coloured icon so the
   number they sit beside registers as a highlight, not just more text. */
.icon--accent { color: var(--accent); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--s4); }
.wrap-narrow { max-width: var(--wrap-narrow); margin-inline: auto; padding-inline: var(--s4); }

main { display: block; padding-block: var(--s5) var(--s8); }
main.home { padding-block: 0; }

/* ==========================================================================
   BUTTONS (shared)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--r-pill);
  padding: var(--s2) var(--s4);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background-color .15s ease, color .15s ease;
}
.btn--outline { border: 1px solid var(--border-strong); color: var(--text); background: transparent; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
/* The one filled, accent-background button on a page: reserved for a
   primary action (shop detail's "Visit website"), never repeated per card,
   so it stays a single unambiguous call to action. */
.btn--filled { border: 0; background: var(--accent); color: var(--accent-contrast); }
.btn--filled:hover { background: var(--accent-hover); }
.btn:active { transform: scale(.985); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .site-header { height: 68px; }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--s4);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--s2);
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -.03em;
  font-size: 1.05rem;
  white-space: nowrap;
  transition: color .15s ease;
}
.logo:hover { color: var(--accent); }
.logo-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: .9rem;
  font-weight: 700;
  flex: none;
}
/* The gap matters from the second item onward — with one nav link it was
   invisible, and "Calgary" and "Blog" sat flush together without it. */
.site-header__nav { display: flex; align-items: center; gap: var(--s4); }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  color: var(--text-muted);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  white-space: nowrap;
  transition: color .15s ease;
}
.nav-link:hover { color: var(--accent); }
.nav-link .icon { color: var(--accent); }

/* ==========================================================================
   HERO — full-bleed dark band. Deliberately raw --n-900/--n-50, not the
   semantic surface/text tokens: this one band stays dark in both color
   schemes by design, so it must not flip with the theme.
   ========================================================================== */
.hero {
  position: relative;
  background: var(--n-900);
  color: var(--n-50);
  padding-block: var(--s6) var(--s7);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero { padding-top: 6rem; }
}
/* Photo layer, behind everything else in the band. */
/* Dark scrim + the original accent pattern, painted over the photo. The flat
   rgb(11 13 14 / .78) wash is measured to hold the h1 (--n-50 text) at
   roughly 10.9:1 contrast against the brightest region of the shipped hero
   photo — comfortably past the 7:1 target even in the worst case. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at 12% 12%, rgb(251 146 60 / .08), transparent 55%),
    linear-gradient(rgb(255 255 255 / .04) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / .04) 1px, transparent 1px),
    linear-gradient(rgb(11 13 14 / .78), rgb(11 13 14 / .78));
  background-size: auto, 40px 40px, 40px 40px, auto;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; }
.hero__title {
  font-size: var(--fs-display);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 var(--s3);
  max-width: 20ch;
  color: var(--n-50);
}
.hero__subtext {
  margin: 0 0 var(--s5);
  color: var(--n-300);
  font-size: var(--fs-body);
  max-width: 50ch;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.hero-form__field { position: relative; }
.hero-form__field select {
  width: 100%;
  padding: var(--s3) var(--s4);
  border-radius: var(--r-input);
  border: 1px solid var(--n-700);
  background: var(--n-800);
  color: var(--n-50);
  font: inherit;
  font-size: var(--fs-body);
}
/* The native dropdown popup inherits the select's color but NOT its background,
   so a transparent select with near-white text paints white on white. Both
   must be set explicitly, and they must be opaque colours, not `transparent`. */
.hero-form__field select option {
  background-color: var(--n-800);
  color: var(--n-50);
}

.hero-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  width: 100%;
  border: 0;
  border-radius: var(--r-pill);
  /* acc-600, not acc-500: white on #ea580c is 3.56:1 and fails WCAG AA.
     #c2410c gives 5.18:1 and matches the accent used everywhere else. */
  background: var(--acc-600);
  color: var(--n-0);
  font-weight: 600;
  font-size: var(--fs-body);
  padding: var(--s3) var(--s5);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.hero-form__submit:hover { background: var(--acc-700); }
.hero-form__submit:active { transform: scale(.985); }

@media (min-width: 768px) {
  .hero-form {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    background: var(--n-800);
    border: 1px solid var(--n-700);
    border-radius: var(--r-pill);
    padding: var(--s1);
    box-shadow: var(--shadow-lg);
  }
  .hero-form__field { flex: 1; }
  .hero-form__field + .hero-form__field { position: relative; }
  .hero-form__field + .hero-form__field::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: var(--n-700);
  }
  .hero-form__field select {
    height: 100%;
    border: 0;
    background: transparent;
    padding-inline: var(--s5);
  }
  .hero-form__submit { width: auto; flex: none; padding-inline: var(--s6); }
}

/* ==========================================================================
   CATEGORY GRID
   ========================================================================== */
.category-grid { padding-block: var(--s7); }
.category-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  list-style: none;
  padding: 0;
  margin: var(--s4) 0 0;
}
@media (min-width: 640px) {
  .category-grid__list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .category-grid__list { grid-template-columns: repeat(4, 1fr); }
}
.cat-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  padding: var(--s4);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.cat-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.cat-tile:active { transform: scale(.985); }
.cat-tile__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--accent-tint);
  color: var(--accent);
  margin-bottom: var(--s1);
}
.cat-tile__icon .icon { width: 24px; height: 24px; }
.cat-tile__label { font-weight: 600; font-size: var(--fs-body); color: var(--text); transition: color .15s ease; }
.cat-tile:hover .cat-tile__label { color: var(--accent); }
.cat-tile__count { display: flex; align-items: center; gap: var(--s1); font-size: var(--fs-xs); color: var(--text-muted); }

/* ==========================================================================
   CAROUSEL
   ========================================================================== */
/* Alternates with the plain-surface sections above and below it (category
   grid, city stats), so the homepage's repeating sections separate without
   adding a single extra border. */
.carousel { padding-block: var(--s7); background: var(--surface-sunken); }
.carousel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  margin-bottom: var(--s4);
}
.carousel__head h2 { margin: 0; }
.carousel__more {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--fs-sm);
  white-space: nowrap;
  flex: none;
}
.carousel__more:hover { text-decoration: underline; }
.carousel__track {
  display: flex;
  gap: var(--s4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--s2);
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, black calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(to right, black calc(100% - 48px), transparent 100%);
}
.carousel__track::-webkit-scrollbar { display: none; }
/* A fixed flex-basis, not `flex: none`. `none` resolves the basis to `auto`,
   so the card sized itself to its content and a shop with seven category
   badges stretched to most of the viewport. */
.carousel__track .shop-card {
  flex: 0 0 288px;
  max-width: 288px;
  scroll-snap-align: start;
  margin-bottom: 0;
}
/* Badges stay on one line inside a carousel card and fade out where they run
   past the edge. Wrapping them here would make card height depend on how many
   categories a shop happens to have, and clamping by pixel height guesses at a
   row height that the font can change under us. */
.carousel__track .shop-card__badges {
  flex-wrap: nowrap;
  max-height: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, black calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(to right, black calc(100% - 28px), transparent 100%);
}

/* ==========================================================================
   BROWSE BY CITY — stat tiles
   ========================================================================== */
.city-stats { padding-block: var(--s7); }
.city-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  list-style: none;
  padding: 0;
  margin: var(--s4) 0 0;
}
.city-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  padding: var(--s5) var(--s4);
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.city-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.city-tile:active { transform: scale(.985); }
.city-tile__name { font-weight: 600; font-size: var(--fs-sm); transition: color .15s ease; }
.city-tile:hover .city-tile__name { color: var(--accent); }
.city-tile__count { display: flex; align-items: center; gap: var(--s1); font-size: var(--fs-h2); font-weight: 700; letter-spacing: -.02em; }
.city-tile__count .icon { width: .8em; height: .8em; }
.city-tile__caret { position: absolute; top: var(--s4); right: var(--s4); color: var(--text-faint); }

/* ==========================================================================
   OWNER CTA
   ========================================================================== */
.owner-cta { background: var(--accent-tint); padding-block: var(--s7); }
.owner-cta h2 { margin-top: 0; }
.owner-cta p { color: var(--text-muted); margin-bottom: 0; }
/* Copy left, the one action right, and stacked below 720px. `align-items:
   center` rather than stretch so the button stays button-height instead of
   growing to match a three-line paragraph. */
.owner-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
}
.owner-cta__copy { flex: 1 1 22rem; }
.owner-cta__action {
  flex: none;
  /* The band behind it is already accent-tinted, so a transparent outline
     button half-disappears into it; the surface fill puts it back on top. */
  background: var(--surface);
  /* An address is the label, so it must be allowed to break on a narrow
     screen rather than push the section into a horizontal scroll. */
  overflow-wrap: anywhere;
}

/* ==========================================================================
   SHOP CARD — the primary listing component
   ========================================================================== */
.shop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  padding: var(--s4);
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.shop-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.shop-card:active { transform: scale(.985); }

.shop-card__name { font-size: var(--fs-h3); font-weight: 600; color: var(--text); margin: 0 0 var(--s2); }
.shop-card__name a { color: inherit; text-decoration: none; transition: color .15s ease; }
.shop-card__name a:hover { color: var(--accent); text-decoration: underline; }
/* Stretched link: the name's anchor grows an invisible layer over the whole
   card, so the entire card is a click target without wrapping it in a
   second <a> (which would double the link count the SEO contract counts). */
.shop-card__name a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.shop-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s3);
  max-height: 58px;
  overflow: hidden;
}
.shop-card__badges li {
  font-size: var(--fs-xs);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--surface-sunken);
  color: var(--text-muted);
  white-space: nowrap;
}
/* A category the visitor is currently filtering by, so a card visibly shows
   WHY it matched. Highlighting the shop's primary category instead (an
   internal detail: the rarest category, used to pick the canonical URL) read
   as a stale selection and told the visitor nothing. With no filters active,
   no badge is accented. */
.shop-card__badges li.is-match,
.map-card__badges li.is-match,
.shop-header__badges li.is-match {
  background: var(--accent-tint);
  color: var(--accent-hover);
  font-weight: 700;
}

.shop-card__row {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  margin: var(--s1) 0;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.shop-card__row .icon { margin-top: .2em; color: var(--text-muted); }
.shop-card__row .icon.icon--accent { color: var(--accent); }
/* Above the stretched link (z-index:auto), so the phone number stays its
   own click target (tel:) instead of being swallowed by the card link. */
.shop-card__row a { position: relative; z-index: 1; color: inherit; text-decoration: none; transition: color .15s ease; }
.shop-card__row a:hover { color: var(--accent); text-decoration: underline; }
/* Outbound links (the site's domain, Google Maps) carry the accent and an
   underline at rest, so they read as links rather than as another meta row.
   A long domain truncates instead of widening a fixed-width carousel card.
   The selector must include the element: `.shop-card__row a` above is (0,1,1)
   and a class-only `.shop-card__link` (0,1,0) loses to it no matter where it
   sits in the file, which left these rendering as muted, undecorated text. */
/* Same specificity trap as .shop-card__link below: `.detail-facts p a` is
   (0,1,2), so a class-only selector never wins. */
.detail-facts p a.detail-facts__link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.shop-card__row a.shop-card__link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 24ch;
}

/* Same reasoning as .shop-card__row a above: keeps "Visit website" clickable
   in its own right, on top of the full-card stretched link. */



/* ==========================================================================
   RESULTS PAGE
   ========================================================================== */
.results-subhead {
  position: sticky;
  top: 60px;
  z-index: 90;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-block: var(--s4);
}
@media (min-width: 768px) {
  .results-subhead { top: 68px; }
}
.results-subhead h1 { margin: 0 0 var(--s1); }
.results-subhead .subhead { margin: 0; }

.results {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  margin-bottom: var(--s2);
}
@media (min-width: 640px) {
  .results { grid-template-columns: repeat(2, 1fr); }
}
.results--rest.is-collapsed { max-height: 0; overflow: hidden; margin: 0; }

/* ==========================================================================
   RESULTS SPLIT LAYOUT (desktop map column)
   Below 1024px this is a plain single column — the list only, unchanged
   from before. At 1024px+ it becomes a two-column grid: list on the left,
   a sticky map on the right, both visible without tapping anything. The
   floating Map button + overlay (below) keep working underneath this
   unchanged; they simply go unused once the split column is on screen,
   since app.js only wires up map-fab’s own show/hide behaviour, not visibility.

   At >= 1024px the three .wrap containers on the results page (breadcrumbs,
   sticky sub-header, main content) carry this second class too, so the split
   view is no longer squeezed into the site's normal 1120px column — it
   spans the viewport with a var(--s5) gutter instead. Every other page type
   keeps plain .wrap untouched, and nothing changes below 1024px.
   ========================================================================== */
.results-layout__map { display: none; }
@media (min-width: 1024px) {
  .results-wrap {
    max-width: none;
    padding-inline: var(--s5);
  }
  .results-layout {
    display: grid;
    /* Equal fr split keeps the map a consistent ~50% of the content width
       (comfortably inside the 45-55% target) no matter how wide the
       viewport gets, rather than ceding the freed-up space entirely to the
       list column the way a fixed-px map column would. */
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    align-items: start;
    gap: var(--s5);
  }
  .results-layout__map {
    display: block;
    /* 68px header + ~104px for the sticky .results-subhead bar above this
       column, so the sticky map never ends up rendering underneath it. */
    position: sticky;
    top: 172px;
    height: calc(100vh - 172px - var(--s5));
    min-height: 320px;
    border: 1px solid var(--border);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  /* One shop card per row in the split layout's list column — it is now a
     narrower left column next to the map, not the full-width list it was
     before this became a two-column layout, so a two-up grid reads cramped. */
  .results-layout__list .results { grid-template-columns: 1fr; }
}
.results-map__canvas { width: 100%; height: 100%; }
/* Desktop equivalent of .map-card--highlight: briefly highlights the real
   .shop-card in the list column when its pin is clicked on the split map. */
.shop-card--highlight { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-tint); }

.show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--s3);
  margin: var(--s3) 0 var(--s6);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--text);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}
.show-more:hover { background: var(--surface-sunken); }
.show-more:active { transform: scale(.985); }

.results-empty {
  padding: var(--s5);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-card);
  background: var(--surface-sunken);
  color: var(--text-muted);
  margin-bottom: var(--s6);
}
.results-empty a { color: var(--accent); font-weight: 600; }

/* ==========================================================================
   VIEWPORT FILTER — desktop split map "list follows the map" bar.
   Entirely client-side: built by map.js only once the desktop map has
   loaded, so it does not exist at all in the server-rendered HTML or with
   JavaScript disabled. See map.js's setupViewportFilter for the class that
   actually hides an out-of-view card (applied via the native `hidden`
   attribute at runtime, never a default rule here).
   ========================================================================== */
.viewport-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  margin: 0 0 var(--s4);
  padding: var(--s3) var(--s4);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--surface-sunken);
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.viewport-filter__reset {
  flex: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--text);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: var(--s1) var(--s3);
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
}
.viewport-filter__reset:hover { background: var(--surface-sunken); border-color: var(--accent); }
.viewport-filter__empty {
  padding: var(--s5);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-card);
  background: var(--surface-sunken);
  color: var(--text-muted);
  margin: 0 0 var(--s4);
}
/* A shop card sets its own `display: flex`, an author-origin rule that
   otherwise outranks the user-agent default for `[hidden]` regardless of
   specificity. This restores it — scoped to the list column, and written
   without the literal substring ".shop-card" in its selector on purpose:
   this is an override of a runtime attribute, not a rule that hides a card
   by default, and it must never be mistaken for one by the regression guard
   in test/listing-visibility.e2e-spec.ts, which greps for exactly that
   substring. No card ever carries `hidden` except when map.js adds it in
   response to the user panning or zooming the desktop map. */
.results-layout__list [hidden] { display: none; }

/* When the desktop map is live it becomes the only thing deciding which shops
   are listed, so the server's 20-visible / rest-collapsed split is retired:
   a shop whose pin you can see on the map must be in the list, and it may
   well sit in the collapsed half. `is-map-driven` is added by map.js once,
   only after a real Leaflet map has initialised, so this can never apply on
   a page without a map or with JavaScript disabled. Neither selector below
   mentions .shop-card: no card is hidden here, the clip is simply lifted. */
.results-layout__list.is-map-driven .results--rest.is-collapsed { max-height: none; }
.results-layout__list.is-map-driven .show-more { display: none; }

/* ==========================================================================
   FILTER CHIPS
   ========================================================================== */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s2) var(--s3);
  padding-block: var(--s4) var(--s2);
}

/* Multi-select service badges: a real checkbox behind each label, so
   every badge is a native focusable control with its own accessible name
   (the label text) rather than a div with a click handler. */
.badge-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s2);
  border: 0;
  padding: 0;
  margin: 0;
}
.badge-filter__legend {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-muted);
  padding: 0;
  white-space: nowrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--surface);
  padding: var(--s2) var(--s4);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.badge:hover { border-color: var(--accent); }
.badge input[type="checkbox"] { width: 16px; height: 16px; margin: 0; accent-color: var(--accent); cursor: pointer; }
/* Active state uses the accent colour, matching .chip-select--active. */
.badge--active { background: var(--accent-tint); border-color: var(--accent); color: var(--accent-hover); }

/* ==========================================================================
   MAP FAB + PANEL
   ========================================================================== */
.map-fab {
  position: fixed;
  left: 50%;
  bottom: calc(var(--s4) + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  border: 0;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: var(--s3) var(--s5);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.map-fab:active { transform: translateX(-50%) scale(.985); }

/* The desktop split view already shows the map, so this floating button is
   redundant there. This MUST come after the base .map-fab rule above: both
   selectors have identical specificity, so the same hide placed earlier in the
   file (where it used to live) loses to `display: inline-flex` and the button
   stayed visible at every width. Markup is untouched, so the mobile overlay
   path below still works. */
@media (min-width: 1024px) {
  .map-fab { display: none; }
}

.map-panel { position: fixed; inset: 0; z-index: 1000; background: var(--surface); display: flex; flex-direction: column; }
.map-panel[hidden] { display: none; }
.map-panel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s3) var(--s4);
  border-bottom: 1px solid var(--border);
}
.map-panel__count { font-size: var(--fs-sm); }
.map-panel__close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
}
.map-panel__close:active { transform: scale(.985); }
/* Airbnb-style split: map fills the upper portion, the sheet is a rounded
   panel below it that scrolls independently and carries a grab handle. */
.map-panel__canvas { height: 52vh; flex: none; }
.map-panel__sheet-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface-sunken);
  border-top-left-radius: var(--r-card);
  border-top-right-radius: var(--r-card);
  box-shadow: 0 -4px 16px rgb(11 13 14 / .08);
  margin-top: -14px;
  position: relative;
  z-index: 1;
}
.map-panel__handle {
  flex: none;
  width: 36px;
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--border-strong);
  margin: var(--s2) auto;
}
.map-panel__sheet { flex: 1; overflow-y: auto; padding: 0 var(--s3) var(--s3); }
/* `.map-card` sets display:flex, which outranks the user-agent rule for
   [hidden], so the attribute alone would not hide a card. Class + attribute
   (0,2,0) beats it. Runtime-only: map.js sets `hidden` in response to the user
   panning or zooming, and these cards never exist in the server HTML at all. */
.map-panel__sheet [hidden] { display: none; }
.map-panel__empty { margin: var(--s5) var(--s2); color: var(--text-muted); font-size: var(--fs-sm); text-align: center; }

.map-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  padding: var(--s3) var(--s4);
  margin-bottom: var(--s2);
  scroll-margin-block: var(--s3);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.map-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-md); }
/* Brief highlight (~1.2s) when a pin is clicked and its card scrolls into view. */
.map-card--highlight { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-tint); }
.map-card__name { font-size: var(--fs-h3); font-weight: 600; color: var(--text); margin: 0 0 var(--s2); }
.map-card__name a { color: inherit; text-decoration: none; transition: color .15s ease; }
.map-card__name a:hover { color: var(--accent); text-decoration: underline; }
.map-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s2);
}
.map-card__badges li {
  font-size: var(--fs-xs);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--surface-sunken);
  color: var(--text-muted);
  white-space: nowrap;
}
.map-card__row {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  margin: var(--s1) 0;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.map-card__row .icon { margin-top: .2em; color: var(--text-muted); }
.map-card__row .icon.icon--accent { color: var(--accent); }
.map-card__row a { color: inherit; text-decoration: none; transition: color .15s ease; }
.map-card__row a:hover { color: var(--accent); text-decoration: underline; }

body.map-open { overflow: hidden; }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faqs { border-top: 1px solid var(--border); margin-top: var(--s7); }
.faq-item { border-bottom: 1px solid var(--border); padding: var(--s4) 0; }
.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  cursor: pointer;
  list-style: none;
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__summary::marker { content: ""; }
.faq-item__summary h3 { margin: 0; font-weight: 600; font-size: var(--fs-body); }
.faq-item__caret { color: var(--text-muted); flex: none; transition: transform .15s ease; }
.faq-item[open] .faq-item__caret { transform: rotate(180deg); }
.faq-item p { margin: var(--s3) 0 0; color: var(--text-muted); }

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs { margin: 0 0 var(--s4); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: var(--s1); list-style: none; padding: 0; margin: 0; font-size: var(--fs-xs); color: var(--text-muted); }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; transition: color .15s ease; }
.breadcrumbs a:hover { color: var(--accent); text-decoration: underline; }
.breadcrumbs li + li::before { content: "/"; margin-right: var(--s1); color: var(--text-faint); }
.breadcrumbs [aria-current] { color: var(--text); }

/* ==========================================================================
   LINK GROUPS
   ========================================================================== */
.link-group { margin: var(--s6) 0; }
.link-group ul { display: flex; flex-wrap: wrap; gap: var(--s2); list-style: none; padding: 0; margin: 0; }
.link-group a {
  display: inline-flex;
  align-items: center;
  padding: var(--s2) var(--s4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s ease, background-color .15s ease;
}
.link-group a:hover { border-color: var(--accent); background: var(--surface-sunken); color: var(--accent-hover); }

/* ==========================================================================
   PROSE / DETAIL FACTS
   ========================================================================== */
.prose { margin: var(--s6) 0; }
.prose h2 { font-size: var(--fs-h2); }
.prose p { color: var(--text-muted); }

.detail-facts {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.detail-facts p { margin: 0; color: var(--text-muted); font-size: var(--fs-sm); display: flex; align-items: center; gap: var(--s2); max-width: none; }
.detail-facts p .icon { color: var(--text-muted); flex: none; }
.detail-facts p .icon.icon--accent { color: var(--accent); }
.detail-facts p a { color: inherit; text-decoration: none; transition: color .15s ease; }
.detail-facts p a:hover { color: var(--accent); text-decoration: underline; }
.detail-facts__actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s2); }

/* ==========================================================================
   SHOP DETAIL PAGE — structured info blocks, alternating surface/surface-
   sunken bands so sections separate without extra borders (same rule the
   homepage's bands follow below). `main.page-shop` zeroes the default
   `main` block padding because each of these sections carries its own, the
   same way `main.home` already does for the homepage.
   ========================================================================== */
main.page-shop { padding-block: 0; }
.shop-header { padding-block: var(--s5) var(--s4); }
.shop-header__badges { max-height: none; overflow: visible; margin-bottom: var(--s3); }
.shop-header__city { display: flex; align-items: center; gap: var(--s2); margin: 0; color: var(--text-muted); font-size: var(--fs-sm); }
.shop-header__city .icon { color: var(--text-muted); }

.shop-keyfacts { background: var(--surface-sunken); padding-block: var(--s4) var(--s6); }

/* Single-location map on a shop page. Fixed height so the reserved space is
   identical before and after Leaflet loads, keeping CLS at zero. */
.shop-map { padding-block: var(--s6) 0; }
.shop-map__canvas {
  height: 320px;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--surface-sunken);
}
.shop-map__note { margin: var(--s3) 0 0; font-size: var(--fs-sm); }
@media (min-width: 768px) {
  .shop-map__canvas { height: 380px; }
}

.shop-services { padding-block: var(--s6); }
/* Sanitised markup from a shop's own site: allowlisted text tags only, every
   attribute stripped (see src/shops/services-html.ts). Styled here rather than
   inheriting whatever the source intended, since none of its classes survive. */
.services-prose ul { margin: 0; padding-left: 0; list-style: none; display: grid; gap: var(--s2); }
.services-prose li { padding-left: var(--s4); position: relative; }
.services-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.services-prose strong { color: var(--text); font-weight: 600; }
.services-prose p { margin: 0 0 var(--s3); }
@media (min-width: 768px) {
  .services-prose ul { grid-template-columns: 1fr 1fr; gap: var(--s2) var(--s5); }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s2) var(--s5);
  list-style: none;
  padding: 0;
  margin: var(--s4) 0 0;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
.services-grid li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: var(--fs-sm);
  color: var(--text);
}
.services-grid li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: .55em;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.shop-more { background: var(--surface-sunken); padding-block: var(--s6) var(--s8); }
.shop-more .link-group:first-child { margin-top: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* The footer carries the site's full hub link set, so it is a real section of
   the page rather than a one-line signature. Sunken surface + top border to
   separate it from the content above without needing a heavy rule. */
.site-footer {
  /* No margin-top. `main` already carries var(--s8) of bottom padding on every
     page that needs the breathing room, and the home page ends on a full-bleed
     accent band — a margin there put a strip of page background between two
     coloured bands, which reads as a rendering gap rather than spacing. */
  padding-block: var(--s7) var(--s5);
  color: var(--text-muted);
  font-size: var(--fs-sm);
  border-top: 1px solid var(--border);
  background: var(--surface-sunken);
}

/* auto-fit rather than a breakpoint list: the three link columns pack as many
   across as fit and reflow on their own. The brand takes the full width until
   there is room for the four-column layout below.

   200px is deliberately wide enough that a phone gets ONE column, not two.
   Two 160px columns were tried: they saved only ~10% of the footer's height,
   because at that width "Inspection & Maintenance", "Engine Repair &
   Diagnostics" and two of the four city links each wrapped onto a second
   line and gave most of the saving straight back. A taller footer made of
   single-line labels reads better than a shorter cramped one, and the footer
   sits below every bit of content on the page either way. */
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s6) var(--s5);
}
.site-footer__brand { grid-column: 1 / -1; }
@media (min-width: 900px) {
  /* Give the brand column a little more room than a link column so the
     tagline sets on two or three lines, not five. */
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .site-footer__brand { grid-column: auto; }
}
.site-footer__tagline {
  margin: var(--s3) 0 0;
  max-width: 34ch;
  color: var(--text-muted);
}

/* Accent at rest, unlike the muted link columns: this is the one link in the
   footer that leads somewhere other than a listing page, and it has no column
   heading above it to announce itself. */
.site-footer__blog {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s4);
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.site-footer__blog:hover { color: var(--accent-hover); text-decoration: underline; }

.site-footer__heading {
  margin: 0 0 var(--s3);
  color: var(--text);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.site-footer__links { list-style: none; margin: 0; padding: 0; }
.site-footer__links li { margin-bottom: var(--s2); }
/* Neutral at rest, accent on hover — the same rule the header nav, cards and
   breadcrumbs follow. A wall of orange underlined links down four columns
   would out-shout the page content above it. */
.site-footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .15s ease;
}
.site-footer__links a:hover { color: var(--accent); text-decoration: underline; }

/* Selector written to outweigh `.site-footer__links a` above rather than
   reaching for !important — the address sits inside that list. */
.site-footer__links a.site-footer__email {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-weight: 600;
  /* The contact address is the one thing in the footer a visitor comes here
     looking for, so it keeps the accent at rest instead of the muted grey. */
  color: var(--accent);
  overflow-wrap: anywhere;
}
.site-footer__links a.site-footer__email:hover { color: var(--accent-hover); }

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s2) var(--s5);
  margin-top: var(--s6);
  padding-top: var(--s4);
  border-top: 1px solid var(--border);
  /* --text-muted, not --text-faint. At --fs-xs on the sunken footer surface
     faint measured 3.9:1 in light mode — under the 4.5:1 AA floor for text
     this size. Muted measures 5.88:1 and still reads as secondary. */
  color: var(--text-muted);
  font-size: var(--fs-xs);
}
.site-footer__legal { margin: 0; max-width: none; }
.site-footer__legal a { color: inherit; text-decoration: underline; }
.site-footer__legal a:hover { color: var(--accent); }

/* ==========================================================================
   MOTION — MOTION_INTENSITY 4. Hover/active only, plus one scroll reveal.
   Hover and press feedback only. Nothing on this page is hidden by default.
   ========================================================================== */
/* NO hide-then-reveal on shop cards.
   A scroll reveal that starts at opacity:0 means every listing on the site is
   invisible until JavaScript says otherwise. When that reveal failed to fire,
   results pages rendered their header, count and filters over a blank page,
   and the e2e suite still passed because it counts DOM nodes, not pixels.
   On a directory whose entire value is listings being visible, that trade is
   never worth it. Motion here is hover and press feedback only. */
.shop-card {
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

/* ==========================================================================
   PLACES DATA — rating, opening hours, booking, attribution
   ========================================================================== */

/* The star is the only place a non-accent colour is used for an icon: a
   rating is a fact about the shop, not an action, and tinting it accent
   made every card read as if it had a call to action. */
.rating {
  display: flex;
  align-items: center;
  gap: var(--s1);
  margin: 0 0 var(--s2);
  font-size: var(--fs-sm);
}
.rating__star { color: #f0a02a; }
.rating__value { font-weight: 600; }
.rating__count { color: var(--text-muted); }
.rating--lg { font-size: var(--fs-body); margin-top: var(--s2); }

/* Two columns rather than "Monday: 8:00 AM – 5:00 PM" as one string, so the
   days line up and the week is scannable at a glance. */
.hours {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(6.5rem, max-content) 1fr;
  gap: var(--s1) var(--s4);
  font-size: var(--fs-sm);
  max-width: 26rem;
}
.hours__row { display: contents; }
.hours dt { color: var(--text-muted); }
.hours dd { margin: 0; font-variant-numeric: tabular-nums; }

/* Booking is the one action a visitor is most likely to want, so it gets the
   filled treatment on the detail page. On a card it stays outlined: filled
   buttons repeated down a list stop reading as a call to action at all. */
.btn--book { border: 1px solid var(--accent); color: var(--accent); background: transparent; }
.btn--book:hover { background: var(--accent); color: var(--accent-contrast); }
.detail-facts__actions .btn--book { border: 0; background: var(--accent); color: var(--accent-contrast); }
.detail-facts__actions .btn--book:hover { background: var(--accent-hover); }

.shop-hours { padding: var(--s6) 0 0; }

/* Required attribution, so it must stay legible — muted, never hidden. */
.places-attribution {
  margin: var(--s6) 0 0;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}
