/* ==========================================================================
   Kaikoura Seafood BBQ — demo site
   Palette drawn from the kiosk's own signage: signal red on white,
   chalkboard black, driftwood cream, Pacific blue.
   ========================================================================== */

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-700.woff2') format('woff2');
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-600i.woff2') format('woff2');
  font-weight: 500 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Caveat';
  src: url('fonts/Caveat-600.woff2') format('woff2');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #bf2026;
  --red-dark: #9a181d;
  --ink: #211d1a;
  --cream: #faf5ec;
  --cream-deep: #f3ead9;
  --board: #2f343c;
  --board-line: rgba(255, 255, 255, 0.16);
  --chalk: #f4f1e8;
  --sea: #2e6d84;
  --muted: #6f6659;
  --serif: 'Playfair Display', 'Songti SC', Georgia, serif;
  --hand: 'Caveat', 'Kaiti SC', cursive;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
    'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --shadow-card: 0 2px 6px rgba(33, 29, 26, 0.06), 0 14px 32px rgba(33, 29, 26, 0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* clip, not hidden: hidden makes body a scroll container on iOS Safari,
     which detaches position:fixed bars from the visual viewport when the
     browser toolbar collapses; clip clips overflow without that side effect */
  overflow-x: hidden;
  overflow-x: clip;
}

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

a { color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid #f45a5f;
  outline-offset: 4px;
}

/* --- language toggle: default EN, body.lang-zh flips ----------------------- */
.zh { display: none; }
body.lang-zh .zh { display: revert; }
body.lang-zh .en { display: none; }
body.lang-zh { line-height: 1.75; }

.wrap {
  width: min(1080px, 92%);
  margin: 0 auto;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px clamp(16px, 4vw, 36px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(250, 245, 236, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(33, 29, 26, 0.08);
}

.brand {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.brand .brand-red { color: #ffd9ce; transition: color 0.3s ease; }
.site-header.scrolled .brand { color: var(--ink); }
.site-header.scrolled .brand .brand-red { color: var(--red); }

.header-right { display: flex; align-items: center; gap: 8px; }

.nav-links {
  display: flex;
  gap: 22px;
  margin-right: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.site-header.scrolled .nav-links a { color: var(--ink); text-shadow: none; }
.nav-links a:hover { color: var(--red); }

.lang-btn {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  font: 600 13px/1 var(--sans);
  padding: 8px 13px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
}
.site-header.scrolled .lang-btn {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.lang-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font: 700 13px/1 var(--sans);
  letter-spacing: 0.04em;
  padding: 9px 15px;
  border-radius: 999px;
  transition: background 0.25s ease;
}
.header-call:hover { background: var(--red-dark); }

@media (min-width: 761px) {
  .site-header {
    min-height: 66px;
    padding: 14px clamp(24px, 3vw, 58px);
    background: linear-gradient(180deg, rgba(8, 10, 13, 0.34), rgba(8, 10, 13, 0));
  }
  .site-header.scrolled { min-height: 62px; }
  .brand { font-size: 19px; }
  .nav-links { gap: 28px; margin-right: 16px; font-size: 15px; }
  .lang-btn { font-size: 13.5px; padding: 9px 14px; }
  .header-call { font-size: 13.5px; padding: 10px 17px; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .header-call .call-label { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%; /* subject sits right-of-centre; keep it in frame on narrow crops */
}
@media (max-width: 720px) {
  /* mobile serves the portrait grill crop — centre on the split crayfish */
  .hero-bg img { object-position: 58% 50%; }
  /* slightly stronger mid-band scrim: the title sits over bright crayfish flesh */
  .hero::after {
    background:
      linear-gradient(180deg, rgba(8, 9, 12, 0.45) 0%, rgba(8, 9, 12, 0) 30%),
      linear-gradient(6deg, rgba(6, 7, 10, 0.97) 0%, rgba(8, 9, 12, 0.66) 46%, rgba(8, 9, 12, 0.08) 80%);
  }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 9, 12, 0.45) 0%, rgba(8, 9, 12, 0) 30%),
    linear-gradient(88deg, rgba(8, 9, 12, 0.5) 0%, rgba(8, 9, 12, 0.2) 40%, rgba(8, 9, 12, 0) 62%),
    linear-gradient(6deg, rgba(6, 7, 10, 0.97) 0%, rgba(8, 9, 12, 0.6) 42%, rgba(8, 9, 12, 0.06) 78%);
}

.hero-inner {
  width: min(1080px, 92%);
  /* anchor the text block to the left edge instead of centring it — on wide
     screens the dark left half of the hero image is the text zone */
  margin: 0 auto 0 clamp(16px, 4vw, 96px);
  padding: 120px 0 90px;
}

@media (min-width: 881px) {
  .hero-inner {
    width: min(1160px, 92%);
    padding: 120px 0 clamp(124px, 14vh, 158px);
  }
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  font: 600 12px/1.7 var(--sans);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffd9a8;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  margin-bottom: 18px;
}
.hero-badge::before {
  content: '';
  flex: none;
  width: 34px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
}
body.lang-zh .hero-badge { letter-spacing: 0.34em; }
.hero-badge > span { text-wrap: balance; }
@media (max-width: 640px) {
  .hero-badge { font-size: 10.5px; letter-spacing: 0.2em; gap: 11px; }
  .hero-badge::before { width: 24px; }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(42px, 8.2vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  max-width: 13ch;
}
.hero h1 .h1-sub {
  display: block;
  font-size: 0.42em;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-top: 10px;
  color: #ffe3d4;
}

.hero-tagline {
  margin-top: 20px;
  max-width: 56ch;
  text-wrap: balance;
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: 700 15px/1 var(--sans);
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: 8px;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn:active { transform: translateY(1px); }
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 20px rgba(191, 32, 38, 0.38);
}
.btn-red:hover { background: var(--red-dark); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.24); }

/* The board rises into the hero as a dark wave with a restrained red edge. */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  width: 100%;
  height: clamp(44px, 5vw, 60px);
  color: var(--board);
  overflow: visible; /* let the red line's glow bloom into the board below */
}
.hero-wave path {
  stroke: var(--red);
  stroke-width: 5px;
  stroke-linejoin: round;
  paint-order: stroke fill;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 3px 8px rgba(191, 32, 38, 0.6));
}

@media (max-width: 640px) {
  .hero-inner { padding: 104px 0 72px; }
  .hero-ctas .btn { flex: 1 1 100%; }
  /* the sticky action bar already offers Directions + Call on mobile */
  .hero-ctas .btn-ghost { display: none; }
}

/* ==========================================================================
   Shared section furniture
   ========================================================================== */
section { padding: clamp(64px, 9vw, 110px) 0; }

.eyebrow {
  font-family: var(--hand);
  font-size: clamp(22px, 3vw, 27px);
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.squiggle {
  display: block;
  width: 96px;
  height: 10px;
  margin-top: 14px;
  color: var(--red);
}

.section-head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 54px); }
.section-head p.lede { margin-top: 16px; color: var(--muted); font-size: 16.5px; }

/* ==========================================================================
   How it works
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 34px);
}
.step {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 0 26px 28px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--red);
  overflow: hidden;
}
.step-photo {
  margin: 0 -26px 22px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8e1d7;
}
.step-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-num {
  font-family: var(--hand);
  font-size: 46px;
  line-height: 1;
  color: var(--red);
  opacity: 0.85;
}
.step h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  margin: 10px 0 8px;
}
.step p { color: var(--muted); font-size: 15px; }

@media (min-width: 761px) {
  .how-section { padding: clamp(72px, 7vw, 92px) 0 clamp(76px, 8vw, 104px); }
  .how-section .section-head { margin-bottom: 40px; }
  .steps { gap: clamp(24px, 3vw, 40px); }
  .step {
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .step-photo {
    margin: 0 0 22px;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(33, 29, 26, 0.13);
  }
  .step-num {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font: 800 15px/1 var(--sans);
    opacity: 1;
    box-shadow: 0 6px 16px rgba(33, 29, 26, 0.22);
  }
  .step h3 { margin: 0 0 8px; font-size: 22px; }
  .step p { max-width: 34ch; line-height: 1.7; }
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .step { display: grid; grid-template-columns: 56px 1fr; column-gap: 16px; padding: 0 20px 22px; }
  .step-photo { grid-column: 1 / -1; margin: 0 -20px 20px; aspect-ratio: 16 / 9; }
  .step h3 { margin-top: 2px; grid-column: 2; }
  .step p { grid-column: 2; }
  .step .step-num { grid-row: 2 / span 3; }
}

/* ==========================================================================
   Menu — chalkboard
   ========================================================================== */
.menu-section {
  position: relative;
  padding-top: clamp(68px, 7vw, 88px);
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(255, 255, 255, 0.05), transparent 60%),
    radial-gradient(900px 420px at 0% 110%, rgba(255, 255, 255, 0.04), transparent 55%),
    var(--board);
  color: var(--chalk);
}
.section-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  display: block;
  width: 100%;
  height: 44px;
  pointer-events: none;
}
.menu-wave { color: var(--cream); }
.menu-wave path { stroke: none; }
.menu-section .eyebrow { color: #ff9d8a; }
.menu-section .squiggle { color: #ff9d8a; }
.menu-section .section-head p.lede { color: rgba(244, 241, 232, 0.72); }

.menu-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}

/* signature crayfish card */
.signature-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  transform: rotate(-0.5deg);
}
.signature-card figure { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.signature-card figure img { width: 100%; height: 100%; object-fit: cover; }
.signature-flag {
  position: absolute;
  top: 14px;
  left: -6px;
  background: var(--red);
  color: #fff;
  font: 700 11.5px/1 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 16px 8px 18px;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}
.signature-body { padding: 26px 28px 28px; }
.signature-body h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.15;
}
.signature-body .signature-price {
  font-family: var(--sans);
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--red);
  margin: 10px 0 12px;
}
.signature-body p { color: var(--muted); font-size: 15.5px; }
.signature-note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--muted);
  border-top: 1.5px dashed rgba(33, 29, 26, 0.22);
  padding-top: 12px;
}
.chowder-card { transform: rotate(0.45deg); }
.chowder-card figure img { object-position: center 62%; }

/* board list */
.board h3 {
  font-family: var(--serif);
  font-size: clamp(21px, 2.6vw, 26px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.board ul { list-style: none; }
.board li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  padding: 10.5px 0;
  border-bottom: 1px dashed var(--board-line);
  font-size: 16px;
}
.board li:last-child { border-bottom: none; }
.board .item-name { font-weight: 600; }
.board .dots {
  flex: 1;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
}
.board .item-tag {
  font-family: var(--hand);
  font-size: 20px;
  color: #ffd9a8;
  white-space: nowrap;
}
.board .item-note {
  display: block;
  width: 100%;
  font-size: 13px;
  color: rgba(244, 241, 232, 0.6);
  margin-top: 2px;
}
.menu-disclaimer {
  margin-top: 26px;
  padding: 14px 18px;
  border: 1.5px dashed var(--board-line);
  border-radius: 10px;
  font-size: 13.5px;
  color: rgba(244, 241, 232, 0.75);
  line-height: 1.6;
}

/* Featured dishes sit in reading order: crayfish → chowder → board. */
@media (min-width: 881px) {
  .menu-section .section-head { margin-bottom: 42px; }
  /* equal-width, equal-height columns so the two cards read as a matched pair */
  .menu-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .signature-card {
    display: flex;
    flex-direction: column;
    transform: rotate(-0.2deg);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  }
  .signature-card .signature-body { flex: 1; }
  .chowder-card {
    margin-top: 0;
    transform: rotate(0.25deg);
  }
  /* board list spans full width, held to a comfortable measure and split in two columns */
  .menu-grid .board {
    grid-column: 1 / -1;
    max-width: 1120px;
    margin-top: 32px;
  }
  .board ul {
    columns: 2;
    column-gap: 80px;
  }
  .board li { break-inside: avoid; }
  .board li:last-child { border-bottom: 1px dashed var(--board-line); }
}
@media (max-width: 880px) {
  .menu-grid { grid-template-columns: 1fr; }
  .signature-card { transform: none; }
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: clamp(34px, 5vw, 50px);
}
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(33, 29, 26, 0.08);
  box-shadow: 0 8px 20px rgba(33, 29, 26, 0.07);
}
.rating-chip .stars { color: #e8a020; letter-spacing: 2px; }
.rating-chip .stars span,
.review-stars span { color: #d8d4cc; }
.rating-chip .count {
  color: var(--muted);
  font-weight: 500;
  font-size: 13.5px;
  text-decoration: underline;
  text-decoration-color: rgba(33, 29, 26, 0.22);
  text-underline-offset: 3px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.6vw, 26px);
}
.review-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 26px 28px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: #e8a020;
  font: 700 14px/1 var(--sans);
  letter-spacing: 2px;
}
.review-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.62;
  margin: 16px 0 22px;
  flex: 1;
}
.review-card figcaption {
  border-top: 1px solid rgba(33, 29, 26, 0.1);
  padding-top: 16px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.review-author {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}
.review-author img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--cream-deep);
}
.review-author span { min-width: 0; }
.review-author strong,
.review-author small { display: block; }
.review-author strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}
.review-author small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}
.review-open {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: rgba(198, 32, 42, 0.08);
  font-size: 17px;
  text-decoration: none;
}
.review-author:hover strong,
.review-open:hover { color: var(--red); }
.review-open:hover { background: rgba(198, 32, 42, 0.14); }
.review-author:focus-visible,
.review-open:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}
.reviews-verbatim {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-card blockquote { font-size: 16.5px; }
}

/* ==========================================================================
   Find us
   ========================================================================== */
.findus-section { background: var(--cream-deep); }
.findus-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: start;
}

.hours-card, .visit-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.open-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
}
.open-pill.closed { background: rgba(33, 29, 26, 0.07); color: var(--muted); }
.open-pill[hidden] { display: none; }
.open-pill .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 9px 0;
  border-bottom: 1px dashed rgba(33, 29, 26, 0.14);
  font-size: 15px;
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.today td { color: var(--red); font-weight: 700; }

.weather-note {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  background: var(--cream);
  border-left: 3px solid var(--red);
  padding: 12px 14px;
  border-radius: 0 8px 8px 0;
}
.weather-note a { color: var(--red); font-weight: 600; }

.address-block { margin: 22px 0 6px; }
.address-block h3, .visit-card h3, .hours-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
}
.address-block p { font-size: 15px; color: var(--muted); }
.address-block strong { color: var(--ink); }

.contact-list { list-style: none; margin-top: 18px; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(33, 29, 26, 0.14);
  font-size: 15px;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list a { color: var(--ink); font-weight: 600; text-decoration: none; }
.contact-list a:hover { color: var(--red); }
.contact-list .ci {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(191, 32, 38, 0.09);
  color: var(--red);
  border-radius: 50%;
}

.map-frame {
  margin-top: 22px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 8.8;
  background: #dcd4c4;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.goodtoknow { margin-top: 26px; }
.goodtoknow h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
}
.goodtoknow ul { list-style: none; }
.goodtoknow li {
  position: relative;
  padding: 7px 0 7px 30px;
  font-size: 14.5px;
  color: var(--muted);
}
.goodtoknow li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 13px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red);
  transform: rotate(-48deg);
}

@media (max-width: 880px) {
  .findus-grid { grid-template-columns: 1fr; }
}

@media (min-width: 881px) {
  .findus-section .section-head { margin-bottom: 42px; }
  .hours-card, .visit-card { padding: 30px; }
  .visit-card .contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
  }
  .visit-card .contact-list li:nth-child(3),
  .visit-card .contact-list li:nth-child(4) { border-bottom: none; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--board);
  color: rgba(244, 241, 232, 0.82);
  padding: 54px 0;
  padding-bottom: calc(54px + env(safe-area-inset-bottom));
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 26px;
  align-items: flex-start;
}
.footer-brand {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}
.footer-brand .est {
  display: block;
  font-family: var(--hand);
  font-weight: 600;
  font-size: 19px;
  color: #ff9d8a;
  margin-top: 4px;
}
.footer-col p, .footer-col a { font-size: 14px; color: rgba(244, 241, 232, 0.82); }
.footer-col a { display: block; text-decoration: none; padding: 3px 0; }
.footer-col a:hover { color: #fff; }
.footer-note {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(244, 241, 232, 0.45);
  line-height: 1.6;
}
/* ==========================================================================
   Entrance animation — hero only, plays once on load. Section content is
   always visible; nothing on the page depends on scroll-triggered JS.
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .hero-inner > * {
    animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
  }
  .hero-inner > *:nth-child(2) { animation-delay: 0.08s; }
  .hero-inner > *:nth-child(3) { animation-delay: 0.16s; }
  .hero-inner > *:nth-child(4) { animation-delay: 0.24s; }
  .hero-inner > *:nth-child(5) { animation-delay: 0.32s; }
  .hero-inner > *:nth-child(6) { animation-delay: 0.4s; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .open-pill .dot { animation: none; }
}
