/* ==========================================================================
   House of Olives Falkirk — Styles
   Sections alternate: GREEN → LIGHT → GREEN → LIGHT → GREEN → LIGHT → GREEN
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) - 8px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink-900);
  background: var(--green-800);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
address { font-style: normal; }
figure { margin: 0; }
button { font: inherit; }

::selection { background: var(--gold-500); color: var(--green-900); }

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

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--cream-100);
  color: var(--green-800);
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

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

.section {
  position: relative;
  padding-block: var(--section-y);
  overflow: hidden;
  isolation: isolate;
}

/* Subtle premium texture on every section ------------------------------- */
.textured { position: relative; }
.textured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(ellipse at 15% 10%, rgba(255, 255, 255, 0.28), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(255, 255, 255, 0.16), transparent 55%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.theme-green.textured::before { opacity: 0.35; }
.theme-green.textured::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.05), transparent 60%),
              radial-gradient(90% 60% at 100% 100%, rgba(0, 0, 0, 0.28), transparent 60%);
}

/* --------------------------------------------------------------------------
   Olive branch artwork (inline SVG symbols)
   -------------------------------------------------------------------------- */
svg.branch,
svg.ob-mini,
.rule-sprig svg,
.feature-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ob-stem { stroke-width: 1.9; }
.ob-leaf { stroke-width: 1.35; }
.ob-rib { stroke-width: 0.75; opacity: 0.7; }
.ob-olive { stroke-width: 1.25; }

.branch {
  position: absolute;
  z-index: 0;
  color: var(--branch);
  pointer-events: none;
  width: clamp(130px, 15vw, 230px);
  height: auto;
  aspect-ratio: 260 / 320;
  opacity: 0.9;
}
.branch--faint { opacity: 0.55; }
.branch--tl { top: -1.5rem; left: -3rem; transform: scaleX(-1) rotate(-6deg); transform-origin: center; }
.branch--tr { top: -1.5rem; right: -3rem; transform: rotate(8deg); }
.branch--bl { bottom: -2rem; left: -3rem; transform: rotate(180deg) scaleX(-1); }
.branch--br { bottom: -2rem; right: -3rem; transform: rotate(180deg); }

.ob-mini {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -0.2em;
  color: var(--accent);
}

/* Decorative rule with sprig ------------------------------------------------ */
.rule-sprig {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.4rem 0 1.6rem;
  color: var(--accent);
}
.rule-sprig span { flex: 1; height: 1px; background: var(--rule); max-width: 220px; }
.rule-sprig svg { width: 64px; height: 22px; flex: 0 0 auto; }
.rule-sprig--left span:first-child,
.rule-sprig--left { justify-content: flex-start; }
.rule-sprig--left span { max-width: 160px; }
.section-title--center + .rule-sprig { justify-content: center; }
.section-title--center + .rule-sprig span { max-width: 200px; }

.eyebrow-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  color: var(--accent);
}
.eyebrow-rule span { flex: 1; max-width: 140px; height: 1px; background: var(--rule); }
.eyebrow-rule em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Type helpers
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.05rem 0.5rem;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--card-bg);
  margin-bottom: 1.4rem;
}
.theme-light .badge { color: var(--green-700); }

.section-title {
  font-size: var(--fs-h2);
  color: var(--fg);
}
.theme-light .section-title { color: var(--green-800); }
.section-title--center { text-align: center; }

.section-intro {
  font-size: var(--fs-lead);
  color: var(--fg-muted);
  text-align: center;
  max-width: 62ch;
  margin-inline: auto;
}

.emphasis { font-weight: 600; color: var(--green-800); }
.italic-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.4rem 0;
}
.mini-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--green-700);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--rule);
}
.script-accent {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.4rem);
  line-height: 1.25;
  color: var(--cream-300);
  margin-top: 1.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
}
.script-accent::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 8%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 30%, var(--gold-500) 70%, transparent);
  opacity: 0.85;
}

.br-desktop { display: none; }
@media (min-width: 900px) { .br-desktop { display: inline; } }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--cream-100);
  --btn-border: var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.6rem;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.btn .ob-mini { color: inherit; opacity: 0.9; width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn:active { transform: translateY(0); }

.btn-outline { --btn-fg: var(--gold-300); --btn-border: var(--gold-500); background: rgba(255, 255, 255, 0.02); }
.btn-outline:hover { background: rgba(197, 160, 75, 0.12); }
.btn-outline--dark { --btn-fg: var(--green-800); --btn-border: rgba(160, 140, 90, 0.7); background: rgba(255, 255, 255, 0.4); }
.btn-outline--dark:hover { background: rgba(255, 255, 255, 0.75); }

.btn-cream { --btn-bg: var(--cream-100); --btn-fg: var(--green-800); --btn-border: var(--cream-100); }
.btn-cream:hover { --btn-bg: #fff; }

.btn-green { --btn-bg: var(--green-700); --btn-fg: var(--cream-100); --btn-border: var(--gold-500); box-shadow: inset 0 0 0 1px rgba(197, 160, 75, 0.25); }
.btn-green:hover { --btn-bg: var(--green-600); }
.btn-green--onDark { --btn-bg: var(--green-900); }
.btn-green--onDark:hover { --btn-bg: var(--green-700); }

.btn-sm { min-height: 2.6rem; padding: 0.45rem 1.1rem; font-size: 1.05rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.9rem; }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0.5rem 0.2rem;
  color: var(--cream-100);
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  transition: gap var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.link-arrow .i-arrow { width: 1.2rem; height: 1.2rem; color: var(--gold-400); transition: transform var(--dur-fast) var(--ease-out); }
.link-arrow:hover { border-color: var(--gold-400); }
.link-arrow:hover .i-arrow { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--cream-100);
  transition: background-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out),
              height var(--dur) var(--ease-out), backdrop-filter var(--dur) var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(31, 42, 17, 0.88);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 8px 30px -18px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(197, 160, 75, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
}
.brand img {
  height: 62px;
  width: auto;
  transition: transform var(--dur-fast) var(--ease-out);
}
.brand:hover img { transform: translateY(-1px); }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.4rem); }
.nav-list { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 2rem); }
.nav-link {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream-200);
  padding: 0.35rem 0.1rem;
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}
.nav-link:hover, .nav-link.is-active { color: var(--gold-300); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(197, 160, 75, 0.45);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cream-100);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    height: calc(100dvh - var(--header-h));
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem var(--gutter) 3rem;
    gap: 2rem;
    background: rgba(31, 42, 17, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(197, 160, 75, 0.2);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), visibility 0s linear var(--dur);
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0.4rem; width: 100%; }
  .nav-list li { width: 100%; border-bottom: 1px solid rgba(244, 239, 228, 0.08); }
  .nav-link { display: block; font-size: 1.7rem; padding: 0.8rem 0; }
  .nav-link::after { display: none; }
  .nav-cta { align-self: stretch; font-size: 1.25rem; min-height: 3.25rem; }
  body.nav-open { overflow: hidden; }
  .site-header.is-open { background: rgba(31, 42, 17, 0.97); }
}

/* --------------------------------------------------------------------------
   1. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + clamp(1.5rem, 4vh, 3.5rem));
  padding-bottom: clamp(3rem, 6vh, 5rem);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero .branch--tl { top: calc(var(--header-h) + 0.5rem); left: -3.5rem; width: clamp(120px, 13vw, 200px); }
.hero .branch--bl { bottom: -1.5rem; left: -3rem; }
.hero .branch--br { right: -3rem; bottom: 1rem; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy { position: relative; max-width: 620px; padding-block: 1rem; }
.hero-title {
  font-size: var(--fs-hero);
  color: var(--cream-100);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.hero .rule-sprig { margin: 1.3rem 0 1.5rem; }
.hero .rule-sprig span { max-width: none; }
.hero-lead {
  font-size: var(--fs-lead);
  color: var(--text-light-muted);
  max-width: 48ch;
}

/* Media container — will host the <video> later; keep exactly this box */
.hero-media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(197, 160, 75, 0.18);
  background: var(--green-900);
}
.hero-media-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.02);
  transition: transform var(--dur-slow) var(--ease-out);
}
.hero-media:hover .hero-media-el { transform: scale(1.045); }

/* Green fade over the LEFT edge (and a touch top/bottom) so the media melts into the section */
.hero-media-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--green-800) 0%, rgba(40, 53, 22, 0.85) 9%, rgba(40, 53, 22, 0.35) 24%, rgba(40, 53, 22, 0) 46%),
    linear-gradient(180deg, rgba(40, 53, 22, 0.35), transparent 22%, transparent 78%, rgba(40, 53, 22, 0.45));
}
/* Thin gold inner frame like the mock-up */
.hero-media-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(197, 160, 75, 0.28);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
/* Big soft bleed to the left of the media so there is no hard rectangle edge */
.hero-media::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -1px;
  width: 22%;
  z-index: 2;
  background: linear-gradient(90deg, var(--green-800), transparent);
  pointer-events: none;
}

@media (max-width: 1023px) {
  .hero { min-height: 0; padding-top: calc(var(--header-h) + 1.5rem); }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { max-width: 60ch; }
  .hero-media { aspect-ratio: 4 / 3; max-width: 760px; }
  .hero-media::before { width: 14%; }
  .hero-media-fade { background: linear-gradient(180deg, var(--green-800) 0%, rgba(40, 53, 22, 0.55) 10%, rgba(40, 53, 22, 0) 32%); }
}
@media (max-width: 599px) {
  .hero-media { aspect-ratio: 4 / 3.4; border-radius: var(--radius-md); }
  .hero .branch--tl { display: none; }
}

/* --------------------------------------------------------------------------
   2. Weekly menu
   -------------------------------------------------------------------------- */
.weekly-menu .branch--br { width: clamp(140px, 16vw, 260px); }

.menu-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.menu-copy { max-width: 46ch; color: var(--ink-700); }
.menu-copy .section-title { color: var(--green-800); }

.menu-showcase { position: relative; }
.menu-showcase-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  color: var(--gold-500);
}
.menu-showcase-label span { flex: 1; height: 1px; background: var(--rule); }
.menu-showcase-label em {
  font-style: normal;
  font-size: var(--fs-label);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: #8a6f2a;
  white-space: nowrap;
}

/* Two identical holders side-by-side */
.menu-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
}

/* One holder = fixed 2:3 box driven by the frame artwork */
.menu-display {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 1536;
  filter: drop-shadow(0 26px 34px rgba(30, 30, 10, 0.28)) drop-shadow(0 4px 8px rgba(30, 30, 10, 0.12));
  transition: transform var(--dur) var(--ease-out);
}
.menu-display:hover { transform: translateY(-4px); }

/* The white sheet that sits inside the transparent window of the frame.
   Percentages match the frame artwork's inner opening (measured), slightly
   oversized so its edges are tucked under the leather + corner holders.  */
.menu-sheet {
  position: absolute;
  top: 6.4%;
  right: 8.4%;
  bottom: 11%;
  left: 8.2%;
  z-index: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.06);
}
.menu-page {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* never stretched — natural aspect ratio preserved */
  object-position: center;
}
/* Transparent leather frame — ABOVE the menu page */
.menu-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1023px) {
  .menu-grid { grid-template-columns: 1fr; gap: 3rem; }
  .menu-copy { max-width: 60ch; }
  .menu-pair { max-width: 900px; }
}
@media (max-width: 639px) {
  /* Stack: page 1 then page 2, each large enough to read */
  .menu-pair { grid-template-columns: 1fr; gap: 2rem; max-width: 440px; margin-inline: auto; }
}

/* --------------------------------------------------------------------------
   3. Gallery
   -------------------------------------------------------------------------- */
.gallery-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.gallery-copy { max-width: 48ch; color: var(--text-light-muted); }
.gallery-copy .section-title { color: var(--cream-100); }
.gallery .link-arrow { margin-left: 0.4rem; }

.feature-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(197, 160, 75, 0.25);
  font-size: var(--fs-small);
  color: var(--cream-300);
}
.feature-line li { display: inline-flex; align-items: center; gap: 0.5rem; }
.feature-line li + li { border-left: 1px solid rgba(197, 160, 75, 0.3); padding-left: 1.4rem; }

/* Editorial collage — different sizes on a 6-column grid */
.collage {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(70px, 6.2vw, 96px);
  gap: clamp(0.6rem, 1.2vw, 1rem);
}
.collage-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--green-900);
  box-shadow: 0 16px 34px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(197, 160, 75, 0.14);
}
.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-slow) var(--ease-out);
}
.collage-item:hover img { transform: scale(1.05); }
.collage-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 -40px 60px -40px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.ci-pasta     { grid-area: 1 / 1 / 4 / 4; }
.ci-caesar    { grid-area: 1 / 4 / 3 / 7; }
.ci-fish      { grid-area: 3 / 4 / 6 / 7; }
.ci-mushrooms { grid-area: 4 / 1 / 6 / 4; }
.ci-coffee    { grid-area: 6 / 1 / 8 / 3; }
.ci-mac       { grid-area: 6 / 3 / 8 / 5; }
.ci-potatoes  { grid-area: 6 / 5 / 8 / 7; }
.ci-fish img  { object-position: 50% 40%; }
.ci-pasta img { object-position: 50% 60%; }

@media (max-width: 1023px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-copy { order: -1; max-width: 60ch; }
  .collage { grid-auto-rows: clamp(70px, 11vw, 120px); }
}
@media (max-width: 639px) {
  .collage { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(120px, 26vw, 170px); gap: 0.7rem; }
  .ci-pasta     { grid-area: 1 / 1 / 3 / 2; }
  .ci-caesar    { grid-area: 1 / 2 / 2 / 3; }
  .ci-fish      { grid-area: 2 / 2 / 4 / 3; }
  .ci-mushrooms { grid-area: 3 / 1 / 4 / 2; }
  .ci-coffee    { grid-area: 4 / 1 / 5 / 2; }
  .ci-mac       { grid-area: 4 / 2 / 5 / 3; }
  .ci-potatoes  { grid-area: 5 / 1 / 6 / 3; }
  .collage-item { border-radius: var(--radius-sm); }
}

/* --------------------------------------------------------------------------
   4. About
   -------------------------------------------------------------------------- */
.about .branch--br { width: clamp(150px, 17vw, 270px); }

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.about-copy { color: var(--ink-700); }
.about-copy .section-title { color: var(--green-800); }
.about-copy .eyebrow-rule span { max-width: 160px; }

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(160, 140, 90, 0.35);
  aspect-ratio: 4 / 3.15;
  background: var(--cream-300);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  transition: transform var(--dur-slow) var(--ease-out);
}
.about-photo:hover img { transform: scale(1.025); }

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.2rem;
}
.feature {
  text-align: center;
  padding: 0.4rem 1.1rem;
  color: var(--ink-700);
}
.feature + .feature { border-left: 1px solid rgba(160, 140, 90, 0.45); }
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream-300);
  color: var(--green-700);
  margin-bottom: 0.9rem;
  box-shadow: inset 0 0 0 1px rgba(160, 140, 90, 0.35);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 {
  font-size: var(--fs-h3);
  color: var(--green-800);
  margin-bottom: 0.45rem;
}
.feature p { font-size: var(--fs-small); line-height: 1.6; }

.quote-card {
  position: relative;
  margin: 2rem 0 0;
  padding: clamp(2.8rem, 4vw, 3.4rem) clamp(1.5rem, 3vw, 2.6rem) clamp(1.6rem, 3vw, 2.4rem);
  background: var(--cream-300);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(160, 140, 90, 0.25);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1rem + 0.35vw, 1.3rem);
  line-height: 1.55;
  color: var(--green-800);
  text-align: center;
}
.quote-card p { margin-bottom: 1em; }
.quote-card footer {
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-700);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.6rem;
}
.quote-card cite { font-style: normal; font-weight: 600; }
.quote-card footer span::before { content: "·"; margin-right: 0.6rem; }
.quote-mark {
  position: absolute;
  width: 34px;
  height: 34px;
  color: var(--sage-400);
  opacity: 0.8;
}
.quote-mark--open { top: 1rem; left: 1.2rem; }
.quote-mark--close { bottom: 3.2rem; right: 1.2rem; transform: rotate(180deg); }

@media (max-width: 1023px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-copy { order: -1; }
  .about-copy .section-title, .about-copy .eyebrow-rule { text-align: center; }
  .about-photo { max-width: 820px; }
}
@media (max-width: 639px) {
  .features { grid-template-columns: 1fr; gap: 1.4rem; }
  .feature + .feature { border-left: 0; border-top: 1px solid rgba(160, 140, 90, 0.4); padding-top: 1.4rem; }
  .quote-mark--close { display: none; }
}

/* --------------------------------------------------------------------------
   5. Reviews
   -------------------------------------------------------------------------- */
.reviews .branch--br { width: clamp(150px, 17vw, 270px); }

.section-head { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.section-head .section-title { color: var(--cream-100); }
.section-head .eyebrow-rule span { max-width: 150px; }

.review-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
}
.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.4vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(212, 181, 103, 0.32);
  box-shadow: 0 30px 50px -40px rgba(0, 0, 0, 0.8);
  color: var(--cream-200);
  transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(212, 181, 103, 0.6); }
.review-head { display: flex; align-items: center; gap: 1rem; }
.avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--green-800);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  flex: 0 0 auto;
}
.review-who { display: flex; flex-direction: column; line-height: 1.25; }
.review-who strong { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; color: var(--cream-100); }
.review-who span { font-size: var(--fs-small); color: var(--text-light-muted); }
.google-mark { margin-left: auto; width: 30px; height: 30px; flex: 0 0 auto; }

.stars { display: inline-flex; gap: 0.25rem; color: var(--gold-400); margin-top: 1.1rem; }
.stars svg { width: 1.25rem; height: 1.25rem; }
.stars--inline { margin: 0; }
.stars--inline svg { width: 1.15rem; height: 1.15rem; }

.review-quote {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.25;
  color: var(--cream-100);
}
.review-text { font-size: 0.98rem; color: var(--text-light-muted); }
.card-foot {
  margin-top: auto;
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold-400);
}
.card-foot span { flex: 1; height: 1px; background: rgba(212, 181, 103, 0.35); }

.rating-line {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 3rem auto 0;
  width: max-content;
  max-width: 100%;
  color: var(--cream-100);
  font-size: 1.15rem;
  white-space: nowrap;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: border-color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.rating-line:hover { border-color: rgba(212, 181, 103, 0.4); background: rgba(255, 255, 255, 0.03); }
.rating-line strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--gold-300); }

@media (max-width: 1023px) {
  .review-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
}

/* --------------------------------------------------------------------------
   6. Book a table / Visit
   -------------------------------------------------------------------------- */
.visit .branch--tl { top: -3rem; }

.visit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 4vw, 4.5rem);
  align-items: start;
}
.visit-copy { color: var(--ink-700); }
.visit-copy .section-title { color: var(--green-800); font-size: clamp(2.6rem, 1.6rem + 3.2vw, 4.4rem); }
.visit-copy .eyebrow-rule em { text-transform: none; letter-spacing: 0.02em; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink-700); }
.visit-copy .eyebrow-rule span { max-width: 90px; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}
.contact-card {
  text-align: center;
  padding: 1.6rem 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(160, 140, 90, 0.45);
  background: rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); background: rgba(255, 255, 255, 0.6); }
.contact-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(74, 90, 44, 0.5);
  color: var(--green-700);
  margin-bottom: 0.8rem;
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.5rem; color: var(--green-800); margin-bottom: 0.35rem; }
.contact-value {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink-900);
  font-size: 1rem;
  line-height: 1.45;
  transition: color var(--dur-fast) var(--ease-out);
}
a.contact-value:hover { color: var(--green-700); text-decoration: underline; text-decoration-color: var(--gold-500); text-underline-offset: 3px; }
.contact-value--email { font-size: 0.95rem; overflow-wrap: anywhere; }
.contact-rule { width: 36px; height: 1px; background: var(--gold-500); margin: 0.9rem 0 0.7rem; }
.contact-card p { font-size: var(--fs-small); color: var(--ink-700); line-height: 1.5; }

.visit-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-200);
  border: 1px solid rgba(160, 140, 90, 0.4);
  box-shadow: var(--shadow-soft);
}
.visit-panel-photo { aspect-ratio: 16 / 9; overflow: hidden; background: var(--green-900); }
.visit-panel-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.visit-panel-body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.hours { padding: 1.5rem 1.4rem 1.4rem; border-right: 1px solid rgba(160, 140, 90, 0.35); }
.hours h3 { font-size: 1.35rem; color: var(--green-800); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: var(--fs-small); color: var(--ink-700); }
.hours-table th, .hours-table td { padding: 0.32rem 0; text-align: left; font-weight: 500; vertical-align: top; }
.hours-table td { text-align: right; white-space: nowrap; color: var(--ink-900); }
.hours-table td.closed { color: var(--ink-500); }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--green-700); font-weight: 600; }
.hours-table tr.is-today th::after { content: "•"; margin-left: 0.4rem; color: var(--gold-500); }
.hours-note {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(160, 140, 90, 0.35);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-700);
}
.map { display: flex; flex-direction: column; min-height: 320px; }
.map iframe { flex: 1; width: 100%; min-height: 240px; border: 0; filter: saturate(0.7) sepia(0.12) contrast(1.02); }
.map-directions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.1rem;
  background: var(--sage-200);
  color: var(--green-800);
  font-size: var(--fs-small);
  line-height: 1.35;
  border-top: 1px solid rgba(160, 140, 90, 0.35);
  transition: background-color var(--dur-fast) var(--ease-out);
}
.map-directions:hover { background: var(--sage-300); }
.map-directions .i-pin { width: 26px; height: 26px; flex: 0 0 auto; }
.map-directions .i-arrow { width: 20px; height: 20px; margin-left: auto; flex: 0 0 auto; }

@media (max-width: 1023px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-panel { max-width: 820px; margin-inline: auto; width: 100%; }
}
@media (max-width: 767px) {
  .contact-cards { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .visit-panel-body { grid-template-columns: 1fr; }
  .hours { border-right: 0; border-bottom: 1px solid rgba(160, 140, 90, 0.35); }
}

/* --------------------------------------------------------------------------
   7. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 2rem;
  color: var(--cream-200);
  border-top: 1px solid rgba(197, 160, 75, 0.25);
}
.site-footer .branch { width: clamp(140px, 16vw, 240px); opacity: 0.55; }
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}
.footer-brand img { height: 100px; width: auto; }
.footer-tagline {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-300);
}
.footer-desc { font-size: var(--fs-small); color: var(--text-light-muted); max-width: 40ch; }

.footer-col h3 {
  font-size: 1.35rem;
  color: var(--cream-100);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(197, 160, 75, 0.3);
}
.footer-col ul li + li { margin-top: 0.5rem; }
.footer-col a { color: var(--text-light-muted); transition: color var(--dur-fast) var(--ease-out); }
.footer-col a:hover { color: var(--gold-300); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: var(--fs-small); color: var(--text-light-muted); }
.footer-contact svg { width: 20px; height: 20px; color: var(--gold-400); flex: 0 0 auto; margin-top: 0.15rem; }
.footer-contact a { overflow-wrap: anywhere; }
.footer-hours { margin: 0; font-size: var(--fs-small); }
.footer-hours dt { color: var(--cream-100); font-weight: 600; }
.footer-hours dd { margin: 0 0 0.6rem; color: var(--text-light-muted); }
.footer-social-title { margin-top: 1.6rem; }
.social { display: flex; gap: 0.7rem; }
.social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 75, 0.5);
  color: var(--gold-300);
  transition: background-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.social a:hover { background: var(--gold-500); color: var(--green-900); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; }

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(197, 160, 75, 0.25);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  font-size: var(--fs-small);
  color: var(--text-light-muted);
}

@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 599px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom p { margin: 0; }
}

/* --------------------------------------------------------------------------
   Motion — reveal on scroll
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}
.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 240ms; }
.reveal.is-visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-media:hover .hero-media-el,
  .collage-item:hover img,
  .about-photo:hover img { transform: none; }
}

/* --------------------------------------------------------------------------
   Small-screen polish (320px–375px)
   -------------------------------------------------------------------------- */
@media (max-width: 420px) {
  :root { --header-h: 72px; }
  .brand img { height: 50px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .link-arrow { width: 100%; justify-content: center; }
  .badge { letter-spacing: 0.14em; font-size: 0.66rem; }
  .eyebrow-rule span { display: none; }
  .rule-sprig span { max-width: 80px; }
  .feature-line li + li { border-left: 0; padding-left: 0; }
  .branch { width: 120px; }
  .hero .branch--br, .gallery .branch--tr { display: none; }
  .review-quote { font-size: 1.35rem; }
  .rating-line { font-size: 1rem; gap: 0.5rem; padding-inline: 0.6rem; }
  .rating-line strong { font-size: 1.45rem; }
}
