/*
  Le Feast aesthetic SEO/GEO homepage.
  Keeps the brand's white, black and bright yellow identity, while making the
  layout more polished, editorial and conversion-focused.
*/
:root {
  --yellow: #FFDE59;
  --yellow-2: #FFE77D;
  --yellow-soft: #FFF4BF;
  --ink: #090909;
  --charcoal: #242424;
  --muted: #6b665b;
  --paper: #FFFEF7;
  --white: #ffffff;
  --cream: #FFF7D6;
  --line: rgba(9, 9, 9, 0.12);
  --line-soft: rgba(9, 9, 9, 0.08);
  --shadow: 0 24px 70px rgba(9, 9, 9, 0.14);
  --soft-shadow: 0 16px 40px rgba(9, 9, 9, 0.08);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --font: Arial, Helvetica, sans-serif;
  --display: "League Gothic", "Arial Narrow", Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 222, 89, 0.20), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 54%, #ffffff 100%);
  font-family: var(--font);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }
.section { padding: clamp(42px, 5.8vw, 76px) 0; }
.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}
.site-header::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "nav brand action";
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 86px;
}
/* Blend the header logo into the navigation bar rather than making it feel like a pasted image.
   mix-blend-mode:multiply visually removes the white box from the logo asset while keeping the brand colours. */
.brand {
  grid-area: brand;
  justify-self: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  line-height: 0;
}
.brand img {
  width: clamp(164px, 15vw, 214px);
  height: auto;
  aspect-ratio: 363 / 150;
  object-fit: contain;
  display: block;
  transform: none;
  mix-blend-mode: multiply;
  filter: none;
}
.primary-nav {
  grid-area: nav;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.primary-nav a, .site-footer a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.primary-nav a {
  white-space: nowrap;
}
.primary-nav a:hover, .site-footer a:hover, .text-link:hover { border-color: var(--yellow); }
.header-inner > .button { grid-area: action; justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.86rem 1.35rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 7px 0 var(--ink);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(3px); box-shadow: 0 5px 0 var(--ink); background: var(--ink); color: var(--white); }
.button-secondary { background: var(--white); color: var(--ink); }
.button-secondary:hover { background: var(--yellow); color: var(--ink); }
.button-small { min-height: 44px; padding: 0.62rem 1rem; font-size: 0.84rem; box-shadow: 0 5px 0 var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(34px, 5vw, 66px);
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 222, 89, 0.42), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #fffbe8 100%);
}
.hero::before {
  content: "";
  position: absolute;
  left: -7rem;
  top: 7rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  border: 42px solid rgba(255, 222, 89, 0.33);
}
.hero::after {
  content: "Coffee. Eats. Treats.";
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -0.12em;
  transform: translateX(-50%);
  z-index: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 12vw, 12rem);
  line-height: 1;
  color: rgba(9, 9, 9, 0.045);
  white-space: nowrap;
  pointer-events: none;
}
.hero-grid, .two-column, .strip-grid, .footer-grid, .cta-card {
  display: grid;
  gap: clamp(22px, 3.5vw, 46px);
}
.hero-grid { position: relative; z-index: 1; grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.82fr); align-items: center; }
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.75rem;
  font-weight: 950;
  color: var(--muted);
}
h1, h2, h3 { margin: 0 0 14px; color: var(--ink); }
h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.65rem, 5.1vw, 5.15rem); max-width: 16ch; }
h2 { font-size: clamp(2.25rem, 4.3vw, 4.15rem); max-width: 16ch; }
h3 { font-size: clamp(1.15rem, 1.55vw, 1.45rem); line-height: 1.18; letter-spacing: -0.01em; }
.brand-line { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.03em; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--charcoal); max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 0; }
.hero-media, .image-card {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.image-card {
  display: grid;
  grid-template-rows: auto auto;
  align-self: start;
  gap: 0;
}
.hero-media {
  position: relative;
  transform: rotate(1.2deg);
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: calc(var(--radius-lg) - 12px);
  pointer-events: none;
}
.hero-media::after {
  content: "Station fresh";
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 0.55rem 0.85rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-media img, .image-card img { display: block; width: 100%; object-fit: cover; }
.image-card img {
  aspect-ratio: 4 / 3;
}
.hero-media figcaption, .image-card figcaption {
  display: block;
  margin: 0;
  padding: 12px 16px 14px;
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: left;
  background: var(--white);
}
.image-card figcaption {
  min-height: 0;
  display: block;
  padding: 16px 20px 18px;
}
.hero-media img + figcaption, .image-card img + figcaption {
  border-top: 1px solid var(--line);
}
.proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}
.proof-points div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.80);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(10px);
}
.proof-points dt { font-family: var(--display); font-weight: 500; font-size: 1.82rem; line-height: 1; }
.proof-points dd { margin: 5px 0 0; color: var(--muted); font-weight: 800; font-size: 0.88rem; }

.strip {
  padding: 22px 0;
  background: var(--ink);
  color: var(--white);
  border: 0;
}
.strip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.strip p {
  margin: 0;
  padding: 17px 18px 18px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,222,89,0.16), rgba(255,255,255,0.04));
}
.strip strong { display: block; margin-bottom: 5px; color: var(--yellow); }
.two-column { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr); align-items: center; }
.two-column > div:first-child:not(.section-heading) {
  padding: clamp(10px, 2vw, 18px) 0;
}
.check-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.check-list li {
  position: relative;
  padding: 13px 16px 13px 44px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(9,9,9,0.04);
  font-weight: 800;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}
.image-card { transform: rotate(-1deg); }
.image-card:nth-child(1) { transform: rotate(1deg); }

.section-yellow {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,222,89,0.27), rgba(255,249,227,0.88)),
    var(--cream);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-yellow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(9,9,9,0.11) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.25;
  pointer-events: none;
}
.section-yellow .container { position: relative; z-index: 1; }
.section-heading { max-width: 980px; margin-bottom: clamp(22px, 3vw, 34px); }
.section-heading h2 + p { max-width: 66ch; color: var(--charcoal); }
#faq-title { max-width: none; white-space: nowrap; font-size: clamp(1.85rem, 3.25vw, 3.25rem); }
.locations-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.location-card, details, .cta-card {
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}
.location-card {
  position: relative;
  padding: 22px 20px 20px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.location-card:hover { transform: translateY(-4px); box-shadow: 9px 9px 0 var(--ink); }
.location-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 9px;
  background: var(--yellow);
}
.location-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 222, 89, 0.28);
}
.location-card p { color: var(--muted); }
.opening-hours {
  margin: 12px 0 8px;
  padding: 10px 0 0;
  border-top: 1px solid var(--line-soft);
}
.opening-hours p { margin-bottom: 0.35rem; }
.opening-hours .hours-title {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.location-card .eyebrow { color: var(--ink); margin-top: 4px; }
.small { font-size: 0.9rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  font-weight: 950;
  text-decoration: none;
  border-bottom: 3px solid var(--yellow);
}
.story-grid { grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr); align-items: start; }
.story-grid .image-card { align-self: start; }
.story-grid .image-card figcaption { margin-top: 0; }
.quick-answers { background: #ffffff; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.faq-grid .info-card {
  min-height: 0;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 5px 5px 0 var(--ink);
}
details {
  padding: 18px 22px;
  box-shadow: 6px 6px 0 var(--ink);
  align-self: start;
}
summary { cursor: pointer; font-weight: 950; font-size: 1.04rem; }
details p { margin-top: 12px; color: var(--muted); }

.club-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.club-benefits li {
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 950;
}

.cta {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  color: var(--ink);
}
.cta .eyebrow { color: var(--ink); }
.cta-card {
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(24px, 3.8vw, 42px);
  background:
    radial-gradient(circle at 92% 20%, rgba(255,255,255,0.56), transparent 12rem),
    var(--yellow);
  color: var(--ink);
  overflow: hidden;
}
.cta-card::after {
  content: "1825";
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: -0.33em;
  font-family: var(--display);
  font-size: clamp(4rem, 11vw, 10rem);
  color: rgba(255, 255, 255, 0.38);
  pointer-events: none;
  white-space: nowrap;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card .button { background: var(--white); color: var(--ink); }
.cta-card .button:hover { background: var(--ink); color: var(--white); }

.site-footer {
  padding: 44px 0 22px;
  background: var(--ink);
  color: var(--white);
  border-top: 0;
}
.footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
.footer-title {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--yellow);
}
.site-footer nav { display: grid; gap: 10px; }
.site-footer p { color: rgba(255,255,255,0.72); }
.site-footer img { width: 145px; height: auto; aspect-ratio: 363 / 150; object-fit: contain; margin-bottom: 16px; background: var(--yellow); border-radius: 16px; padding: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 26px; padding-top: 16px; }
:focus-visible { outline: 3px solid #005fcc; outline-offset: 4px; }

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "nav" "action";
    justify-items: center;
    min-height: auto;
    padding: 14px 0;
  }
  .primary-nav { justify-self: center; flex-wrap: wrap; justify-content: center; }
  .brand img { width: clamp(148px, 44vw, 188px); height: auto; aspect-ratio: 363 / 150; object-fit: contain; }
  .header-inner > .button { justify-self: center; }
  .hero-grid, .two-column, .story-grid, .cta-card { grid-template-columns: 1fr; }
  .hero-copy { max-width: 880px; }
  h1 { max-width: 17ch; }
  h2 { max-width: 14ch; }
  .locations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strip-grid, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .button { width: 100%; }
  .button-small { width: auto; }
  .proof-points, .locations-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .primary-nav { gap: 12px 18px; font-size: 0.72rem; }
  h1 { font-size: clamp(2.1rem, 10.5vw, 3.05rem); }
  h2 { max-width: 16ch; }
  #faq-title { white-space: normal; font-size: clamp(1.72rem, 8.3vw, 2.55rem); }
  .hero::after {
    left: 50%;
    right: auto;
    bottom: -0.04em;
    transform: translateX(-50%);
    font-size: clamp(2.8rem, 13.5vw, 6.2rem);
  }
  .hero-media, .image-card { transform: none; border-radius: 26px; }
  .image-card figcaption { min-height: 0; padding: 18px 20px 20px; }
  .location-card, details, .cta-card { box-shadow: 5px 5px 0 var(--ink); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Final caption alignment hardening: keep image cards content-height only. */
.two-column,
.story-grid {
  align-items: start;
}
.image-card,
.hero-media {
  height: auto !important;
  min-height: 0 !important;
  align-self: start !important;
  display: block !important;
  line-height: 0;
}
.image-card img,
.hero-media img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  vertical-align: top !important;
}
.image-card figcaption,
.hero-media figcaption {
  display: block !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  padding: 16px 22px 18px !important;
  min-height: 0 !important;
  height: auto !important;
}
.image-card img + figcaption,
.hero-media img + figcaption {
  border-top: 1px solid var(--line);
}
.story-grid .image-card,
.two-column > .image-card {
  justify-self: stretch;
}
@media (max-width: 760px) {
  .image-card figcaption,
  .hero-media figcaption {
    padding: 14px 18px 16px !important;
  }
}


/* Hard reset for image/caption cards: consistent, tidy caption placement. */
.image-card,
.hero-media {
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  align-self: start !important;
  justify-self: stretch !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  overflow: hidden !important;
  line-height: normal !important;
  transform: none !important;
}

.image-card img,
.hero-media img {
  display: block !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  height: clamp(230px, 27vw, 340px) !important;
  max-height: 340px !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  vertical-align: top !important;
  border-radius: 0 !important;
}

.hero-media img {
  height: clamp(300px, 46vw, 520px) !important;
  max-height: 520px !important;
}

.image-card--food img {
  object-position: center 30% !important;
}

.image-card--story img {
  object-position: center center !important;
}

.image-card figcaption,
.hero-media figcaption {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  min-height: 78px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 18px 22px 20px !important;
  border-top: 1px solid var(--line) !important;
  background: var(--white) !important;
  color: var(--ink) !important;
  font-size: 0.96rem !important;
  line-height: 1.42 !important;
  text-align: left !important;
  text-indent: 0 !important;
}

.two-column,
.story-grid {
  align-items: start !important;
}

@media (max-width: 760px) {
  .image-card img {
    height: clamp(210px, 58vw, 300px) !important;
  }
  .hero-media img {
    height: clamp(260px, 72vw, 420px) !important;
  }
  .image-card figcaption,
  .hero-media figcaption {
    min-height: 0 !important;
    padding: 16px 18px 18px !important;
    font-size: 0.95rem !important;
  }
}

/* Brand-template refinements: exact LeFeast yellow, League Gothic headings, calmer premium spacing. */
@media (max-width: 720px) {
  h1 { font-size: clamp(2.1rem, 10.5vw, 3.05rem); }
  h2 { font-size: clamp(1.85rem, 8.5vw, 2.85rem); }
  #faq-title { font-size: clamp(1.7rem, 8vw, 2.45rem); }
}

/* Expanded site pages: menu, branch pages and trust pages. */
.page-hero {
  padding: clamp(38px, 5vw, 72px) 0 clamp(28px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(255,222,89,0.42), rgba(255,255,255,0.96));
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .lead { max-width: 70ch; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card, .info-card, .menu-card {
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 22px;
}
.feature-card h2, .info-card h2, .menu-card h2 { font-size: clamp(1.7rem, 2.6vw, 2.5rem); max-width: none; }
.feature-card h3, .info-card h3, .menu-card h3 { margin-bottom: 8px; }
.section-compact { padding: clamp(32px, 4vw, 58px) 0; }
.page-list { display: grid; gap: 12px; margin: 18px 0 0; padding: 0; list-style: none; }
.page-list li { padding: 13px 15px; border: 1px solid var(--line-soft); border-radius: 16px; background: rgba(255,255,255,0.72); }
.branch-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .66fr); gap: clamp(22px, 4vw, 48px); align-items: start; }
.branch-facts { margin: 0; display: grid; gap: 10px; }
.branch-facts div { padding: 14px 16px; background: var(--white); border: 2px solid var(--ink); border-radius: 18px; box-shadow: 4px 4px 0 var(--ink); }
.branch-facts dt { font-weight: 950; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.branch-facts dd { margin: 3px 0 0; font-weight: 850; }
.legal-page h2 { font-size: clamp(1.85rem, 3vw, 2.75rem); max-width: none; margin-top: 28px; }
.notice { border-left: 6px solid var(--yellow); background: var(--white); padding: 16px 18px; border-radius: 16px; box-shadow: var(--soft-shadow); }
@media (max-width: 900px) {
  .card-grid, .card-grid.two, .branch-hero-grid { grid-template-columns: 1fr; }
}

.customer-reviews .section-heading { max-width: 1000px; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.review-card { border: 2px solid var(--ink); border-radius: 24px; background: var(--white); box-shadow: 6px 6px 0 var(--ink); padding: 24px; display: flex; flex-direction: column; min-height: 250px; }
.review-card h3 { margin: 10px 0 0; font-size: clamp(1.7rem, 2.5vw, 2.35rem); }
.review-card blockquote { margin: 18px 0 0; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.3; font-weight: 850; }
.rating-badge { display: inline-flex; align-items: center; align-self: flex-start; width: fit-content; max-width: 100%; white-space: nowrap; gap: 8px; margin: 0; padding: 8px 12px; border: 2px solid var(--ink); border-radius: 999px; background: var(--yellow); font-weight: 950; letter-spacing: .02em; }
.branch-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.branch-detail-card { border: 2px solid var(--ink); border-radius: 24px; background: var(--white); box-shadow: 6px 6px 0 var(--ink); padding: 22px; }
.branch-detail-card h2 { font-size: clamp(1.7rem, 2.6vw, 2.5rem); max-width: none; }
.branch-image-card img { width: 100%; height: auto; border: 2px solid var(--ink); border-radius: 24px; box-shadow: 6px 6px 0 var(--ink); background: var(--white); }
.branch-image-card figcaption { margin-top: 12px; color: var(--muted); font-size: .95rem; }
@media (max-width: 840px) { .review-grid, .branch-detail-grid { grid-template-columns: 1fr; } }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.star-rating { font-size: 1.25rem; letter-spacing: .08em; line-height: 1; }
.section-visual { padding-top: clamp(28px, 5vw, 56px); }

.section-subheading { margin-top: clamp(42px, 5vw, 72px); }
.section-subheading--wide { max-width: none; white-space: nowrap; }
@media (max-width: 720px) { .section-subheading--wide { white-space: normal; } }

/* Premium visual refresh: sleeker, calmer and more professional. */
:root {
  --yellow: #FFDE59;
  --yellow-2: #F8D94E;
  --yellow-soft: #FFF3B0;
  --ink: #15120A;
  --charcoal: #2D2A24;
  --muted: #706A5E;
  --paper: #FBF8EF;
  --white: #ffffff;
  --cream: #FFF7D8;
  --line: rgba(21, 18, 10, 0.12);
  --line-soft: rgba(21, 18, 10, 0.08);
  --shadow: 0 28px 80px rgba(21, 18, 10, 0.14);
  --soft-shadow: 0 18px 46px rgba(21, 18, 10, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background:
    radial-gradient(circle at 14% -10%, rgba(255, 222, 89, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(255, 247, 216, 0.82), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 50%, #ffffff 100%);
  color: var(--ink);
  letter-spacing: -0.005em;
}

.container { width: min(100% - 48px, var(--max)); }
.section { padding: clamp(56px, 6.4vw, 96px) 0; }

.site-header {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(21, 18, 10, 0.08);
  box-shadow: 0 10px 36px rgba(21, 18, 10, 0.045);
}
.site-header::after { height: 0; }
.header-inner { min-height: 78px; }
.brand img { width: clamp(150px, 13vw, 188px); }
.primary-nav {
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(21, 18, 10, 0.82);
}
.primary-nav a, .site-footer a { border-bottom-width: 1px; }
.primary-nav a:hover, .site-footer a:hover, .text-link:hover { color: var(--ink); border-color: var(--yellow); }

.button {
  min-height: 50px;
  padding: 0.82rem 1.32rem;
  border: 1px solid rgba(21, 18, 10, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, #FFE979 0%, var(--yellow) 100%);
  box-shadow: 0 12px 26px rgba(21, 18, 10, 0.12), inset 0 1px 0 rgba(255,255,255,0.48);
  font-weight: 850;
  letter-spacing: 0.01em;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(21, 18, 10, 0.16), inset 0 1px 0 rgba(255,255,255,0.45);
  background: var(--ink);
  color: var(--white);
}
.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: rgba(21, 18, 10, 0.14);
}
.button-secondary:hover { background: var(--white); color: var(--ink); }
.button-small { min-height: 42px; padding: 0.58rem 1rem; box-shadow: 0 10px 22px rgba(21, 18, 10, 0.10); }

.hero {
  padding-top: clamp(48px, 6vw, 86px);
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 222, 89, 0.22), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #fffcf1 100%);
}
.hero::before {
  width: 32rem;
  height: 32rem;
  left: auto;
  right: -18rem;
  top: -14rem;
  border: 1px solid rgba(21, 18, 10, 0.08);
  background: radial-gradient(circle, rgba(255, 222, 89, 0.24), transparent 60%);
}
.hero::after {
  content: "Made for your journey";
  color: rgba(21, 18, 10, 0.035);
  font-size: clamp(4.4rem, 11vw, 11rem);
  letter-spacing: 0.02em;
}
.hero-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr); }
.eyebrow {
  margin-bottom: 12px;
  color: #8A6F10;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}
h1, h2 {
  letter-spacing: 0.005em;
  line-height: 0.96;
}
h1 { font-size: clamp(3rem, 5.7vw, 6rem); max-width: 15ch; }
h2 { font-size: clamp(2.35rem, 4.4vw, 4.35rem); }
h3 { color: var(--ink); font-weight: 850; letter-spacing: -0.025em; }
.lead { color: rgba(45, 42, 36, 0.84); line-height: 1.72; }
.hero-actions { gap: 14px; margin-top: 28px; }

.hero-media,
.image-card,
.location-card,
details,
.cta-card,
.feature-card,
.info-card,
.menu-card,
.review-card,
.branch-detail-card,
.branch-facts div,
.branch-image-card img {
  border: 1px solid rgba(21, 18, 10, 0.10) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 22px 60px rgba(21, 18, 10, 0.10) !important;
  background: rgba(255, 255, 255, 0.88) !important;
}
.hero-media,
.image-card { transform: none !important; }
.hero-media::before { inset: 14px; border-color: rgba(255,255,255,0.48); }
.hero-media::after {
  top: 18px;
  left: 18px;
  border: 1px solid rgba(21, 18, 10, 0.14);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 26px rgba(21, 18, 10, 0.12);
  letter-spacing: 0.1em;
}
.hero-media figcaption,
.image-card figcaption {
  background: rgba(255,255,255,0.94) !important;
  border-top-color: rgba(21, 18, 10, 0.08) !important;
  color: rgba(45, 42, 36, 0.78) !important;
}

.proof-points { gap: 14px; margin-top: 28px; }
.proof-points div {
  border: 1px solid rgba(21, 18, 10, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 16px 38px rgba(21, 18, 10, 0.06);
}
.proof-points dt { font-size: 1.7rem; color: var(--ink); }
.proof-points dd { font-weight: 750; color: rgba(45, 42, 36, 0.68); }

.strip {
  padding: 26px 0;
  background: linear-gradient(135deg, #15120A 0%, #2A251A 100%);
}
.strip p {
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.check-list li,
.page-list li {
  border-color: rgba(21,18,10,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 28px rgba(21,18,10,0.045);
  font-weight: 750;
}
.check-list li::before {
  border: 0;
  width: 10px;
  height: 10px;
  left: 20px;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255,222,89,0.28);
}

.section-yellow {
  background:
    radial-gradient(circle at 10% 0%, rgba(255,222,89,0.24), transparent 24rem),
    linear-gradient(180deg, #fffaf0 0%, #fff7d8 100%);
}
.section-yellow::before { opacity: 0.08; background-size: 28px 28px; }
.location-card,
.feature-card,
.info-card,
.menu-card,
.review-card,
.branch-detail-card { padding: 24px; }
.location-card::before { height: 4px; background: linear-gradient(90deg, var(--yellow), transparent); }
.location-card::after { opacity: 0.4; }
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(21, 18, 10, 0.13) !important;
}
.opening-hours { border-top-color: rgba(21,18,10,0.08); }
.text-link { border-bottom-width: 2px; }

.quick-answers { background: linear-gradient(180deg, #ffffff 0%, #fbf8ef 100%); }
details { padding: 20px 22px; }
summary { font-weight: 850; }
.club-benefits li {
  border: 1px solid rgba(21, 18, 10, 0.10);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.cta { background: linear-gradient(180deg, #ffffff 0%, #fff7dd 100%); }
.cta-card {
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,0.52), transparent 14rem),
    linear-gradient(135deg, #FFE979 0%, var(--yellow) 100%) !important;
}
.cta-card::after { color: rgba(21, 18, 10, 0.055); }

.site-footer {
  background: linear-gradient(135deg, #15120A 0%, #262116 100%);
  color: var(--white);
}
.footer-title { color: var(--yellow); }
.site-footer img {
  background: rgba(255,222,89,0.94);
  border-radius: 14px;
  padding: 7px;
  box-shadow: 0 16px 38px rgba(0,0,0,0.18);
}

.page-hero {
  background:
    radial-gradient(circle at 86% 0%, rgba(255,222,89,0.22), transparent 22rem),
    linear-gradient(135deg, #ffffff 0%, #fff9e8 100%);
  border-bottom: 1px solid rgba(21,18,10,0.08);
}
.rating-badge {
  border: 1px solid rgba(21,18,10,0.12);
  background: linear-gradient(180deg, #FFE979, var(--yellow));
}
.notice {
  border-left: 4px solid var(--yellow);
  box-shadow: 0 16px 38px rgba(21,18,10,0.07);
}

@media (max-width: 1040px) {
  .header-inner { padding: 16px 0; }
  h1 { max-width: 16ch; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 30px, var(--max)); }
  .section { padding: 46px 0; }
  .button { width: 100%; }
  .button-small { width: auto; }
  .hero { padding-top: 38px; }
  h1 { font-size: clamp(2.35rem, 11vw, 3.35rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
}

/* Footer logo refinement: keep the mark crisp and intentional on the dark footer. */
.site-footer img {
  width: min(172px, 100%);
  height: auto;
  aspect-ratio: 363 / 150;
  object-fit: contain;
  margin: 0 0 18px;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  mix-blend-mode: normal;
}
.site-footer .footer-grid > div:first-child {
  max-width: 340px;
}


/* Client correction: restore original title styling while keeping the premium visual refresh. */
:root {
  --font: Arial, Helvetica, sans-serif;
  --display: "League Gothic", "Arial Narrow", Impact, sans-serif;
}

h1,
h2,
.brand-line {
  font-family: var(--display) !important;
  font-weight: 400 !important;
  line-height: 0.94 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
}

h1 {
  font-size: clamp(2.65rem, 5.1vw, 5.15rem) !important;
  max-width: 16ch !important;
}

h2 {
  font-size: clamp(2.25rem, 4.3vw, 4.15rem) !important;
  max-width: 16ch !important;
}

.feature-card h2,
.info-card h2,
.menu-card h2,
.branch-detail-card h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem) !important;
  max-width: none !important;
}

.legal-page h2 {
  font-size: clamp(1.85rem, 3vw, 2.75rem) !important;
  max-width: none !important;
}

.hero::after {
  font-family: var(--display) !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.1rem, 10.5vw, 3.05rem) !important; }
  h2 { font-size: clamp(1.85rem, 8.5vw, 2.85rem) !important; }
}

/* Sitewide typography correction: make text spacing consistent on every page. */
body,
p,
li,
dd,
dt,
a,
summary,
figcaption,
button,
.button,
input,
textarea,
select,
.lead,
.small,
.notice,
.page-list,
.check-list,
.location-card,
.feature-card,
.info-card,
.menu-card,
.review-card,
.branch-detail-card,
.branch-facts,
.opening-hours,
.site-footer {
  letter-spacing: normal !important;
  word-spacing: normal !important;
  font-stretch: normal !important;
  font-kerning: normal;
  text-rendering: geometricPrecision;
}

p,
li,
dd,
summary,
figcaption,
.lead,
.small,
.notice,
.opening-hours,
.site-footer p {
  font-family: Arial, Helvetica, sans-serif !important;
  line-height: 1.65 !important;
}

h1,
h2,
.brand-line {
  letter-spacing: 0.035em !important;
  word-spacing: 0.04em !important;
  line-height: 0.98 !important;
}

h3,
.feature-card h3,
.info-card h3,
.menu-card h3,
.review-card h3 {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  line-height: 1.24 !important;
}

.primary-nav,
.eyebrow,
.rating-badge,
.hero-media::after,
.branch-facts dt {
  letter-spacing: 0.11em !important;
  word-spacing: normal !important;
}

@media (max-width: 640px) {
  h1,
  h2,
  .brand-line {
    letter-spacing: 0.025em !important;
    word-spacing: 0.02em !important;
  }
}

/* Footer link hover correction: keep footer links visible on the dark background and add a subtle brand glow. */
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--yellow) !important;
  border-color: var(--yellow) !important;
  text-shadow: 0 0 8px rgba(255, 222, 89, 0.65), 0 0 18px rgba(255, 222, 89, 0.35);
}

.review-note { max-width: 760px; margin-top: 10px; font-weight: 800; }
.review-branch { margin: -8px 0 12px; font-weight: 850; }
.review-source { margin: 16px 0 0; font-size: .95rem; font-weight: 800; opacity: .78; }
.review-card { transition: opacity .22s ease, transform .22s ease; }
.review-card.is-updating { opacity: .18; transform: translateY(4px); }
@media (prefers-reduced-motion: reduce) {
  .review-card { transition: none; }
  .review-card.is-updating { opacity: 1; transform: none; }
}

/* Link presentation refinement: remove the heavy faux-underlines that made footer and inline links look uneven. */
.primary-nav a,
.site-footer a,
.button,
.brand {
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none;
}

.primary-nav a {
  position: relative;
  padding-bottom: 0.18rem;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12rem;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.text-link,
.legal-page a:not(.button),
.info-card a:not(.button),
.menu-card a:not(.button),
.feature-card a:not(.button) {
  color: var(--ink);
  font-weight: 850;
  text-decoration-line: underline;
  text-decoration-color: rgba(21, 18, 10, 0.32);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  border-bottom: 0 !important;
}

.text-link:hover,
.text-link:focus-visible,
.legal-page a:not(.button):hover,
.legal-page a:not(.button):focus-visible,
.info-card a:not(.button):hover,
.info-card a:not(.button):focus-visible,
.menu-card a:not(.button):hover,
.menu-card a:not(.button):focus-visible,
.feature-card a:not(.button):hover,
.feature-card a:not(.button):focus-visible {
  color: var(--ink) !important;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 2px;
}

.site-footer a {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.35 !important;
  padding: 0.08rem 0;
  text-shadow: none !important;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer nav a {
  margin: 0.04rem 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--yellow) !important;
  border-bottom: 0 !important;
  text-shadow: none !important;
  transform: translateX(2px);
}

.site-footer p a {
  display: inline;
}


/* Responsive image containers for SEO/GEO image best practice.
   Each <picture> provides AVIF first and keeps the <img src> as the crawler-friendly fallback. */
picture { max-width: 100%; }
.brand picture { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.hero-media picture,
.image-card picture,
.branch-image-card picture,
.site-footer picture { display: block; width: 100%; }
.image-card picture + figcaption,
.hero-media picture + figcaption { border-top: 1px solid var(--line); }

/* Location page cleanup after removing the station guide image. */
.seo-geo-visual {
  padding: clamp(34px, 4.2vw, 62px) 0;
}

.seo-geo-visual .section-heading {
  margin-bottom: 0;
}

.seo-geo-visual .section-heading p:last-child {
  margin-bottom: 0;
}

.seo-geo-visual + .section {
  padding-top: clamp(34px, 4.2vw, 62px);
}


/* Branch-specific store images on location pages. */
.seo-geo-visual .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .78fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.seo-geo-visual .branch-image-card {
  margin: 0;
}

.seo-geo-visual .branch-image-card img {
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 840px) {
  .seo-geo-visual .container {
    grid-template-columns: 1fr;
  }
}

/* Mobile hero layout fix: ensure the homepage hero stacks instead of keeping the desktop two-column layout. */
@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    align-items: start;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-media {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-grid {
    gap: 24px;
  }

  .eyebrow {
    max-width: 100%;
    letter-spacing: 0.14em;
    font-size: 0.68rem;
  }

  h1 {
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero-media img {
    width: 100%;
    height: auto;
  }

  .hero::after {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}
