/* =====================================================
   THE BLOCKMAN — base styles
   ===================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* =====================================================
   HEADER — fixed (follows scroll), gains frosted bg on scroll
   Stays above side menu so logo + burger remain visible
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  background-color: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.15);
}

/* Reservations button stays white-outlined on dark frosted bar (no override needed) */

.site-logo img {
  height: 56px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.reservations-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

.reservations-btn:hover {
  background: #fff;
  color: #000;
}

.burger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.burger-btn img {
  width: 32px;
  height: auto;
}

/* =====================================================
   SIDE MENU — slides in from right
   ===================================================== */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 85vw;
  height: 100vh;
  background-color: #603b2a;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  flex-direction: column;
  padding: 100px 48px 48px 48px;
  overflow-y: auto;
}

.side-menu.is-open {
  transform: translateX(0);
}

.side-menu-close {
  display: none;
}

.side-menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-menu-nav a {
  display: block;
  padding: 18px 0;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s ease, letter-spacing 0.3s ease;
}

.side-menu-nav a:hover {
  opacity: 0.75;
  letter-spacing: 0.12em;
}

/* Backdrop behind the menu */
.side-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.side-menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 600px) {
  .side-menu {
    width: 100%;
    max-width: 100%;
    padding: 90px 32px 40px 32px;
  }
  .side-menu-nav a {
    font-size: 13px;
  }
}

/* =====================================================
   RESERVATION MODAL — opens when Reservations is clicked
   ===================================================== */
.reservation-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 240;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.reservation-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.reservation-modal-inner {
  position: relative;
  width: 100%;
  max-width: 1400px;
  background-color: #ffffff;
  padding: 8px;
  transform: translateY(24px);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.reservation-modal.is-open .reservation-modal-inner {
  transform: translateY(0);
}

.reservation-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.reservation-modal-close:hover {
  transform: scale(1.1);
  opacity: 0.7;
}

.reservation-modal-close svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
}

.reservation-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.reservation-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.reservation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.30);
  z-index: 1;
  transition: background-color 0.3s ease;
}

.reservation-card:hover {
  transform: scale(1.01);
}

.reservation-card:hover::before {
  background-color: rgba(0, 0, 0, 0.45);
}

.reservation-card-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 18px 56px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.reservation-card:hover .reservation-card-label {
  background-color: #ffffff;
  color: #000000;
}

@media (max-width: 768px) {
  .reservation-modal {
    padding: 24px;
  }
  .reservation-modal-inner {
    padding: 6px;
  }
  .reservation-cards {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .reservation-card {
    height: 240px;
  }
  .reservation-card-label {
    padding: 14px 36px;
    font-size: 14px;
  }
  .reservation-modal-close {
    top: -36px;
    right: 0;
  }
}

/* =====================================================
   HERO — full viewport video background
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* slight darkening so foreground reads cleanly */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 2;
  pointer-events: none;
}

/* =====================================================
   ABOUT US SECTION
   ===================================================== */
.about {
  background-color: #f3ede2;
  padding: 110px 48px 90px 48px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.about-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 45px;
  font-weight: 400;
  color: #4a4a4a;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  line-height: 1.2;
}

.about-title-script {
  font-family: 'Allison', cursive;
  font-size: 1.4em;
  color: #6b6b6b;
  margin-left: 8px;
  font-weight: 400;
}

.about-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
  color: #4a4a4a;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

/* --- 4 image tiles --- */
.about-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 72px;
  max-width: 1500px;
  margin: 80px auto 0 auto;
}

.about-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.about-tile:hover {
  transform: scale(1.02);
}

.about-tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.30);
  z-index: 1;
  transition: background-color 0.3s ease;
}

.about-tile:hover .about-tile-overlay {
  background-color: rgba(0, 0, 0, 0.45);
}

.about-tile-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 18px 56px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.about-tile:hover .about-tile-label {
  background-color: #ffffff;
  color: #000000;
}

@media (max-width: 1024px) {
  .about-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-tile {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .about {
    padding: 80px 24px 70px 24px;
  }
  .about-title {
    font-size: 36px;
  }
  .about-tiles {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 50px;
  }
  .about-tile {
    height: 280px;
  }
  .about-text {
    font-size: 14px;
  }
}

/* =====================================================
   PARALLAX BANNER
   ===================================================== */
.parallax-banner {
  width: 100%;
  height: 800px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .parallax-banner {
    /* fixed background attachment doesn't work on most mobile browsers, so fall back gracefully */
    background-attachment: scroll;
    height: 480px;
  }
}

/* =====================================================
   BLOCKMAN EXPERIENCES SECTION
   ===================================================== */
.experiences {
  background-color: #f3ede2;
  padding: 110px 48px 90px 48px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.experiences-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.experiences-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 45px;
  font-weight: 400;
  color: #4a4a4a;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  line-height: 1.2;
}

.experiences-title-script {
  font-family: 'Allison', cursive;
  font-size: 1.4em;
  color: #6b6b6b;
  margin-left: 8px;
  font-weight: 400;
}

/* --- 3 square experience tiles --- */
.experiences-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  max-width: 1500px;
  margin: 80px auto 0 auto;
}

.experiences-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.experiences-tile:hover {
  transform: scale(1.02);
}

.experiences-tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.30);
  z-index: 1;
  transition: background-color 0.3s ease;
}

.experiences-tile:hover .experiences-tile-overlay {
  background-color: rgba(0, 0, 0, 0.45);
}

.experiences-tile-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 18px 56px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.experiences-tile:hover .experiences-tile-label {
  background-color: #ffffff;
  color: #000000;
}

@media (max-width: 1024px) {
  .experiences-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .experiences {
    padding: 80px 24px 70px 24px;
  }
  .experiences-title {
    font-size: 36px;
  }
  .experiences-tiles {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 50px;
  }
}

/* =====================================================
   MENU PAGE — header, sections, 3-col grid
   ===================================================== */
.menu-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  max-height: 720px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.32);
  z-index: 1;
}

.menu-hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1;
}

.menu-hero-script {
  font-family: 'Allison', cursive;
  font-size: 1.8em;
  color: #ffffff;
  letter-spacing: 0;
  margin-right: 18px;
  font-weight: 400;
  text-transform: lowercase;
  vertical-align: baseline;
}

/* ===== Body ===== */
.menu-body {
  background-color: #f3ede2;
  padding: 90px 48px 110px 48px;
  width: 100%;
}

.menu-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.menu-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #4a4a4a;
  letter-spacing: 0.18em;
  text-align: center;
  margin: 70px 0 18px 0;
  text-transform: uppercase;
}

.menu-section-title:first-of-type {
  margin-top: 0;
}

.menu-section-title-small {
  font-size: 20px;
  letter-spacing: 0.22em;
  margin-top: 50px;
}

.menu-section-title-left {
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
}

.menu-section-subnote {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #6b6b6b;
  text-align: center;
  margin: -8px 0 30px 0;
  letter-spacing: 0.02em;
}

/* ===== 3-col grid for items ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 60px;
  margin-bottom: 30px;
}

.menu-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 80px;
}

.menu-item {
  font-family: 'Montserrat', sans-serif;
  color: #4a4a4a;
}

.menu-item-wide {
  grid-column: 1 / -1;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

.menu-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex: 1;
  line-height: 1.3;
}

.menu-item-name em {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  color: #6b6b6b;
}

.menu-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 13px;
  font-weight: 400;
  color: #6b6b6b;
  line-height: 1.55;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.menu-item-cuts {
  font-size: 13px;
  font-weight: 600;
  color: #4a4a4a;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* Sub-items (caviar variants, dry-aged sizes, etc) */
.menu-subitem-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6b6b6b;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.menu-subitem-row strong {
  color: #2a2a2a;
  font-weight: 600;
}

/* ===== Tartare intro block — full-width, aligned with grid below ===== */
.menu-tartare-block {
  width: 100%;
  margin: 0 0 40px 0;
  padding: 0;
}

.menu-tartare-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.10);
}

.menu-tartare-row:first-child {
  border-top: 1px dotted rgba(0, 0, 0, 0.10);
}

.menu-tartare-row-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-tartare-row-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.menu-tartare-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-style: italic;
  color: #6b6b6b;
  text-align: center;
  margin: 18px 0 22px 0;
  letter-spacing: 0.01em;
}

/* Tartare items grid — 2-col, matches main menu-grid width */
.menu-tartare-grid {
  width: 100%;
  margin: 0 0 30px 0;
  gap: 30px 80px;
}

.menu-tartare-grid .menu-item {
  padding-bottom: 4px;
}

.menu-tartare-grid .menu-item-name {
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .menu-tartare-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .menu-tartare-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===== Tartare intro block (centered text) ===== */
.menu-tartare-intro {
  max-width: 720px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.menu-tartare-intro .menu-item-row {
  justify-content: center;
  gap: 24px;
}

.menu-tartare-intro .menu-item-desc {
  text-align: center;
}

/* ===== Prose blocks (ageing process, blurbs) ===== */
.menu-prose-block {
  width: 100%;
  margin: 0 0 40px 0;
  text-align: center;
}

.menu-prose-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 24px 0 12px 0;
  text-align: center;
}

.menu-prose-price {
  margin-left: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #2a2a2a;
}

.menu-prose-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: #4a4a4a;
  margin-bottom: 14px;
}

/* ===== Premium cuts (full-width descriptive blocks) ===== */
.menu-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  margin-bottom: 30px;
}

.menu-premium-item {
  font-family: 'Montserrat', sans-serif;
}

/* ===== Bone (dry/wet aged) blocks ===== */
.menu-bone-block {
  width: 100%;
  margin: 0 0 30px 0;
}

.menu-bone-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.menu-bone-block .menu-prose-text {
  text-align: center;
  margin-bottom: 18px;
}

.menu-bone-block .menu-subitem-row {
  font-size: 14px;
  color: #4a4a4a;
  padding: 4px 0;
}

/* ===== Elevate / Add to dish blocks ===== */
.menu-elevate-block {
  max-width: 520px;
  margin: 60px auto 70px auto;
  padding: 32px 40px 28px 40px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.menu-elevate-title {
  margin-bottom: 18px !important;
}

.menu-elevate-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2a2a2a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}

.menu-elevate-block .menu-subitem-row {
  font-size: 13px;
  padding: 4px 0;
}

/* ===== Two-col (sauces / butters) ===== */
.menu-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 880px;
  margin: 0 auto 50px auto;
  padding-top: 60px;
}

.menu-two-col-flush {
  padding-top: 0;
  margin-bottom: 0;
}

.menu-list .menu-subitem-row {
  font-size: 14px;
  padding: 5px 0;
  color: #4a4a4a;
}

/* ===== Card wrapper — white inset block for select sections ===== */
.menu-card {
  background-color: #ffffff;
  padding: 60px 56px 70px 56px;
  margin: 50px 0;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.menu-card .menu-section-title:first-of-type,
.menu-card > .menu-section-title {
  margin-top: 0;
}

.menu-card .menu-grid:last-child,
.menu-card > .menu-grid:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .menu-card {
    padding: 40px 24px 50px 24px;
    margin: 36px auto;
  }
}

/* ===== Allergens (already had white card style; refine to match new card) ===== */
.menu-allergens {
  margin: 70px 0 0 0;
  padding: 56px 48px 50px 48px;
  background: #ffffff;
  border: 0;
  text-align: center;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.menu-allergen-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.menu-allergen-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #6b6b6b;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
  .menu-grid-2 {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .menu-premium-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .menu-two-col {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .menu-body {
    padding: 70px 24px 90px 24px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .menu-section-title {
    font-size: 22px;
    margin-top: 50px;
  }
  .menu-two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .menu-hero {
    height: 50vh;
    min-height: 340px;
  }
}

/* ===== Wine menu — region-grouped 2-col layout ===== */
.menu-section-title-script {
  font-family: 'Allison', cursive;
  font-size: 2.4em;
  color: #4a4a4a;
  margin-left: 10px;
  letter-spacing: 0;
  text-transform: lowercase;
  font-weight: 400;
  vertical-align: baseline;
}

.menu-wine-grid {
  column-count: 2;
  column-gap: 80px;
  width: 100%;
  margin: 0 0 30px 0;
}

.menu-wine-region {
  margin-bottom: 24px;
}

/* For small regions, keep them together. For large ones, allow column break */
.menu-wine-region-name {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #2a2a2a !important;
  background: transparent !important;
  letter-spacing: 0.04em !important;
  margin: 0 0 8px 0 !important;
  text-transform: none !important;
  break-after: avoid;
  -webkit-column-break-after: avoid;
  page-break-after: avoid;
}

/* Each individual row stays intact, but rows can break between columns */
.menu-wine-grid .menu-subitem-row {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.menu-wine-grid .menu-subitem-row {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  padding: 5px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.08);
  align-items: flex-start;
}

.menu-wine-grid .menu-subitem-row span:first-child {
  flex: 1;
  padding-right: 12px;
}

.menu-wine-grid .menu-subitem-row em {
  display: block;
  font-style: italic;
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}

.menu-wine-grid .menu-subitem-row span:last-child {
  color: #2a2a2a;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .menu-wine-grid {
    column-count: 1;
    column-gap: 0;
  }
}

/* ===== Spirits multi-column grid (compact name/price rows) ===== */
.menu-spirits-cat-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #2a2a2a !important;
  background: transparent !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  margin: 70px auto 24px auto !important;
  text-align: center !important;
  padding: 0 0 12px 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10) !important;
  max-width: 1200px;
  display: block;
}

/* First spirits subheading (GIN) needs a touch less space since SPIRITS title is right above */
.menu-section-title + .menu-spirits-cat-title {
  margin-top: 30px !important;
}

/* Two-column layout that fills LEFT first, then RIGHT (reads like a printed list) */
.menu-spirits-grid {
  column-count: 2;
  column-gap: 80px;
  width: 100%;
  margin: 0 0 30px 0;
}

.menu-spirits-grid .menu-subitem-row {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  padding: 6px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.08);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.menu-spirits-grid .menu-subitem-row span:last-child {
  color: #2a2a2a;
  font-weight: 600;
}

/* Compact spirits block (Abstinence non-alcoholic) */
.menu-spirits-block {
  max-width: 480px;
  margin: 0 auto 30px auto;
  padding: 20px 30px;
}

.menu-spirits-block .menu-subitem-row {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.08);
}

.menu-spirits-block .menu-subitem-row span:last-child {
  color: #2a2a2a;
  font-weight: 600;
}

@media (max-width: 600px) {
  .menu-spirits-grid {
    column-count: 1;
    column-gap: 0;
  }
  .menu-spirits-cat-title {
    font-size: 16px !important;
    margin-top: 50px !important;
  }
}

/* =====================================================
   OUR MEAT PAGE
   ===================================================== */
.meat-section {
  background-color: #f3ede2;
  padding: 90px 48px 70px 48px;
  width: 100%;
}

.meat-section-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 38px !important;
  font-weight: 400 !important;
  color: #4a4a4a !important;
  letter-spacing: 0.01em !important;
  line-height: 1.25 !important;
  margin: 0 auto 60px auto !important;
  background: transparent !important;
  text-transform: none !important;
}

.meat-section-title-center {
  text-align: center !important;
  max-width: 1200px;
}

.meat-section-title-script {
  font-family: 'Allison', cursive !important;
  font-size: 1.4em !important;
  color: #6b6b6b !important;
  margin-left: 8px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

/* Two-column row: images on left, text on right (default) */
.meat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

/* Reversed: text on left, images on right */
.meat-row-reverse .meat-text {
  order: 1;
}
.meat-row-reverse .meat-images {
  order: 2;
}

.meat-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.meat-image {
  width: 100%;
  height: 0;
  padding-bottom: 130%; /* portrait ratio */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.meat-text {
  padding: 0 12px;
}

.meat-paragraph {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: #4a4a4a;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.meat-paragraph:last-child {
  margin-bottom: 0;
}

.meat-paragraph-italic {
  font-style: italic;
}

/* Closing centered section */
.meat-closing {
  background-color: #f3ede2;
  padding: 70px 48px 110px 48px;
  width: 100%;
  text-align: center;
}

.meat-closing-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1024px) {
  .meat-section {
    padding: 70px 32px 50px 32px;
  }
  .meat-section-title {
    font-size: 30px !important;
    margin-bottom: 50px !important;
  }
  .meat-row {
    gap: 40px;
  }
  .meat-images {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .meat-row,
  .meat-row-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* On mobile, always images on top, text below regardless of desktop order */
  .meat-row .meat-images,
  .meat-row-reverse .meat-images {
    order: -1;
  }
  .meat-row .meat-text,
  .meat-row-reverse .meat-text {
    order: 0;
  }
}

@media (max-width: 600px) {
  .meat-section {
    padding: 60px 20px 50px 20px;
  }
  .meat-section-title {
    font-size: 24px !important;
    margin-bottom: 36px !important;
  }
  .meat-paragraph {
    font-size: 15px;
  }
  .meat-images {
    gap: 12px;
  }
  .meat-closing {
    padding: 50px 20px 80px 20px;
  }
}

/* =====================================================
   RESTAURANT PAGE — locations with showcase rows
   ===================================================== */
.restaurant-location {
  background-color: #f3ede2;
  padding: 30px 48px 70px 48px;
  width: 100%;
}

.restaurant-location-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #4a4a4a;
  letter-spacing: 0.02em;
  margin: 0 auto 50px auto;
  line-height: 1.2;
  text-align: center;
}

.restaurant-location-script {
  font-family: 'Allison', cursive;
  font-size: 1.4em;
  color: #6b6b6b;
  margin-left: 8px;
  font-weight: 400;
}

.restaurant-location .philosophy-showcase-grid {
  max-width: 1500px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .restaurant-location {
    padding: 20px 24px 50px 24px;
  }
  .restaurant-location-title {
    font-size: 28px;
    margin-bottom: 36px;
  }
}

/* =====================================================
   OUR PHILOSOPHY PAGE
   ===================================================== */
.philosophy-hero {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Center-aligned hero variant — for chef hero where the subject is centered */
.philosophy-hero-center {
  background-position: center center;
}

/* Showcase video — same dimensions as showcase-image */
.philosophy-showcase-video {
  width: 100%;
  height: 74vh;
  min-height: 575px;
  max-height: 880px;
  overflow: hidden;
  position: relative;
  background-color: #000;
}

.philosophy-showcase-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .philosophy-showcase-video {
    height: 64vh;
    min-height: 450px;
  }
}

@media (max-width: 600px) {
  .philosophy-showcase-video {
    height: 56vh;
    min-height: 370px;
  }
}

.philosophy-intro {
  background-color: #f3ede2;
  padding: 110px 48px 90px 48px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.philosophy-intro-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 45px;
  font-weight: 400;
  color: #4a4a4a;
  letter-spacing: 0.02em;
  margin-bottom: 50px;
  line-height: 1.2;
}

.philosophy-title-script {
  font-family: 'Allison', cursive;
  font-size: 1.4em;
  color: #6b6b6b;
  margin-left: 8px;
  font-weight: 400;
}

.philosophy-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: #4a4a4a;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.philosophy-text:last-child {
  margin-bottom: 0;
}

/* 3-image showcase row */
.philosophy-showcase {
  background-color: #f3ede2;
  padding: 30px 48px 110px 48px;
  width: 100%;
}

.philosophy-showcase-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.philosophy-showcase-image {
  width: 100%;
  height: 74vh;
  min-height: 575px;
  max-height: 880px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .philosophy-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .philosophy-showcase-image {
    height: 64vh;
    min-height: 450px;
  }
}

@media (max-width: 600px) {
  .philosophy-intro {
    padding: 80px 24px 60px 24px;
  }
  .philosophy-title {
    font-size: 36px;
    margin-bottom: 36px;
  }
  .philosophy-text {
    font-size: 15px;
  }
  .philosophy-showcase {
    padding: 20px 24px 80px 24px;
  }
  .philosophy-showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .philosophy-showcase-image {
    height: 56vh;
    min-height: 370px;
  }
}

/* =====================================================
   PAGE HERO — top banner image used on inner pages
   ===================================================== */
.page-hero {
  width: 100%;
  height: 60vh;
  min-height: 380px;
  max-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* =====================================================
   TITLED HERO — image background with centered title overlay
   ===================================================== */
.titled-hero {
  position: relative;
  width: 100%;
  height: 38vh;
  min-height: 280px;
  max-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.titled-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.30);
  z-index: 1;
}

.titled-hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  padding: 0 24px;
}

.titled-hero-script {
  font-family: 'Allison', cursive;
  font-size: 1.4em;
  color: #ffffff;
  margin-left: 8px;
  font-weight: 400;
}

/* =====================================================
   GALLERY AUTO-SLIDING CAROUSEL — 3 images visible
   ===================================================== */
.gallery-carousel-section {
  background-color: #f3ede2;
  padding: 100px 0;
  width: 100%;
}

.gallery-carousel {
  position: relative;
  width: 85%;
  margin: 0 auto;
  overflow: hidden;
}

/* Manual navigation arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  color: #2a2a2a;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-arrow:hover {
  background-color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.gallery-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.gallery-arrow svg {
  width: 24px;
  height: 24px;
  display: block;
}

.gallery-arrow-prev {
  left: 24px;
}

.gallery-arrow-next {
  right: 24px;
}

@media (max-width: 1024px) {
  .gallery-arrow {
    width: 50px;
    height: 50px;
  }
  .gallery-arrow svg {
    width: 20px;
    height: 20px;
  }
  .gallery-arrow-prev { left: 16px; }
  .gallery-arrow-next { right: 16px; }
}

@media (max-width: 600px) {
  .gallery-arrow {
    width: 44px;
    height: 44px;
  }
  .gallery-arrow svg {
    width: 18px;
    height: 18px;
  }
  .gallery-arrow-prev { left: 10px; }
  .gallery-arrow-next { right: 10px; }
}

.gallery-carousel-track {
  display: flex;
  gap: 50px;
  /* slide width is set on each slide; the track moves via translateX */
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.gallery-carousel-slide {
  /* 3 visible slides + 2 gaps of 50px = 100px total gap; subtract from 100% then ÷3 */
  flex: 0 0 calc((100% - 100px) / 3);
  height: 74vh;
  min-height: 575px;
  max-height: 880px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .gallery-carousel-section {
    padding: 70px 0;
  }
  .gallery-carousel {
    width: 90%;
  }
  .gallery-carousel-track {
    gap: 30px;
  }
  .gallery-carousel-slide {
    flex: 0 0 calc((100% - 30px) / 2);
    height: 64vh;
    min-height: 450px;
  }
}

@media (max-width: 600px) {
  .gallery-carousel-section {
    padding: 50px 0;
  }
  .gallery-carousel {
    width: 92%;
  }
  .gallery-carousel-track {
    gap: 20px;
  }
  .gallery-carousel-slide {
    flex: 0 0 100%;
    height: 56vh;
    min-height: 370px;
  }
  .titled-hero {
    height: 30vh;
    min-height: 220px;
  }
}

/* =====================================================
   CONTACT PAGE — two-column location details with map
   ===================================================== */
.contact-hero {
  height: 38vh;
  min-height: 240px;
  max-height: 360px;
}

.contact-page {
  background-color: #f3ede2;
  padding: 80px 48px 100px 48px;
  width: 100%;
}

.contact-page-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-page-block {
  font-family: 'Montserrat', sans-serif;
  color: #4a4a4a;
}

.contact-page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1f1f1f;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  line-height: 1.2;
}

.contact-page-address {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 36px;
}

.contact-page-subhead {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1f1f1f;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  line-height: 1.2;
}

/* Tighter top space when subhead follows the hours block */
.contact-page-line + .contact-page-subhead {
  margin-top: 28px;
}

.contact-page-line {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-page-line strong {
  font-weight: 700;
  color: #1f1f1f;
}

.contact-page-line a {
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-page-line a:hover {
  color: #000;
}

.contact-page-map {
  width: 100%;
  height: 320px;
  margin-top: 36px;
  background: #ddd6c4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.contact-page-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .contact-hero {
    height: 28vh;
    min-height: 200px;
  }
  .contact-page {
    padding: 60px 24px 80px 24px;
  }
  .contact-page-title {
    font-size: 26px;
  }
  .contact-page-subhead {
    font-size: 18px;
  }
  .contact-page-map {
    height: 240px;
  }
}

/* =====================================================
   GALLERY SPLIT HERO — two halves, full viewport
   ===================================================== */
.gallery-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100vh;
  min-height: 640px;
}

.gallery-split-half {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-split-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.30);
  z-index: 1;
  transition: background-color 0.4s ease;
}

.gallery-split-half:hover .gallery-split-overlay {
  background-color: rgba(0, 0, 0, 0.20);
}

.gallery-split-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
  width: 100%;
  max-width: 600px;
}

.gallery-split-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 60px;
  line-height: 1.2;
}

.gallery-split-script {
  font-family: 'Allison', cursive;
  font-size: 1.4em;
  color: #ffffff;
  margin-left: 8px;
  font-weight: 400;
}

.gallery-split-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.gallery-pill {
  display: inline-block;
  padding: 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  background-color: transparent;
  text-decoration: none;
  text-align: center;
  width: 130px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.gallery-pill:hover {
  background-color: #ffffff;
  color: #000000;
}

@media (max-width: 768px) {
  .gallery-split {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .gallery-split-half {
    min-height: 70vh;
    height: 70vh;
  }
  .gallery-split-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .gallery-split-buttons {
    gap: 12px;
    flex-wrap: wrap;
  }
  .gallery-pill {
    padding: 11px 0;
    font-size: 13px;
    width: 100px;
  }
}

/* When this title section follows the page hero, give it a touch less top padding */
.experiences-page-title {
  padding-top: 90px;
  padding-bottom: 30px;
}

/* =====================================================
   EXPERIENCE ROW — image left, content right (alternating support later)
   ===================================================== */
.experience-row {
  background-color: #f3ede2;
  padding: 50px 48px 60px 48px;
  width: 100%;
  position: relative;
  z-index: 5;
  scroll-margin-top: 80px;
}

/* Add bottom padding to the LAST row before the woodgrain banner */
.experience-row:last-of-type {
  padding-bottom: 110px;
}

.experience-row-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Reversed variant — image on the right, text on the left */
.experience-row-reverse .experience-row-image {
  order: 2;
}

.experience-row-reverse .experience-row-content {
  order: 1;
}

.experience-row-image {
  width: 100%;
}

.experience-row-image img {
  width: 100%;
  height: auto;
  display: block;
}

.experience-row-content {
  display: flex;
  flex-direction: column;
}

.experience-row-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1f1f1f;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.experience-row-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.experience-row-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: #4a4a4a;
}

.experience-row-text + .experience-row-text {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .experience-row-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .experience-row-image {
    max-width: 520px;
    margin: 0 auto;
  }
  /* On mobile, reversed rows still show image first */
  .experience-row-reverse .experience-row-image {
    order: 1;
  }
  .experience-row-reverse .experience-row-content {
    order: 2;
  }
}

@media (max-width: 600px) {
  .page-hero {
    height: 40vh;
    min-height: 280px;
  }
  .experiences-page-title {
    padding-top: 70px;
    padding-bottom: 20px;
  }
  .experience-row {
    padding: 30px 24px 40px 24px;
  }
  .experience-row:last-of-type {
    padding-bottom: 80px;
  }
  .experience-row-title {
    font-size: 22px;
    letter-spacing: 0.14em;
  }
  .experience-row-sub {
    font-size: 14px;
  }
  .experience-row-text {
    font-size: 14px;
  }
}

/* =====================================================
   WOODGRAIN BANNER (parallax) — with 101 logo overlay
   ===================================================== */
.woodgrain-banner {
  height: 360px;
  display: flex;
  align-items: center;
  padding: 0 48px;
}

.woodgrain-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}

.woodgrain-logo {
  position: relative;
  z-index: 10;
  width: 200px;
  height: auto;
}

@media (max-width: 768px) {
  .woodgrain-banner {
    height: 240px;
    padding: 0 24px;
  }
  .woodgrain-logo {
    width: 130px;
  }
}

/* =====================================================
   CONTACT FOOTER
   ===================================================== */
.contact {
  background-color: #f3ede2;
  padding: 90px 48px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.contact-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 60px;
}

.contact-block {
  font-family: 'Montserrat', sans-serif;
  color: #4a4a4a;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #4a4a4a;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  line-height: 1.2;
}

.contact-title-script {
  font-family: 'Allison', cursive;
  font-size: 1.4em;
  color: #6b6b6b;
  margin-left: 4px;
  font-weight: 400;
}

.contact-address {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 24px;
  max-width: 380px;
}

.contact-hours {
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  margin-bottom: 8px;
}

.contact-hours strong {
  font-weight: 600;
}

.contact-phone {
  margin-top: 18px;
  font-size: 14px;
}

.contact-phone a {
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-phone a:hover {
  color: #000;
}

.contact-socials {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #4a4a4a;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: #000;
  transform: translateY(-2px);
}

.contact-map {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  background: #ddd6c4;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dual-map: stacked Parkhurst over Bryanston, fills full parent height */
.contact-map-dual {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  height: 360px;
  align-items: stretch;
  justify-content: stretch;
}

.contact-map-half {
  position: relative;
  width: 100%;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  background: #ddd6c4;
}

.contact-map-half iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.contact-map-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.95);
  color: #2a2a2a;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.contact-map-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a7e6b;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-map {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .contact {
    padding: 70px 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-title {
    font-size: 26px;
  }
  .contact-map {
    height: 280px;
  }
}

/* =====================================================
   COPYRIGHT BAR
   ===================================================== */
.copyright-bar {
  background-color: #603b2a;
  padding: 28px 48px;
  width: 100%;
}

.copyright-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.copyright-logos {
  display: flex;
  align-items: center;
  gap: 40px;
}

.cb-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.cb-logo-large {
  height: 40px;
}

.cb-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cb-logo-link:hover {
  opacity: 0.75;
}

.cb-logo-blockman {
  height: 36px;
  filter: none;
}

.copyright-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .copyright-bar {
    padding: 24px;
  }
  .copyright-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .copyright-logos {
    gap: 24px;
  }
  .cb-logo {
    height: 22px;
  }
  .cb-logo-large {
    height: 32px;
  }
  .cb-logo-blockman {
    height: 28px;
  }
  .copyright-text {
    font-size: 12px;
  }
}

/* =====================================================
   AWARD LOGO — sits inside hero, scrolls away with it
   ===================================================== */
.award-logo {
  position: absolute;
  bottom: 140px;
  right: 32px;
  z-index: 10;
  width: 170px;
  height: auto;
}

/* =====================================================
   WHATSAPP CHAT — toggle button + slide-up panel
   ===================================================== */
.wa-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.wa-toggle:hover {
  transform: scale(1.05);
}

.wa-toggle-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

.wa-toggle-icon img {
  width: 78px;
  height: 78px;
}

.wa-toggle-icon-default {
  opacity: 1;
  transform: rotate(0deg);
}

.wa-toggle-icon-close {
  opacity: 0;
  transform: rotate(-90deg);
  width: 56px;
  height: 56px;
  margin: auto;
  background-color: #25d366;
  border-radius: 50%;
}

.wa-toggle.is-open .wa-toggle-icon-default {
  opacity: 0;
  transform: rotate(90deg);
}

.wa-toggle.is-open .wa-toggle-icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

/* Booking tooltip beside the icon (hides when chat is open) */
.whatsapp-tooltip {
  position: fixed;
  bottom: 56px;
  right: 122px;
  z-index: 99;
  background: #fff;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-tooltip.is-hidden {
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
}

/* =====================================================
   WHATSAPP CHAT PANEL — slides up above toggle
   ===================================================== */
.wa-panel {
  position: fixed;
  bottom: 130px;
  right: 32px;
  z-index: 100;
  width: 360px;
  max-width: calc(100vw - 32px);
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transform: translateY(20px) scale(0.96);
  transform-origin: bottom right;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1), visibility 0.3s;
}

.wa-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wa-panel-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px 24px 22px;
  background-color: #25d366;
  color: #ffffff;
}

.wa-panel-header-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-panel-header-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  letter-spacing: 0.01em;
}

.wa-panel-header-text p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
  opacity: 0.95;
}

.wa-panel-body {
  padding: 18px 18px 22px 18px;
  background-color: #f4f4f4;
}

.wa-panel-typically {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #666;
  margin: 0 0 14px 4px;
}

.wa-restaurant {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-restaurant:last-child {
  margin-bottom: 0;
}

.wa-restaurant:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.wa-restaurant-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-restaurant-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wa-restaurant-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 2px;
}

.wa-restaurant-sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #777;
}

.wa-restaurant-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.12);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
  .site-header {
    padding: 18px 20px;
  }
  .site-logo img {
    height: 36px;
  }
  .header-actions {
    gap: 18px;
  }
  .reservations-btn {
    padding: 9px 18px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .burger-btn {
    padding: 4px;
  }
  .burger-btn img {
    width: 26px;
  }
  .award-logo {
    width: 110px;
    bottom: 20px;
    right: 20px;
  }
  .wa-toggle {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
  .wa-toggle-icon img {
    width: 60px;
    height: 60px;
  }
  .wa-toggle-icon-close {
    width: 44px;
    height: 44px;
  }
  .whatsapp-tooltip {
    bottom: 38px;
    right: 92px;
    font-size: 12px;
    padding: 10px 16px;
    white-space: normal;
    max-width: 180px;
    text-align: right;
  }
  .wa-panel {
    bottom: 96px;
    right: 20px;
    width: 320px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 14px 16px;
  }
  .site-logo img {
    height: 30px;
  }
  .header-actions {
    gap: 14px;
  }
  .reservations-btn {
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .burger-btn img {
    width: 24px;
  }
}