:root {
  --shell: #F7F2E9;
  --paper: #FBF9F4;
  --sand: #E8DCC4;
  --terracotta: #B97F6A;
  --terracotta-deep: #A06A57;
  --coral: #D89A87;
  --gold: #B89968;
  --leaf: #7A8C73;
  --ink: #1F2832;
  --ink-soft: rgba(31, 40, 50, 0.7);
  --ink-faint: rgba(31, 40, 50, 0.5);
  --hairline: rgba(31, 40, 50, 0.12);
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--shell);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--terracotta); color: var(--paper); }

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-light { color: rgba(255, 255, 255, 0.85); }
.eyebrow-light::before { background: rgba(255, 255, 255, 0.7); }

.section-title {
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-top: 22px;
  margin-bottom: 28px;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; }

/* ============ BUTTONS ============ */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

/* ============ UTILITY BAR ============ */
.utility-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 9px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-bar a {
  color: var(--paper);
  letter-spacing: 1.5px;
  transition: color 0.3s;
}
.utility-bar a:hover { color: var(--coral); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 56px;
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hairline);
}
.logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--terracotta); }
.nav-cta {
  padding: 11px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ============ MOBILE BURGER + DRAWER ============ */
.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--shell);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  padding: 80px 24px 56px;
}
.nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.nav-drawer-links a {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
}
.nav-drawer-links a:hover { color: var(--terracotta); }
.nav-drawer-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: var(--terracotta);
  color: var(--paper) !important;
  border-radius: 999px;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase;
  font-family: inherit;
}
.nav-drawer-cta:hover { background: var(--terracotta-deep); color: var(--paper) !important; }
.nav-drawer-foot {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
}
.nav-drawer-foot a {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(15, 20, 28, 0.78) 0%, rgba(15, 20, 28, 0.55) 35%, rgba(15, 20, 28, 0.2) 70%, rgba(15, 20, 28, 0.1) 100%),
    linear-gradient(180deg, rgba(15, 20, 28, 0.35) 0%, rgba(15, 20, 28, 0.1) 40%, rgba(15, 20, 28, 0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 0 56px;
  margin-left: 56px;
  color: var(--paper);
}
.hero-title {
  font-size: clamp(56px, 7.8vw, 104px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1px;
  margin-top: 24px;
  margin-bottom: 32px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
.hero-tagline {
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.92);
  margin-top: -16px;
  margin-bottom: 24px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.96);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0));
}

/* ============ TAGLINE ============ */
.tagline {
  padding: 140px 56px;
  text-align: center;
  background: var(--shell);
}
.tagline-inner {
  max-width: 760px;
  margin: 0 auto;
}
.tagline-quote {
  font-size: clamp(54px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 28px 0 32px;
  color: var(--ink);
}
.tagline-quote em {
  font-style: italic;
  color: var(--terracotta);
}
.tagline-text {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}

/* ============ STORY ============ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 56px;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--paper);
}
.story-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink);
}
.story-video,
.story-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-video { z-index: 2; }
.story-fallback { z-index: 1; }
.story-image.video-ready .story-fallback { display: none; }
.story-text {
  padding: 0;
  max-width: 520px;
}
.story-text p {
  margin-bottom: 20px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--hairline);
}
.stat-num {
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--terracotta);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.stat-num em {
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-left: 2px;
}
.stat-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============ MENU ============ */
.menu {
  padding: 140px 56px;
  background: var(--shell);
}
.menu-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto 80px;
}
.menu-intro {
  font-size: 18px;
  max-width: 460px;
  margin-bottom: 8px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ============ MENU MODE TOGGLE (Dinner / Lunch) ============ */
.menu-mode-toggle {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  width: fit-content;
  margin: 0 auto 48px;
  padding: 4px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 999px;
}
.menu-mode {
  padding: 11px 32px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.menu-mode:hover { color: var(--ink); }
.menu-mode.is-active {
  background: var(--ink);
  color: var(--paper);
}
.menu-mode-content[hidden] { display: none; }

/* ============ MENU TABS ============ */
.menu-tabs {
  max-width: 1280px;
  margin: 0 auto 56px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--hairline);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-panel { scroll-margin-top: 120px; }
.menu-tab {
  padding: 16px 22px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.3s ease, border-color 0.3s ease;
  margin-bottom: -1px;
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.is-active {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.menu-panels {
  max-width: 1280px;
  margin: 0 auto;
}
.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: menuFadeIn 0.4s ease; }
@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 64px;
}

.menu-item { display: flex; flex-direction: column; gap: 8px; }

.menu-item-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu-item-name {
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.2px;
}
.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--ink-faint);
  height: 1px;
  margin: 0 4px 6px;
  opacity: 0.5;
}
.menu-item-price {
  font-size: 18px;
  font-weight: 500;
  color: var(--terracotta);
  font-feature-settings: 'lnum';
}
.menu-item-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 95%;
}

.menu-item-group {
  grid-column: 1 / -1;
  padding-top: 8px;
  border-top: 1px solid var(--hairline);
  gap: 0;
}
.menu-item-group:first-child { padding-top: 0; border-top: none; }
.menu-item-group-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-note {
  text-align: center;
  margin-top: 64px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.dish {
  display: flex;
  flex-direction: column;
}
.dish-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--sand);
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 2px;
}
.dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.dish:hover .dish-img img {
  transform: scale(1.05);
}
.dish-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(247, 242, 233, 0.92);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 2px;
}
.dish-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}
.dish-num {
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
}
.dish-name {
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.dish-price {
  font-size: 18px;
  font-weight: 500;
  color: var(--terracotta);
}
.dish-desc {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.55;
}
.dish-meta {
  display: flex;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}

/* ============ WINE ============ */
.wine {
  padding: 140px 56px;
  background: var(--paper);
}
.wine-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.wine-intro {
  font-size: 18px;
  max-width: 480px;
  margin: 24px auto 0;
  font-style: italic;
  color: var(--ink-soft);
}
.wine-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}
.wine-list .menu-item-name { font-size: 22px; letter-spacing: 0.3px; }
.wine-list .menu-item-price { font-size: 17px; }
.wine-list .menu-item-desc { font-style: italic; font-size: 15px; }
.wine-note {
  text-align: center;
  margin: 64px auto 0;
  max-width: 460px;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-faint);
  line-height: 1.6;
}

/* ============ GALLERY ============ */
.gallery {
  padding: 140px 56px 56px;
  background: var(--shell);
}
.gallery-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.gallery-intro {
  font-size: 18px;
  max-width: 560px;
  margin: 24px auto 0;
  color: var(--ink-soft);
}
.gallery-carousel {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
          mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}
.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 12px 64px;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 auto;
  width: clamp(300px, 32vw, 460px);
  aspect-ratio: 4 / 5;
  scroll-snap-align: center;
  overflow: hidden;
  border-radius: 3px;
  background: var(--sand);
  margin: 0;
  position: relative;
  box-shadow: 0 8px 28px -10px rgba(31, 40, 50, 0.18);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -8px rgba(31, 40, 50, 0.25);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(251, 249, 244, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  color: var(--ink);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(31, 40, 50, 0.12);
}
.gallery-arrow:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 10px 28px rgba(31, 40, 50, 0.22);
}
.gallery-arrow svg { width: 16px; height: 16px; }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }

.gallery-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--ink-faint);
  font-feature-settings: 'lnum';
}
.gallery-counter-current { color: var(--terracotta); font-weight: 500; }
.gallery-counter-rule {
  width: 32px;
  height: 1px;
  background: var(--hairline);
}

/* ============ REVIEWS ============ */
.reviews {
  padding: 96px 56px 140px;
  background: var(--shell);
}
.reviews-head {
  text-align: center;
  margin-bottom: 72px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.review {
  background: var(--paper);
  padding: 40px 36px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--terracotta);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.review-quote {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 28px;
  flex: 1;
}
.review-author {
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.review-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.reviews-cta {
  text-align: center;
  margin-top: 56px;
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 999px;
  transition: all 0.3s;
}
.btn-ghost-dark:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ============ ABOUT ============ */
.about {
  padding: 120px 56px;
  background: var(--paper);
}
.about-inner {
  max-width: 760px;
  margin: 0 auto;
}
.about-head {
  text-align: center;
  margin-bottom: 64px;
}
.about-intro {
  font-size: 18px;
  margin-top: 24px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.about-content {
  display: grid;
  gap: 40px;
}
.about-block h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: 0.2px;
}
.about-block p {
  font-size: 16.5px;
  line-height: 1.7;
}
.about-block em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}
.about-block a {
  color: var(--terracotta);
  border-bottom: 1px solid rgba(185, 127, 106, 0.3);
  transition: color 0.3s, border-color 0.3s;
}
.about-block a:hover {
  color: var(--terracotta-deep);
  border-bottom-color: var(--terracotta-deep);
}

/* ============ VISIT / RESERVATION ============ */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 140px 56px;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--shell);
}
.visit-info p {
  margin: 24px 0 40px;
  max-width: 460px;
}
.hours {
  border-top: 1px solid var(--hairline);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
}
.hours-row span:first-child {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hours-row span:last-child {
  font-size: 17px;
  color: var(--ink);
}

.visit-form {
  background: var(--paper);
  padding: 48px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
}
.form-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-full {
  display: block;
  margin-bottom: 24px;
}
.visit-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.visit-form label span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.visit-form input,
.visit-form select {
  padding: 14px 16px;
  background: var(--shell);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border 0.3s;
}
.visit-form input:focus,
.visit-form select:focus {
  outline: none;
  border-color: var(--terracotta);
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--shell);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding: 96px 56px 64px;
  border-top: 1px solid var(--hairline);
  max-width: 1400px;
  margin: 0 auto;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  height: 64px;
  width: auto;
  display: block;
}
.footer-brand p {
  max-width: 280px;
  font-size: 16px;
  font-style: italic;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-cols ul {
  list-style: none;
}
.footer-cols li {
  padding: 6px 0;
}
.footer-cols a {
  font-size: 15px;
  color: var(--ink-soft);
  transition: color 0.3s;
}
.footer-cols a:hover { color: var(--terracotta); }

.footer-band {
  background: var(--terracotta);
  color: var(--paper);
  padding: 22px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-mark {
  font-style: italic;
  text-transform: none;
  letter-spacing: 1px;
  font-size: 14px;
  opacity: 0.85;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .menu-grid,
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-track { padding: 8px 32px; }
  .gallery-item { width: clamp(260px, 38vw, 380px); }
  .menu-head { grid-template-columns: 1fr; gap: 24px; }
  .menu-list { grid-template-columns: 1fr; gap: 28px; }
  .menu-tabs {
    flex-wrap: nowrap;
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 24px), transparent);
            mask-image: linear-gradient(to right, black calc(100% - 24px), transparent);
  }
  .menu-tab { flex-shrink: 0; scroll-snap-align: start; }
  .wine { padding: 100px 40px; }
  .wine-list { gap: 24px; }
  .story { grid-template-columns: 1fr; gap: 40px; padding: 96px 40px; }
  .story-image { aspect-ratio: 4 / 3; width: 100%; max-width: 600px; margin: 0 auto; }
  .story-text { max-width: 600px; margin: 0 auto; }
  .story-video { display: none; }
  .visit { grid-template-columns: 1fr; gap: 56px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 720px) {
  .utility-bar { padding: 9px 24px; font-size: 11px; }
  .utility-bar span:first-child { display: none; }
  .nav { padding: 12px 20px; gap: 12px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { padding: 9px 18px; font-size: 10px; letter-spacing: 2px; }
  .logo img { height: 34px; }
  .footer-logo img { height: 52px; }
  .hero { min-height: 78vh; }
  .hero-tint {
    background:
      linear-gradient(180deg, rgba(10, 14, 22, 0.55) 0%, rgba(10, 14, 22, 0.62) 60%, rgba(10, 14, 22, 0.78) 100%);
  }
  .hero-inner { margin-left: 0; padding: 0 24px; }
  .hero-title { font-size: 44px; line-height: 1.04; margin-top: 16px; margin-bottom: 14px; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6); }
  .hero-tagline { font-size: 15px; margin-top: -2px; margin-bottom: 18px; color: #fff; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7); }
  .hero-sub { font-size: 15.5px; line-height: 1.55; margin-bottom: 28px; max-width: 100%; color: #fff; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7); }
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 14px 20px; }
  .tagline,
  .menu,
  .wine,
  .reviews,
  .about,
  .visit { padding: 80px 24px; }
  .gallery { padding: 80px 16px; }
  .about-block h3 { font-size: 20px; }
  .about-block p { font-size: 15.5px; }
  .story { padding: 72px 24px; gap: 32px; }
  .story-image { max-width: 100%; aspect-ratio: 4 / 3; }
  .menu-grid,
  .reviews-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-arrow { display: none; }
  .gallery-track { padding: 4px 24px; gap: 12px; }
  .gallery-item { width: 78vw; }
  .gallery { padding: 80px 0 24px; }
  .gallery-head { padding: 0 24px; }
  .reviews { padding: 56px 24px 80px; }
  .wine-list .menu-item-name { font-size: 19px; }
  .wine-list .menu-item-desc { font-size: 14px; }
  .menu-tabs {
    position: sticky;
    top: 56px;
    z-index: 50;
    margin: 0 -24px 32px;
    padding: 15px 24px 0;
    background: var(--shell);
    box-shadow: 0 8px 12px -8px rgba(31, 40, 50, 0.08);
  }
  .menu-tab { padding: 18px 16px; font-size: 11px; letter-spacing: 1.8px; }
  .menu-item-name { font-size: 18px; }
  .menu-item-price { font-size: 16px; }
  .menu-item-desc { font-size: 14px; }
  .menu-panel { scroll-margin-top: 130px; padding-top: 8px; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; padding-top: 32px; }
  .stat-num { font-size: 32px; }
  .stat-num em { font-size: 16px; }
  .stat-lbl { font-size: 10px; }
  .visit-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-band { flex-direction: column; gap: 8px; text-align: center; padding: 18px 24px; }
}
