/* ---------- Tokens ---------- */
:root {
  --bg: #0f0e0d;
  --bg-2: #181613;
  --surface: #1d1a16;
  --line: rgba(199, 115, 62, 0.2);
  --text: #f5ede0;
  --muted: #c9bfae;
  --dim: #ada695;     /* bumped from #8b8475 → 5.7:1 contrast on --bg (WCAG AA) */
  --gold: #c7773e;        /* copper */
  --gold-2: #a45a29;      /* burnished copper */
  --cream: #faf6ef;
  --maroon: #8b2635;

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}
::selection { background: rgba(199, 115, 62, 0.35); color: var(--cream); }

/* ---------- Accessibility: focus & skip link ---------- */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 200;
  background: var(--gold);
  color: #1a1407;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 0.75rem;
  outline: 3px solid var(--cream);
  outline-offset: 2px;
}

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.nav__brand:focus-visible,
.skip-link:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}
a:focus-visible { border-radius: 2px; }
.reserve__form input:focus-visible,
.reserve__form select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  background: rgba(199, 115, 62, 0.12);
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  color: var(--cream);
}
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; color: var(--muted); }
em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), border-color 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff4e8;
}
.btn--gold:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn--outline {
  border-color: rgba(245, 237, 224, 0.35);
  color: var(--text);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost {
  color: var(--text);
  border-color: transparent;
  padding: 0.6rem 0.9rem;
}
.btn--ghost:hover { color: var(--gold); }
.btn--text {
  padding: 0;
  background: transparent;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  border-radius: 0;
}
.btn--text:hover { color: var(--cream); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  padding: 0.8rem 0;
  background: rgba(15, 14, 13, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: background-color;
  transform: translateZ(0);
}
.nav.is-scrolled {
  background: rgba(15, 14, 13, 0.92);
  border-bottom-color: var(--line);
}
@supports (backdrop-filter: blur(10px)) {
  .nav.is-scrolled {
    background: rgba(15, 14, 13, 0.72);
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
  }
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.75rem; }
.nav__logo {
  height: 72px;
  width: auto;
  border-radius: 10px;
  transition: transform 0.4s var(--ease), height 0.4s var(--ease);
}
.nav.is-scrolled .nav__logo { height: 56px; }
.nav__brand:hover .nav__logo { transform: scale(1.04); }
@media (max-width: 560px) {
  .nav__logo { height: 54px; }
  .nav.is-scrolled .nav__logo { height: 44px; }
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 0.5rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 0.6rem; }
.nav__burger {
  display: none;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav__burger span {
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__vidbtn {
  position: absolute;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(245, 237, 224, 0.35);
  background: rgba(15, 14, 13, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero__vidbtn:hover { background: rgba(15, 14, 13, 0.8); border-color: var(--gold); transform: scale(1.06); }
.hero__vidbtn svg { width: 18px; height: 18px; fill: currentColor; }
.hero__vidbtn .icon-play { display: none; }
.hero__vidbtn[aria-pressed="true"] .icon-pause { display: none; }
.hero__vidbtn[aria-pressed="true"] .icon-play { display: block; }

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(199, 115, 62, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(15, 14, 13, 0.55) 0%, rgba(15, 14, 13, 0.75) 60%, rgba(15, 14, 13, 0.95) 100%);
}
.hero__content {
  text-align: center;
  padding: 8rem 0 6rem;
  max-width: 920px;
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__badges {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(199, 115, 62, 0.12);
  border: 1px solid rgba(199, 115, 62, 0.35);
  backdrop-filter: blur(6px);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
}
.section__head {
  max-width: 640px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section__lede { color: var(--muted); font-size: 1.05rem; }

/* ---------- About ---------- */
.about { background: var(--bg); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about__media:hover img { transform: scale(1.04); }
.about__badge {
  position: absolute;
  right: -1.5rem;
  bottom: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff4e8;
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.about__badge .num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}
.about__badge .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- Menu ---------- */
.menu { background: var(--bg-2); }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.menu__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.menu__card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 115, 62, 0.5);
}
.menu__img {
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}
.menu__card:hover .menu__img { transform: scale(1.06); }
.menu__body { padding: 1.6rem 1.75rem 1.9rem; }
.menu__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.menu__row h3 { font-size: 1.3rem; color: var(--cream); }
.price {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 500;
}
.menu__body p {
  color: var(--dim);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}
.menu__foot {
  margin-top: 3.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Split (Catering / Events) ---------- */
.split { background: var(--bg); }
.split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 6;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.split__media:hover img { transform: scale(1.04); }
.split--flip { background: var(--bg-2); }
.check li {
  padding: 0.65rem 0 0.65rem 1.8rem;
  position: relative;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.check li:last-child { border-bottom: none; }
.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 10px;
  height: 2px;
  background: var(--gold);
}
.split__text .btn { margin-top: 1.5rem; }
.split__cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.split__cta .btn { margin-top: 1.5rem; }

/* ---------- Catering Form ---------- */
.catering-form { background: var(--bg-2); scroll-margin-top: 100px; display: none; }
.catering-form:target { display: block; }
.cform {
  max-width: 880px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid;
  gap: 1.25rem;
}
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.cform__field { display: flex; flex-direction: column; gap: 0.5rem; }
.cform__field--full { grid-column: 1 / -1; }
.cform__field > span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.cform__field abbr {
  color: var(--gold);
  text-decoration: none;
  margin-left: 2px;
}
.cform__field input,
.cform__field select,
.cform__field textarea {
  background: rgba(15, 14, 13, 0.5);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.cform__field input::placeholder,
.cform__field textarea::placeholder { color: var(--dim); }
.cform__field input:focus-visible,
.cform__field select:focus-visible,
.cform__field textarea:focus-visible {
  border-color: var(--gold);
  background: rgba(199, 115, 62, 0.08);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.cform__field input[type="date"] { color-scheme: dark; }
.cform__field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23c7773e' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}
.cform__field select option {
  background: var(--bg-2);
  color: var(--text);
}
.cform__field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-sans);
}
.cform__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.cform__fine {
  margin: 0;
  color: var(--dim);
  font-size: 0.85rem;
}
.cform__fine a { color: var(--gold); }
.cform__status {
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  display: none;
}
.cform__status.is-ok {
  display: block;
  background: rgba(72, 180, 97, 0.12);
  border: 1px solid rgba(72, 180, 97, 0.4);
  color: #a8e6b6;
}
.cform__status.is-err {
  display: block;
  background: rgba(220, 80, 80, 0.12);
  border: 1px solid rgba(220, 80, 80, 0.4);
  color: #f1a8a8;
}

@media (max-width: 720px) {
  .cform__row { grid-template-columns: 1fr; }
  .cform__foot { flex-direction: column-reverse; align-items: stretch; }
  .cform__foot .btn { justify-content: center; }
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery__tile {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.9);
}
.gallery__tile:hover { transform: scale(1.02); filter: saturate(1.1); }
.gallery__tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__tile:nth-child(4) { grid-row: span 2; }

/* ---------- Reserve ---------- */
.reserve {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background:
    linear-gradient(135deg, rgba(199, 115, 62, 0.14), rgba(139, 38, 53, 0.14)),
    var(--bg-2);
  border-block: 1px solid var(--line);
  text-align: center;
}
.reserve__inner { max-width: 900px; margin: 0 auto; }
.reserve h2 { margin-bottom: 0.75rem; }
.reserve p { color: var(--muted); margin-bottom: 2.5rem; }
.reserve__form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.6rem;
  padding: 0.6rem;
  background: rgba(15, 14, 13, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.reserve__form input,
.reserve__form select {
  background: transparent;
  border: none;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 0.9rem;
  border-radius: 999px;
  outline: none;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
}
.reserve__form input::placeholder { color: var(--dim); }
.reserve__form input:focus,
.reserve__form select:focus { background: rgba(199, 115, 62, 0.1); }
.reserve__form input[type="date"] { color-scheme: dark; }
.reserve__form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23c7773e' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}
.reserve__form select option {
  background: var(--bg-2);
  color: var(--text);
}

/* ---------- Visit ---------- */
.visit { background: var(--bg); }
.visit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.visit__block h2 { font-size: 2rem; margin-bottom: 1rem; }
.visit__addr { color: var(--muted); font-size: 1.05rem; }
.hours li, .social li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}
.social li a { color: var(--muted); transition: color 0.3s; }
.social li a:hover { color: var(--gold); }

/* ---------- Map ---------- */
.map {
  position: relative;
  height: 460px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.map__frame {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5) contrast(1.05) brightness(0.85);
  transition: filter 0.6s var(--ease);
}
.map:hover .map__frame { filter: grayscale(0) contrast(1) brightness(1); }
.map__overlay {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(15, 14, 13, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 2rem 2.2rem;
  border-radius: var(--radius-lg);
  max-width: 340px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.map__overlay h3 {
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.map__overlay p { color: var(--muted); margin-bottom: 1.3rem; }
.map__overlay .btn { margin-top: 0.3rem; }

@media (max-width: 720px) {
  .map { height: auto; display: flex; flex-direction: column; }
  .map__frame { height: 320px; order: 2; }
  .map__overlay {
    position: static;
    transform: none;
    max-width: none;
    border-radius: 0;
    border: none;
    order: 1;
    text-align: center;
  }
}

/* ---------- Footer ---------- */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--dim);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 14, 13, 0.98);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .about__grid, .split__grid, .visit__grid {
    grid-template-columns: 1fr;
  }
  .split--flip .split__media { order: -1; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__tile:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery__tile:nth-child(4) { grid-row: span 1; }
  .reserve__form { grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); }
  .reserve__form button { grid-column: span 2; }
  .about__badge { right: 1rem; }
}

@media (max-width: 560px) {
  .menu__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .reserve__form { grid-template-columns: 1fr; }
  .reserve__form button { grid-column: span 1; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__scroll-line { animation: none !important; }
  .hero__video { display: none; }
  .hero__vidbtn { display: none; }
  .hero { background: linear-gradient(135deg, #1d1a16, #0f0e0d); }
}
