/* ============================================================
   The House of Food — Waterford
   Warm, family-run Irish breakfast café.
   Brand colour pulled from the storefront + logo (vivid orange),
   homemade-food serif (Fraunces), handwritten-menu signature.
   ============================================================ */

:root {
  /* Colour — grounded in the real shopfront & logo */
  --cream:       #FBF3E6;   /* warm paper background */
  --cream-deep:  #F5E9D6;   /* alternating band */
  --card:        #FFFDF8;
  --ink:         #2B201A;   /* espresso text */
  --muted:       #6F6357;
  --orange:      #DE531C;   /* primary — the shopfront orange */
  --coral:       #E16136;   /* logo coral, softer accent / hover */
  --yolk:        #EFA231;   /* egg-yolk gold — stars & tiny accents */
  --herb:        #5E7C49;   /* spinach/rocket green — dietary tags ONLY */
  --line:        rgba(43, 32, 26, .12);
  --line-strong: rgba(43, 32, 26, .22);

  --shadow-sm: 0 2px 8px rgba(43, 32, 26, .06);
  --shadow:    0 14px 40px -18px rgba(43, 32, 26, .35);
  --shadow-lg: 0 30px 70px -28px rgba(43, 32, 26, .45);

  --r-sm: 10px;
  --r:    18px;
  --r-lg: 28px;

  --container: 1140px;
  --pad-sec: clamp(4.5rem, 9vw, 8rem);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-hand: "Caveat", "Segoe Script", cursive;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.4rem;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem;
  background: var(--ink); color: var(--cream);
  padding: .7rem 1.1rem; border-radius: 8px; z-index: 200;
  transition: top .2s ease; font-weight: 600; font-size: .9rem;
}
.skip-link:focus { top: 1rem; }

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

/* ---------- Shared atoms ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(222, 83, 28, .8);
}
.btn--primary:hover { background: #c8470f; transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

.section-head { max-width: 640px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 600;
}
.section-intro {
  color: var(--muted);
  font-size: 1.12rem;
  margin-top: 1rem;
}

/* hand-drawn underline used once in the hero */
.scribble { position: relative; white-space: nowrap; color: var(--orange); }
.scribble svg {
  position: absolute; left: -2%; bottom: -.32em;
  width: 104%; height: .5em; overflow: visible;
}
.scribble path {
  fill: none; stroke: var(--coral); stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 600; stroke-dashoffset: 600;
  animation: draw 1s ease .55s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .scribble path { animation: none; stroke-dashoffset: 0; } }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 243, 230, .82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 76px;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; color: var(--ink); }
.brand__tag { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  text-decoration: none; color: var(--ink);
  font-weight: 500; font-size: .96rem;
  padding: .55rem .8rem; border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.nav__links a:hover { background: rgba(222, 83, 28, .1); color: var(--orange); }
.nav__cta { display: flex; align-items: center; gap: .75rem; }
.nav__call {
  display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none; font-weight: 600; color: #fff;
  background: var(--ink); padding: .65rem 1.15rem; border-radius: 999px;
  font-size: .95rem; transition: background .18s ease, transform .18s ease;
}
.nav__call:hover { background: var(--orange); transform: translateY(-1px); }
.nav__call svg { width: 16px; height: 16px; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: .5rem;
}
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem 1.4rem 1.4rem;
    box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: .9rem .4rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__burger { display: flex; }
  .nav__call span.full { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }

/* Orange hero variant — the warm welcome the regulars know */
.hero--orange {
  background:
    radial-gradient(110% 90% at 82% -10%, rgba(255, 240, 220, .16), transparent 55%),
    linear-gradient(168deg, #C84E12 0%, #A64300 56%, #8C3902 100%);
  color: var(--cream);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}
.hero--orange .eyebrow,
.hero--orange .eyebrow::before { color: #FFD9B8; }
.hero--orange .eyebrow::before { background: #FFD9B8; }
.hero--orange .hero__title { color: #FFF6EC; }
.hero--orange .hero__sub { color: rgba(255, 243, 230, .88); }
.hero--orange .hero__sub strong { color: #fff; }
.hero--orange .scribble { color: #FFF6EC; }
.hero--orange .scribble path { stroke: #FFD9B8; }
.hero--orange .hero__trust { border-top-color: rgba(255, 243, 230, .26); }
.hero--orange .trust-item b { color: #FFF6EC; }
.hero--orange .trust-item span { color: rgba(255, 243, 230, .74); }
.hero--orange .trust-divider { background: rgba(255, 243, 230, .26); }
.hero--orange .trust-stars { color: #FFD27A; }
.hero--orange .btn--primary { background: var(--cream); color: #A64300; box-shadow: 0 14px 30px -14px rgba(0,0,0,.55); }
.hero--orange .btn--primary:hover { background: #fff; color: #8C3902; }
.hero--orange .btn--ghost { color: var(--cream); border-color: rgba(255, 243, 230, .55); }
.hero--orange .btn--ghost:hover { border-color: var(--cream); background: rgba(255, 255, 255, .1); }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.7rem, 6.2vw, 5rem);
  font-weight: 600;
  letter-spacing: -.02em;
}
.hero__title em { font-style: italic; font-weight: 500; }
.hero__sub {
  font-size: 1.2rem; color: var(--muted);
  margin: 1.5rem 0 0; max-width: 30em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem;
  margin-top: 2.3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item b { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1; }
.trust-item span { font-size: .82rem; color: var(--muted); }
.trust-stars { color: var(--yolk); letter-spacing: 1px; font-size: 1.1rem; }
.trust-divider { width: 1px; align-self: stretch; background: var(--line); }

.hero__media { position: relative; }
.hero__photo {
  width: 100%; aspect-ratio: 1 / 1.04; object-fit: cover;
  object-position: 50% 35%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.4deg);
}
.hero__tagline {
  position: absolute; left: -10px; bottom: 26px;
  background: var(--ink); color: var(--cream);
  font-family: var(--font-body); font-weight: 600;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .7rem 1.1rem; border-radius: 999px;
  box-shadow: var(--shadow); transform: rotate(-2deg);
}

/* circular ink-stamp seal — the signature accent */
.seal {
  position: absolute; top: -26px; right: -22px;
  width: 124px; height: 124px;
  display: grid; place-items: center;
  color: var(--orange);
  filter: drop-shadow(0 8px 18px rgba(43,32,26,.25));
}
.seal__ring { position: absolute; inset: 0; animation: spin 32s linear infinite; }
@media (prefers-reduced-motion: reduce) { .seal__ring { animation: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
.seal__disc {
  position: absolute; inset: 0; margin: auto;
  width: 124px; height: 124px; border-radius: 50%;
  background: var(--cream);
  border: 2px dashed var(--coral);
}
.seal__center {
  position: relative; text-align: center; line-height: 1;
}
.seal__center b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; }
.seal__center small { font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); }
.seal__center .stars { color: var(--yolk); font-size: .7rem; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; margin-inline: auto; }
  .hero__photo { aspect-ratio: 4 / 3; transform: none; }
  .seal { width: 100px; height: 100px; top: -20px; right: -10px; }
  .seal__disc { width: 100px; height: 100px; }
  .seal__center b { font-size: 1.4rem; }
}

/* ============================================================
   Story
   ============================================================ */
.story { padding-block: var(--pad-sec); }
.story__grid {
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.story__media { position: relative; }
.story__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow);
}
.story__media figcaption {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: rgba(43, 32, 26, .78); color: var(--cream);
  backdrop-filter: blur(4px);
  font-size: .86rem; padding: .7rem 1rem; border-radius: 12px;
}
.story__media figcaption b { font-family: var(--font-display); }
.story p { color: var(--muted); margin: 1.15rem 0 0; }
.story p:first-of-type { font-size: 1.18rem; color: var(--ink); }
.story__points {
  list-style: none; margin: 2rem 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.4rem;
}
.story__points li {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .98rem; font-weight: 500;
}
.story__points svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--orange); margin-top: 1px; }

@media (max-width: 820px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 420px; }
  .story__points { grid-template-columns: 1fr; }
}

/* ============================================================
   Coeliac band
   ============================================================ */
.coeliac {
  background: var(--ink); color: var(--cream);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.coeliac__grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.coeliac__mark {
  width: 96px; height: 96px; flex: 0 0 auto;
  border: 2px dashed var(--yolk); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; color: var(--yolk);
  transform: rotate(-6deg);
}
.coeliac h2 { color: var(--cream); font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.coeliac p { color: rgba(251, 243, 230, .78); margin: .9rem 0 0; max-width: 60ch; font-size: 1.1rem; }
.coeliac .tags { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.coeliac .tags span {
  border: 1px solid rgba(251,243,230,.3); border-radius: 999px;
  padding: .4rem .9rem; font-size: .85rem; font-weight: 500;
}
.coeliac__mark svg { width: 40px; height: 40px; }
@media (max-width: 680px) { .coeliac__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Menu — the centrepiece
   ============================================================ */
.menu { padding-block: var(--pad-sec); }
.menu__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.menu__note-hand {
  font-family: var(--font-hand); font-size: 1.5rem; color: var(--coral);
  transform: rotate(-2deg); max-width: 16em; line-height: 1.2;
}
.menu__legend { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; margin: 2.2rem 0 2.6rem; font-size: .85rem; color: var(--muted); }
.menu__legend span { display: inline-flex; align-items: center; gap: .45rem; }

.diet {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: .62rem; font-weight: 700; letter-spacing: .02em;
  border: 1.5px solid var(--herb); color: var(--herb);
  font-family: var(--font-body);
}
.diet--gf { border-color: var(--orange); color: var(--orange); }

.menu__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.menu__group + .menu__group { margin-top: 2.4rem; }
.menu__group-title {
  font-family: var(--font-body); font-weight: 700; font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1.3rem;
}
.menu__group-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.dish { padding: .55rem 0; }
.dish__top { display: flex; align-items: baseline; gap: .6rem; }
.dish__name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.dish__diets { display: inline-flex; gap: .25rem; margin-left: .15rem; }
.dish__diets .diet { width: 19px; height: 19px; font-size: .56rem; }
.dish__leader { flex: 1; border-bottom: 2px dotted var(--line-strong); transform: translateY(-4px); min-width: 18px; }
.dish__price { font-weight: 700; color: var(--orange); font-size: 1.02rem; white-space: nowrap; }
.dish__desc { color: var(--muted); font-size: .94rem; margin: .25rem 0 0; max-width: 42ch; }

/* tiered item (All Day Hash) */
.tiers { list-style: none; margin: .5rem 0 0; padding: 0; }
.tiers li { display: flex; align-items: baseline; gap: .6rem; padding: .28rem 0; font-size: .96rem; }
.tiers .dish__leader { transform: translateY(-3px); }
.tiers b { font-weight: 600; }
.tiers .dish__price { font-size: .96rem; }

.menu__foot {
  margin-top: 2.8rem; padding-top: 1.8rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.menu__foot p { margin: 0; color: var(--muted); font-size: .96rem; }
.menu__foot b { color: var(--ink); }

@media (max-width: 760px) { .menu__cols { grid-template-columns: 1fr; gap: 2.4rem; } }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { padding-block: var(--pad-sec); background: var(--cream-deep); }
.gallery__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.shot {
  position: relative; overflow: hidden; border-radius: var(--r);
  cursor: pointer; box-shadow: var(--shadow-sm);
  border: 0; padding: 0; background: var(--ink); width: 100%; height: 100%;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.shot:hover img, .shot:focus-visible img { transform: scale(1.06); }
.shot figcaption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(43,32,26,.85), transparent);
  color: #fff; text-align: left;
  font-family: var(--font-display); font-weight: 500; font-size: 1rem;
  padding: 2rem .9rem .75rem;
  opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease;
}
.shot:hover figcaption, .shot:focus-visible figcaption { opacity: 1; transform: translateY(0); }
.shot--tall { grid-row: span 2; }
.shot--wide { grid-column: span 2; }
.shot--big { grid-column: span 2; grid-row: span 2; }

@media (max-width: 900px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 175px; } .shot--wide, .shot--big { grid-column: span 2; } .shot--big { grid-row: span 2; } }
@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 145px; }
  .shot--wide, .shot--tall, .shot--big { grid-column: span 1; grid-row: span 1; }
  .shot--big { grid-column: span 2; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 14, 11, .92);
  display: grid; place-items: center; padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 82vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox__cap { color: var(--cream); text-align: center; margin-top: 1rem; font-family: var(--font-display); }
.lightbox__close {
  position: absolute; top: 1.1rem; right: 1.3rem;
  background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer;
}

/* ============================================================
   Reviews
   ============================================================ */
.reviews { padding-block: var(--pad-sec); }
.reviews__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.reviews__score { text-align: right; }
.reviews__score b { font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; display: block; }
.reviews__score .stars { color: var(--yolk); font-size: 1.2rem; letter-spacing: 2px; }
.reviews__score small { color: var(--muted); font-size: .9rem; display: block; margin-top: .25rem; }

.reviews__grid {
  margin-top: 3rem;
  columns: 3 280px; column-gap: 1.4rem;
}
.review {
  break-inside: avoid; margin-bottom: 1.4rem;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.review .stars { color: var(--yolk); letter-spacing: 1px; font-size: .95rem; }
.review p { margin: .7rem 0 1.1rem; font-size: 1rem; line-height: 1.6; }
.review footer { display: flex; align-items: center; gap: .75rem; }
.review__avatar {
  width: 38px; height: 38px; flex: 0 0 auto; border-radius: 50%;
  background: var(--coral); color: #fff;
  display: grid; place-items: center; font-weight: 600; font-family: var(--font-display);
}
.review__who b { font-size: .92rem; display: block; }
.review__who span { font-size: .78rem; color: var(--muted); }

@media (max-width: 560px) { .reviews__grid { columns: 1; } .reviews__score { text-align: left; } }

/* ============================================================
   Visit
   ============================================================ */
.visit { padding-block: var(--pad-sec); background: var(--cream-deep); }
.visit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.visit__card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.visit__row { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.visit__row:last-child { border-bottom: 0; }
.visit__row svg { width: 22px; height: 22px; color: var(--orange); flex: 0 0 auto; margin-top: 3px; }
.visit__row h4 { font-family: var(--font-body); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.visit__row p { margin: 0; }
.visit__row a { color: var(--orange); text-decoration: none; font-weight: 600; }
.visit__row a:hover { text-decoration: underline; }

.hours { width: 100%; border-collapse: collapse; }
.hours caption {
  text-align: left; font-family: var(--font-body); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: .6rem;
}
.hours th, .hours td { text-align: left; padding: .55rem 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
.hours th { font-weight: 500; color: var(--muted); }
.hours td { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--orange); }
.hours tr.is-today th::after { content: " · Today"; font-size: .72rem; letter-spacing: .08em; }

.open-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .9rem; padding: .4rem .9rem;
  border-radius: 999px; margin-bottom: 1.2rem;
}
.open-badge .dot { width: 9px; height: 9px; border-radius: 50%; }
.open-badge.open { background: rgba(94, 124, 73, .15); color: var(--herb); }
.open-badge.open .dot { background: var(--herb); box-shadow: 0 0 0 4px rgba(94,124,73,.18); }
.open-badge.closed { background: rgba(222, 83, 28, .12); color: var(--orange); }
.open-badge.closed .dot { background: var(--orange); }

.visit__note { font-size: .88rem; color: var(--muted); margin: 1.2rem 0 0; }
.visit__cta { margin-top: 1.6rem; }

.visit__map {
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.visit__map iframe { width: 100%; height: 440px; border: 0; display: block; }
@media (max-width: 600px) { .visit__map iframe { height: 340px; } }

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

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer__brand img { height: 52px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 1rem; }
.footer__brand p { color: rgba(251, 243, 230, .68); max-width: 34ch; font-size: .96rem; margin: 0; }
.footer h4 { font-family: var(--font-body); font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--yolk); margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a { color: rgba(251, 243, 230, .82); text-decoration: none; font-size: .96rem; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(251,243,230,.16);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem;
  font-size: .85rem; color: rgba(251,243,230,.6);
}
.footer__bottom a { color: rgba(251,243,230,.6); }
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Motion — an orchestrated, restrained layer.
   Everything here collapses gracefully under reduced-motion.
   ============================================================ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--yolk), var(--orange));
  z-index: 150; transition: width .12s linear;
}

/* Hero load sequence */
@keyframes riseIn  { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes mediaIn { from { opacity: 0; transform: translateY(34px) scale(.96); } to { opacity: 1; transform: none; } }

.hero--orange .hero__copy > * { opacity: 0; animation: riseIn .85s cubic-bezier(.2,.7,.2,1) both; }
.hero--orange .eyebrow      { animation-delay: .08s; }
.hero--orange .hero__title  { animation-delay: .20s; }
.hero--orange .hero__sub    { animation-delay: .38s; }
.hero--orange .hero__actions{ animation-delay: .52s; }
.hero--orange .hero__trust  { animation-delay: .64s; }
.hero--orange .hero__media  { opacity: 0; animation: mediaIn 1.05s cubic-bezier(.2,.7,.2,1) .34s both; }

/* Smoother reveal easing */
.reveal { transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }

/* Staggered children: gallery tiles + review cards cascade in */
.gallery__grid .shot,
.reviews__grid .review {
  opacity: 0; transform: translateY(24px) scale(.98);
  transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.2,.7,.2,1);
}
.gallery__grid.in .shot,
.reviews__grid.in .review { opacity: 1; transform: none; }
.gallery__grid.in .shot:nth-child(1){transition-delay:.00s}
.gallery__grid.in .shot:nth-child(2){transition-delay:.06s}
.gallery__grid.in .shot:nth-child(3){transition-delay:.12s}
.gallery__grid.in .shot:nth-child(4){transition-delay:.18s}
.gallery__grid.in .shot:nth-child(5){transition-delay:.24s}
.gallery__grid.in .shot:nth-child(6){transition-delay:.30s}
.gallery__grid.in .shot:nth-child(7){transition-delay:.36s}
.gallery__grid.in .shot:nth-child(8){transition-delay:.42s}
.gallery__grid.in .shot:nth-child(9){transition-delay:.48s}
.gallery__grid.in .shot:nth-child(10){transition-delay:.54s}
.gallery__grid.in .shot:nth-child(11){transition-delay:.60s}
.gallery__grid.in .shot:nth-child(12){transition-delay:.66s}
.reviews__grid.in .review:nth-child(1){transition-delay:.00s}
.reviews__grid.in .review:nth-child(2){transition-delay:.07s}
.reviews__grid.in .review:nth-child(3){transition-delay:.14s}
.reviews__grid.in .review:nth-child(4){transition-delay:.21s}
.reviews__grid.in .review:nth-child(5){transition-delay:.28s}
.reviews__grid.in .review:nth-child(6){transition-delay:.35s}
.reviews__grid.in .review:nth-child(7){transition-delay:.42s}
.reviews__grid.in .review:nth-child(8){transition-delay:.49s}
.reviews__grid.in .review:nth-child(9){transition-delay:.56s}

/* Story checklist cascades */
.story__points li { opacity: 0; transform: translateY(12px); transition: opacity .55s ease, transform .55s ease; }
.story__text.in .story__points li { opacity: 1; transform: none; }
.story__text.in .story__points li:nth-child(1){transition-delay:.10s}
.story__text.in .story__points li:nth-child(2){transition-delay:.18s}
.story__text.in .story__points li:nth-child(3){transition-delay:.26s}
.story__text.in .story__points li:nth-child(4){transition-delay:.34s}

/* Menu dishes lift on hover */
.dish { transition: transform .25s ease; }
.dish:hover { transform: translateX(4px); }
.dish:hover .dish__leader { border-bottom-color: var(--orange); }

/* Primary button shine sweep */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -130%; width: 55%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); pointer-events: none; transition: left .6s ease;
}
.btn--primary:hover::after { left: 150%; }

/* Active nav link */
.nav__links a.active { background: rgba(222, 83, 28, .12); color: var(--orange); }

/* Card hover depth */
.review, .visit__card { transition: transform .3s ease, box-shadow .3s ease; }
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

@media (prefers-reduced-motion: reduce) {
  .hero--orange .hero__copy > *,
  .hero--orange .hero__media { animation: none; opacity: 1; transform: none; }
  .gallery__grid .shot, .reviews__grid .review,
  .story__points li { opacity: 1; transform: none; transition: none; }
  .btn--primary::after { display: none; }
  .scroll-progress { display: none; }
  .dish:hover, .review:hover { transform: none; }
}
