/*
 * Mr Chow Seafood Restaurant — styles.css
 * =========================================
 * PALETTE RATIONALE:
 * Logo = bold RED background (#CC1100) with GOLDEN YELLOW Chinese characters (#E8B800)
 * --dark    = deep imperial maroon-black (evokes lacquered Chinese furniture, ink-soaked parchment)
 * --bg-alt  = slightly lighter maroon-dark (interior panels, card surfaces)
 * --accent  = imperial gold (#C8980A) — from the golden Chinese characters in the logo;
 *             DIFFERENTIATOR from Hăo Modern Dim Sum (crimson accent) & Old China (celadon jade)
 *             Gold reads as wealth, tradition, and Chinese heritage — a perfect match for this brand
 * --highlight = vermillion red (#C42820) — echoes the logo's red background,
 *               used sparingly for hot CTA buttons and active states
 * --cream   = warm paper-lantern cream (#FAF5ED)
 *
 * FONTS: Cinzel Decorative (display, dramatic Roman-Chinese hybrid serif evoking temple inscriptions)
 *        + Nunito (body, soft rounded humanist — approachable, warm, contemporary)
 *        Neither font combination appears in palette history.
 *
 * HISTORY CHECK: Used by existing builds:
 *   - Crimson+amber gold: HAO Modern Dim Sum → AVOIDED
 *   - Celadon jade: Old China Dimsum House → AVOIDED
 *   - Rokkitt+Cabin, Barlow SC+Red Hat, Old Standard+Lexend, Syne+Inter, etc → AVOIDED
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ===================== CSS VARIABLES ===================== */
:root {
  --dark:       #1A0804;
  --bg-alt:     #261208;
  --accent:     #C8980A;
  --highlight:  #C42820;
  --cream:      #FAF5ED;
  --cream-dim:  rgba(250, 245, 237, 0.65);
  --accent-dim: rgba(200, 152, 10, 0.14);
  --border:     rgba(200, 152, 10, 0.22);
  --ff-display: 'Cinzel Decorative', serif;
  --ff-body:    'Nunito', sans-serif;

  --nav-h: 80px;
  --transition: 0.3s ease;
  --radius: 6px;
  --radius-lg: 12px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5 { font-family: var(--ff-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p { font-size: 1.05rem; color: var(--cream-dim); }

/* ===================== UTILITIES ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover { background: #E8B020; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-highlight {
  background: var(--highlight);
  color: #fff;
}
.btn-highlight:hover { background: #E03020; transform: translateY(-2px); }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-alt);
  padding: 2px;
  border: 2px solid var(--accent);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text .brand-name {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.nav-logo-text .brand-sub {
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-reserve {
  background: var(--accent);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.nav-reserve:hover { background: #E8B020; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  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); }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--cream);
  transition: color var(--transition);
}
.nav-overlay a:hover { color: var(--accent); }
.nav-overlay .nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 8, 4, 0.85) 0%,
    rgba(26, 8, 4, 0.6) 50%,
    rgba(26, 8, 4, 0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-h);
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cream-dim);
  max-width: 600px;
  margin-bottom: 36px;
  font-style: italic;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; height: 48px; }
  50% { opacity: 0.3; height: 32px; }
}

/* ===================== FEATURES STRIP ===================== */
.features {
  background: var(--bg-alt);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-item h4 {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  color: var(--cream);
}
.feature-item p { font-size: 0.9rem; color: var(--cream-dim); }

/* ===================== OFFERINGS GRID ===================== */
.offerings { padding: 96px 0; background: var(--dark); }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offering-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  border: 1px solid var(--border);
}
.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offering-card:hover img { transform: scale(1.07); }
.offering-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,4,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background var(--transition);
}
.offering-card:hover .offering-card-overlay {
  background: linear-gradient(to top, rgba(26,8,4,0.95) 0%, rgba(26,8,4,0.3) 70%);
}
.offering-card-overlay h3 { color: var(--cream); font-size: 1rem; margin-bottom: 4px; }
.offering-card-overlay span {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.offering-card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
}
.offering-card:hover .offering-card-arrow { opacity: 1; transform: scale(1); }
.offering-card-arrow svg { width: 16px; height: 16px; color: var(--dark); }

/* Offerings filter */
.offerings-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--cream-dim);
  transition: all var(--transition);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

/* ===================== BRAND TEASER ===================== */
.brand-teaser { padding: 96px 0; background: var(--bg-alt); }
.brand-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-teaser-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.brand-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-teaser-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  pointer-events: none;
}
.brand-teaser-content { display: flex; flex-direction: column; gap: 20px; }
.brand-teaser-content h2 { margin-bottom: 8px; }
.brand-teaser-content p { line-height: 1.8; }

/* ===================== STATS ROW ===================== */
.stats { padding: 80px 0; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 8px; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.stat-divider {
  width: 1px;
  background: var(--border);
  margin: 0 auto;
}

/* ===================== REVIEW CARDS ===================== */
.reviews { padding: 96px 0; background: var(--bg-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--accent); }
.review-stars { display: flex; gap: 4px; color: #E8B820; }
.review-stars svg { width: 16px; height: 16px; }
.review-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.8;
  flex: 1;
}
.review-quote::before { content: '\201C'; color: var(--accent); font-size: 2rem; line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--cream); }
.review-source { font-size: 0.75rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===================== SOCIAL CTA ===================== */
.social-cta {
  padding: 80px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  text-align: center;
}
.social-cta h2 { margin-bottom: 16px; }
.social-cta p { max-width: 500px; margin: 0 auto 36px; }
.social-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn.ig:hover { border-color: #E1306C; color: #E1306C; }
.social-btn.fb:hover { border-color: #1877F2; color: #1877F2; }
.social-btn.wa:hover { border-color: #25D366; color: #25D366; }

/* ===================== SOCIAL FEED ===================== */
.social-feed { padding: 80px 0; background: var(--bg-alt); }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
}
.feed-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feed-item:hover img { transform: scale(1.1); }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,8,4,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 28px; height: 28px; color: #fff; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  background: var(--bg-alt);
}
.footer-logo-text .brand-name { font-family: var(--ff-display); font-size: 1rem; color: var(--cream); }
.footer-logo-text .brand-sub { font-size: 0.65rem; color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase; }
.footer-tagline { font-size: 0.9rem; color: var(--cream-dim); font-style: italic; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-row svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.contact-row span { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-copy { font-size: 0.8rem; color: var(--cream-dim); }
.footer-bottom-badges {
  display: flex;
  gap: 12px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-badge svg { width: 12px; height: 12px; }

/* ===================== PAGE HERO ===================== */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  overflow: hidden;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,8,4,0.3) 0%, rgba(26,8,4,0.85) 100%);
  z-index: 0;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-h);
}
.page-hero-content .section-label { display: block; margin-bottom: 8px; }
.page-hero-content h1 { color: var(--cream); }
.page-hero-content p { max-width: 560px; margin-top: 12px; }

/* ===================== ABOUT PAGE ===================== */
.origin { padding: 96px 0; background: var(--dark); }
.origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.origin-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.origin-img img { width: 100%; height: 100%; object-fit: cover; }
.origin-content { display: flex; flex-direction: column; gap: 24px; padding-top: 20px; }
.origin-content h2 { margin-bottom: 8px; }

.philosophy { padding: 96px 0; background: var(--bg-alt); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.philosophy-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.philosophy-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 20px;
}
.philosophy-icon svg { width: 28px; height: 28px; }
.philosophy-card h3 { margin-bottom: 12px; font-size: 1.1rem; }

.values { padding: 96px 0; background: var(--dark); }
.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}
.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
}
.value-content h3 { margin-bottom: 8px; color: var(--cream); font-size: 1.1rem; }

.timeline { padding: 96px 0; background: var(--bg-alt); }
.timeline-list {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
  padding: 32px 0;
  position: relative;
}
.timeline-year {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--accent);
  text-align: right;
  padding-top: 4px;
}
.timeline-body { position: relative; padding-left: 24px; }
.timeline-body::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.timeline-body h3 { font-size: 1rem; margin-bottom: 6px; color: var(--cream); }

.about-cta { padding: 96px 0; background: var(--dark); }
.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-cta-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.about-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.about-cta-content { display: flex; flex-direction: column; gap: 24px; }
.about-cta-content h2 { margin-bottom: 8px; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===================== MENU PAGE ===================== */
.disclaimer-bar {
  background: var(--accent-dim);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.disclaimer-bar p { font-size: 0.85rem; color: var(--cream-dim); display: inline-flex; align-items: center; gap: 12px; }
.disclaimer-bar a { color: var(--accent); font-weight: 600; }

.menu-cats { padding: 64px 0; background: var(--bg-alt); }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/2;
  cursor: pointer;
  border: 1px solid var(--border);
  text-decoration: none;
}
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,4,0.92) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.cat-tile-overlay h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 4px; }
.cat-tile-overlay span { font-size: 0.75rem; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }

.menu-sections { padding: 80px 0; background: var(--dark); }
.menu-section { margin-bottom: 72px; }
.menu-section:last-child { margin-bottom: 0; }
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.menu-section-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.menu-section-icon svg { width: 22px; height: 22px; }
.menu-section-header h2 { font-size: 1.5rem; }
.menu-list { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(200, 152, 10, 0.1);
  align-items: flex-start;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 10px;
}
.menu-item-body { flex: 1; }
.menu-item-body h4 { color: var(--cream); font-family: var(--ff-body); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.menu-item-body p { font-size: 0.9rem; color: var(--cream-dim); }
.menu-badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-top: 2px;
}
.badge-popular { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge-special { background: rgba(196, 40, 32, 0.15); color: var(--highlight); border: 1px solid rgba(196, 40, 32, 0.3); }

.menu-bottom-cta { padding: 64px 0; background: var(--bg-alt); text-align: center; }
.menu-bottom-cta h2 { margin-bottom: 16px; }
.menu-bottom-cta p { max-width: 500px; margin: 0 auto 32px; }

/* ===================== GALLERY PAGE ===================== */
.gallery-filter-bar {
  background: var(--bg-alt);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.gallery-section { padding: 64px 0; background: var(--dark); }
.gallery-section + .gallery-section { padding-top: 0; }
.gallery-group { margin-bottom: 56px; }
.gallery-group-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.masonry-grid {
  columns: 4;
  column-gap: 12px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,8,4,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg { width: 32px; height: 32px; color: #fff; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 1.4rem;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.2);
}
.lightbox-close:hover { background: var(--highlight); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); color: var(--dark); }
.lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.6);
  padding: 4px 16px;
  border-radius: 20px;
}
.gallery-cta { padding: 80px 0; background: var(--bg-alt); text-align: center; }
.gallery-cta h2 { margin-bottom: 16px; }
.gallery-cta p { max-width: 500px; margin: 0 auto 32px; }

/* ===================== CONTACT PAGE ===================== */
.contact-main { padding: 96px 0; background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-block-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.contact-block-icon svg { width: 20px; height: 20px; }
.contact-block h3 { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.contact-block p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.7; }
.contact-block a { color: var(--accent); transition: color var(--transition); }
.contact-block a:hover { color: var(--cream); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 8px 0; font-size: 0.9rem; color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; color: var(--cream); }

.contact-form-wrap {}
.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--cream); letter-spacing: 0.05em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--cream);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group select option { background: var(--bg-alt); color: var(--cream); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,245,237,0.35); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--accent);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  width: 100%;
}
.form-submit:hover { background: #E8B020; }
#formSuccess {
  display: none;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
#formSuccess svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 16px; display: block; }
#formSuccess h3 { color: var(--cream); margin-bottom: 8px; font-size: 1.2rem; }
#formSuccess p { font-size: 0.9rem; }

.map-section { padding: 80px 0; background: var(--bg-alt); }
.map-placeholder {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.map-pin { width: 64px; height: 64px; color: var(--accent); }
.map-placeholder h3 { font-size: 1.2rem; color: var(--cream); }
.map-placeholder p { color: var(--cream-dim); max-width: 400px; }

.faq { padding: 96px 0; background: var(--dark); }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-icon svg { width: 12px; height: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner { padding-bottom: 20px; }
.faq-answer-inner p { font-size: 0.95rem; color: var(--cream-dim); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ===================== SCROLL TO TOP ===================== */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
#scrollTop.visible { display: flex; }
#scrollTop:hover { background: #E8B020; transform: translateY(-2px); }
#scrollTop svg { width: 18px; height: 18px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser-inner { gap: 48px; }
  .origin-inner { gap: 48px; }
  .about-cta-inner { gap: 40px; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { text-align: left; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .origin-inner { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .values-list { padding: 0; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cta-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .timeline-list::before { left: 80px; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .timeline-list::before { left: 60px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .hero-actions { flex-direction: column; }
  .social-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; }
}
