/* ================================================
   THE BOURBON MD — Master Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── Variables ── */
:root {
  --bg-primary:    #1c1c1c;
  --bg-alt:        #161616;
  --text-heading:  #e3d6c4;
  --text-accent:   #b19e6a;
  --text-body:     #c5b9a8;
  --text-muted:    #7a6e60;
  --border:        rgba(177, 158, 106, 0.22);
  --transition:    0.35s ease;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Utilities ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-accent);
  margin-bottom: 14px;
  font-weight: 700;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-heading);
  font-weight: 400;
  line-height: 1.15;
}

section { padding: 110px 0; }

/* ── Button ── */
.btn {
  display: inline-block;
  padding: 13px 40px;
  border: 1px solid var(--text-accent);
  color: var(--text-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  margin-top: 32px;
}
.btn:hover {
  background: var(--text-accent);
  color: var(--bg-primary);
}

/* ════════════════════════════════════════
   HEADER / NAVIGATION
   ════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.45s ease, border-color 0.45s ease;
}
header.scrolled,
header.solid {
  background: var(--bg-primary);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-brand img { height: 46px; width: auto; }
.nav-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  color: var(--text-heading);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
}
.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-body);
  font-weight: 700;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--text-accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text-accent); }
.nav-links a:hover::after { width: 100%; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-heading);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 28px;
  gap: 24px;
  position: absolute;
  top: 76px; left: 0; right: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-body);
  font-weight: 700;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--text-accent); }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/MD-BAR.jpg') center / cover no-repeat;
  animation: heroZoom 12s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.18); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.70) 0%,
    rgba(0,0,0,0.82) 55%,
    rgba(28,28,28,1.00) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}
/* Corner bracket wrapper */
.hero-bracket {
  position: relative;
  display: inline-block;
  padding: 18px 36px;
  margin-bottom: 28px;
}
.hero-bracket::before,
.hero-bracket::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
}
.hero-bracket::before {
  top: 0; left: 0;
  border-top: 2px solid var(--text-accent);
  border-left: 2px solid var(--text-accent);
}
.hero-bracket::after {
  bottom: 0; right: 0;
  border-bottom: 2px solid var(--text-accent);
  border-right: 2px solid var(--text-accent);
}

.hero-content h1 {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  color: var(--text-heading);
  letter-spacing: 0.08em;
  margin-bottom: 0;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

/* Decorative divider */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-divider-line {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--text-accent);
}
.hero-divider-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-accent);
}

/* Scroll indicator arrow */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-accent);
  font-size: 1.2rem;
  opacity: 0.7;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.hero-slogan {
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  color: var(--text-heading);
  letter-spacing: 0.08em;
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

/* ════════════════════════════════════════
   ABOUT SECTION (homepage)
   ════════════════════════════════════════ */
.about-section { background: var(--bg-primary); padding-bottom: 200px; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 28px;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--text-body);
  max-width: 520px;
}
.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ════════════════════════════════════════
   FEATURE SECTIONS (Cigars / Beverages)
   ════════════════════════════════════════ */
.feature-section { overflow: hidden; }
.feature-section.bg-alt { background: var(--bg-alt); }

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.feature-inner.reverse { direction: rtl; }
.feature-inner.reverse > * { direction: ltr; }

.feature-text h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 16px;
}
.feature-text .subtitle {
  font-size: 1.05rem;
  color: var(--text-accent);
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.feature-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ════════════════════════════════════════
   FEATURE FULL-BLEED (homepage Cigars / Beverages)
   ════════════════════════════════════════ */

/* Two-column grid: one side pure dark (text), one side image */
.feature-fullbleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(520px, auto);
  background: var(--bg-primary);
  overflow: hidden;
  padding: 0;   /* override global section { padding: 110px 0 } */
  margin: 0;
}

/* Text column — solid dark, no image behind it */
.feature-text-side {
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 12% 80px 6%;
}
.feature-text-right {
  justify-content: center;
  padding: 80px 6% 80px 12%;
}

.feature-fullbleed-text { max-width: 420px; }

.feature-fullbleed-text h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 0;
}
/* Gold accent line under heading */
.feature-fullbleed-text h2::after {
  content: '';
  display: block;
  width: 55px;
  height: 1px;
  background: var(--text-accent);
  margin-top: 18px;
  margin-bottom: 20px;
}
.feature-fullbleed-text .subtitle {
  font-size: 1rem;
  color: var(--text-accent);
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Image column — fills the full row height */
.feature-img-side {
  position: relative;
  overflow: hidden;
}
.feature-fullbleed-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Thin gradient that softly fades the image edge nearest the text */
.feature-img-edge {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
/* Cigar: image is on the right, fade its left edge */
.fade-from-left {
  background: linear-gradient(to right,
    var(--bg-primary) 0%,
    rgba(28,28,28,0.85) 25%,
    rgba(28,28,28,0.5)  45%,
    rgba(28,28,28,0.15) 65%,
    transparent 80%
  );
}
/* Beverage: image is on the left, fade its right edge */
.fade-from-right {
  background: linear-gradient(to left,
    var(--bg-primary) 0%,
    rgba(28,28,28,0.85) 25%,
    rgba(28,28,28,0.5)  45%,
    rgba(28,28,28,0.15) 65%,
    transparent 80%
  );
}

@media (max-width: 768px) {
  .feature-fullbleed { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature-img-side { height: 300px; order: -1; }
  .feature-img-edge { display: none; }
  .feature-text-side,
  .feature-text-right { padding: 48px 28px; }
  .feature-fullbleed-text { max-width: 100%; }
}

/* ════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.95s ease, transform 0.95s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 0.95s ease, transform 0.95s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.95s ease, transform 0.95s ease;
}
.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ════════════════════════════════════════
   REVIEWS CAROUSEL
   ════════════════════════════════════════ */
.reviews-section {
  background: var(--bg-alt);
  text-align: center;
}
.reviews-section > .container > h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 64px;
}

.carousel-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  min-width: 100%;
  padding: 52px 60px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.review-stars {
  color: var(--text-accent);
  font-size: 1.3rem;
  letter-spacing: 5px;
  margin-bottom: 28px;
}
.review-text {
  font-size: 1.08rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 32px;
}
.review-author {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.review-date {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}
.carousel-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-accent);
  width: 50px; height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.carousel-btn:hover {
  background: var(--text-accent);
  color: var(--bg-primary);
  border-color: var(--text-accent);
}
.carousel-dots {
  display: flex;
  gap: 9px;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}
.carousel-dot.active { background: var(--text-accent); }

/* ════════════════════════════════════════
   HOURS SECTION
   ════════════════════════════════════════ */
.hours-section {
  background: var(--bg-primary);
  text-align: center;
}
.hours-section h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 64px;
}
.hours-table {
  max-width: 640px;
  margin: 0 auto 56px;
  border-collapse: collapse;
  width: 100%;
}
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:first-child { border-top: 1px solid var(--border); }
.hours-table td { padding: 24px 20px; }
.hours-table td:first-child {
  text-align: left;
  color: var(--text-heading);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.hours-table td:last-child {
  text-align: right;
  font-size: 1.05rem;
  color: var(--text-body);
}
.hours-table .closed { color: var(--text-muted); }
.hours-table.compact { width: auto; }
.hours-table.compact td { padding: 11px 0; }
.hours-table.compact td:first-child { font-size: 1rem; }
.hours-table.compact td:last-child { font-size: 0.88rem; text-align: left; padding-left: 24px; }

.hours-social-note {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}
.hours-social-note a {
  color: var(--text-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--transition);
}
.hours-social-note a:hover { opacity: 0.75; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 72px 28px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.footer-brand img { height: 38px; width: auto; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--text-heading);
  letter-spacing: 0.04em;
}
.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-accent);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col address,
.footer-col p {
  font-style: normal;
  font-size: 0.87rem;
  color: var(--text-body);
  line-height: 1.95;
}
.footer-col a {
  display: block;
  font-size: 0.78rem;
  color: var(--text-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-accent); }

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════
   PAGE HEADER (inner pages)
   ════════════════════════════════════════ */
.page-header {
  margin-top: 76px;
  height: 300px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(28,28,28,0.85));
}
.page-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.page-header-content h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

/* ════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════ */
.about-page-story {
  background: var(--bg-primary);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.about-story-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 28px;
}
.about-story-text p {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 22px;
}
.about-story-images {
  display: grid;
  grid-template-rows: auto auto;
  gap: 20px;
}
.about-story-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.about-values {
  background: var(--bg-alt);
}
.about-values h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 56px;
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-card {
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: var(--text-accent); }
.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}
.value-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  color: var(--text-accent);
  opacity: 0.4;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

/* ════════════════════════════════════════
   ABOUT PAGE — HISTORY TIMELINE
   ════════════════════════════════════════ */
.about-history { background: var(--bg-alt); }
.about-history-header {
  text-align: center;
  margin-bottom: 80px;
}
.about-history-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: start;
  margin-bottom: 80px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-node {
  display: flex;
  justify-content: center;
  padding-top: 8px;
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--text-accent);
  box-shadow: 0 0 0 3px var(--bg-alt), 0 0 0 5px rgba(177,158,106,0.4);
}

.timeline-year {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: var(--text-accent);
  opacity: 0.45;
  line-height: 1;
  font-weight: 300;
}
.timeline-content h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}
.timeline-content p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.88;
}

/* Odd items: year left, content right */
.timeline-item:nth-child(odd) .timeline-year {
  text-align: right;
  padding-right: 16px;
}
.timeline-item:nth-child(odd) .timeline-content {
  padding-left: 16px;
}
/* Even items: swap — content left, year right */
.timeline-item:nth-child(even) .timeline-year {
  grid-column: 3; grid-row: 1;
  text-align: left;
  padding-left: 16px;
}
.timeline-item:nth-child(even) .timeline-node {
  grid-column: 2; grid-row: 1;
}
.timeline-item:nth-child(even) .timeline-content {
  grid-column: 1; grid-row: 1;
  text-align: right;
  padding-right: 16px;
}

/* ════════════════════════════════════════
   ABOUT PAGE — VIP CTA
   ════════════════════════════════════════ */
.vip-cta { background: var(--bg-primary); text-align: center; }
.vip-cta-inner { max-width: 680px; margin: 0 auto; }
.vip-cta-inner h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 24px;
}
.vip-cta-intro {
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--text-body);
  margin-bottom: 40px;
}
.vip-benefits {
  list-style: none;
  margin-bottom: 48px;
  text-align: left;
}
.vip-benefits li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1.6;
}
.vip-benefits li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--text-accent);
  flex-shrink: 0;
}
.vip-benefits li:first-child { border-top: 1px solid var(--border); }

/* ════════════════════════════════════════
   MENU PAGE
   ════════════════════════════════════════ */
.menu-nav {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 76px;
  z-index: 100;
}
.menu-nav-inner {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.menu-nav-inner a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  padding: 20px 28px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.menu-nav-inner a:hover,
.menu-nav-inner a.active {
  color: var(--text-accent);
  border-bottom-color: var(--text-accent);
}

.menu-section { background: var(--bg-primary); scroll-margin-top: 60px; }
.menu-section.bg-alt { background: var(--bg-alt); }

.menu-section-header {
  margin-bottom: 56px;
}
.menu-section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}
.menu-section-header p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:nth-child(odd) { padding-right: 48px; }
.menu-item:nth-child(even) { padding-left: 48px; border-left: 1px solid var(--border); }

.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.menu-item-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.menu-item-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  color: var(--text-accent);
  white-space: nowrap;
}

/* ════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 40px;
}
.contact-detail {
  margin-bottom: 36px;
}
.contact-detail h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-detail p,
.contact-detail address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.85;
}
.contact-detail a {
  color: var(--text-body);
  transition: color var(--transition);
}
.contact-detail a:hover { color: var(--text-accent); }

.contact-form h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 36px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-body);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--text-accent); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: transparent;
  border: 1px solid var(--text-accent);
  color: var(--text-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--text-accent);
  color: var(--bg-primary);
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  border: 1px solid var(--border);
  color: var(--text-accent);
  font-size: 1rem;
  margin-top: 20px;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 88px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-inner,
  .feature-inner,
  .feature-inner.reverse,
  .about-story-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 44px; direction: ltr; }

  .feature-image { order: -1; }
  .feature-image img, .about-image img { height: 320px; }

  .review-card { padding: 36px 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }

  .values-grid { grid-template-columns: 1fr; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd),
  .menu-item:nth-child(even) { padding: 20px 0; border-left: none; }

  .about-story-images { grid-template-columns: 1fr; }
  .about-story-images img { height: 240px; }

  .page-header { height: 220px; padding-bottom: 40px; }

  /* Timeline mobile */
  .timeline::before { display: none; }
  .timeline-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 20px;
    border-left: 1px solid var(--border);
    margin-bottom: 48px;
  }
  .timeline-item .timeline-node { display: none; }
  .timeline-item .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    font-size: 2.4rem;
    text-align: left;
    padding: 0;
  }
  .timeline-item .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding: 0;
  }

  /* Homepage-only mobile refinements */
  .home-page .container { padding: 0 20px; }

  .home-page .hero {
    min-height: 100svh;
    height: 100svh;
  }
  .home-page .hero-content { padding: 20px 18px 34px; }
  .home-page .hero-bracket {
    padding: 12px 20px;
    margin-bottom: 18px;
  }
  .home-page .hero-bracket::before,
  .home-page .hero-bracket::after {
    width: 24px;
    height: 24px;
  }
  .home-page .hero-content h1 {
    letter-spacing: 0.05em;
    line-height: 1.02;
  }
  .home-page .hero-divider {
    margin-bottom: 16px;
  }
  .home-page .hero-divider-line { width: 40px; }
  .home-page .hero-slogan {
    font-size: 1.12rem;
    letter-spacing: 0.04em;
    line-height: 1.45;
    max-width: 24ch;
    margin: 0 auto 2px;
  }
  .home-page .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px 20px;
    margin-top: 24px;
  }

  .home-page .about-section { padding-bottom: 130px; }
  .home-page .about-inner { gap: 40px; }
  .home-page .about-text h2 { margin-bottom: 16px; }
  .home-page .about-text p {
    font-size: 0.98rem;
    line-height: 1.75;
  }
  .home-page .about-image img { height: 260px; }

  .home-page .feature-img-side { height: 270px; }
  .home-page .feature-text-side,
  .home-page .feature-text-right { padding: 52px 24px; }
  .home-page .feature-fullbleed-text h2::after {
    margin-top: 14px;
    margin-bottom: 16px;
  }
  .home-page .feature-fullbleed-text .subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .home-page .reviews-section > .container > h2 { margin-bottom: 34px; }
  .home-page .carousel-wrapper { max-width: 100%; }
  .home-page .review-card { padding: 28px 20px; }
  .home-page .review-stars {
    font-size: 1.05rem;
    letter-spacing: 4px;
    margin-bottom: 18px;
  }
  .home-page .review-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }
  .home-page .carousel-controls {
    margin-top: 20px;
    gap: 12px;
  }
  .home-page .carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .home-page .hours-section h2 { margin-bottom: 34px; }
  .home-page .hours-table {
    margin-bottom: 30px;
  }
  .home-page .hours-table td { padding: 16px 8px; }
  .home-page .hours-table td:first-child { font-size: 1.12rem; }
  .home-page .hours-table td:last-child { font-size: 0.92rem; }
  .home-page .hours-social-note {
    font-size: 0.82rem;
    line-height: 1.8;
    max-width: 38ch;
    margin: 0 auto;
  }

  .home-page footer { padding-top: 52px; }
  .home-page .footer-grid {
    gap: 30px;
    padding-bottom: 34px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .carousel-wrapper { max-width: 100%; }
  .review-card { padding: 28px 20px; }
  .menu-nav-inner { flex-wrap: wrap; }
  .menu-nav-inner a { padding: 14px 18px; }

  /* Homepage-only narrow mobile refinements */
  .home-page .container { padding: 0 16px; }
  .home-page .nav-inner { height: 70px; }
  .home-page .nav-brand { gap: 10px; }
  .home-page .nav-brand img { height: 38px; }
  .home-page .nav-brand-name { font-size: 1.05rem; }
  .home-page .mobile-nav {
    top: 70px;
    padding: 20px 16px;
    gap: 16px;
  }
  .home-page .mobile-nav a {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .home-page .hero {
    min-height: 92svh;
    height: 92svh;
  }
  .home-page .hero-content h1 { font-size: 2.35rem; }
  .home-page .hero-slogan { font-size: 1rem; }
  .home-page .hero-scroll-indicator { bottom: 18px; }

  .home-page .about-image img { height: 240px; }
  .home-page .feature-img-side { height: 230px; }
  .home-page .feature-fullbleed-text h2 { font-size: 2rem; }

  .home-page .review-card { padding: 24px 16px; }
  .home-page .review-text { font-size: 0.95rem; }

  .home-page .hours-table td:first-child { font-size: 1rem; }
  .home-page .hours-table td:last-child { font-size: 0.86rem; }

  .home-page .footer-bottom {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }
}
