﻿:root {
  --bg: #060606;
  --bg-soft: #121111;
  --surface: #171514;
  --surface-2: #201b1a;
  --ink: #f8ebd8;
  --muted: #b6a08b;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.18);
  --accent: #8e2418;
  --accent-strong: #b73b20;
  --accent-soft: #d67a2d;
  --amber: #c99b45;
  --cream: #f3e1c4;
  --page: max(6vw, calc((100vw - 1480px) / 2));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(214, 122, 45, .16), transparent 30%),
    linear-gradient(135deg, #040404 0%, #121111 45%, #080606 100%);
  color: var(--ink);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }
.section { padding: clamp(112px, 10.8vw, 180px) var(--page); scroll-margin-top: 110px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-soft);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--amber); }
h2 { margin: 0; font: 600 clamp(42px, 4.3vw, 72px)/1.02 'Playfair Display', Georgia, serif; letter-spacing: -.038em; text-wrap: balance; }
.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: 94px;
  display: flex;
  align-items: center;
  padding: 0 var(--page);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: height .55s var(--ease), background .55s var(--ease), box-shadow .55s var(--ease), color .4s ease;
}
.site-header.scrolled {
  height: 78px;
  color: var(--ink);
  background: rgba(8, 8, 8, .88);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 36px rgba(0,0,0,.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.brand {
  width: 120px;
  height: 72px;
  padding: 8px 10px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transition: width .5s var(--ease), height .5s var(--ease), box-shadow .4s;
}
.brand img { height: 100%; object-fit: contain; }
.scrolled .brand { width: 102px; height: 62px; box-shadow: none; }
nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}
nav a:not(.outline) { position: relative; padding: 14px 0; }
nav a:not(.outline)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
nav a:not(.outline):hover::after { transform: scaleX(1); transform-origin: left; }
.outline, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.outline {
  border-color: rgba(255,255,255,.62);
  padding-inline: 24px;
}
.outline:hover {
  background: #fff;
  color: var(--bg);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  transform: translateY(-2px);
}
.scrolled .outline { color: var(--bg); background: var(--cream); border-color: var(--cream); }
.site-header nav .header-reserve,
.site-header.scrolled nav .header-reserve {
  color: var(--bg);
  background: linear-gradient(135deg, var(--amber), var(--accent-soft));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.site-header nav .header-reserve:hover {
  color: var(--bg);
  background: linear-gradient(135deg, #d6a24f, #f2922e);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
  transform: translateY(-2px);
}
.toggle { display: none; align-items: center; justify-content: center; width: 48px; height: 48px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.toggle span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 999px; transition: transform .3s ease, opacity .3s ease; }
.toggle span + span { margin-top: 5px; }
.toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 760px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center 45%; z-index: -2; animation: heroZoom 30s ease-out both; }
.shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3,3,3,.94) 0%, rgba(3,3,3,.78) 42%, rgba(3,3,3,.28) 74%),
    linear-gradient(0deg, rgba(3,3,3,.82), transparent 55%),
    radial-gradient(circle at 20% 20%, rgba(214,122,45,.24), transparent 24%);
}
.hero-copy { position: absolute; left: var(--page); top: 50%; max-width: 840px; transform: translateY(-44%); }
.hero-copy > * { opacity: 0; transform: translateY(16px); animation: heroIn 1s var(--ease) forwards; }
.hero-copy .eyebrow { animation-delay: .16s; }
.hero-copy h1 { animation-delay: .28s; }
.hero-copy > p:not(.eyebrow) { animation-delay: .42s; }
.hero-copy .actions { animation-delay: .56s; }
.hero h1 { margin: 0; max-width: 760px; font: 600 clamp(60px, 7.6vw, 116px)/.92 'Playfair Display', Georgia, serif; letter-spacing: -.055em; text-shadow: 0 8px 28px rgba(0,0,0,.24); }
.hero-copy > p:not(.eyebrow) { max-width: 600px; margin: 28px 0 34px; color: rgba(255,255,255,.86); font-size: clamp(16px, 1.15vw, 20px); line-height: 1.8; }
.actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.button.gold { color: var(--bg); background: linear-gradient(135deg, var(--amber), var(--accent-soft)); box-shadow: 0 16px 36px rgba(0,0,0,.22); }
.button.gold:hover { transform: translateY(-3px); background: linear-gradient(135deg, #d6a24f, #f2922e); }
.button.ghost {
  color: var(--ink);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}
.button.ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.button.navy { color: #fff; background: var(--surface-2); border-color: var(--line); }
.button.navy:hover { background: var(--accent); transform: translateY(-3px); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.84);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.rating {
  position: absolute;
  right: var(--page);
  bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(10,10,10,.64);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.rating strong { font-size: 18px; }
.rating span { display: inline-flex; flex-direction: column; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); }
.rating small { margin-top: 3px; color: rgba(255,255,255,.7); font-size: 10px; letter-spacing: .08em; text-transform: none; }
.scroll-indicator { position: absolute; left: var(--page); bottom: 34px; display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.78); font-size: 11px; text-transform: uppercase; letter-spacing: .2em; }
.scroll-indicator span { display: inline-block; width: 1px; height: 44px; background: currentColor; animation: scrollLine 1.5s ease-in-out infinite; }
.about {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 4vw, 60px);
  align-items: center;
}
.about-intro p:last-child { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.9; max-width: 560px; }
.about-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; padding: 24px; border: 1px solid var(--line); border-radius: 32px; background: linear-gradient(140deg, rgba(255,255,255,.04), rgba(255,255,255,.02)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.015); }
.about-panel img { height: 100%; max-height: 380px; object-fit: cover; border-radius: 24px; }
.about-card { display: flex; flex-direction: column; justify-content: center; }
.about-card ul { margin: 0 0 20px; padding-left: 18px; color: var(--cream); display: grid; gap: 10px; }
.about-card li { color: var(--muted); }
.about-card .under { color: var(--accent-soft); }
.cuisine { background: linear-gradient(135deg, #120d0b 0%, #1a120f 100%); }
.heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 70px; margin-bottom: clamp(56px, 5vw, 82px); }
.heading > p { max-width: 430px; margin: 0; color: #bda48b; line-height: 1.9; }
.dish-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.dish-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.01);
  transition: transform .45s var(--ease), background .35s ease, border-color .35s ease;
}
.dish-grid article:hover { transform: translateY(-6px); background: rgba(255,255,255,.05); border-color: rgba(214,122,45,.26); }
.dish-grid i { color: rgba(255,255,255,.54); font-size: 10px; font-style: normal; letter-spacing: .16em; }
.dish-grid h3 { margin: 18px 0 10px; font: 500 24px 'Playfair Display', Georgia, serif; color: var(--cream); }
.dish-grid p { margin: 0; color: #b89a7d; line-height: 1.75; }
.specials { background: linear-gradient(135deg, #0c0b0b 0%, #161311 100%); }
.tabs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-bottom: 18px; }
.tabs button {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  transition: background .35s ease, border-color .35s ease, transform .3s ease;
}
.tabs button.active, .tabs button:hover { border-color: rgba(214,122,45,.34); background: rgba(214,122,45,.16); transform: translateY(-2px); }
.menu-panel {
  display: grid;
  grid-template-columns: 1.05fr .9fr .9fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.04);
  transition: opacity .28s ease, transform .45s var(--ease);
}
.menu-panel.is-changing { opacity: 0; transform: translateY(10px); }
.menu-panel h3 { margin: 0 0 10px; font: 500 30px 'Playfair Display', Georgia, serif; }
.menu-panel .price { margin: 0 0 14px; color: var(--amber); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; }
.menu-panel .price strong { font-size: 20px; color: var(--cream); }
.menu-panel p { color: var(--muted); line-height: 1.8; }
.menu-panel ul { margin: 0; padding-left: 18px; color: var(--cream); display: grid; gap: 8px; }
.menu-panel aside { padding: 22px; border-radius: 22px; background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.08); }
.menu-panel aside small { display: inline-block; margin-bottom: 8px; color: var(--accent-soft); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.space { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 3.2vw, 48px); align-items: center; background: linear-gradient(135deg, rgba(214,122,45,.14), transparent), #0b0b0b; }
.space-copy h2 { font-size: clamp(40px, 4.2vw, 68px); }
.space-copy p { margin: 18px 0 16px; color: rgba(255,255,255,.78); line-height: 1.9; max-width: 460px; }
.space-points { display: flex; flex-wrap: wrap; gap: 10px; }
.space-points span { padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); color: var(--cream); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.space-gallery { display: grid; grid-template-columns: 1.1fr .85fr; gap: 16px; }
.photo { position: relative; height: 530px; border: 0; padding: 0; overflow: hidden; cursor: zoom-in; border-radius: 28px; background: #111; }
.photo img { height: 100%; object-fit: cover; }
.photo span { position: absolute; right: 16px; bottom: 16px; padding: 10px 14px; border-radius: 999px; background: rgba(0,0,0,.7); color: #fff; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.photo.side { height: 360px; align-self: end; }
.reviews .heading { margin-bottom: 48px; }
.big-score { display: flex; flex-direction: column; gap: 6px; }
.big-score strong { font-size: 34px; }
.big-score span { display: inline-flex; flex-direction: column; gap: 4px; color: var(--cream); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.big-score span small { color: var(--muted); text-transform: none; letter-spacing: 0; font-size: 12px; }
.quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.quotes blockquote {
  margin: 0;
  padding: 28px 0 0;
  color: var(--cream);
  font: 500 22px/1.5 'Playfair Display', Georgia, serif;
  border-top: 1px solid var(--line);
}
.quotes footer { margin-top: 16px; color: var(--muted); font: 400 14px/1.7 'DM Sans', Arial, sans-serif; }
.booking { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 5vw, 80px); align-items: start; padding-block: 64px; border-radius: 36px; background: linear-gradient(135deg, rgba(214,122,45,.14), rgba(255,255,255,.025)); }
.booking h2 { font-size: clamp(42px, 4.2vw, 68px); }
.booking > div > p { margin-top: 16px; color: var(--muted); line-height: 1.9; max-width: 500px; }
.booking-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 28px; }
.booking-actions .button.phone { color: var(--ink); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.button.whatsapp { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-strong)); box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.button.whatsapp:hover { transform: translateY(-3px); background: linear-gradient(135deg, #c83d24, #e24c21); }
form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 24px;
}
form label { display: grid; gap: 8px; color: var(--cream); font-size: 14px; }
form input, form select, form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--ink);
}
form textarea { min-height: 110px; resize: vertical; }
form > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
form .fine { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.contact { display: grid; grid-template-columns: .95fr .95fr .9fr; gap: clamp(24px, 3vw, 48px); align-items: start; }
.contact address { margin-bottom: 18px; font-style: normal; color: var(--muted); line-height: 1.9; }
.contact .under { color: var(--accent-soft); }
.hours dl { margin: 0; display: grid; gap: 12px; }
.hours dt { color: var(--cream); font-weight: 600; }
.hours dd { margin: 4px 0 0; color: var(--muted); line-height: 1.8; }
.note { margin-top: 16px; color: var(--muted); font-size: 14px; }
.map-card {
  min-height: 400px;
}
.map-frame {
  display: block;
  width: 100%;
  height: clamp(400px, 32vw, 420px);
  min-height: 400px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
}
.legal-page .site-header { position: sticky; }
.legal-page main { padding-top: 24px; }
.legal-section {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
}
.legal-card h2, .legal-card h3 { margin: 0 0 12px; color: var(--cream); font-size: 20px; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.8; }
.legal-card ul { padding-left: 18px; }
.legal-note {
  padding: 14px 16px;
  border-left: 3px solid var(--accent-soft);
  border-radius: 0 14px 14px 0;
  background: rgba(214,122,45,.1);
  color: var(--cream);
}
footer {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 24px 32px;
  align-items: start;
  padding: 48px var(--page) 34px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.footer-brand { display: grid; gap: 12px; }
.footer-brand img { height: 76px; width: auto; }
.footer-brand p { margin: 0; color: var(--muted); font-size: 13px; }
.footer-content { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.footer-block h2, .footer-block h3 { margin: 0 0 10px; font: 600 16px/1.2 'DM Sans', Arial, sans-serif; color: var(--cream); text-transform: uppercase; letter-spacing: .16em; }
.footer-block p, .footer-block address { margin: 0; color: var(--muted); font-style: normal; font-size: 14px; line-height: 1.8; }
.footer-block a { display: inline-block; margin-top: 6px; color: var(--cream); font-size: 14px; }
.footer-whatsapp { color: var(--amber); }
.footer-nav { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 14px 22px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-nav a { color: rgba(255,255,255,.72); font-size: 13px; text-transform: uppercase; letter-spacing: .16em; }
footer small { grid-column: 1 / -1; color: rgba(255,255,255,.45); font-size: 12px; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.88);
}
.modal button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
}
.modal img { max-width: min(980px, 100%); max-height: min(760px, 100%); object-fit: contain; border-radius: 24px; box-shadow: 0 24px 80px rgba(0,0,0,.36); }
.toast {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(16px);
  max-width: min(90vw, 520px);
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(10,10,10,.95);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--cream);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.skip-link { position: fixed; z-index: 100; top: 14px; left: 14px; padding: 10px 14px; color: #fff; background: var(--accent); font-size: 12px; font-weight: 700; transform: translateY(-150%); transition: transform .25s var(--ease); }
.skip-link:focus { transform: translateY(0); }
.tabs button:focus-visible, .button:focus-visible, .under:focus-visible, .toggle:focus-visible, .photo:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; }
form input:focus-visible, form select:focus-visible, form textarea:focus-visible { outline: none; border-color: var(--amber); }
@keyframes heroZoom { from { transform: scale(1.005); } to { transform: scale(1.05); } }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollLine { 0% { transform: translateY(0); } 70%, 100% { transform: translateY(300%); } }
@media (max-width: 1100px) {
  .about { grid-template-columns: 1fr; }
  .about-panel { grid-template-columns: 1fr; }
  .menu-panel { grid-template-columns: 1fr 1fr; }
  .menu-panel aside { grid-column: 1 / -1; }
  .contact { grid-template-columns: 1fr 1fr; }
  .map-card { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .toggle { display: inline-flex; flex-direction: column; margin-left: auto; }
  .site-header nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 100px 8vw 60px;
    color: #fff;
    background: rgba(8,8,8,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
  }
  .site-header nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-header nav a { font: 500 28px 'Playfair Display', Georgia, serif; letter-spacing: 0; }
  .site-header nav .outline { margin-top: 8px; font: 600 10px 'DM Sans', Arial, sans-serif; color: var(--bg); background: var(--amber); border-color: var(--amber); }
  .site-header nav .header-reserve,
  .site-header.scrolled nav .header-reserve {
    color: var(--bg);
    background: linear-gradient(135deg, var(--amber), var(--accent-soft));
    border-color: transparent;
  }
  .site-header.menu-open { color: #fff; background: transparent; box-shadow: none; backdrop-filter: none; }
  .space { grid-template-columns: 1fr; }
  .space-gallery { grid-template-columns: 1fr; }
  .photo { height: 440px; }
}
@media (max-width: 640px) {
  :root { --page: 6vw; }
  html { scroll-padding-top: 76px; }
  .section { padding: 96px var(--page); }
  .site-header, .site-header.scrolled { height: 72px; }
  .brand, .scrolled .brand { width: 86px; height: 56px; }
  .hero { min-height: 700px; }
  .hero-copy { left: var(--page); right: var(--page); top: 47%; transform: translateY(-43%); }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); line-height: .92; }
  .hero-copy > p:not(.eyebrow) { margin: 24px 0 30px; font-size: 15px; }
  .actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .button { min-height: 46px; }
  .rating { right: var(--page); bottom: 18px; padding: 10px 12px; }
  .scroll-indicator { left: var(--page); bottom: 18px; }
  .heading { display: block; margin-bottom: 44px; }
  .heading > p { margin-top: 18px; }
  .dish-grid { grid-template-columns: 1fr; }
  .tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
  .tabs button { min-width: 140px; }
  .menu-panel { grid-template-columns: 1fr; padding: 24px; }
  .quotes, .booking, .contact, form > div { grid-template-columns: 1fr; }
  .space-copy h2 { font-size: 40px; }
  .photo { height: 360px; }
  .booking { padding-block: 40px; }
  form { padding: 22px; }
  footer { grid-template-columns: 1fr; padding: 36px var(--page) 24px; }
  .footer-content { grid-template-columns: 1fr; }
  .footer-brand img { height: 72px; width: auto; }
  .footer-nav { flex-direction: column; align-items: flex-start; }
  .map-card { min-height: 300px; }
  .map-frame { height: 300px; min-height: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
