/* Bella Vista — homepage stylesheet (single source; replaces styles.css + homepage-*.css on index.html) */

:root {
  --champagne: #c9a45c; /* accent for italic highlights: warm gold to match the pop-up (was champagne #efe1c6, originally peach #f3d9c2) */
  --ink: #14110f;
  --ink-2: #2a2420;
  --text: #4a423c;
  --muted: #685d55;
  --paper: #f5f0e8;
  --paper-2: #ece4d8;
  --white: #fffdf9;
  --red: #b8231e;
  --red-bright: #d6322b;
  --line: rgba(20, 17, 15, 0.14);
  --line-light: rgba(255, 253, 249, 0.18);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --step--1: 0.8125rem;
  --step-0: 1.0625rem;
  --step-1: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2: clamp(1.75rem, 1.4rem + 1.2vw, 2.4rem);
  --step-3: clamp(2.4rem, 1.8rem + 2.6vw, 4rem);
  --step-4: clamp(3.2rem, 2.2rem + 4.6vw, 6.6rem);

  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section: clamp(5rem, 10vw, 9rem);
  --max: clamp(1200px, 82vw, 1720px);
  --header-h: clamp(76px, 2.6vw + 46px, 112px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
/* Fluid root: 16px on phones/tablets, scaling to 20px on large desktops; every rem-based size follows. */
html { scroll-behavior: auto; font-size: clamp(100%, 0.35vw + 0.8rem, 125%); -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 400 var(--step-0)/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: var(--serif); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em; }
h2 { font-size: var(--step-3); }
em { font-style: italic; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
address { font-style: normal; }
:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section-tight { padding-block: calc(var(--section) * 0.8); }
.section-paper { background: var(--paper-2); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 100; padding: 0.75rem 1rem; background: var(--white); color: var(--ink); }
.skip-link:focus { top: 1rem; }

/* Type helpers */
.eyebrow {
  margin: 0 0 1.25rem;
  font: 700 0.72rem/1.2 var(--sans);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.eyebrow-red { color: var(--red); }
.eyebrow-soft { color: rgba(255, 253, 249, 0.6); }

/* Buttons & links */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 1.9rem;
  font: 700 0.75rem/1 var(--sans); letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; border: 1px solid transparent; border-radius: 0;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-solid { background: var(--red); color: var(--white); }
.btn-solid:hover { background: var(--ink); }
.btn-ghost { border-color: rgba(255, 253, 249, 0.55); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-outline-light { border-color: var(--line-light); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); }
.btn-small { min-height: 42px; padding: 0 1.3rem; font-size: 0.7rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font: 700 0.75rem/1 var(--sans); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
.link-arrow::after { content: "→"; content: "→" / ""; font-size: 1.1rem; letter-spacing: 0; transition: transform 0.3s var(--ease); }
.link-arrow:hover::after, .card:hover .link-arrow::after { transform: translateX(5px); }
.link-light { color: var(--white); }

/* Header: logo scrolls away with the hero; the two action buttons stay fixed top-right.
   data-theme on .actions flips button colours to suit whatever section is behind them. */
.site-header { position: absolute; inset: 0 0 auto; z-index: 40; }
.header-inner { display: flex; align-items: center; height: var(--header-h); max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.brand img { width: clamp(150px, 9vw + 40px, 260px); }

.actions {
  position: fixed; z-index: 60; top: calc((var(--header-h) - clamp(48px, 0.9vw + 36px, 60px)) / 2);
  right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  display: flex; gap: 0.6rem;
}
.actions .btn, .menu-btn { min-height: clamp(48px, 0.9vw + 36px, 60px); }
.menu-btn {
  display: inline-flex; align-items: center; gap: 0.75rem; padding: 0 1.2rem;
  font: 700 0.72rem/1 var(--sans); letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid; cursor: pointer; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.menu-icon { display: grid; gap: 5px; width: var(--rail-icon, 20px); }
.menu-icon span { display: block; height: 1.5px; background: currentColor; transition: transform 0.3s var(--ease); }
.menu-btn[aria-expanded="true"] .menu-icon span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-icon span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.actions .btn-solid { box-shadow: 0 6px 20px rgba(20, 17, 15, 0.18); }
.actions .btn-solid:hover { background: #8f1a16; }
/* Menu button: solid black everywhere (top bar and side rail), white on hover.
   Over dark sections it gains a fine light outline so it never disappears into the background. */
.menu-btn { color: var(--white); background: var(--ink); border-color: var(--ink); -webkit-backdrop-filter: none; backdrop-filter: none; }
.actions[data-theme="dark"] .menu-btn { border-color: rgba(255, 253, 249, 0.55); }
.actions .menu-btn:hover, .actions .menu-btn[aria-expanded="true"]:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.actions[data-theme="light"] .menu-btn:hover { border-color: var(--ink); }
.actions[data-theme] .menu-btn:focus-visible, .actions .btn:focus-visible { outline: 2px solid var(--red-bright); outline-offset: 3px; box-shadow: 0 0 0 5px var(--white); }

/* Full-screen menu */
.site-menu {
  position: fixed; inset: 0; z-index: 55; overflow-y: auto;
  display: grid; grid-template-columns: 1.2fr 1fr; align-content: center; gap: 3rem;
  padding: calc(var(--header-h) + 2rem) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))) 3rem;
  background: var(--ink); color: rgba(255, 253, 249, 0.75);
}
.site-menu[hidden] { display: none; }
.site-menu-links { display: grid; gap: 0.4rem; }
.site-menu-links a { width: fit-content; font: 500 clamp(2.4rem, 1.6rem + 3vw, 4.8rem)/1.08 var(--serif); color: var(--white); text-decoration: none; transition: color 0.2s; }
.site-menu-links a:hover { color: var(--champagne); }
.site-menu-info { align-self: end; display: grid; gap: 1.6rem; font-size: 0.95rem; }
.site-menu-info a { color: var(--white); }
.site-menu .footer-title { margin-bottom: 0.6rem; }
body.menu-open { overflow: hidden; }

/* Hero */
/* Hero is exactly one screen tall on every device; type and spacing scale with BOTH width and height
   (min of vw- and svh-based sizes) so the banner at the bottom is always in view. */
.hero {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column;
  height: 100vh; height: 100svh; min-height: 0;
  color: var(--white); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #1c1612; }
/* Carousel: slow crossfade with a very gentle settle-in zoom on the incoming slide */
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%;
  opacity: 0; transform: scale(1.05);
  transition: opacity 1.6s ease, transform 8s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide[data-slide="2"] { object-position: center 45%; }
.hero-slide[data-slide="3"] { object-position: 40% 40%; }
.hero-slide[data-slide="4"] { object-position: 55% 40%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 10, 8, 0.82) 0%, rgba(14, 10, 8, 0.55) 45%, rgba(14, 10, 8, 0.1) 100%),
    linear-gradient(0deg, rgba(14, 10, 8, 0.75) 0%, rgba(14, 10, 8, 0) 45%);
}
.hero-inner { flex: 1; min-height: 0; display: flex; flex-direction: column; justify-content: flex-end; padding-top: calc(var(--header-h) + 2svh); padding-bottom: clamp(1.25rem, 6svh, 5.5rem); }
.hero .eyebrow { margin-bottom: clamp(0.6rem, 2.2svh, 1.25rem); }
.hero .eyebrow { color: rgba(255, 253, 249, 0.78); }
.hero h1 {
  max-width: 11ch; margin-bottom: clamp(0.8rem, 2.8svh, 1.6rem);
  color: var(--white); font-size: min(var(--step-4), 10.5svh); font-weight: 500; line-height: 0.95; letter-spacing: -0.02em;
}
.hero h1 em { color: var(--champagne); }
.hero-lede em { font-family: var(--serif); font-size: 1.12em; color: var(--champagne); }
.hero-lede { max-width: 34rem; margin-bottom: clamp(1.1rem, 4svh, 2.4rem); font-size: max(1rem, min(var(--step-1), 2.8svh)); line-height: 1.5; color: rgba(255, 253, 249, 0.88); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 2rem; }

.hero-bar { border-top: 1px solid var(--line-light); background: rgba(14, 10, 8, 0.35); backdrop-filter: blur(6px); }
.hero-bar { flex-shrink: 0; }
.hero-bar-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem 2.5rem; padding-block: clamp(0.6rem, 1.8svh, 1.1rem); font-size: 0.9rem; }
.hero-bar a { text-decoration: none; color: rgba(255, 253, 249, 0.85); }
.hero-bar a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.carousel-controls { display: flex; align-items: center; gap: 0.5rem; }
.carousel-dots { display: flex; }
.carousel-dots button { position: relative; width: 30px; height: 30px; padding: 0; border: 0; background: none; cursor: pointer; }
.carousel-dots button::after { content: ""; position: absolute; left: 6px; right: 6px; top: 14px; height: 2px; background: rgba(255, 253, 249, 0.4); transition: background-color 0.3s ease; }
.carousel-dots button[aria-current="true"]::after { background: var(--white); }
.carousel-dots button:hover::after { background: rgba(255, 253, 249, 0.8); }
.carousel-pause { display: grid; place-items: center; width: 32px; height: 32px; padding: 0; border: 1px solid rgba(255, 253, 249, 0.5); border-radius: 50%; background: none; color: var(--white); cursor: pointer; transition: background-color 0.25s ease, color 0.25s ease; }
.carousel-pause:hover { background: var(--white); color: var(--ink); }
.carousel-pause svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.carousel-pause .icon-play { fill: currentColor; stroke: none; display: none; }
.carousel-pause[aria-pressed="true"] .icon-pause { display: none; }
.carousel-pause[aria-pressed="true"] .icon-play { display: block; }
.status { display: inline-flex; align-items: center; gap: 0.6rem; margin: 0 auto 0 0; color: var(--white); font-weight: 500; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #9a9088; }
.status.is-open .status-dot { background: #6fcf8a; box-shadow: 0 0 0 4px rgba(111, 207, 138, 0.2); }

/* Split sections */
.split-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.split-reverse .split-grid { grid-template-columns: 1.1fr 1fr; }
.split-reverse .split-copy { order: 2; }
.split-copy { max-width: 32rem; }
.split-copy h2 { margin-bottom: 1.8rem; }
.split-copy h2 em, .section-head h2 em { color: var(--red); }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split-reverse .split-media img { aspect-ratio: 5 / 4; }

.signoff { display: flex; flex-direction: column; margin-top: 2.2rem; }
.signoff-sig { width: clamp(150px, 16vw, 200px); margin: 0 0 0.6rem -0.4rem; }
.signoff-name { margin: 0; font: 600 1.6rem/1 var(--serif); color: var(--ink); }
.signoff-role { margin: 0.45rem 0 0; font: 700 0.7rem/1 var(--sans); letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

/* Section heads */
.section-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head-center { margin-inline: auto; text-align: center; }

/* Offer cards */
.offers { background: var(--white); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }
.card { display: flex; flex-direction: column; text-decoration: none; background: var(--paper); }
.card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.9s var(--ease); }
.card { overflow: hidden; }
.card:hover img { transform: scale(1.03); }
.card-body { position: relative; flex: 1; display: flex; flex-direction: column; padding: 1.8rem 1.8rem 2rem; background: var(--paper); }
.card-kicker { margin-bottom: 0.7rem; font: 700 0.7rem/1.2 var(--sans); letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.card h3 { margin-bottom: 0.7rem; font-size: var(--step-2); }
.card .price { margin-left: 0.3rem; color: var(--red); }
.card p:not(.card-kicker) { margin-bottom: 1.6rem; color: var(--text); }
.card .link-arrow { margin-top: auto; }

/* Reviews */
.reviews { background: var(--paper); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 4rem); }
.quote { padding-top: 1.6rem; border-top: 1px solid var(--line); }
.quote blockquote { margin: 0 0 1.4rem; }
.quote blockquote p { margin: 0; font: italic 500 var(--step-1)/1.4 var(--serif); color: var(--ink); }
.quote figcaption { font: 700 0.72rem/1.4 var(--sans); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }
.quote figcaption span { display: block; margin-top: 0.2rem; font-weight: 500; color: var(--muted); letter-spacing: 0.12em; }
.quote figcaption span [role="img"] { display: inline; margin: 0 0.35em 0 0; letter-spacing: 0.08em; }

/* Specials */
.specials { background: var(--ink); color: rgba(255, 253, 249, 0.72); }
.specials-grid { display: grid; grid-template-columns: 0.9fr 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); }
.specials h2 { margin-bottom: 1.4rem; color: var(--red-bright); font-size: var(--step-4); }
.specials-head p { max-width: 20rem; margin-bottom: 2rem; }
.specials h3 { padding-bottom: 1rem; margin-bottom: 0.4rem; border-bottom: 1px solid var(--line-light); font: 700 0.72rem/1 var(--sans); letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255, 253, 249, 0.6); }
.dishes li { display: flex; justify-content: space-between; gap: 1.5rem; padding-block: 1.25rem; border-bottom: 1px solid var(--line-light); }
.dishes h4 { margin-bottom: 0.35rem; font-size: 1.45rem; font-weight: 600; color: var(--white); }
.dishes p { margin: 0; font-size: 0.92rem; line-height: 1.55; }
.dishes span { font: 600 1.35rem/1.1 var(--serif); color: var(--white); }

/* Location */
.location { position: relative; isolation: isolate; display: flex; align-items: center; min-height: clamp(640px, 90vh, 860px); padding-block: var(--section); }
.location-media { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.location-inner { display: flex; justify-content: flex-end; }
.location-card { width: min(100%, 30rem); padding: clamp(2rem, 4vw, 3.2rem); background: var(--white); box-shadow: 0 30px 80px rgba(20, 17, 15, 0.22); }
.location-card h2 { margin-bottom: 1.2rem; font-size: var(--step-3); }
.hours { display: grid; gap: 0.1rem; margin: 1.6rem 0 2rem; font-size: 0.92rem; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; padding-block: 0.55rem; border-bottom: 1px solid var(--line); }
.hours dt { font-weight: 700; color: var(--ink); }
.hours dd { margin: 0; text-align: right; }
.hours .is-today dt, .hours .is-today dd { color: var(--red); }
.location-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem; }

/* Instagram */
.insta { background: var(--paper); padding-bottom: 0; }
.insta-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 2.2rem; }
.insta-head h2 { font-size: var(--step-2); }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.insta-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255, 253, 249, 0.68); font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-block: clamp(4rem, 7vw, 6rem) 3.5rem; }
.footer-brand img { width: clamp(150px, 7vw + 50px, 230px); margin-bottom: 1.2rem; }
.footer-brand p { max-width: 18rem; }
.footer-title { margin-bottom: 1.1rem; font: 700 0.7rem/1 var(--sans); letter-spacing: 0.24em; text-transform: uppercase; color: var(--white); }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-links li + li { margin-top: 0.45rem; }
.social { display: flex; gap: 0.75rem; }
.social a {
  display: grid; place-items: center; width: 46px; height: 46px;
  border: 1px solid var(--line-light); border-radius: 50%; color: var(--white);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}
.site-footer .social a:hover { background: var(--white); color: var(--ink); border-color: var(--white); transform: translateY(-2px); text-decoration: none; }
.social svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.social svg .fill { fill: currentColor; stroke: none; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 2rem; padding-block: 1.6rem 2rem; border-top: 1px solid var(--line-light); font-size: 0.8rem; }
.footer-base p { margin: 0; }

/* Reveal (only when JS is running; content is always visible without it) */
/* Reveals: long, soft expo ease-out so sections settle in rather than pop */
.js .reveal { opacity: 0; transform: translate3d(0, 40px, 0); transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.6s cubic-bezier(0.16, 1, 0.3, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .cards .reveal:nth-child(2), .js .quotes .reveal:nth-child(2), .js .split-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.js .cards .reveal:nth-child(3), .js .quotes .reveal:nth-child(3) { transition-delay: 0.24s; }

/* Responsive */
@media (max-width: 1080px) {
  .specials-grid { grid-template-columns: 1fr 1fr; }
  .specials-head { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .brand img { width: 128px; }
  .site-menu { grid-template-columns: 1fr; align-content: start; }
  .site-menu-info { align-self: start; }

  .hero::after { background: linear-gradient(0deg, rgba(14, 10, 8, 0.9) 0%, rgba(14, 10, 8, 0.55) 55%, rgba(14, 10, 8, 0.3) 100%); }
  .hero-bar-inner { gap: 0 1.25rem; font-size: 0.85rem; }
  .status { order: 0; }
  .carousel-controls { order: 1; }
  .hero-bar a { order: 2; }
  .split-grid, .split-reverse .split-grid { grid-template-columns: 1fr; }
  .split-reverse .split-copy { order: 0; }
  .split-media img, .split-reverse .split-media img { aspect-ratio: 4 / 3; }
  .cards, .quotes { grid-template-columns: 1fr; }
  .card { display: grid; grid-template-columns: 38% 1fr; }
  .card img { height: 100%; aspect-ratio: auto; }
  .card-body { padding: 1.4rem; }
  .location { align-items: flex-end; padding-bottom: 0; min-height: 0; padding-top: 55vw; }
  .location-inner { padding-inline: 0; }
  .location-card { width: 100%; box-shadow: none; }
  .location-media { height: 70vw; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .card { grid-template-columns: 1fr; }
  .card img { aspect-ratio: 16 / 10; height: auto; }
  .specials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.5rem; }
  .footer-brand, .footer-grid > div:nth-child(2) { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Accessibility: comfortable touch targets (WCAG 2.2 target size) */
.link-arrow { min-height: 44px; }
.footer-links a, .site-footer p a, .hero-bar a { display: inline-block; padding-block: 0.25rem; }
@media (max-width: 480px) {
  .actions { gap: 0.45rem; }
  .brand img { width: 112px; }
  .actions .btn { padding: 0 0.85rem; font-size: 0.66rem; letter-spacing: 0.12em; }
  .menu-btn { padding: 0 0.9rem; }
  .menu-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

/* Short screens (landscape phones, small laptops): drop secondary hero lines rather than push the banner off-screen */
@media (max-height: 560px) {
  .hero-lede { display: none; }
  .hero h1 br { display: none; }
  .hero h1 { max-width: none; }
}
@media (max-height: 420px) {
  .hero .eyebrow { display: none; }
  .status { flex-basis: auto; }
}
@media (max-width: 480px) {
  .carousel-dots { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transform: none; transition: opacity 0.01ms; }
}

/* Parallax: JS sets --py (eased, px) on the hero and --p (-1..1 viewport progress) on framed images.
   Transform-only, GPU-composited; switched off entirely for reduced-motion visitors. */
.js .hero-media { transform: translate3d(0, calc(var(--py, 0) * 0.35px), 0); will-change: transform; }
.js .hero-inner { transform: translate3d(0, calc(var(--py, 0) * -0.12px), 0); opacity: var(--hero-fade, 1); will-change: transform, opacity; }
.split-media { overflow: hidden; }
.js .split-media img { transform: translate3d(0, calc(var(--p, 0) * -6%), 0) scale(1.14); will-change: transform; }
.js .location-media { top: -12%; height: 124%; transform: translate3d(0, calc(var(--p, 0) * 9%), 0); will-change: transform; }
.location { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .js .hero-media, .js .hero-inner, .js .split-media img, .js .location-media { transform: none !important; opacity: 1 !important; }
  .js .location-media { top: 0; height: 100%; }
}
@media (max-width: 900px) {
  .js .location-media { top: 0; height: 70vw; transform: none; }
}

/* ================= Inner pages (same tokens, type, spacing and motion as the homepage) ================= */
.site-menu-links a[aria-current="page"] { color: var(--champagne); }

/* Page hero: the homepage hero, shorter, single image */
.hero--page { height: clamp(460px, 76svh, 860px); }
.hero--page .hero-inner { padding-bottom: clamp(2.5rem, 9svh, 6.5rem); }
.hero--page h1 { font-size: min(var(--step-4), 11svh); max-width: 14ch; }

/* Closing booking band */
.cta-band { background: var(--ink); color: rgba(255, 253, 249, 0.72); text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band h2 em { color: var(--champagne); }
.cta-band p { max-width: 34rem; margin: 0 auto 2.2rem; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem 2rem; }

/* Menu page */
.menu-nav { position: sticky; top: 0; z-index: 30; background: rgba(245, 240, 232, 0.94); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.menu-nav ul { display: flex; gap: 0.4rem; overflow-x: auto; padding-block: 0.9rem; scrollbar-width: none; }
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 1.2rem; border: 1px solid var(--line); white-space: nowrap; text-decoration: none; font: 700 0.72rem/1 var(--sans); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease; }
.menu-nav a:hover, .menu-nav a.is-current { background: var(--ink); color: var(--white); border-color: var(--ink); }
.menu-block { scroll-margin-top: 5rem; }
.menu-block-grid { display: grid; grid-template-columns: 0.8fr 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); }
.menu-block-head h2 { margin-bottom: 1.3rem; font-size: var(--step-3); }
.menu-block-head h2 em { color: var(--red); }
.menu-block-head p:not(.eyebrow) { max-width: 22rem; }
.menu-block-head .btn { margin-top: 0.8rem; }
.menu-block-head .link-arrow { margin-top: 0.4rem; }
.menu-downloads { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; margin-top: 1.4rem; }
.menu-col h3 { padding-bottom: 1rem; margin: 0 0 0.4rem; border-bottom: 1px solid var(--line); font: 700 0.72rem/1 var(--sans); letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.menu-col h3:not(:first-child) { margin-top: 2.6rem; }
.menu-block .dishes li { border-bottom-color: var(--line); }
.menu-block .dishes h4 { color: var(--ink); }
.menu-block .dishes p { color: var(--text); }
.menu-block .dishes span { color: var(--ink); white-space: nowrap; }
.menu-block--dark { background: var(--ink); color: rgba(255, 253, 249, 0.72); }
.menu-block--dark .menu-block-head h2 { color: var(--white); }
.menu-block--dark .menu-block-head h2 em { color: var(--red-bright); }
.menu-block--dark .menu-col h3 { border-bottom-color: var(--line-light); color: rgba(255, 253, 249, 0.6); }
.menu-block--dark .dishes li { border-bottom-color: var(--line-light); }
.menu-block--dark .dishes h4, .menu-block--dark .dishes span { color: var(--white); }
.menu-block--dark .dishes p { color: rgba(255, 253, 249, 0.72); }
.menu-block--dark .eyebrow-red { color: #f08a82; }
.menu-block--dark .link-arrow { color: var(--white); }
.allergen { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); font-size: 0.9rem; }

/* Gallery */
.gallery-grid { columns: 3; column-gap: clamp(0.75rem, 1.5vw, 1.25rem); }
.gallery-grid li { break-inside: avoid; margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem); }
.gallery-grid a { display: block; overflow: hidden; background: var(--paper-2); }
.gallery-grid img { width: 100%; transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease; }
.gallery-grid a:hover img { transform: scale(1.04); }
.lightbox { width: 100vw; max-width: 100vw; height: 100vh; max-height: 100vh; margin: 0; padding: 0; border: 0; background: rgba(14, 10, 8, 0.96); color: var(--white); }
.lightbox::backdrop { background: rgba(14, 10, 8, 0.96); }
.lightbox[open] { display: grid; grid-template-rows: 1fr auto; place-items: center; }
.lightbox figure { display: grid; place-items: center; width: 100%; height: 100%; padding: clamp(4.5rem, 8vw, 6rem) clamp(1rem, 7vw, 7rem) 0; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 11rem); object-fit: contain; }
.lightbox figcaption { padding: 1rem 1.5rem 1.6rem; font-size: 0.85rem; color: rgba(255, 253, 249, 0.7); text-align: center; }
.lightbox-btn { position: absolute; display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid rgba(255, 253, 249, 0.5); border-radius: 50%; background: rgba(20, 17, 15, 0.6); color: var(--white); font-size: 1.25rem; cursor: pointer; transition: background-color 0.25s ease, color 0.25s ease; }
.lightbox-btn:hover { background: var(--white); color: var(--ink); }
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* Contact */

@media (max-width: 1080px) {
  .menu-block-grid { grid-template-columns: 1fr 1fr; }
  .menu-block-head { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .gallery-grid { columns: 2; }
}
@media (max-width: 640px) {
  .lightbox-prev, .lightbox-next { top: auto; bottom: 4.2rem; transform: none; }
}
.status--light { margin: 0 0 0.5rem; color: var(--ink); }
.status--light .status-dot { background: #b3aaa1; }
.status--light.is-open .status-dot { background: #2f9e5b; box-shadow: 0 0 0 4px rgba(47, 158, 91, 0.18); }
.split-actions { margin-top: 2rem; }

/* Portrait photos (e.g. Petrit) keep a portrait frame at every size and stay focused on the face */
.split-media--portrait img, .split-reverse .split-media--portrait img { aspect-ratio: 4 / 5; object-position: center 18%; }
@media (max-width: 900px) {
  .split-media--portrait img, .split-reverse .split-media--portrait img { aspect-ratio: 4 / 5; max-height: 78svh; }
}

/* ================= Christmas 2026 ================= */
:root { --gold: #bf9a52; --gold-soft: rgba(191, 154, 82, 0.38); --wine: #6e1512; }

/* Pop-up: split cinematic card on desktop/tablet landscape, bottom sheet on phones.
   Entrance is choreographed (image wipe, then lines rise in sequence); ambient motion settles after a few seconds. */
.xmas {
  --ease-x: cubic-bezier(0.16, 1, 0.3, 1);
  position: fixed; inset: 0; margin: auto; padding: 0; border: 0; overflow: hidden;
  width: min(1080px, calc(100vw - 3rem)); height: min(660px, calc(100svh - 3rem)); max-width: none; max-height: none;
  display: none; grid-template-columns: 1.05fr 1fr;
  background: #120e0c; color: rgba(255, 253, 249, 0.78);
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.6);
}
.xmas::after { content: ""; position: absolute; inset: 10px; pointer-events: none; border: 1px solid var(--gold-soft); z-index: 4; }
.xmas[open] { display: grid; animation: xmas-in 1s var(--ease-x) both; }
.xmas::backdrop { background: radial-gradient(80% 80% at 50% 40%, rgba(40, 14, 10, 0.72), rgba(8, 6, 5, 0.9)); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); animation: xmas-fade 0.8s ease both; }
.xmas.is-closing { animation: xmas-out 0.35s ease both; }
@keyframes xmas-in { from { opacity: 0; transform: translateY(24px) scale(0.985); } to { opacity: 1; transform: none; } }
@keyframes xmas-out { to { opacity: 0; transform: translateY(12px) scale(0.99); } }
@keyframes xmas-fade { from { opacity: 0; } }

/* Media side */
.xmas-media { position: relative; overflow: hidden; background: #1c1411; }
.xmas-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; transform: scale(1.04); }
.xmas[open] .xmas-media img { animation: xmas-wipe 1.4s var(--ease-x) 0.1s both, xmas-zoom 9s var(--ease-x) 0.1s both; }
@keyframes xmas-wipe { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes xmas-zoom { from { transform: scale(1.18); } to { transform: scale(1.04); } }
.xmas-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18, 14, 12, 0) 55%, #120e0c 100%), linear-gradient(0deg, rgba(18, 14, 12, 0.55) 0%, rgba(18, 14, 12, 0) 40%); }

/* Warm bokeh: six soft lights that drift in, then settle */
.xmas-bokeh { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.xmas-bokeh i { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(255, 214, 150, 0.55), rgba(255, 214, 150, 0) 70%); filter: blur(2px); opacity: 0; }
.xmas[open] .xmas-bokeh i { animation: xmas-bokeh 7s var(--ease-x) both; }
.xmas-bokeh i:nth-child(1) { width: 70px; height: 70px; left: 12%; top: 18%; animation-delay: 0.6s !important; }
.xmas-bokeh i:nth-child(2) { width: 40px; height: 40px; left: 64%; top: 12%; animation-delay: 0.9s !important; }
.xmas-bokeh i:nth-child(3) { width: 110px; height: 110px; left: 40%; top: 55%; animation-delay: 1.1s !important; }
.xmas-bokeh i:nth-child(4) { width: 28px; height: 28px; left: 22%; top: 70%; animation-delay: 1.3s !important; }
.xmas-bokeh i:nth-child(5) { width: 54px; height: 54px; left: 76%; top: 40%; animation-delay: 0.8s !important; }
.xmas-bokeh i:nth-child(6) { width: 34px; height: 34px; left: 50%; top: 28%; animation-delay: 1.5s !important; }
@keyframes xmas-bokeh { 0% { opacity: 0; transform: translateY(24px) scale(0.8); } 40% { opacity: 1; } 100% { opacity: 0.55; transform: translateY(-18px) scale(1); } }

/* Gold seal with orbiting text */
.xmas-seal { position: absolute; z-index: 2; left: clamp(1.2rem, 3vw, 2.2rem); bottom: clamp(1.2rem, 3vw, 2.2rem); width: clamp(118px, 12vw, 150px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #3a2a1a, #140f0c 70%); box-shadow: 0 0 0 1px var(--gold-soft), 0 18px 40px rgba(0, 0, 0, 0.45); }
.xmas-seal svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: xmas-orbit 40s linear infinite; }
.xmas-seal text { font: 700 9.5px var(--sans); letter-spacing: 3.1px; fill: var(--gold); }
.xmas-seal p { margin: 0; text-align: center; }
.xmas-seal b { display: block; font: 500 clamp(1.5rem, 1rem + 1vw, 1.9rem)/1 var(--serif); color: #f6e7c4; }
.xmas-seal span { display: block; margin-top: 0.25rem; font: 700 0.56rem/1 var(--sans); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 253, 249, 0.7); }
@keyframes xmas-orbit { to { transform: rotate(360deg); } }

/* Content side */
.xmas-body { position: relative; z-index: 3; display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 4.5vw, 3.6rem) clamp(1.8rem, 4.5vw, 3.8rem); overflow-y: auto; }
.xmas-body > * { opacity: 0; transform: translateY(18px); }
.xmas[open] .xmas-body > * { animation: xmas-rise 1s var(--ease-x) both; animation-delay: calc(0.45s + var(--i, 0) * 0.08s); }
@keyframes xmas-rise { to { opacity: 1; transform: none; } }
.xmas-kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1rem; margin: 0 0 1.3rem; font: 700 0.68rem/1 var(--sans); letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.xmas-count:not(:empty) { padding: 0.45rem 0.7rem; border: 1px solid var(--gold-soft); letter-spacing: 0.18em; color: #f6e7c4; }
.xmas-script { margin: 0 0 0.5rem; font: italic 500 clamp(1.1rem, 0.9rem + 0.6vw, 1.4rem)/1.2 var(--serif); color: var(--champagne); }
.xmas h2 { margin-bottom: 1.2rem; color: var(--white); font-size: clamp(2.5rem, 1.5rem + 3.2vw, 4.3rem); line-height: 0.98; letter-spacing: -0.02em; }
.xmas-foil { display: inline-block; font-style: italic; background: linear-gradient(100deg, #b8893e 0%, #f3dc9e 22%, #c99a4b 40%, #fff1c9 50%, #c99a4b 60%, #e8c67c 80%, #b8893e 100%); background-size: 250% 100%; background-position: 100% 0; -webkit-background-clip: text; background-clip: text; color: transparent; }
.xmas[open] .xmas-foil { animation: xmas-foil 2.6s var(--ease-x) 1.1s both; }
@keyframes xmas-foil { to { background-position: 0 0; } }
.xmas-lede { max-width: 30rem; margin-bottom: 1.4rem; font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem); line-height: 1.6; }
.xmas-ribbon { display: flex; flex-wrap: wrap; gap: 0.35rem 0.9rem; margin-bottom: 1.6rem; padding: 0.9rem 0; border-block: 1px solid rgba(212, 178, 106, 0.22); font: italic 500 1rem/1.35 var(--serif); color: rgba(246, 231, 196, 0.85); }
.xmas-ribbon li { display: inline-flex; align-items: center; gap: 0.9rem; }
.xmas-ribbon li:not(:last-child)::after { content: ""; width: 4px; height: 4px; transform: rotate(45deg); background: var(--gold); opacity: 0.7; }
.xmas-facts { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 1.6rem; margin: 0 0 1.8rem; }
.xmas-facts div { display: flex; flex-direction: column-reverse; }
.xmas-facts dt { font: 500 1.55rem/1 var(--serif); color: var(--white); }
.xmas-facts dd { margin: 0 0 0.35rem; font: 700 0.62rem/1 var(--sans); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 253, 249, 0.55); }
.xmas-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.8rem; }
.xmas .link-arrow { color: var(--white); }
.xmas-book { position: relative; overflow: hidden; min-height: 56px; padding: 0 2.2rem; background: linear-gradient(180deg, #c42a24, #9e1d19); box-shadow: 0 12px 30px rgba(184, 35, 30, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18); }
.xmas-book:hover { background: linear-gradient(180deg, #d4332c, #aa211c); }
.xmas-book::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255, 238, 200, 0.4) 50%, transparent 70%); transform: translateX(-120%); }
.xmas[open] .xmas-book::after { animation: xmas-shine 1.6s ease-in-out 2s 3 both; }
@keyframes xmas-shine { 0% { transform: translateX(-120%); } 60%, 100% { transform: translateX(120%); } }
.xmas-small { margin: 1.4rem 0 0; font-size: 0.82rem; color: rgba(255, 253, 249, 0.58); }
.xmas-later { margin-left: 0.6rem; padding: 0.3rem 0; border: 0; background: none; color: rgba(255, 253, 249, 0.75); font: 500 0.82rem/1 var(--sans); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.xmas-later:hover { color: var(--white); }
.xmas-close { position: absolute; top: 1.3rem; right: 1.3rem; z-index: 5; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--gold-soft); border-radius: 50%; background: rgba(18, 14, 12, 0.7); color: var(--white); cursor: pointer; transition: background-color 0.25s ease, color 0.25s ease, transform 0.4s var(--ease-x); }
.xmas-close:hover { background: var(--white); color: var(--ink); transform: rotate(90deg); }
.xmas :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Tablet portrait and large phones: stacked card */
@media (max-width: 899px) {
  .xmas { grid-template-columns: 1fr; grid-template-rows: minmax(190px, 34%) 1fr; width: min(640px, calc(100vw - 2rem)); height: min(900px, calc(100svh - 2rem)); }
  .xmas-media::after { background: linear-gradient(180deg, rgba(18, 14, 12, 0) 40%, #120e0c 100%); }
  .xmas-body { justify-content: flex-start; padding-top: 1.6rem; }
  .xmas-seal { left: auto; right: 1.4rem; bottom: 0.4rem; width: 112px; }
}
/* Phones: bottom sheet with the booking button pinned */
@keyframes xmas-sheet { from { transform: translateY(100%); } to { transform: none; } }
@media (max-width: 560px) {
  .xmas { inset: auto 0 0 0; margin: 0; width: 100vw; height: auto; max-height: 94svh; grid-template-rows: 26svh auto; border-radius: 22px 22px 0 0; }
  .xmas[open] { animation: xmas-sheet 0.9s var(--ease-x) both; }
  .xmas::after { inset: 8px 8px 0; border-bottom: 0; border-radius: 16px 16px 0 0; }
  .xmas::before { content: ""; position: absolute; top: 10px; left: 50%; z-index: 5; width: 40px; height: 4px; margin-left: -20px; border-radius: 4px; background: rgba(255, 253, 249, 0.4); }
  .xmas-body { padding: 1.3rem 1.3rem 0; }
  .xmas h2 { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  .xmas-ribbon { font-size: 0.92rem; gap: 0.25rem 0.7rem; }
  .xmas-ribbon li:nth-child(n+7) { display: none; }
  .xmas-ribbon li:nth-child(6)::after { display: none; }
  .xmas-facts { gap: 1.1rem; }
  .xmas-facts dt { font-size: 1.3rem; }
  .xmas-actions { position: sticky; bottom: 0; z-index: 2; margin: 0 -1.3rem; padding: 1rem 1.3rem calc(1rem + env(safe-area-inset-bottom)); background: linear-gradient(180deg, rgba(18, 14, 12, 0), #120e0c 30%); gap: 0.8rem 1.2rem; }
  .xmas-book { flex: 1 1 100%; }
  .xmas-actions .link-arrow { margin-inline: auto; }
  .xmas-small { order: -1; margin: 0 0 0.4rem; }
  .xmas-seal { width: 96px; right: 1rem; bottom: 0.2rem; }
  .xmas-close { top: 1rem; right: 1rem; }
}
/* Short landscape screens (phones on their side, small laptops) */
@media (max-height: 560px) and (min-width: 561px) {
  .xmas { grid-template-columns: 0.8fr 1fr; grid-template-rows: none; height: calc(100svh - 1.5rem); width: calc(100vw - 2rem); }
  .xmas-media::after { background: linear-gradient(90deg, rgba(18, 14, 12, 0) 55%, #120e0c 100%); }
  .xmas-body { justify-content: flex-start; padding-block: 1.4rem; }
  .xmas-ribbon, .xmas-script { display: none; }
  .xmas h2 { font-size: 2.2rem; }
  .xmas-seal { width: 96px; left: 1rem; right: auto; bottom: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .xmas[open], .xmas::backdrop, .xmas[open] .xmas-media img, .xmas[open] .xmas-body > *, .xmas[open] .xmas-bokeh i, .xmas-seal svg, .xmas[open] .xmas-foil, .xmas[open] .xmas-book::after { animation: none !important; }
  .xmas-body > * { opacity: 1; transform: none; }
  .xmas-foil { background-position: 0 0; }
  .xmas-bokeh { display: none; }
}

/* Christmas block on the menu page */
.menu-block--festive { position: relative; background: radial-gradient(120% 80% at 85% 0%, rgba(110, 21, 18, 0.55), transparent 60%), var(--ink); }
.menu-block--festive::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.menu-block--festive .eyebrow-red { color: var(--gold); }
.menu-block--festive .menu-block-head h2 em { color: var(--gold); }
.festive-price { margin: 0.2rem 0 1.4rem; font: 500 var(--step-2)/1 var(--serif); color: var(--white); }
.festive-price small { display: block; margin-top: 0.4rem; font: 700 0.7rem/1 var(--sans); letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 253, 249, 0.6); }
.festive-extra { margin-top: 1.6rem; padding: 1rem 1.2rem; border: 1px solid var(--gold-soft); font-size: 0.9rem; }
.festive-extra b { display: block; margin-bottom: 0.3rem; font: 700 0.68rem/1 var(--sans); letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.menu-block .dishes .diet { margin-left: 0.4em; font: 700 0.66rem/1 var(--sans); letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); vertical-align: 0.25em; white-space: nowrap; }
.menu-block .dishes li:has(> div:only-child) h4 { margin-bottom: 0; }
/* Pop-up fit refinements: overflow-safe vertical centring, calmer headline, six dishes in the ribbon */
.xmas { height: min(720px, calc(100svh - 3rem)); }
.xmas-body { justify-content: flex-start; }
.xmas-body > :first-child { margin-top: auto; }
.xmas-body > :last-child { margin-bottom: auto; }
.xmas h2 { font-size: clamp(2.3rem, 1.4rem + 2.6vw, 3.7rem); }
.xmas-ribbon li:nth-child(n+7) { display: none; }
.xmas-ribbon li:nth-child(6)::after { display: none; }
@media (max-width: 560px) { .xmas { height: auto; } }
@media (max-height: 560px) and (min-width: 561px) { .xmas { height: calc(100svh - 1.5rem); } }
@media (min-width: 900px) {
  .xmas { grid-template-columns: 0.88fr 1.12fr; }
  .xmas-body { padding: clamp(1.8rem, 3.4vh, 2.8rem) clamp(1.8rem, 3.4vw, 3rem); }
  .xmas-kicker { margin-bottom: 1rem; }
  .xmas h2 { margin-bottom: 1rem; }
  .xmas-lede { margin-bottom: 1.1rem; }
  .xmas-ribbon { margin-bottom: 1.3rem; padding: 0.75rem 0; font-size: 0.95rem; }
  .xmas-facts { margin-bottom: 1.5rem; }
  .xmas-small { margin-top: 1.1rem; }
}
@media (min-width: 1600px) {
  .xmas { width: min(1280px, calc(100vw - 4rem)); height: min(840px, calc(100svh - 4rem)); }
}
@media (max-width: 899px) and (min-width: 561px) {
  .xmas { height: auto; max-height: calc(100svh - 2rem); grid-template-rows: clamp(200px, 30svh, 320px) auto; }
}
@media (max-width: 899px) and (min-width: 561px) { .xmas { height: fit-content; } }
@media (max-width: 560px) {
  .xmas-small { order: 0; margin: 0; padding: 0 0 1.2rem; text-align: center; }
  .xmas-actions { padding-bottom: 0.9rem; }
}
@media (max-height: 560px) and (min-width: 561px) {
  .xmas { height: calc(100svh - 1.5rem); max-height: none; grid-template-rows: none; }
  .xmas-body > :first-child { margin-top: 0; }
  .xmas-kicker { margin-bottom: 0.7rem; }
  .xmas h2 { margin-bottom: 0.7rem; }
  .xmas-lede { margin-bottom: 0.9rem; font-size: 0.9rem; }
  .xmas-facts { margin-bottom: 1rem; }
  .xmas-facts dt { font-size: 1.2rem; }
  .xmas-small { margin-top: 0.6rem; }
}

/* Christmas pop-up photo (candy cane + bauble): keep the ornaments in frame */
.xmas-media img { object-position: 40% 38%; }
@media (max-width: 899px) { .xmas-media img { object-position: 35% 42%; } }

/* ================= Menu page navigation: refined text tabs (replaces boxed chips) ================= */
.menu-nav { background: rgba(245, 240, 232, 0.9); border-bottom: 1px solid var(--line); }
.menu-nav .wrap { position: relative; }
.menu-nav ul { position: relative; justify-content: center; align-items: center; gap: 0; padding-block: 0; }
.menu-nav li { display: flex; align-items: center; }
.menu-nav li + li::before { content: ""; width: 5px; height: 5px; margin: 0 clamp(0.6rem, 2vw, 1.6rem); transform: rotate(45deg); background: var(--gold); opacity: 0.8; }
.menu-nav a,
.menu-nav a:hover,
.menu-nav a.is-current { min-height: 64px; padding: 0 0.2rem; border: 0; background: none; color: var(--muted); font: 700 0.72rem/1 var(--sans); letter-spacing: 0.24em; }
.menu-nav a:hover, .menu-nav a.is-current { color: var(--ink); }
.menu-nav a { position: relative; transition: color 0.3s ease; }
.menu-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 18px; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: center; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.menu-nav a:hover::after { transform: scaleX(0.5); }
.menu-nav a.is-current::after { transform: scaleX(1); }
.menu-nav a[href="#christmas-menu"] { color: var(--wine); }
.menu-nav a[href="#christmas-menu"]::after { background: var(--gold); }
@media (max-width: 640px) {
  .menu-nav ul { justify-content: flex-start; padding-inline: 0.2rem; -webkit-mask-image: linear-gradient(90deg, #000 85%, transparent); mask-image: linear-gradient(90deg, #000 85%, transparent); }
  .menu-nav a, .menu-nav a:hover, .menu-nav a.is-current { min-height: 56px; letter-spacing: 0.2em; }
  .menu-nav a::after { bottom: 15px; }
}

/* Section actions: primary button and secondary link side by side, aligned */
.menu-downloads { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 1rem 1.8rem; margin-top: 1.8rem; }
.menu-block-head .menu-downloads .btn, .menu-block-head .menu-downloads .link-arrow { margin-top: 0; }

/* Snowfall canvas (see site.js): sits above backgrounds/photos, below readable content */
[data-snow] { position: relative; }
.snow-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.menu-block--festive > .wrap { position: relative; z-index: 3; }
.xmas .snow-canvas { z-index: 2; }
.xmas-body, .xmas-close { z-index: 3; }
@media (prefers-reduced-motion: reduce) { .snow-canvas { display: none; } }

/* ================= Signature call-to-action (replaces rectangular button boxes) =================
   Spaced label + solid circular arrow. Applies to all in-page buttons, the pop-up and closing bands.
   The floating Book/Menu rail keeps solid buttons: it sits over moving content and must stay legible. */
main .btn, .site-footer .btn, .xmas .btn {
  --cta-dot: var(--red); --cta-ink: var(--ink);
  position: relative; min-height: 52px; padding: 0; gap: 1.1rem;
  border: 0; border-radius: 0; background: none; box-shadow: none; color: var(--cta-ink);
  font: 700 0.74rem/1 var(--sans); letter-spacing: 0.2em; text-transform: uppercase;
}
main .btn::after, .site-footer .btn::after, .xmas .btn::after {
  content: "→"; display: grid; place-items: center; flex-shrink: 0; order: 2;
  position: static; inset: auto; transform: none; animation: none;
  width: 48px; height: 48px; border-radius: 50%; background: var(--cta-dot); color: var(--white);
  font: 400 1.05rem/1 var(--sans); letter-spacing: 0;
  transition: background-color 0.35s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
main .btn:hover, .site-footer .btn:hover, .xmas .btn:hover { background: none; color: var(--cta-ink); }
main .btn:hover::after, .site-footer .btn:hover::after, .xmas .btn:hover::after { transform: translateX(4px); background: var(--cta-hover, var(--ink)); box-shadow: 0 10px 24px rgba(20, 17, 15, 0.18); }
/* Dark backgrounds: light label, circle turns white on hover */
.hero .btn, .specials .btn, .cta-band .btn, .menu-block--dark .btn, .xmas .btn { --cta-ink: var(--white); --cta-hover: var(--white); }
.hero .btn:hover::after, .specials .btn:hover::after, .cta-band .btn:hover::after, .menu-block--dark .btn:hover::after, .xmas .btn:hover::after { color: var(--ink); }
/* Secondary outline variant: hollow circle */
main .btn-outline-light::after { background: transparent; box-shadow: inset 0 0 0 1px rgba(255, 253, 249, 0.55); }
/* Pop-up: retire the boxed gradient + shimmer, keep the signature style */
.xmas .xmas-book, .xmas .xmas-book:hover { min-height: 52px; padding: 0; background: none; box-shadow: none; }
.xmas .xmas-book::after { background: linear-gradient(180deg, #c42a24, #9e1d19); box-shadow: 0 10px 26px rgba(184, 35, 30, 0.4); }
@media (max-width: 560px) { .xmas .xmas-book { flex: 0 1 auto; } .xmas-actions { justify-content: space-between; } .xmas-actions .link-arrow { margin-inline: 0; } }
main .btn:focus-visible, .xmas .btn:focus-visible { outline-offset: 6px; }

/* ================= Menu tabs v3: no band, overlaid on the sections, colours follow the section behind ================= */
.menu-nav { --nav-h: 64px; height: var(--nav-h); margin-bottom: calc(var(--nav-h) * -1); background: transparent; border-bottom: 0; -webkit-backdrop-filter: none; backdrop-filter: none; transition: background 0.5s ease; }
.menu-nav[data-theme="dark"] { background: linear-gradient(180deg, rgba(20, 17, 15, 0.92) 0%, rgba(20, 17, 15, 0.55) 60%, rgba(20, 17, 15, 0) 100%); }
.menu-nav[data-theme="light"] { background: linear-gradient(180deg, rgba(245, 240, 232, 0.95) 0%, rgba(245, 240, 232, 0.6) 60%, rgba(245, 240, 232, 0) 100%); }
.menu-nav[data-theme="paper"] { background: linear-gradient(180deg, rgba(236, 228, 216, 0.95) 0%, rgba(236, 228, 216, 0.6) 60%, rgba(236, 228, 216, 0) 100%); }
.menu-nav a, .menu-nav a:hover, .menu-nav a.is-current, .menu-nav a[href="#christmas-menu"] { transition: color 0.4s ease; }
.menu-nav[data-theme="dark"] a { color: rgba(255, 253, 249, 0.62); }
.menu-nav[data-theme="dark"] a:hover, .menu-nav[data-theme="dark"] a.is-current { color: #f6e7c4; }
.menu-nav[data-theme="light"] a, .menu-nav[data-theme="paper"] a { color: rgba(20, 17, 15, 0.5); }
.menu-nav[data-theme="light"] a:hover, .menu-nav[data-theme="light"] a.is-current,
.menu-nav[data-theme="paper"] a:hover, .menu-nav[data-theme="paper"] a.is-current { color: var(--ink); }
.menu-nav a::after, .menu-nav a[href="#christmas-menu"]::after { background: var(--gold); }
.menu-nav li + li::before { opacity: 0.6; }
/* first menu block starts under the overlaid bar: give it breathing room at the top */
.menu-nav + .menu-block { padding-top: calc(var(--section) + 1.5rem); }
/* Retire the old pop-up shimmer on the new circular CTA (it was sliding the circle over the label) */
.xmas[open] .btn.xmas-book::after { animation: none; transform: none; }
.xmas[open] .btn.xmas-book:hover::after { transform: translateX(4px); }
.xmas .xmas-book { overflow: visible; }
/* Tabs: solid section-coloured veil behind the labels, feathered only at the bottom edge */
.menu-nav { --nav-h: 72px; }
.menu-nav[data-theme="dark"] { background: linear-gradient(180deg, #14110f 0%, #14110f 68%, rgba(20, 17, 15, 0) 100%); }
.menu-nav[data-theme="light"] { background: linear-gradient(180deg, #f5f0e8 0%, #f5f0e8 68%, rgba(245, 240, 232, 0) 100%); }
.menu-nav[data-theme="paper"] { background: linear-gradient(180deg, #ece4d8 0%, #ece4d8 68%, rgba(236, 228, 216, 0) 100%); }
.menu-nav ul { height: 56px; }
.menu-nav a, .menu-nav a:hover, .menu-nav a.is-current { min-height: 56px; }
.menu-nav a::after { bottom: 14px; }

/* ================= Pop-up countdown: rolling date-wheel digits + sweeping seconds ring ================= */
.xmas-kicker span + span { color: rgba(255, 253, 249, 0.6); }
.xmas-kicker span + span::before { content: "·"; margin-right: 1rem; color: var(--gold); }
.xmas-clock { display: flex; align-items: flex-start; gap: clamp(0.7rem, 1.8vw, 1.4rem); margin: 0 0 1.8rem; }
.xmas-unit { position: relative; display: flex; flex-direction: column; align-items: center; min-width: 3.2rem; }
.xmas-digits { display: flex; height: 1em; overflow: hidden; font: 500 clamp(2.2rem, 1.6rem + 1.6vw, 3rem)/1 var(--serif); font-variant-numeric: lining-nums tabular-nums; letter-spacing: 0.01em;
  background: linear-gradient(180deg, #fff3d6 0%, #e7c67f 55%, #b8893e 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.xmas-digit { display: block; width: 0.56em; height: 1em; overflow: hidden; text-align: center; }
.xmas-digit > span { display: flex; flex-direction: column; transition: transform 0.75s cubic-bezier(0.65, 0, 0.2, 1); }
.xmas-digit > span > i { display: block; height: 1em; font-style: normal; }
.xmas-label { margin-top: 0.6rem; font: 700 0.56rem/1 var(--sans); letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255, 253, 249, 0.55); }
.xmas-sep { align-self: stretch; width: 1px; margin: 0.35rem 0 1.4rem; background: linear-gradient(180deg, transparent, var(--gold-soft), transparent); }
/* Seconds: fine gold ring with a continuous sweep */
.xmas-unit--sec { padding: 0 0.3rem; }
.xmas-ring { position: absolute; left: 50%; top: calc(0.5em * var(--ring-scale, 1)); width: clamp(4.1rem, 3.2rem + 2.2vw, 5.1rem); aspect-ratio: 1; transform: translate(-50%, -26%) rotate(-90deg); overflow: visible; pointer-events: none; }
.xmas-ring circle { fill: none; stroke-width: 1.2; }
.xmas-ring-track { stroke: rgba(212, 178, 106, 0.18); }
.xmas-ring-sweep { stroke: var(--gold); stroke-linecap: round; stroke-dasharray: 289.03; stroke-dashoffset: 289.03; filter: drop-shadow(0 0 3px rgba(231, 198, 127, 0.55)); }
.xmas-unit--sec .xmas-digits, .xmas-unit--sec .xmas-label { position: relative; z-index: 1; }
.xmas-unit--sec .xmas-label { margin-top: 1.25rem; }
@media (max-width: 560px) {
  .xmas-clock { gap: 0.55rem; margin-bottom: 1.2rem; }
  .xmas-unit { min-width: 2.6rem; }
  .xmas-digits { font-size: 2rem; }
  .xmas-ring { width: 3.6rem; }
  .xmas-unit--sec .xmas-label { margin-top: 1rem; }
}
@media (max-height: 560px) and (min-width: 561px) {
  .xmas-clock { margin-bottom: 1rem; }
  .xmas-digits { font-size: 1.9rem; }
  .xmas-ring { width: 3.4rem; }
}
@media (prefers-reduced-motion: reduce) { .xmas-digit > span { transition: none; } }
/* Countdown numerals: solid warm gold (gradient text doesn't survive the rolling layers) */
.xmas-digits { background: none; -webkit-background-clip: border-box; background-clip: border-box; color: #f0d9a0; text-shadow: 0 0 22px rgba(231, 198, 127, 0.28); }
.xmas-digit > span > i { color: inherit; }

/* Book for Christmas: gold-framed button, gold label + gold arrow (no red circle). Pop-up and Christmas menu section. */
.xmas .btn.xmas-book, .menu-block--festive .btn {
  min-height: 54px; padding: 0 1.9rem; gap: 0.9rem;
  border: 1px solid var(--gold); background: rgba(212, 178, 106, 0.04); color: var(--gold); box-shadow: none;
  transition: background-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.xmas .btn.xmas-book::after, .menu-block--festive .btn::after {
  width: auto; height: auto; border-radius: 0; background: none; box-shadow: none; color: currentColor;
  font: 400 1.05rem/1 var(--sans); transform: none;
}
.xmas .btn.xmas-book:hover, .menu-block--festive .btn:hover { background: var(--gold); color: var(--ink); box-shadow: 0 10px 28px rgba(212, 178, 106, 0.25); }
.xmas .btn.xmas-book:hover::after, .menu-block--festive .btn:hover::after { background: none; box-shadow: none; color: currentColor; transform: translateX(4px); }
@media (max-width: 560px) { .xmas .btn.xmas-book { flex: 1 1 100%; justify-content: center; } .xmas-actions .link-arrow { margin-inline: auto; } }

/* Book for Christmas: single gold frame with a soft breathing glow (no second focus line) */
@keyframes gold-breathe {
  from { box-shadow: 0 0 10px rgba(212, 178, 106, 0.16), inset 0 0 10px rgba(212, 178, 106, 0.06); }
  to   { box-shadow: 0 0 22px rgba(231, 198, 127, 0.32), inset 0 0 14px rgba(231, 198, 127, 0.12); }
}
.xmas .btn.xmas-book, .menu-block--festive .btn {
  outline: none; text-shadow: 0 0 10px rgba(231, 198, 127, 0.45);
  animation: gold-breathe 3.6s ease-in-out infinite alternate;
}
.xmas .btn.xmas-book::after, .menu-block--festive .btn::after { text-shadow: 0 0 10px rgba(231, 198, 127, 0.55); }
.xmas .btn.xmas-book:hover, .menu-block--festive .btn:hover { animation: none; text-shadow: none; box-shadow: 0 0 30px rgba(231, 198, 127, 0.4); }
.xmas .btn.xmas-book:hover::after, .menu-block--festive .btn:hover::after { text-shadow: none; }
.xmas .btn.xmas-book:focus-visible, .menu-block--festive .btn:focus-visible { outline: none; animation: none; box-shadow: 0 0 0 3px rgba(212, 178, 106, 0.35), 0 0 26px rgba(231, 198, 127, 0.35); }
@media (prefers-reduced-motion: reduce) { .xmas .btn.xmas-book, .menu-block--festive .btn { animation: none; box-shadow: 0 0 16px rgba(212, 178, 106, 0.24), inset 0 0 12px rgba(212, 178, 106, 0.08); } }

/* Price seal: Christmas burgundy (matches the Menu Festivo section's wine tone) */
.xmas-seal { background: radial-gradient(circle at 34% 28%, #9a2a24 0%, #6e1512 38%, #3e0c0a 72%, #240706 100%); box-shadow: 0 0 0 1px var(--gold-soft), 0 18px 40px rgba(0, 0, 0, 0.5), inset 0 0 18px rgba(0, 0, 0, 0.35); }
/* Price seal: softened, translucent burgundy glass (photo glows through) */
.xmas-seal {
  background: radial-gradient(circle at 34% 28%, rgba(154, 42, 36, 0.55) 0%, rgba(110, 21, 18, 0.45) 45%, rgba(46, 10, 9, 0.55) 100%);
  -webkit-backdrop-filter: blur(6px) saturate(120%); backdrop-filter: blur(6px) saturate(120%);
  box-shadow: 0 0 0 1px rgba(212, 178, 106, 0.3), 0 14px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 238, 200, 0.12);
}

/* Footer emblem: the Bella Vista gondolier (from the live site's footer) */
.footer-emblem { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 4vw, 2.5rem); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-emblem::before, .footer-emblem::after { content: ""; flex: 1; max-width: 220px; height: 1px; background: linear-gradient(90deg, transparent, rgba(239, 225, 198, 0.35)); }
.footer-emblem::after { background: linear-gradient(90deg, rgba(239, 225, 198, 0.35), transparent); }
.footer-emblem img { width: clamp(150px, 14vw, 210px); height: auto; opacity: 0.9; }
.footer-emblem + .footer-grid { padding-top: clamp(2.5rem, 4vw, 3.5rem); }

/* Typography wrapping: balanced headings, no stranded words in body copy, key phrases kept whole */
h1, h2, h3, .xmas h2, .hero h1 { text-wrap: balance; }
p, li, blockquote p, dd, .hero-lede, .xmas-lede { text-wrap: pretty; }
.nowrap { white-space: nowrap; }
@media (max-width: 360px) { .nowrap { white-space: normal; } }

/* Tabs over the Christmas section: a whisper-light, frosted veil that feathers into the burgundy (no visible band) */
.menu-nav[data-theme="festive"] {
  background: linear-gradient(180deg, rgba(20, 17, 15, 0.42) 0%, rgba(20, 17, 15, 0.2) 55%, rgba(20, 17, 15, 0) 100%);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0, 0, 0, 0) 100%); mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0, 0, 0, 0) 100%);
}
.menu-nav[data-theme="festive"] a { color: rgba(255, 253, 249, 0.66); }
.menu-nav[data-theme="festive"] a:hover, .menu-nav[data-theme="festive"] a.is-current { color: #f6e7c4; }
/* Soften the hero → Christmas join too: the section's top edge fades up from the hero's shadow */
.menu-block--festive { background: linear-gradient(180deg, rgba(20, 17, 15, 1) 0%, rgba(20, 17, 15, 0) 180px), radial-gradient(120% 80% at 85% 0%, rgba(110, 21, 18, 0.55), transparent 60%), var(--ink); }
/* Menu page: hero photo melts into the Christmas section (no hard edge at the join) */
.hero--page:has(+ .menu-nav)::after {
  background:
    linear-gradient(90deg, rgba(14, 10, 8, 0.82) 0%, rgba(14, 10, 8, 0.5) 45%, rgba(14, 10, 8, 0.1) 100%),
    linear-gradient(0deg, #14110f 0%, rgba(20, 17, 15, 0.85) 12%, rgba(14, 10, 8, 0) 55%);
}
/* Button labels never wrap */
.btn, .link-arrow { white-space: nowrap; }
.menu-downloads { flex-wrap: wrap; }

/* ================= Arrows: no red circles anywhere; every CTA arrow angled at 45° (↗) ================= */
main .btn::after, .site-footer .btn::after, .xmas .btn::after,
.xmas .btn.xmas-book::after, .menu-block--festive .btn::after {
  width: auto; height: auto; border-radius: 0; background: none; box-shadow: none; color: currentColor;
  font: 400 1.1rem/1 var(--sans); transform: rotate(-45deg);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
main .btn:hover::after, .site-footer .btn:hover::after, .xmas .btn:hover::after,
.hero .btn:hover::after, .specials .btn:hover::after, .cta-band .btn:hover::after, .menu-block--dark .btn:hover::after,
.xmas .btn.xmas-book:hover::after, .menu-block--festive .btn:hover::after, .xmas[open] .btn.xmas-book:hover::after {
  background: none; box-shadow: none; color: currentColor; transform: translate(3px, -3px) rotate(-45deg);
}
main .btn-outline-light::after { box-shadow: none; }
main .btn { gap: 0.8rem; }
.link-arrow::after { display: inline-block; transform: rotate(-45deg); }
.link-arrow:hover::after, .card:hover .link-arrow::after { transform: translate(3px, -3px) rotate(-45deg); }

/* Hero italic highlights in the same gold foil as the pop-up's "all'italiana" */
.hero h1 em, .hero-lede em {
  background: linear-gradient(100deg, #b8893e 0%, #f3dc9e 22%, #c99a4b 40%, #fff1c9 50%, #c99a4b 60%, #e8c67c 80%, #b8893e 100%);
  background-size: 100% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

/* Arrows back to horizontal (→); still no circles. Hover: slide right. */
main .btn::after, .site-footer .btn::after, .xmas .btn::after,
.xmas .btn.xmas-book::after, .menu-block--festive .btn::after, .link-arrow::after { transform: none; }
main .btn:hover::after, .site-footer .btn:hover::after, .xmas .btn:hover::after,
.hero .btn:hover::after, .specials .btn:hover::after, .cta-band .btn:hover::after, .menu-block--dark .btn:hover::after,
.xmas .btn.xmas-book:hover::after, .menu-block--festive .btn:hover::after, .xmas[open] .btn.xmas-book:hover::after,
.link-arrow:hover::after, .card:hover .link-arrow::after { transform: translateX(4px); }



/* Gold foil with a slow, subtle drift of light (hero "by the water", "bella vista", pop-up "all'italiana") + soft glow */
@keyframes gold-drift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
.hero h1 em, .hero-lede em, .xmas-foil, .xmas[open] .xmas-foil {
  background: linear-gradient(100deg, #b8893e 0%, #e9cf8f 18%, #c99a4b 34%, #fbecc4 50%, #c99a4b 66%, #e9cf8f 82%, #b8893e 100%);
  background-size: 260% 100%; background-position: 0% 50%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 10px rgba(231, 198, 127, 0.28));
  animation: gold-drift 10s ease-in-out infinite alternate;
}
.hero-lede em { filter: drop-shadow(0 0 6px rgba(231, 198, 127, 0.3)); }
@media (prefers-reduced-motion: reduce) {
  .hero h1 em, .hero-lede em, .xmas-foil, .xmas[open] .xmas-foil { animation: none; background-position: 35% 50%; }
}

/* Deeper, antique gold (darker foil, muted highlight, warmer glow) */
.hero h1 em, .hero-lede em, .xmas-foil, .xmas[open] .xmas-foil {
  background-image: linear-gradient(100deg, #8a6428 0%, #c49a4f 18%, #9c7433 34%, #dcbc78 50%, #9c7433 66%, #c49a4f 82%, #8a6428 100%);
  filter: drop-shadow(0 0 9px rgba(196, 150, 70, 0.3));
}
.hero-lede em { filter: drop-shadow(0 0 6px rgba(196, 150, 70, 0.32)); }
.xmas-digits { color: #d0aa62; text-shadow: 0 0 20px rgba(196, 150, 70, 0.26); }
.xmas-seal b { color: #e4c98f; }

/* Sharper, more impactful gold: semibold italic, crisp edge definition, higher-contrast polished foil */
.hero h1 em, .hero-lede em, .xmas-foil, .xmas[open] .xmas-foil {
  font-weight: 600;
  background-image: linear-gradient(100deg, #7a5520 0%, #cfa75a 16%, #8c6426 32%, #f0d595 48%, #b88a3e 58%, #d9b46a 78%, #7a5520 100%);
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.45)) drop-shadow(0 0 4px rgba(196, 150, 70, 0.22));
  -webkit-text-stroke: 0.25px rgba(122, 85, 32, 0.55);
}
.hero-lede em { filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.45)); -webkit-text-stroke: 0; }
.xmas-digits { color: #d8b265; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45), 0 0 10px rgba(196, 150, 70, 0.2); }
/* "bella vista" in the hero intro: identical sharp gold finish to "by the water" */
.hero-lede em { filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.45)) drop-shadow(0 0 4px rgba(196, 150, 70, 0.22)); -webkit-text-stroke: 0.2px rgba(122, 85, 32, 0.55); }

/* Hero italic highlights: back to the original soft pink, plain colour (no foil, glow, stroke or animation) */
.hero h1 em, .hero-lede em {
  background: none; -webkit-background-clip: border-box; background-clip: border-box;
  color: #f3d9c2; font-weight: 500; filter: none; -webkit-text-stroke: 0; animation: none;
}

/* Header actions scroll away with the page (no sticky side rail); the open menu keeps them pinned so Close stays reachable */
.actions { position: absolute; }
body.menu-open .actions { position: fixed; }
/* Menu button: no outline, just solid black (hover still turns white) */
.actions .menu-btn, .actions[data-theme="dark"] .menu-btn, .actions[data-theme="light"] .menu-btn { border-color: transparent; }
.actions .menu-btn:hover, .actions[data-theme] .menu-btn:hover { border-color: transparent; }

/* ================= Party & event enquiry pop-up ================= */
.enquiry {
  position: fixed; inset: 0; margin: auto; padding: 0; border: 0;
  width: min(880px, calc(100vw - 3rem)); max-width: none; max-height: calc(100svh - 3rem);
  background: var(--paper); color: var(--text); overflow: auto; overscroll-behavior: contain;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}
.enquiry[open] { animation: xmas-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.enquiry::backdrop { background: rgba(14, 10, 8, 0.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.enquiry-form, .enquiry-done { padding: clamp(2rem, 4.5vw, 3.6rem); }
.enquiry-head { max-width: 34rem; margin-bottom: 1.8rem; }
.enquiry-head h2, .enquiry-done h2 { margin-bottom: 0.8rem; font-size: clamp(2.2rem, 1.6rem + 2vw, 3.2rem); }
.enquiry-head h2 em, .enquiry-done h2 em { color: var(--red); }
.enquiry-summary { margin: 0 0 1.4rem; padding: 0.9rem 1.1rem; border-left: 2px solid var(--red); background: rgba(184, 35, 30, 0.06); color: var(--ink); font-size: 0.92rem; }
.enquiry-group { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem 2rem; margin: 0 0 2rem; padding: 0; border: 0; }
.enquiry-group legend { grid-column: 1 / -1; margin-bottom: 1rem; padding: 0; font: 700 0.7rem/1 var(--sans); letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.field { display: flex; flex-direction: column; min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field label, .field-label { margin-bottom: 0.45rem; font: 700 0.68rem/1.2 var(--sans); letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); }
.field label span[aria-hidden], .choice span[aria-hidden] { color: var(--red); }
.field input:not([type="radio"]):not([type="checkbox"]), .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 0.6rem 0; border: 0; border-bottom: 1px solid rgba(20, 17, 15, 0.3); border-radius: 0;
  background: transparent; color: var(--ink); font: 400 1.02rem/1.4 var(--sans); transition: border-color 0.25s ease;
  -webkit-appearance: none; appearance: none;
}
.field select { background: linear-gradient(45deg, transparent 50%, var(--ink) 50%) calc(100% - 12px) 50% / 6px 6px no-repeat, linear-gradient(135deg, var(--ink) 50%, transparent 50%) calc(100% - 7px) 50% / 6px 6px no-repeat; padding-right: 1.6rem; cursor: pointer; }
.field textarea { min-height: 88px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--ink); box-shadow: 0 1px 0 var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: rgba(20, 17, 15, 0.38); }
.field [aria-invalid="true"] { border-bottom-color: var(--red) !important; box-shadow: 0 1px 0 var(--red); }
.field-error { min-height: 1.1em; margin: 0.35rem 0 0; font-size: 0.8rem; color: var(--red); }
.field-error:empty { min-height: 0; margin: 0; }
.choice-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.choice { display: inline-flex; align-items: center; gap: 0.6rem; cursor: pointer; font: 500 0.92rem/1.3 var(--sans) !important; letter-spacing: 0 !important; text-transform: none !important; color: var(--text) !important; }
.choice-row .choice { padding: 0.55rem 0.95rem; border: 1px solid rgba(20, 17, 15, 0.22); transition: border-color 0.25s ease, background-color 0.25s ease; }
.choice-row .choice:has(input:checked) { border-color: var(--ink); background: rgba(20, 17, 15, 0.05); color: var(--ink) !important; }
.choice input { width: 16px; height: 16px; margin: 0; accent-color: var(--ink); }
.consent { margin-top: 1.4rem; }
.enquiry-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.enquiry-submit { display: inline-flex; align-items: center; gap: 0.8rem; min-height: 54px; padding: 0 2rem; border: 1px solid var(--ink); background: var(--ink); color: var(--white); font: 700 0.74rem/1 var(--sans); letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background-color 0.3s ease, color 0.3s ease; }
.enquiry-submit::after { content: "→"; font: 400 1.05rem/1 var(--sans); letter-spacing: 0; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.enquiry-submit:hover { background: transparent; color: var(--ink); }
.enquiry-submit:hover::after { transform: translateX(4px); }
.enquiry-note { flex: 1 1 18rem; margin: 0; font-size: 0.85rem; color: var(--muted); }
.enquiry-close { position: absolute; top: 1.1rem; right: 1.1rem; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(20, 17, 15, 0.2); border-radius: 50%; background: var(--paper); color: var(--ink); cursor: pointer; transition: background-color 0.25s ease, color 0.25s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.enquiry-close:hover { background: var(--ink); color: var(--white); transform: rotate(90deg); }
.enquiry :focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.enquiry-done { max-width: 38rem; }
.enquiry-done .enquiry-submit { margin-top: 1rem; }
main [data-enquiry-open] { cursor: pointer; }
@media (max-width: 640px) {
  .enquiry { inset: auto 0 0 0; margin: 0; width: 100vw; max-height: 94svh; border-radius: 20px 20px 0 0; }
  .enquiry[open] { animation: xmas-sheet 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .enquiry-form, .enquiry-done { padding: 2.4rem 1.3rem 1.6rem; }
  .enquiry-group { grid-template-columns: 1fr; }
  .enquiry-submit { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .enquiry[open] { animation: none; } }

/* Enquiry form: Dojo allergen tags */
.field-hint { margin: 0 0 0.8rem; font-size: 0.85rem; color: var(--muted); }
.tag-search input { width: 100%; min-height: 44px; margin-bottom: 0.9rem; padding: 0.5rem 0 0.5rem 1.8rem; border: 0; border-bottom: 1px solid rgba(20, 17, 15, 0.3); background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314110f' stroke-width='1.6' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cpath d='m16 16 4 4'/%3E%3C/svg%3E") no-repeat 0 50% / 18px; color: var(--ink); font: 400 1rem/1.4 var(--sans); -webkit-appearance: none; appearance: none; }
.tag-search input:focus { outline: none; border-bottom-color: var(--ink); box-shadow: 0 1px 0 var(--ink); }
.tag-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { position: relative; display: inline-flex; align-items: center; cursor: pointer; }
.tag[hidden] { display: none; }
.tag input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.tag span { display: inline-flex; align-items: center; gap: 0.45rem; min-height: 38px; padding: 0 0.95rem; border: 1px solid rgba(20, 17, 15, 0.22); border-radius: 999px; font: 500 0.88rem/1 var(--sans); color: var(--text); transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
.tag:hover span { border-color: var(--ink); }
.tag input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--white); }
.tag input:checked + span::before { content: "✓"; font-size: 0.8rem; }
.tag input:focus-visible + span { outline: 2px solid var(--red); outline-offset: 2px; }
.tag-none span { border-style: dashed; }
.tag-empty { margin: 0.4rem 0 0; font-size: 0.85rem; color: var(--muted); }
.tag-selected { min-height: 1.2em; margin: 0.8rem 0 0; font-size: 0.85rem; color: var(--ink); }
/* Allergen tags read exactly as in Dojo (sentence case, not the uppercase field-label style) */
.tags-field label.tag { margin: 0; font: inherit; letter-spacing: 0; text-transform: none; color: inherit; }
.tag span { letter-spacing: 0.01em; text-transform: none; }

/* Enquiry form: honeypot (hidden from people) and consent links */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.consent a:hover { color: var(--red); }

/* Gallery: premium warm black with soft pools of light (candle-warm top-left, a whisper of burgundy bottom-right) */
.gallery-section {
  background:
    radial-gradient(70% 55% at 12% 8%, rgba(120, 82, 44, 0.22), transparent 70%),
    radial-gradient(60% 50% at 92% 88%, rgba(110, 21, 18, 0.2), transparent 70%),
    radial-gradient(90% 70% at 50% 45%, rgba(255, 240, 215, 0.025), transparent 75%),
    #0e0b0a;
}
.gallery-section .gallery-grid a { background: #1a1512; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35); }
.gallery-section .gallery-grid a:hover img { transform: scale(1.04); }
.gallery-section .gallery-grid a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
/* Hero melts into the black, and the closing band continues it behind a fine gold hairline */
.hero--page:has(+ .gallery-section)::after {
  background:
    linear-gradient(90deg, rgba(14, 10, 8, 0.82) 0%, rgba(14, 10, 8, 0.5) 45%, rgba(14, 10, 8, 0.1) 100%),
    linear-gradient(0deg, #0e0b0a 0%, rgba(14, 11, 10, 0.85) 12%, rgba(14, 10, 8, 0) 55%);
}
.gallery-section + .lightbox + .cta-band, .gallery-section ~ .cta-band { background: #0e0b0a; border-top: 1px solid rgba(191, 154, 82, 0.28); }
/* Gallery: begin in pure black so the hero → gallery join is invisible */
.gallery-section {
  background:
    linear-gradient(180deg, #0e0b0a 0, rgba(14, 11, 10, 0) 220px),
    radial-gradient(70% 55% at 12% 8%, rgba(120, 82, 44, 0.22), transparent 70%),
    radial-gradient(60% 50% at 92% 88%, rgba(110, 21, 18, 0.2), transparent 70%),
    radial-gradient(90% 70% at 50% 45%, rgba(255, 240, 215, 0.025), transparent 75%),
    #0e0b0a;
}
/* Longer, gentler dissolve at the bottom of page heroes that lead into dark sections */
.hero--page:has(+ .gallery-section)::after, .hero--page:has(+ .menu-nav)::after {
  background:
    linear-gradient(90deg, rgba(14, 10, 8, 0.8) 0%, rgba(14, 10, 8, 0.45) 45%, rgba(14, 10, 8, 0.08) 100%),
    linear-gradient(0deg, #0e0b0a 0%, rgba(14, 11, 10, 0.96) 8%, rgba(14, 11, 10, 0.82) 20%, rgba(14, 11, 10, 0.5) 38%, rgba(14, 11, 10, 0.18) 58%, rgba(14, 11, 10, 0) 75%);
}
/* Close the sub-pixel seam at the bottom of page heroes (photo was peeking through a fractional-pixel gap) */
.hero--page::after { bottom: -2px; }
.hero--page + section, .hero--page + .menu-nav { margin-top: -1px; }

/* ================= Gallery mosaic: seamless, interlocking; spotlight on hover ================= */
.gallery-section .wrap { max-width: min(var(--max), 1500px); }
.gallery-grid { columns: auto; display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: clamp(120px, 11.5vw, 230px); grid-auto-flow: dense; gap: 0; }
.gallery-grid li { position: relative; grid-column: span var(--c, 1); grid-row: span var(--r, 1); margin: 0; break-inside: auto; }
.gallery-section .gallery-grid a { position: absolute; inset: 0; display: block; overflow: hidden; background: #1a1512; box-shadow: none;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: filter 0.6s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.tile-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 2.2rem 1.1rem 0.9rem; background: linear-gradient(0deg, rgba(10, 8, 7, 0.85), rgba(10, 8, 7, 0)); color: var(--white);
  font: italic 500 1.02rem/1.3 var(--serif); opacity: 0; transform: translateY(8px); transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none; }
@media (hover: hover) and (min-width: 700px) {
  /* everything else steps back… */
  .gallery-grid:hover li:not(:hover) img,
  .gallery-grid:has(a:focus-visible) li:not(:has(a:focus-visible)) img { filter: grayscale(0.85) brightness(0.42); }
  /* …and the chosen photo lifts and enlarges above its neighbours */
  .gallery-grid li:hover, .gallery-grid li:has(a:focus-visible) { z-index: 3; }
  .gallery-section .gallery-grid li:hover a, .gallery-section .gallery-grid a:focus-visible { transform: scale(1.1); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(191, 154, 82, 0.35); }
  .gallery-grid li:hover img, .gallery-grid a:focus-visible img { transform: scale(1.03); }
  .gallery-grid li:hover .tile-caption, .gallery-grid a:focus-visible .tile-caption { opacity: 1; transform: none; }
  .gallery-section .gallery-grid a:focus-visible { outline: none; }
}
@media (max-width: 699px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 44vw; }
  .gallery-grid li { grid-column: span 1; grid-row: span 1; }
  .gallery-grid li[data-wide] { grid-column: span 2; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-section .gallery-grid a, .gallery-grid img, .tile-caption { transition: none; }
}

/* Menu tabs: no veil or blur while sitting in place under the hero (no seam); veil appears only once pinned to the top */
.menu-nav:not([data-stuck]), .menu-nav:not([data-stuck])[data-theme] { background: none; -webkit-backdrop-filter: none; backdrop-filter: none; -webkit-mask-image: none; mask-image: none; }
.menu-nav { transition: background-color 0.4s ease; }
/* Menu page: hero dissolves into exactly the Christmas section's starting colour (#14110f), so there is no step at the join */
.hero--page:has(+ .menu-nav)::after {
  background:
    linear-gradient(90deg, rgba(20, 17, 15, 0.8) 0%, rgba(20, 17, 15, 0.45) 45%, rgba(20, 17, 15, 0.08) 100%),
    linear-gradient(0deg, #14110f 0%, rgba(20, 17, 15, 0.96) 8%, rgba(20, 17, 15, 0.82) 20%, rgba(20, 17, 15, 0.5) 38%, rgba(20, 17, 15, 0.18) 58%, rgba(20, 17, 15, 0) 75%);
}
/* Seamless hero → dark-section joins: the photo layer itself fades out before the edge, over a solid background
   in the exact colour of the section below, so no photo pixels can reach the seam. */
.hero--page:has(+ .menu-nav) { background: #14110f; }
.hero--page:has(+ .gallery-section) { background: #0e0b0a; }
.hero--page:has(+ .menu-nav) .hero-media, .hero--page:has(+ .gallery-section) .hero-media {
  -webkit-mask-image: linear-gradient(180deg, #000 55%, rgba(0, 0, 0, 0) 96%); mask-image: linear-gradient(180deg, #000 55%, rgba(0, 0, 0, 0) 96%);
}

/* ================= Signature gold hairline at the base of every hero ================= */
/* Page heroes: fine gold line across the bottom edge, fading out at both ends */
.hero--page::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%); opacity: 0.85; pointer-events: none; }
/* Homepage: the "Open now" banner's top border becomes the same gold hairline */
.hero-bar { position: relative; border-top: 0; }
.hero-bar::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%); opacity: 0.85; }
/* Menu page: the hero's line replaces the Christmas section's own (so it isn't drawn twice) */
.menu-nav + .menu-block--festive::before { display: none; }

/* Footer: gold luxury hairlines (either side of the gondolier emblem, and above the copyright row) */
.footer-emblem::before { background: linear-gradient(90deg, transparent, var(--gold)); opacity: 0.85; }
.footer-emblem::after { background: linear-gradient(90deg, var(--gold), transparent); opacity: 0.85; }
.footer-base { position: relative; border-top: 0; }
.footer-base::before { content: ""; position: absolute; left: var(--gutter); right: var(--gutter); top: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%); opacity: 0.85; }
/* Menu page: the Christmas section overlaps the hero's last pixel, so it carries the gold hairline itself (drawn once, on top) */
.menu-nav + .menu-block--festive::before { display: block; z-index: 4; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%); opacity: 0.85; }
/* Footer hairlines back to soft white, matching the white gondolier emblem */
.footer-emblem::before { background: linear-gradient(90deg, transparent, rgba(255, 253, 249, 0.5)); opacity: 1; }
.footer-emblem::after { background: linear-gradient(90deg, rgba(255, 253, 249, 0.5), transparent); opacity: 1; }
.footer-base::before { background: linear-gradient(90deg, transparent 0%, rgba(255, 253, 249, 0.35) 50%, transparent 100%); opacity: 1; }
/* Homepage hero: the line above the "Open now" banner is soft white (not gold) */
.hero-bar::before { background: linear-gradient(90deg, transparent 0%, rgba(255, 253, 249, 0.45) 50%, transparent 100%); opacity: 1; }
/* Gallery hero: lighter dissolve (more photo visible), still a soft seamless blend into the black gallery */
.hero--page:has(+ .gallery-section)::after {
  background:
    linear-gradient(90deg, rgba(14, 10, 8, 0.7) 0%, rgba(14, 10, 8, 0.35) 45%, rgba(14, 10, 8, 0.05) 100%),
    linear-gradient(0deg, #0e0b0a 0%, rgba(14, 11, 10, 0.8) 7%, rgba(14, 11, 10, 0.4) 20%, rgba(14, 11, 10, 0.12) 32%, rgba(14, 11, 10, 0) 42%);
}
.hero--page:has(+ .gallery-section) .hero-media {
  -webkit-mask-image: linear-gradient(180deg, #000 80%, rgba(0, 0, 0, 0) 99%); mask-image: linear-gradient(180deg, #000 80%, rgba(0, 0, 0, 0) 99%);
}

/* Gallery hover: enlarge by 50%, growing towards the centre of the mosaic so it never leaves the screen; no captions */
.gallery-grid a { transform-origin: var(--ox, 50%) var(--oy, 50%); }
@media (hover: hover) and (min-width: 700px) {
  .gallery-section .gallery-grid li:hover a, .gallery-section .gallery-grid a:focus-visible { transform: scale(1.5); }
  .gallery-grid li:hover img, .gallery-grid a:focus-visible img { transform: none; }
}
.tile-caption { display: none; }

.gallery-grid { position: relative; } /* offset parent for tile growth-direction maths */

/* Contact: three cards (photo removed). Two columns on tablet with the hours card spanning the row. */
/* Contact: hours card a touch wider so days and times sit on one line */

/* ================= Contact: editorial layout ================= */
.contact-layout { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.contact-main h2 { margin-bottom: 1rem; }
.contact-main h2 em { color: var(--red); }
.contact-lede { margin-bottom: 2.2rem; font-size: var(--step-1); color: var(--text); }
.contact-list { margin: 0 0 2.4rem; border-top: 1px solid var(--line); }
.contact-list > div { display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.contact-list dt { padding-top: 0.35rem; font: 700 0.68rem/1.2 var(--sans); letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.contact-list dd { margin: 0; }
.contact-list address { margin-bottom: 0.4rem; font: 500 var(--step-1)/1.35 var(--serif); color: var(--ink); }
.contact-big { font: 500 var(--step-1)/1.35 var(--serif); color: var(--ink); text-decoration: none; transition: color 0.25s ease; }
.contact-big:hover { color: var(--red); }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem; }
.contact-hours { position: relative; padding: clamp(2rem, 3.5vw, 3rem); background: var(--ink); color: rgba(255, 253, 249, 0.75); box-shadow: 0 30px 70px rgba(20, 17, 15, 0.18); }
.contact-hours::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.contact-hours .eyebrow { color: var(--gold); }
.contact-hours .status { margin: 0 0 1.2rem; color: var(--white); }
.contact-hours .hours { margin: 0 0 1.4rem; }
.contact-hours .hours div { border-bottom-color: rgba(255, 253, 249, 0.12); padding-block: 0.8rem; }
.contact-hours .hours dt { color: var(--white); }
.contact-hours .hours dd { color: rgba(255, 253, 249, 0.75); }
.contact-hours .hours dt, .contact-hours .hours dd { white-space: nowrap; }
.contact-hours .hours .is-today dt, .contact-hours .hours .is-today dd { color: var(--gold); }
.contact-hours-note { margin: 0; font-size: 0.85rem; color: rgba(255, 253, 249, 0.55); }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .contact-list > div { grid-template-columns: 1fr; gap: 0.3rem; }
  .contact-hours .hours dt, .contact-hours .hours dd { white-space: normal; }
}
/* Restored: menu blocks stack to one column on phones (was on a shared line with the retired contact grid) */
@media (max-width: 640px) { .menu-block-grid { grid-template-columns: 1fr; } }

/* Homepage hero, slide 4 (tagliatelle in the pan): zoom in from the left edge so the pan sits further right
   and most of the handle and oven glove fall outside the frame. Keeps the gentle settle-in motion. */
.hero-slide[data-slide="4"] { object-position: 45% 45%; transform-origin: 0% 50%; transform: scale(1.3); }
.hero-slide[data-slide="4"].is-active { transform: scale(1.24); }
@media (prefers-reduced-motion: reduce) { .hero-slide[data-slide="4"], .hero-slide[data-slide="4"].is-active { transform: scale(1.24); } }
/* Slide 4: a touch more crop on desktop; no zoom on tablets/phones (their narrow crop already hides the handle) */
@media (min-width: 901px) {
  .hero-slide[data-slide="4"] { transform: scale(1.36); }
  .hero-slide[data-slide="4"].is-active { transform: scale(1.3); }
}
@media (max-width: 900px) {
  .hero-slide[data-slide="4"] { object-position: 38% 45%; transform: scale(1.05); transform-origin: 50% 50%; }
  .hero-slide[data-slide="4"].is-active { transform: scale(1); }
}
@media (min-width: 901px) {
  .hero-slide[data-slide="4"] { transform: scale(1.48); }
  .hero-slide[data-slide="4"].is-active { transform: scale(1.42); }
}

/* Homepage hero slide 3 (terrace booth over the river): keep the lanterns and booth in frame */
.hero-slide[data-slide="3"] { object-position: 50% 45%; }

/* Footer: short line between the Follow title and the social icons */
.footer-follow { margin: 0 0 1rem; }

/* Menu page, Christmas section: "Book for Christmas" in the homepage-hero format (label + arrow, no gold frame or glow).
   The Christmas pop-up keeps its gold button. */
main .menu-block--festive .btn, main .menu-block--festive .btn:hover, main .menu-block--festive .btn:focus-visible {
  min-height: 52px; padding: 0; gap: 0.8rem; border: 0; background: none; box-shadow: none; animation: none; text-shadow: none;
  color: var(--white); font: 700 0.74rem/1 var(--sans); letter-spacing: 0.2em;
}
main .menu-block--festive .btn::after { font: 400 1.1rem/1 var(--sans); text-shadow: none; color: currentColor; }
main .menu-block--festive .btn:focus-visible { outline: 2px solid var(--white); outline-offset: 6px; }

/* Open menu: Bella Vista logo in the same place as the header logo */
.site-menu-brand { position: absolute; top: 0; left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); display: flex; align-items: center; height: var(--header-h); }

/* ================= About page sections ================= */
/* A labour of love: staggered raw-to-plate pair */
.love-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.love-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.8rem); align-items: start; }
.love-photo { margin: 0; }
.love-photo img { width: 100%; aspect-ratio: 7 / 10; object-fit: cover; box-shadow: 0 24px 60px rgba(20, 17, 15, 0.16); }
.love-photo--low { margin-top: clamp(3rem, 8vw, 7rem); }
.love-photo figcaption { margin-top: 0.9rem; font: italic 500 1.02rem/1.3 var(--serif); color: var(--muted); }
.love-photo figcaption::before { content: ""; display: inline-block; width: 1.6rem; height: 1px; margin-right: 0.7rem; vertical-align: middle; background: var(--gold); }
.love .split-copy h2 em { color: var(--red); }

/* Atmosphere & location: dark editorial block, main photo with a Venetian inset */
.place { background: var(--ink); color: rgba(255, 253, 249, 0.72); }
.place-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.place .eyebrow { color: var(--gold); }
.place h2 { margin-bottom: 1.8rem; color: var(--white); }
.place h2 em { color: var(--champagne); }
.place-copy { max-width: 32rem; }
.place-facts { margin: 2.2rem 0 0; border-top: 1px solid rgba(255, 253, 249, 0.14); }
.place-facts > div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: 0.95rem 0; border-bottom: 1px solid rgba(255, 253, 249, 0.14); }
.place-facts dt { padding-top: 0.2rem; font: 700 0.66rem/1.2 var(--sans); letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.place-facts dd { margin: 0; color: var(--white); }
.place-media { position: relative; }
.place-main { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.place-media::before { content: ""; position: absolute; right: 0; top: -1.2rem; width: 38%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }

/* The Italian experience: numbered moments */
.experience .split-media img { aspect-ratio: 4 / 5; object-position: center 55%; }
.moments { margin: 2rem 0 2.2rem; padding: 0; list-style: none; counter-reset: moment; border-top: 1px solid var(--line); }
.moments li { position: relative; padding: 1.1rem 0 1.1rem 3.2rem; border-bottom: 1px solid var(--line); counter-increment: moment; }
.moments li::before { content: counter(moment, decimal-leading-zero); position: absolute; left: 0; top: 1.15rem; font: italic 500 1.25rem/1 var(--serif); color: var(--gold); }
.moments h3 { margin: 0 0 0.3rem; font: 500 1.35rem/1.2 var(--serif); color: var(--ink); }
.moments p { margin: 0; font-size: 0.95rem; }
.experience-links { display: flex; flex-wrap: wrap; gap: 0.6rem 2.2rem; }

/* Our promise: centred closing statement with signature */
.promise-inner { max-width: 46rem; text-align: center; }
.promise h2 { margin-bottom: 1.4rem; }
.promise h2 em { color: var(--red); }
.promise-inner > p:not(.eyebrow) { max-width: 34rem; margin-inline: auto; }
.promise .signoff { align-items: center; margin-inline: auto; text-align: center; }
.promise .signoff-sig { margin: 0 0 0.6rem; }

@media (max-width: 900px) {
  .love-grid, .place-grid { grid-template-columns: 1fr; }
  .love-pair { order: 2; }
}
@media (max-width: 560px) {
  .place-facts > div { grid-template-columns: 1fr; gap: 0.2rem; }
  .love-photo--low { margin-top: 2.5rem; }
}

/* Our promise: Petrit's portrait beside the statement */
.promise-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.promise-portrait { margin: 0; }
.promise-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%; box-shadow: 0 30px 70px rgba(20, 17, 15, 0.18); }
.promise-grid .promise-inner { max-width: 32rem; margin: 0; text-align: left; }
.promise-grid .promise-inner > p:not(.eyebrow) { margin-inline: 0; }
.promise-grid .signoff { align-items: flex-start; margin-inline: 0; text-align: left; }
.promise-grid .signoff-sig { margin: 0 0 0.6rem -0.4rem; }
@media (max-width: 900px) {
  .promise-grid { grid-template-columns: 1fr; }
  .promise-portrait { max-width: 30rem; }
}
@media (min-width: 901px) { .place-grid { grid-template-columns: 1.1fr 1.15fr; } .place-copy { max-width: 36rem; } .place h2 .nowrap-line { white-space: nowrap; } }
/* The Italian experience: show the whole portrait photo at every width (natural 2:3, no crop, no parallax zoom) */
.experience .split-media img,
.js .experience .split-media img { aspect-ratio: 2 / 3; object-fit: cover; object-position: center; transform: none; will-change: auto; }
@media (max-width: 900px) {
  .experience .split-media img, .js .experience .split-media img { aspect-ratio: 2 / 3; max-width: 30rem; }
}
/* Made for every occasion: small gold diamond marker instead of numbers */
.moments li { padding-left: 2.1rem; }
.moments li::before { content: ""; left: 0.2rem; top: 1.62rem; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(191, 154, 82, 0.16); }
/* About, Welcome: portrait lasagne photo - keep the falling parmesan and the dish in frame at every width */
.split-media .welcome-img, .js .split-media .welcome-img { aspect-ratio: 4 / 5; object-position: center 45%; }
@media (max-width: 900px) { .split-media .welcome-img, .js .split-media .welcome-img { aspect-ratio: 4 / 5; } }
/* A labour of love: three-photo stagger - chosen by hand, prepared with fire, plated with care */
.love-grid { grid-template-columns: 1.45fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); }
.love-pair { grid-template-columns: repeat(3, 1fr); gap: clamp(0.8rem, 1.6vw, 1.4rem); }
.love-photo--mid { margin-top: clamp(1.6rem, 4vw, 3.5rem); }
.love-photo--low { margin-top: clamp(3.2rem, 8vw, 7rem); }
.love-photo figcaption { font-size: 0.95rem; white-space: nowrap; }
.love-photo figcaption::before { width: 1.1rem; margin-right: 0.5rem; }
@media (max-width: 900px) {
  .love-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .love-photo--mid { margin-top: 1.4rem; }
  .love-photo--low { margin-top: 2.8rem; }
  .love-photo figcaption { font-size: 0.8rem; white-space: normal; }
  .love-photo figcaption::before { display: none; }
}
/* Menu section nav on phones: start-aligned so every link is reachable when the row scrolls; soft fade hints at more */
@media (max-width: 760px) {
  .menu-nav ul { justify-content: flex-start; padding-right: 2rem; scroll-padding-inline: 1rem;
    -webkit-mask-image: linear-gradient(90deg, #000 85%, transparent); mask-image: linear-gradient(90deg, #000 85%, transparent); }
}

.footer-base a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* Privacy notice */
.legal { max-width: 72ch; }
.legal h2 { margin-top: 2.4rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.legal h3 { margin-top: 1.4rem; font-size: 1.1rem; }
.legal p, .legal li { line-height: 1.65; }
.legal ul { padding-left: 1.2rem; }
.legal a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.legal table { width: 100%; border-collapse: collapse; margin-block: 1rem; font-size: 0.95rem; }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 0.6rem 0.8rem 0.6rem 0; border-bottom: 1px solid var(--line); }


/* ================= Christmas booking banner: compact call to action under the Christmas menu ================= */
.xmas-banner { position: relative; overflow: hidden; padding-block: 0 clamp(4rem, 8vw, 7rem); color: rgba(255, 253, 249, 0.72);
  background: radial-gradient(80% 90% at 10% 100%, rgba(110, 21, 18, 0.4), transparent 62%), var(--ink); }
.xmas-banner > .wrap { position: relative; z-index: 3; }
.xmas-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.8rem, 3.5vw, 2.8rem) 0; border-block: 1px solid rgba(191, 154, 82, 0.4); }
.xmas-banner .eyebrow { margin-bottom: 0.6rem; color: var(--gold); }
.xmas-banner h2 { margin-bottom: 0.7rem; font-size: clamp(2rem, 1.3rem + 2.2vw, 3.2rem); color: var(--white); }
.xmas-banner h2 em { color: var(--gold); }
.xmas-banner-copy p:last-child { margin: 0; }
.xmas-banner-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem; flex-shrink: 0; }
.xmas-banner .btn { --cta-ink: var(--gold); --cta-hover: var(--white); color: var(--gold); }
.xmas-banner .btn:hover { color: var(--white); }
@media (max-width: 760px) {
  .xmas-banner-inner { flex-direction: column; align-items: flex-start; }
}
/* Atmosphere & location: single photo, taller to balance the text column (keeps the lit restaurant in frame) */
.place-main { aspect-ratio: 1 / 1; object-position: 38% 50%; }
@media (max-width: 900px) { .place-main { aspect-ratio: 4 / 3; } }

/* Christmas pop-up: "Book for Christmas" in the site's arrow style (label + arrow, no gold frame, glow or shimmer) */
.xmas .btn.xmas-book, .xmas .btn.xmas-book:hover, .xmas .btn.xmas-book:focus-visible, .xmas[open] .btn.xmas-book {
  min-height: 52px; padding: 0; gap: 0.8rem; border: 0; background: none; box-shadow: none; animation: none; text-shadow: none;
  color: var(--white); font: 700 0.74rem/1 var(--sans); letter-spacing: 0.2em; }
.xmas .btn.xmas-book::after { background: none; box-shadow: none; text-shadow: none; color: currentColor; font: 400 1.1rem/1 var(--sans); }
.xmas .btn.xmas-book:focus-visible { outline: 2px solid var(--white); outline-offset: 6px; }

/* Legal pages (privacy, terms): no hero - a slim ink bar behind the header, then a clean document layout */
.legal-bar { height: var(--header-h); background: var(--ink); }
.legal-page { padding-top: clamp(3rem, 6vw, 5rem); }
.legal h1 { margin: 0 0 1.6rem; font-size: var(--step-3); color: var(--ink); }
.legal .eyebrow { margin-bottom: 0.9rem; }

/* ================= Keep people in frame at every size (heads never cropped) =================
   Each photo is anchored on the person rather than the centre; gallery tiles favour the top of the photo. */
.location-media { object-position: 15% 40%; }                                   /* guest sits at the left edge */
.split-media img[src*="friends-sharing-pasta-pizza-wine-bella-vista-bristol-2"] { object-position: 28% 50%; }             /* woman on the left */
.gallery-grid img { object-position: 50% 35%; }                                  /* heads sit high in the frame */
.gallery-grid img[src*="friends-sharing-pasta-pizza-wine-bella-vista-bristol-"] { object-position: 22% 35%; }                     /* friends sharing pasta: woman on the left */
@media (max-width: 1100px) {
  .hero-slide[src*="friends-raising-toast-pizza-pasta-small-bella-vista-bristol"] { object-position: 80% 40% !important; }     /* the toast: the smiling guest is on the right */
}
@media (max-width: 600px) { .hero-slide[src*="friends-raising-toast-pizza-pasta-small-bella-vista-bristol"] { object-position: 97% 40% !important; } }
.gallery-grid img[src*="guest-enjoying-aperitivo-terrace-bella-vista-bristol-"] { object-position: 12% 35%; }                    /* aperitivo guest on the left */
/* People photos with little headroom: no parallax zoom/slide (it pushed heads out of the frame), anchored to the top */
.js .split-media--portrait img, .split-media--portrait img,
.js .split-media img[src*="friends-sharing-pasta-pizza-wine-bella-vista-bristol-2"] { transform: none; will-change: auto; }
.split-media--portrait img, .split-reverse .split-media--portrait img { object-position: center 4%; }

/* Homepage hero on phones (portrait): dedicated 9:16 crops framed on each subject - full-screen, sharp, no stretched landscape */
@media (max-width: 760px) and (orientation: portrait) {
  .hero-media picture .hero-slide, .hero-slide[data-slide] { object-position: 50% 50%; transform-origin: 50% 50%; }
  .hero-slide[data-slide="4"] { transform: scale(1.04); }
  .hero-slide[data-slide="4"].is-active { transform: scale(1); }
}
/* Parties hero on phones (portrait): its own portrait photo, framed on the guest's face */
@media (max-width: 760px) and (orientation: portrait) {
}
/* Page heroes with a dedicated phone image: keep its composed framing (photo at the top) */
@media (max-width: 760px) and (orientation: portrait) {
  .hero--page picture .hero-slide { object-position: 50% 0 !important; }
}
