/* ============================================================
   BAMBOO GARDEN RESTAURANT — style.css
   Design System: Dark Green + Gold
   Architecture: CSS Custom Properties → mobile-first → sections
   ============================================================ */


/* ============================================================
   DESIGN TOKENS
   Change brand colours here and they update everywhere.
   ============================================================ */
:root {
  /* Background scale — dark to slightly lighter */
  --bg:           #0b130b;
  --bg-alt:       #0f1a0f;
  --surface:      #131e13;
  --surface-alt:  #192619;
  --surface-hover:#1e2e1e;

  /* Brand colours */
  --gold:         #c9a84c;
  --gold-light:   #e8c97e;
  --gold-dark:    #a88838;
  --gold-dim:     rgba(201, 168, 76, 0.07);
  --gold-border:  rgba(201, 168, 76, 0.15);
  --gold-border-h:rgba(201, 168, 76, 0.40);

  /* Red accent — storefront awning */
  --red:          #c0392b;
  --red-dim:      rgba(192, 57, 43, 0.12);
  --red-border:   rgba(192, 57, 43, 0.35);

  /* Text scale */
  --text:         #f0ede6;
  --text-muted:   #8c9e8c;
  --text-dim:     #4d624d;
  --text-inverse: #0b130b;

  /* Status */
  --green-open:   #4ade80;
  --green-open-bg:rgba(74, 222, 128, 0.10);

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-section: clamp(4rem, 8vw, 7rem);
  --space-gutter:  clamp(1rem, 4vw, 1.5rem);
  --max-width:     1200px;

  /* Borders & Radii */
  --radius:        6px;
  --radius-lg:     12px;
  --radius-xl:     20px;

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(0, 0, 0, 0.35);
  --shadow-md:     0 6px 32px rgba(0, 0, 0, 0.50);
  --shadow-gold:   0 6px 30px rgba(201, 168, 76, 0.12);

  /* Transitions */
  --ease:          0.22s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* Absolutely-positioned images fill their container — override the height:auto reset */
.dish-img,
.hero-bg-img {
  max-width: none;
  height: 100%;
}

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

ul, ol { list-style: none; }
address { font-style: normal; }
blockquote { font-style: normal; }

::selection {
  background: var(--gold-dim);
  color: var(--gold-light);
}


/* ============================================================
   SCROLLBAR (Chromium)
   ============================================================ */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-alt); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }


/* ============================================================
   FOCUS — Accessible, visually consistent
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}


/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-gutter);
}


/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 540px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .section-subtitle {
  margin-inline: auto;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  line-height: 1;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
              transform var(--ease), box-shadow var(--ease), opacity var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.btn svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* Primary — Gold fill */
.btn-primary {
  background: var(--gold);
  color: var(--text-inverse);
  padding: 0.7rem 1.5rem;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Secondary — Gold outline */
.btn-secondary {
  background: transparent;
  color: var(--gold);
  padding: 0.67rem 1.45rem;
  border: 1.5px solid var(--gold-border);
}
.btn-secondary:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border-h);
  transform: translateY(-2px);
}

/* Ghost — Subtle outline */
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 0.67rem 1.45rem;
  border: 1.5px solid rgba(240, 237, 230, 0.12);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(240, 237, 230, 0.30);
  transform: translateY(-2px);
}

/* Size variants */
.btn-small  { font-size: 0.8rem; padding: 0.5rem 1.1rem; }
.btn-large  { font-size: 0.95rem; padding: 0.85rem 2rem; }


/* ============================================================
   SCROLL-REVEAL SYSTEM
   JS adds .js-ready to <html>. Only then do elements go invisible.
   Without JS, everything stays visible — graceful degradation.
   ============================================================ */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-ready [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
}

.nav-header.scrolled {
  background: rgba(11, 19, 11, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gold-border);
}

.nav-container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.55rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

/* Center phone (desktop only) */
.nav-center {
  display: none;
}

@media (min-width: 768px) {
  .nav-center { display: flex; }
}

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--ease);
}

.nav-phone-link:hover { color: var(--gold); }

.nav-phone-icon {
  width: 0.95em;
  height: 0.95em;
}

/* Right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: background var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger:hover { background: var(--gold-dim); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease), background var(--ease);
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

@media (min-width: 768px) {
  .nav-hamburger { display: none; }
}

/* Mobile Menu Drawer */
.nav-mobile-menu {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-inline: var(--space-gutter);
  background: rgba(11, 19, 11, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid transparent;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              padding-top 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              padding-bottom 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.38s;
}

.nav-mobile-menu.is-open {
  max-height: 420px;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  border-top-color: var(--gold-border);
}

.nav-mobile-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gold-border);
  transition: color var(--ease), padding-left var(--ease);
}

.nav-mobile-link:hover {
  color: var(--gold);
  padding-left: 0.4rem;
}

.nav-mobile-divider {
  height: 1px;
  background: var(--gold-border);
  margin-block: 0.75rem;
}

.nav-mobile-cta {
  margin-top: 0.3rem;
  width: 100%;
  justify-content: center;
}

.nav-mobile-cta + .nav-mobile-cta {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .nav-mobile-menu { display: none; }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero background layer — CSS gradient is the permanent fallback.
   Stacking order (back to front) is set by DOM order:
   hero-bg-img → hero-bg-pattern → hero-bg-overlay → hero-bg-watermark */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 35%, rgba(18, 55, 18, 0.75) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 55%),
    linear-gradient(155deg, #0d2610 0%, #0b1a0c 35%, #090e09 100%);
}

/* Hero background photo — sits above the CSS gradient.
   Covered by pattern + overlay above it. */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* No broken-image icon while src is absent */
.hero-bg-img:not([src]) {
  visibility: hidden;
}

/* Subtle grid pattern — sits above the photo */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Dark gradient overlay — ensures text is always legible over any photo */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 19, 11, 0.82) 0%,
    rgba(11, 19, 11, 0.55) 55%,
    rgba(11, 19, 11, 0.15) 100%
  );
}

/* Decorative watermark — topmost layer */
.hero-bg-watermark {
  position: absolute;
  bottom: -4rem;
  right: -2rem;
  font-size: clamp(16rem, 30vw, 26rem);
  font-family: var(--font-serif);
  color: var(--gold);
  opacity: 0.025;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-gutter);
  padding-top: clamp(6rem, 14vw, 10rem);
  padding-bottom: 4rem;
}

/* Badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  padding: 0.38rem 1rem;
  margin-bottom: 1.75rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* H1 */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

/* Subtext */
.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

/* CTA cluster */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 480px) {
  .hero-scroll { display: none; }
}


/* ============================================================
   VALUE PROPOSITIONS
   ============================================================ */
.values {
  padding-block: var(--space-section);
  background: var(--bg-alt);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  background: var(--surface);
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background var(--ease);
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover { background: var(--surface-hover); }
.value-card:hover::after { transform: scaleX(1); }

.value-icon {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.value-icon svg { width: 100%; height: 100%; }

.value-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.value-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ============================================================
   MENU / SIGNATURE DISHES
   ============================================================ */
.menu-section {
  padding-block: var(--space-section);
}

/* Dish grid — featured card spans 2 columns on large screens */
.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dishes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dish-card--featured {
    grid-column: 1 / 3;
  }
}

/* Dish card base */
.dish-card {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.dish-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border-h);
  box-shadow: var(--shadow-md);
}

/* Image container — fixed aspect ratio */
.dish-image-wrap {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.dish-card--featured .dish-image-wrap { aspect-ratio: 16 / 9; }
.dish-card:not(.dish-card--featured) .dish-image-wrap { aspect-ratio: 4 / 3; }

/* Dish image — absolutely fills the aspect-ratio container.
   DOM order: placeholder → img → badge
   The img renders above the placeholder, covering it when loaded.
   CSS :not([src]) + onerror="this.style.visibility='hidden'" keep
   the placeholder visible if the image is absent or fails to load. */
.dish-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Suppress broken-image icon until src is provided */
.dish-img:not([src]) {
  visibility: hidden;
}

.dish-card:hover .dish-img {
  transform: scale(1.05);
}

/* ── Placeholder cards ────────────────────────────────────── */
.dish-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  overflow: hidden;
}

.dish-placeholder--hainanese {
  background:
    radial-gradient(ellipse at 40% 50%, rgba(34, 85, 34, 0.55) 0%, transparent 70%),
    linear-gradient(145deg, #142a14 0%, #0d1e0d 60%, #0b1a0b 100%);
}

.dish-placeholder--duck {
  background:
    radial-gradient(ellipse at 60% 40%, rgba(80, 40, 10, 0.60) 0%, transparent 70%),
    linear-gradient(145deg, #22120a 0%, #160c06 60%, #110a05 100%);
}

.dish-placeholder--beef {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(80, 15, 15, 0.55) 0%, transparent 70%),
    linear-gradient(145deg, #221010 0%, #160808 60%, #110606 100%);
}

.dish-placeholder--noodles {
  background:
    radial-gradient(ellipse at 40% 60%, rgba(70, 65, 10, 0.55) 0%, transparent 70%),
    linear-gradient(145deg, #1e1c0a 0%, #141206 60%, #100e05 100%);
}

.dish-placeholder--miso {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(10, 50, 60, 0.55) 0%, transparent 70%),
    linear-gradient(145deg, #0a1c22 0%, #061316 60%, #050f12 100%);
}

.dish-placeholder-char {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  user-select: none;
  font-family: var(--font-serif);
}


/* Badges */
.dish-featured-badge,
.dish-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius);
  z-index: 1;
}

.dish-featured-badge {
  background: var(--red);
  color: #fff;
}

.dish-badge {
  background: var(--red-dim);
  color: #e8a09a;
  border: 1px solid var(--red-border);
  backdrop-filter: blur(8px);
}

/* Card body */
.dish-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dish-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.dish-card--featured .dish-name {
  font-size: 1.35rem;
}

.dish-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.dish-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius);
}

/* Menu CTA block */
.menu-cta-block {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gold-border);
}

.menu-cta-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding-block: var(--space-section);
  background: var(--bg-alt);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-heading {
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* Stats row */
.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-border);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.about-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--gold-border);
  flex-shrink: 0;
  margin-inline: 1.5rem;
}

.about-stat-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Visual card */
.about-visual {
  display: flex;
  justify-content: center;
}

.about-visual-card {
  width: min(300px, 100%);
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.about-storefront-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-visual-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(11, 19, 11, 0.42) 0%, rgba(11, 19, 11, 0.68) 100%);
  pointer-events: none;
}

.about-visual-char {
  font-size: 5.5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  user-select: none;
  position: relative;
  z-index: 1;
}

.about-visual-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.about-visual-location {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.about-visual-rule {
  width: 2.5rem;
  height: 1px;
  background: var(--gold-border-h);
  position: relative;
  z-index: 1;
}

.about-visual-cuisine {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}


/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding-block: var(--space-section);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.review-card:hover {
  border-color: var(--gold-border-h);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
}

.review-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-border);
}

.review-avatar {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
}

.review-role {
  font-size: 0.75rem;
  color: var(--text-dim);
}


/* ============================================================
   LOCATION & HOURS
   ============================================================ */
.location {
  padding-block: var(--space-section);
  background: var(--bg-alt);
  border-top: 1px solid var(--gold-border);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 860px) {
  .location-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.location-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.location-block-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.location-block-label svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.location-address {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-row {
  border-bottom: 1px solid var(--gold-border);
  border-radius: var(--radius);
  transition: background var(--ease);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row.is-today {
  background: rgba(201, 168, 76, 0.055);
}

.hours-day,
.hours-time,
.hours-status {
  padding: 0.6rem 0;
  font-size: 0.88rem;
  vertical-align: middle;
}

.hours-day {
  color: var(--text-muted);
  width: 38%;
}

.hours-row.is-today .hours-day {
  color: var(--gold);
  font-weight: 600;
}

.hours-time {
  color: var(--text);
  font-weight: 500;
}

.hours-status {
  text-align: right;
  padding-right: 0.25rem;
}

.hours-row--closed .hours-day,
.hours-row--closed .hours-time {
  opacity: 0.45;
}

.status-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius);
}

.status-badge--open {
  color: var(--green-open);
  background: var(--green-open-bg);
}

.status-badge--closed {
  color: var(--text-dim);
  background: rgba(77, 98, 77, 0.14);
}

/* Phone */
.location-phone {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: color var(--ease);
}

.location-phone:hover { color: var(--gold-light); }

.location-phone-note {
  font-size: 0.83rem;
  color: var(--text-dim);
}

/* Map embed */
.location-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  height: clamp(320px, 50vw, 520px);
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Tint the map to match the dark green brand palette */
  filter: brightness(0.82) contrast(1.12) saturate(0.65) hue-rotate(78deg);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--gold-border);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--gold-border);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

.footer-logo { margin-bottom: 0.85rem; }

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.footer-phone {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--ease);
}

.footer-phone:hover { color: var(--gold-light); }

.footer-nav-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.1rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--ease), padding-left var(--ease);
}

.footer-nav-link:hover {
  color: var(--gold);
  padding-left: 0.35rem;
}

.footer-address {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.footer-hours {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.85rem;
}

.footer-directions-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--ease);
}

.footer-directions-link:hover { color: var(--gold-light); }

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-block: 1.4rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-seo-note {
  font-size: 0.78rem;
  color: var(--text-dim);
}


/* ============================================================
   REDUCED MOTION
   Respects the user's OS accessibility setting.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html { scroll-behavior: auto; }
}
