/* ============================================================
   OLD CHINA DIMSUM HOUSE — styles.css
   Palette: Ink Black + Chinese Red + Warm Cream
   Fonts: Noto Serif Display (headings) + Jost (body)
   ============================================================ */

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

:root {
  --dark:        #0E0C0A;
  --bg-alt:      #1A1512;
  --accent:      #C8312A;
  --highlight:   #C4A05A;
  --cream:       #F5F0E8;
  --cream-dim:   rgba(245,240,232,0.65);
  --accent-dim:  rgba(200,49,42,0.14);
  --border:      rgba(200,49,42,0.22);
  --ff-display:  'Noto Serif Display', Georgia, serif;
  --ff-body:     'Jost', system-ui, sans-serif;

  --nav-h:       72px;
  --section-pad: clamp(60px, 8vw, 120px);
  --radius:      8px;
  --trans:       0.3s ease;
}

/* ── 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 { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--ff-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--cream-dim); }
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.section-title { margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--cream-dim); max-width: 580px; }

/* ── Utilities ──────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.section { padding: var(--section-pad) 0; }
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--ff-body); font-size: 0.88rem;
  font-weight: 600; letter-spacing: 0.06em;
  transition: var(--trans); cursor: pointer;
}
.btn-primary {
  background: var(--accent); color: var(--dark);
}
.btn-primary:hover { background: #D45550; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,49,42,0.35); }
.btn-outline {
  border: 1.5px solid var(--accent); color: var(--cream);
}
.btn-outline:hover { background: var(--accent-dim); transform: translateY(-2px); }
.btn-gold {
  background: var(--highlight); color: var(--dark);
}
.btn-gold:hover { background: #D4B06A; transform: translateY(-2px); }
.divider {
  width: 48px; height: 2px; background: var(--accent);
  margin: 1.2rem 0; display: block;
}
.text-center .divider { margin: 1.2rem auto; }

/* ── Navbar ─────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background var(--trans), box-shadow var(--trans);
}
#navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  width: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text strong {
  font-family: var(--ff-display); font-size: 1rem;
  font-weight: 600; color: var(--cream); line-height: 1.1;
}
.nav-logo-text span { font-size: 0.68rem; letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase; }
.nav-links {
  display: flex; align-items: center; gap: 6px; margin-left: auto;
}
.nav-links a {
  font-size: 0.84rem; font-weight: 500; padding: 6px 12px;
  color: var(--cream-dim); letter-spacing: 0.04em;
  transition: color var(--trans); border-radius: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 8px; padding: 10px 20px !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: var(--trans);
}
.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 {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 20px 24px 24px; z-index: 999; flex-direction: column; gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 500; padding: 12px 0;
  border-bottom: 1px solid var(--border); color: var(--cream-dim);
  transition: color var(--trans);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 12px; }

/* ── Hero (Home) ───────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; padding-bottom: 100px;
  background-image: var(--hero-bg, url('images/banner.jpg'));
  background-size: cover; background-position: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.92) 0%, rgba(14,12,10,0.55) 50%, rgba(14,12,10,0.25) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-dim); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 24px;
}
.hero-eyebrow span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.hero h1 { color: var(--cream); margin-bottom: 16px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-tagline { font-size: 1.1rem; color: var(--cream-dim); margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); display: flex;
  flex-direction: column; align-items: center; gap: 8px; z-index: 1;
}
.scroll-indicator span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); }
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{ transform:scaleY(1); opacity:1; } 50%{ transform:scaleY(0.5); opacity:0.4; } }

/* ── Page Hero (inner pages) ────────────── */
.page-hero {
  position: relative; min-height: 440px;
  display: flex; align-items: flex-end; padding-bottom: 60px;
  background-image: var(--page-hero-bg, url('images/menu-dimsum-platter.jpg'));
  background-size: cover; background-position: center;
  padding-top: var(--nav-h);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.9) 0%, rgba(14,12,10,0.45) 60%, rgba(14,12,10,0.2) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--cream); margin-bottom: 10px; }
.page-hero p { font-size: 1rem; color: var(--cream-dim); max-width: 500px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--cream-dim);
  margin-bottom: 16px; letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--accent); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb .sep { color: var(--border); }

/* ── Feature Strip ──────────────────────── */
.features { background: var(--bg-alt); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.feature-item {
  background: var(--bg-alt);
  padding: 36px 24px; text-align: center;
  transition: background var(--trans);
}
.feature-item:hover { background: rgba(200,49,42,0.08); }
.feature-icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  color: var(--accent);
}
.feature-item h4 { font-size: 0.95rem; color: var(--cream); margin-bottom: 6px; }
.feature-item p { font-size: 0.82rem; line-height: 1.5; }

/* ── Offerings Grid ─────────────────────── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offering-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.offering-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.offering-card:hover img { transform: scale(1.06); }
.offering-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,12,10,0.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}
.offering-card-overlay h4 { color: var(--cream); font-size: 1rem; margin-bottom: 4px; }
.offering-card-overlay span {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
}

/* ── Brand Teaser ───────────────────────── */
.brand-teaser .brand-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.brand-teaser-img {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 5/4;
}
.brand-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-teaser-img::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  pointer-events: none;
}
.brand-teaser-text .section-sub { margin-bottom: 28px; }
.accent-quote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px; margin: 28px 0;
  background: var(--accent-dim);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.05rem; color: var(--cream);
}

/* ── Stats Row ──────────────────────────── */
.stats { background: var(--bg-alt); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.stat-item {
  padding: 48px 24px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--trans);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--accent-dim); }
.stat-number {
  font-family: var(--ff-display); font-size: 3rem; font-weight: 300;
  color: var(--accent); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); }

/* ── Reviews ────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: transform var(--trans), border-color var(--trans);
}
.review-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.review-stars svg { width: 16px; height: 16px; color: var(--highlight); }
.review-text { font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.1rem; color: var(--accent);
}
.review-author-info strong { display: block; font-size: 0.88rem; color: var(--cream); }
.review-author-info span { font-size: 0.76rem; color: var(--cream-dim); }
.review-platform {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-platform svg { width: 14px; height: 14px; }

/* ── Social CTA ─────────────────────────── */
.social-cta { background: var(--bg-alt); text-align: center; }
.social-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.88rem; border: 1.5px solid var(--border);
  color: var(--cream); transition: var(--trans);
}
.social-btn:hover { border-color: var(--accent); background: var(--accent-dim); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }

/* ── Social Feed Preview ────────────────── */
.feed-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin-top: 48px;
}
.feed-item {
  position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer;
}
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.feed-item:hover img { transform: scale(1.08); }
.feed-item-overlay {
  position: absolute; inset: 0; background: rgba(14,12,10,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--trans);
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 28px; height: 28px; color: var(--cream); }

/* ── About Page ─────────────────────────── */
.origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.origin-text .section-sub { margin-bottom: 20px; }
.origin-img { border-radius: var(--radius); overflow: hidden; }
.origin-img img { width: 100%; height: 100%; object-fit: cover; }

.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.philosophy-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  transition: border-color var(--trans), transform var(--trans);
}
.philosophy-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.philosophy-icon {
  width: 52px; height: 52px; color: var(--accent);
  margin-bottom: 20px;
  background: var(--accent-dim); border-radius: var(--radius);
  padding: 12px;
}
.philosophy-card h3 { margin-bottom: 12px; }

.values-list { max-width: 760px; }
.value-item {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 24px; align-items: start;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: var(--ff-display); font-size: 2.2rem; font-weight: 300;
  color: var(--accent); line-height: 1;
}
.value-item h4 { margin-bottom: 6px; }

.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 19px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline-item { display: flex; gap: 24px; padding-bottom: 40px; }
.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-alt); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.timeline-dot svg { width: 16px; height: 16px; color: var(--accent); }
.timeline-content { padding-top: 8px; }
.timeline-year {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 4px;
}
.timeline-content h4 { margin-bottom: 6px; }
.timeline-content p { font-size: 0.9rem; }

/* ── Menu Page ──────────────────────────── */
.disclaimer-bar {
  background: var(--accent-dim); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 24px;
  display: flex; align-items: center; gap: 12px;
  margin: 40px 0 0;
}
.disclaimer-bar svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.disclaimer-bar p { font-size: 0.88rem; margin: 0; color: var(--cream-dim); }

.category-tiles {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 48px 0 0;
}
.cat-tile {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 100px;
  border: 1.5px solid var(--border); color: var(--cream-dim);
  font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: var(--trans); text-decoration: none;
}
.cat-tile:hover, .cat-tile.active {
  background: var(--accent); color: var(--dark);
  border-color: var(--accent);
}
.cat-tile svg { width: 16px; height: 16px; }

.menu-section { padding: 60px 0; border-bottom: 1px solid var(--border); }
.menu-section:last-of-type { border-bottom: none; }
.menu-section-header {
  display: flex; align-items: center; gap: 20px; margin-bottom: 40px;
}
.menu-section-icon {
  width: 52px; height: 52px; 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: 24px; height: 24px; }
.menu-section-header h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.menu-section-header p { font-size: 0.88rem; color: var(--cream-dim); margin-top: 4px; }

.menu-items {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.menu-item {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color var(--trans), transform var(--trans);
}
.menu-item:hover { border-color: var(--accent); transform: translateY(-3px); }
.menu-item-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; }
.menu-item h4 { color: var(--cream); }
.badge {
  display: inline-block; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px; flex-shrink: 0;
}
.badge-sig { background: rgba(196,160,90,0.2); color: var(--highlight); border: 1px solid rgba(196,160,90,0.3); }
.badge-new { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge-veg { background: rgba(100,180,100,0.15); color: #8CC88C; border: 1px solid rgba(100,180,100,0.25); }
.menu-item p { font-size: 0.88rem; line-height: 1.6; }

.menu-cta-bar {
  text-align: center; padding: 60px 0;
  background: var(--bg-alt); border-top: 1px solid var(--border);
}
.menu-cta-bar h3 { margin-bottom: 8px; }
.menu-cta-bar p { margin-bottom: 28px; }
.menu-cta-bar .btn-group { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Gallery Page ───────────────────────── */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding: 36px 0 0;
}
.filter-btn {
  padding: 9px 20px; border-radius: 100px;
  border: 1.5px solid var(--border); color: var(--cream-dim);
  font-family: var(--ff-body); font-size: 0.85rem; font-weight: 500;
  transition: var(--trans); cursor: pointer;
  background: transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); color: var(--dark);
  border-color: var(--accent);
}

.gallery-grid {
  columns: 3; gap: 16px; margin-top: 40px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(14,12,10,0.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; opacity: 0; transition: opacity var(--trans);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 28px; height: 28px; color: var(--cream); }
.gallery-item-overlay span {
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream);
}
.gallery-item.hidden { display: none; }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
#lightbox.open { display: flex; }
.lightbox-inner {
  position: relative; max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center;
}
#lightbox-img { max-width: 100%; max-height: 80vh; border-radius: var(--radius); object-fit: contain; }
#lightbox-caption {
  color: var(--cream-dim); font-size: 0.88rem;
  margin-top: 12px; text-align: center;
}
.lightbox-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(200,49,42,0.2); border: 1px solid var(--border);
  color: var(--cream); width: 48px; height: 48px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--trans); cursor: pointer;
}
.lightbox-btn:hover { background: var(--accent); }
#lightbox-prev { left: 24px; }
#lightbox-next { right: 24px; }
#lightbox-close {
  position: fixed; top: 24px; right: 24px;
  background: rgba(200,49,42,0.2); border: 1px solid var(--border);
  color: var(--cream); width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--trans); cursor: pointer;
}
#lightbox-close:hover { background: var(--accent); }
.lightbox-btn svg, #lightbox-close svg { width: 20px; height: 20px; }

.gallery-cta { background: var(--bg-alt); text-align: center; }

/* ── Contact Page ───────────────────────── */
.contact-blocks {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.contact-block {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: border-color var(--trans);
}
.contact-block:hover { border-color: var(--accent); }
.contact-block-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent-dim); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact-block-icon svg { width: 20px; height: 20px; }
.contact-block-label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.contact-block h4 { font-size: 0.95rem; color: var(--cream); margin-bottom: 4px; }
.contact-block p { font-size: 0.85rem; line-height: 1.6; }
.contact-block a { color: var(--accent); transition: color var(--trans); }
.contact-block a:hover { color: var(--cream); }

.map-placeholder {
  height: 360px; background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; color: var(--cream-dim);
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); opacity: 0.5; }

/* Contact Form */
.contact-form-section { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 12px; }
.contact-info .section-sub { margin-bottom: 28px; }
.contact-hours-list { list-style: none; }
.contact-hours-list li {
  display: flex; justify-content: space-between;
  font-size: 0.9rem; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--cream-dim);
}
.contact-hours-list li:last-child { border-bottom: none; }
.contact-hours-list li strong { color: var(--cream); }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream-dim); margin-bottom: 8px;
}
.form-label .req { color: var(--accent); }
.form-control {
  width: 100%; padding: 13px 16px;
  background: var(--dark); border: 1.5px solid var(--border);
  border-radius: var(--radius); color: var(--cream);
  font-family: var(--ff-body); font-size: 0.92rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,49,42,0.12);
}
.form-control.error { border-color: #C44A4A; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; }
.form-error { font-size: 0.78rem; color: #C44A4A; margin-top: 5px; display: none; }
.form-error.show { display: block; }

#formSuccess {
  display: none; background: rgba(200,49,42,0.15);
  border: 1px solid var(--accent); border-radius: var(--radius);
  padding: 24px; text-align: center; margin-top: 24px;
}
#formSuccess.show { display: block; }
#formSuccess h4 { color: var(--accent); margin-bottom: 8px; }
#formSuccess p { font-size: 0.9rem; margin: 0; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-family: var(--ff-display); font-size: 1rem;
  font-weight: 500; color: var(--cream); text-align: left;
  transition: color var(--trans); background: transparent;
  cursor: pointer;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; transition: transform var(--trans); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner { padding: 0 0 20px; }
.faq-answer-inner p { font-size: 0.92rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CTA Split ───────────────────────────── */
.cta-split {
  background: var(--bg-alt);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-split-item {
  padding: 60px 48px; border-right: 1px solid var(--border);
  transition: background var(--trans);
}
.cta-split-item:last-child { border-right: none; }
.cta-split-item:hover { background: var(--accent-dim); }
.cta-split-item h3 { margin-bottom: 12px; }
.cta-split-item p { margin-bottom: 24px; max-width: 340px; }

/* ── Scroll to Top ──────────────────────── */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: var(--trans); cursor: pointer; border: none;
}
#scrollTop.show { opacity: 1; transform: none; pointer-events: auto; }
#scrollTop:hover { background: #D45550; }
#scrollTop svg { width: 18px; height: 18px; }

/* ── Footer ─────────────────────────────── */
.footer {
  background: #070605; border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.footer-logo-text strong {
  display: block; font-family: var(--ff-display); font-size: 1rem;
  color: var(--cream); line-height: 1.1;
}
.footer-logo-text span { font-size: 0.68rem; letter-spacing: 0.12em; color: var(--accent); }
.footer-tagline { font-size: 0.85rem; color: var(--cream-dim); margin-bottom: 20px; max-width: 220px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center;
  color: var(--cream-dim); transition: var(--trans);
}
.footer-social-icon:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.footer-social-icon svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px; font-family: var(--ff-body);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: var(--cream-dim);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-visit-item {
  display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start;
}
.footer-visit-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-visit-item span { font-size: 0.85rem; color: var(--cream-dim); line-height: 1.5; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--cream-dim); }
.footer-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: var(--cream-dim);
}
.footer-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:0.4; } }

/* ── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .brand-teaser .brand-split { grid-template-columns: 1fr; gap: 48px; }
  .origin-grid { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split-item { border-right: none; border-bottom: 1px solid var(--border); }
  .cta-split-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .reviews-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .contact-blocks { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .gallery-grid { columns: 1; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .social-buttons { flex-direction: column; align-items: stretch; }
  .social-btn { justify-content: center; }
}
