/* ============================================
   OBSIDIAN v2 — Dark / Moody / Grotesque
   DESIGN_VARIANCE: 8 / MOTION_INTENSITY: 6 / VISUAL_DENSITY: 3
============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:      #060606;
  --s1:         #0d0d0b;
  --s2:         #141410;
  --s3:         #1c1c18;
  --ember:      #c4571c;
  --ember-dim:  rgba(196, 87, 28, 0.1);
  --ember-line: rgba(196, 87, 28, 0.28);
  --t1:         #edeae0;
  --t2:         #6e6b63;
  --t3:         #2a2824;
  --nav-h:      72px;
  --px:         clamp(1.5rem, 5vw, 5rem);
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--t1);
  font-family: 'Onest', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
address { font-style: normal; }

/* ============================================
   GRAIN OVERLAY
============================================ */

.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* ============================================
   REVEAL ANIMATIONS
============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible        { opacity: 1; transform: translateY(0); }
.reveal-d1             { transition-delay: 0.08s; }
.reveal-d2             { transition-delay: 0.16s; }
.reveal-d3             { transition-delay: 0.24s; }
.reveal-d4             { transition-delay: 0.32s; }

/* Hero — CSS animation (no observer) */
.hero-anim {
  opacity: 0;
  animation: heroIn 1s var(--ease) forwards;
}
.hero-anim-d1 { animation-delay: 0.15s; }
.hero-anim-d2 { animation-delay: 0.3s; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NAV
============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--t3);
}

.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--t1);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.6; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Onest', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--t1); }

.nav-cta {
  border: 1px solid var(--ember-line) !important;
  padding: 0.45rem 1.2rem !important;
  color: var(--ember) !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}
.nav-cta:hover {
  background: var(--ember) !important;
  color: var(--black) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--t1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:last-child  { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   MOBILE DRAWER
============================================ */

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.drawer-link {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 9vw, 3.5rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--t1);
  transition: color 0.2s;
}
.drawer-link:hover { color: var(--ember); }

/* ============================================
   HERO — Full-bleed cinematic
============================================ */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-img {
  object-position: center 15%;
}

/* Progressive-enhancement parallax */
@supports (animation-timeline: view()) {
  .hero-bg-img {
    transform: scale(1.08) translateY(-3%);
    animation: bgPx linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 60%;
  }
  @keyframes bgPx {
    from { transform: scale(1.08) translateY(-3%); }
    to   { transform: scale(1.08) translateY(10%); }
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(6,6,6,0.15) 0%,
      rgba(6,6,6,0.0)  40%,
      rgba(6,6,6,0.6)  80%,
      var(--black)     100%);
}

.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 2.5rem) var(--px) 3.5rem;
  gap: 2rem;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-eyebrow {
  font-family: 'Onest', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}

.badge-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--t1);
  line-height: 1;
  letter-spacing: -0.03em;
}

.badge-lbl {
  font-size: 0.58rem;
  color: var(--t2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-headline {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 8.5vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--t1);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h-accent { color: var(--ember); }

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--t2);
  letter-spacing: 0.06em;
}

.meta-sep {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--t3);
  flex-shrink: 0;
}

/* ============================================
   BUTTONS
============================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.8rem;
  background: var(--ember);
  color: var(--black);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.12s ease;
}
.btn-primary:hover  { background: #d4621f; }
.btn-primary:active { transform: translateY(1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border: 1px solid var(--t3);
  color: var(--t2);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, transform 0.12s;
}
.btn-ghost:hover  { border-color: var(--t2); color: var(--t1); }
.btn-ghost:active { transform: translateY(1px); }

.btn-full { width: 100%; }

/* ============================================
   TAGLINE
============================================ */

.tagline-section {
  padding: 6rem var(--px);
  border-top: 1px solid var(--t3);
}

.tagline-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.tagline-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  color: var(--ember);
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.tagline-txt {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--t1);
}

/* ============================================
   SECTION HEADERS
============================================ */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--t1);
  text-transform: uppercase;
}

.section-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  color: var(--ember);
  letter-spacing: 0.2em;
  padding-bottom: 0.4rem;
}

/* ============================================
   GALLERY BENTO
============================================ */

.gallery-section {
  padding: 0 var(--px) 6rem;
  border-top: 1px solid var(--t3);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.7fr 1.3fr;
  grid-template-rows: 420px;
  gap: 8px;
}

.bento-cell {
  position: relative;
  overflow: hidden;
}

.bento-cell img { transition: transform 0.7s var(--ease); }
.bento-cell:hover img { transform: scale(1.06); }

/* Darken all bento images slightly for moodier feel */
.bento-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,6,6,0.25);
  pointer-events: none;
  transition: background 0.4s ease;
}
.bento-cell:hover::after { background: rgba(6,6,6,0.1); }

.bento-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 234, 224, 0.7);
  background: rgba(6, 6, 6, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.3rem 0.7rem;
}

.b-main     { grid-column: 1; grid-row: 1; }
.b-portrait { grid-column: 2; grid-row: 1; }
.b-sq1      { display: none; }
.b-sq2      { display: none; }

/* ============================================
   ABOUT
============================================ */

.about-section {
  padding: 6rem var(--px);
  background: var(--s1);
  border-top: 1px solid var(--t3);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about-img-col {
  position: relative;
  height: clamp(420px, 55vw, 680px);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(13,13,11,0.8) 100%);
  pointer-events: none;
}

.about-label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.5rem;
}

.about-headline {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--t1);
  margin-bottom: 2rem;
}

.about-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--t2);
  line-height: 1.8;
  max-width: 48ch;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--t3);
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; }

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: -0.04em;
  color: var(--t1);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--t2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   MENU
============================================ */

.menu-section {
  padding: 6rem var(--px);
  border-top: 1px solid var(--t3);
}

.menu-list { border-top: 1px solid var(--t3); }

.menu-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--t3);
  cursor: default;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ember-dim);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  pointer-events: none;
}
.menu-item:hover::before,
.menu-item:focus-within::before { transform: scaleX(1); }

.mi-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.mi-num {
  font-family: 'Onest', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--t3);
  letter-spacing: 0.1em;
  min-width: 2ch;
  flex-shrink: 0;
}

.mi-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--t1);
  transition: color 0.25s ease;
}
.menu-item:hover .mi-name,
.menu-item:focus-within .mi-name { color: var(--ember); }

.mi-price {
  font-family: 'Onest', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--t2);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.25s ease;
}
.menu-item:hover .mi-price,
.menu-item:focus-within .mi-price { color: var(--t1); }

.mi-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--t2);
  line-height: 1.65;
  max-width: 36ch;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s ease;
  margin-left: 4rem;
}
.menu-item:hover .mi-desc,
.menu-item:focus-within .mi-desc {
  max-height: 80px;
  opacity: 1;
}

.menu-footer {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}

/* ============================================
   ATMOSPHERE QUOTE
============================================ */

.atmo-section {
  position: relative;
  height: clamp(360px, 46vw, 600px);
  overflow: hidden;
}

.atmo-img-wrap {
  position: absolute;
  inset: 0;
}

.atmo-img-wrap img { object-position: center 55%; }

.atmo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(6,6,6,0.92) 0%, rgba(6,6,6,0.6) 45%, rgba(6,6,6,0.3) 100%),
    linear-gradient(to top, rgba(6,6,6,0.5) 0%, transparent 50%);
}

.atmo-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--px);
  max-width: 780px;
}

.atmo-label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.5rem;
}

.atmo-quote {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--t1);
  margin-bottom: 1.2rem;
}

.atmo-cite {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--t2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
}

/* ============================================
   BOOKING
============================================ */

.booking-section {
  padding: 6rem var(--px);
  background: var(--s1);
  border-top: 1px solid var(--t3);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 7rem);
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.booking-headline {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--t1);
  margin-bottom: 1.5rem;
}

.booking-sub {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--t2);
  line-height: 1.75;
  max-width: 38ch;
  margin-bottom: 2rem;
}

.booking-phone {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--ember);
  margin-bottom: 1.5rem;
  transition: opacity 0.2s;
}
.booking-phone:hover { opacity: 0.7; }

.booking-address {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--t2);
  letter-spacing: 0.06em;
}

/* FORM */

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.fg label {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--t2);
}

.fg-opt {
  font-family: 'Onest', sans-serif;
  font-weight: 300;
  font-size: 0.62rem;
  color: var(--t3);
  text-transform: none;
  letter-spacing: 0;
}

.fg input,
.fg select,
.fg textarea {
  background: var(--s2);
  border: 1px solid var(--t3);
  color: var(--t1);
  font-family: 'Onest', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.fg input::placeholder,
.fg textarea::placeholder { color: var(--t3); }

.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--ember-line); }

.fg select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%232a2824' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.fg select option { background: var(--s2); color: var(--t1); }
.fg textarea { resize: none; line-height: 1.6; }

.form-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--t2);
  text-align: center;
  line-height: 1.6;
}
.form-note a {
  color: var(--ember);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.form-note a:hover { color: #d4621f; }

/* ============================================
   FOOTER
============================================ */

.footer {
  background: var(--black);
  border-top: 1px solid var(--t3);
  padding: 4.5rem var(--px) 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--t1);
}

.footer-sub {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--t2);
  letter-spacing: 0.1em;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.fc h4 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t2);
  margin-bottom: 0.9rem;
}

.fc p, .fc a {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--t2);
  line-height: 1.85;
  transition: color 0.2s;
}
.fc a:hover { color: var(--t1); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--t3);
  max-width: 1300px;
  margin: 0 auto;
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--t3);
  letter-spacing: 0.06em;
}

/* ============================================
   RESPONSIVE — TABLET
============================================ */

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 260px 240px;
  }
  .b-main     { grid-column: 1; grid-row: 1; }
  .b-portrait { grid-column: 2; grid-row: 1 / 3; }
  .b-sq1      { grid-column: 1; grid-row: 2; }
  .b-sq2      { display: none; }

  .about-grid,
  .booking-grid { grid-template-columns: 1fr; }
  .about-img-col { height: 380px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols  { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — MOBILE
============================================ */

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-burger { display: flex; }

  .section-title    { font-size: clamp(1.6rem, 8vw, 2.8rem); }
  .about-headline   { font-size: clamp(1.4rem, 7vw, 2.2rem); }
  .booking-headline { font-size: clamp(1.3rem, 6.5vw, 2.2rem); }

  .hero-headline { line-height: 0.88; }
  .hero-foot     { flex-direction: column; align-items: flex-start; }
  .hero-meta     { display: none; }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 300px;
  }
  .b-main     { grid-column: 1; grid-row: 1; }
  .b-portrait { grid-column: 1; grid-row: 2; }
  .b-sq2      { display: none; }

  .tagline-inner { grid-template-columns: 1fr; }
  .tagline-num   { writing-mode: horizontal-tb; transform: none; }

  .menu-item    { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 0.5rem 1rem; }
  .mi-left      { min-width: 0; gap: 0.75rem; }
  .mi-name      { font-size: 0.82rem; white-space: normal; }
  .mi-price     { font-size: 0.78rem; white-space: nowrap; }
  .mi-desc      { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer-cols { grid-template-columns: 1fr 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .about-stats { flex-wrap: wrap; gap: 1.5rem 2rem; }
}

/* ============================================
   REDUCED MOTION
============================================ */

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-anim { opacity: 1; animation: none; }
  .bento-cell:hover img { transform: none; }
  .menu-item::before { transition: none; }
  .hero-bg-img { animation: none !important; transform: none !important; }
}
