/*
  ============================================================
  THE SOUND BAR PH — styles.css
  ============================================================
  DESIGN RATIONALE
  ----------------
  The Sound Bar PH is a live-music-forward F&B bar in Quezon City,
  Philippines. Their brand identity centers on a jade-teal logo mark
  (a guitar-treble-clef hybrid) on a near-void dark background.

  PALETTE DERIVATION
  Logo primary color: jade teal (~#2EC4A0) — this becomes --accent.
  The dark background of the logo (#1A1A1A) informs --dark.
  The warm stage lighting visible in venue photos inspires
  --highlight (#D4B054) — golden-amber, like stage spotlights.
  Deep charcoal (#201E1A) gives warmth to --bg-alt without being cold.
  Cream is a warm near-white (#F4F0E8) derived from the neutral
  page paper that won't compete with the teal accent.

  This palette — void-charcoal + jade-teal + stage-gold — is
  completely new in the aisite.ph portfolio (no prior build uses
  jade-teal + stage-gold together). The closest prior teal was
  #4ECDC4 (Pooch Purrfect, softer mint-teal) and #2A9090 (Grover's,
  darker teal). This #2EC4A0 sits at a brighter, more saturated
  mid-jade tone distinct from both.

  FONTS
  Display: Syne — geometric variable sans, energetic and slightly
           retro-tech, perfect for a music venue without being clichéd.
           First use in portfolio.
  Body:    Inter — clean, highly legible, wide character support.
           First use as body in portfolio.

  22 SECTION ORGANIZATION (see comments throughout)
  ============================================================
*/

/* =1= IMPORTS & ROOT ====================================== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --dark:       #171614;
  --bg-alt:     #201E1A;
  --accent:     #2EC4A0;
  --highlight:  #D4B054;
  --cream:      #F4F0E8;
  --cream-dim:  rgba(244, 240, 232, 0.65);
  --accent-dim: rgba(46, 196, 160, 0.14);
  --border:     rgba(46, 196, 160, 0.22);
  --ff-display: 'Syne', sans-serif;
  --ff-body:    'Inter', sans-serif;
  --nav-h:      72px;
  --radius:     10px;
  --trans:      0.3s ease;
}

/* =2= RESET & BASE ======================================== */
*, *::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 { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--accent); color: var(--dark); }

/* =3= TYPOGRAPHY ========================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

.section-label {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 560px;
  line-height: 1.75;
}

/* =4= LAYOUT ============================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* =5= NAVBAR ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: rgba(23, 22, 20, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background var(--trans), transform var(--trans);
}
.nav-cta:hover { background: #3DD8B5; transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: all var(--trans);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(23, 22, 20, 0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-top: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--border);
  transition: color var(--trans);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .nav-cta {
  margin-top: 16px;
  justify-content: center;
}

/* =6= HERO (INDEX) ======================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: brightness(0.38) saturate(0.85);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(23,22,20,0.3) 0%,
    rgba(23,22,20,0.15) 40%,
    rgba(23,22,20,0.75) 80%,
    rgba(23,22,20,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
  text-align: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* =7= PAGE HERO ========================================== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--page-hero-bg, var(--bg-alt));
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-img);
  background-size: cover;
  background-position: center;
  filter: brightness(0.32) saturate(0.8);
}
.page-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(23,22,20,0.85) 50%, rgba(23,22,20,0.3));
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 520px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--border); }

/* =8= BUTTONS ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover {
  background: #3DD8B5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,196,160,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244,240,232,0.3);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-highlight {
  background: var(--highlight);
  color: var(--dark);
}
.btn-highlight:hover {
  background: #E0C060;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,176,84,0.3);
}

/* =9= FEATURES STRIP ===================================== */
.features {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.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: 24px; height: 24px; }
.feature-item h4 {
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* =10= OFFERINGS GRID ==================================== */
.offerings { background: var(--dark); }
.offerings-header {
  text-align: center;
  margin-bottom: 56px;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offering-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  cursor: pointer;
}
.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px var(--accent);
}
.offering-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offering-card:hover .offering-img { transform: scale(1.05); }
.offering-body {
  padding: 20px;
}
.offering-badge {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.offering-body h4 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.offering-body p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* =11= BRAND TEASER (50/50) ============================== */
.brand-teaser {
  background: var(--bg-alt);
  overflow: hidden;
}
.brand-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.brand-split-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.brand-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.brand-split-img:hover img { transform: scale(1.04); }
.brand-split-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.brand-split-text p { font-size: 1rem; color: var(--cream-dim); line-height: 1.8; }
.brand-split-text .section-label { margin-bottom: 8px; }

/* =12= STATS ROW ========================================= */
.stats {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
}

/* =13= REVIEWS =========================================== */
.reviews { background: var(--bg-alt); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--trans), transform var(--trans);
}
.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.review-stars {
  display: flex;
  gap: 4px;
  color: var(--highlight);
}
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.review-text::before { content: '\201C'; color: var(--accent); font-size: 1.4em; font-style: normal; }
.review-text::after { content: '\201D'; color: var(--accent); font-size: 1.4em; font-style: normal; }
.reviewer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.reviewer-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cream);
}
.reviewer-location {
  font-size: 0.78rem;
  color: var(--cream-dim);
}
.reviewer-platform {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 2px;
}

/* =14= SOCIAL FEED ======================================= */
.social-feed { background: var(--dark); }
.social-feed-header { text-align: center; margin-bottom: 40px; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 32px;
}
.feed-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-alt);
}
.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.feed-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}
.feed-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
  color: var(--cream);
}
.feed-overlay svg { width: 28px; height: 28px; }
.feed-item:hover .feed-overlay { opacity: 1; }
.feed-cta { text-align: center; }

/* =15= SOCIAL CTA SECTION ================================ */
.social-cta {
  background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(46,196,160,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  text-align: center;
}
.social-cta h2 { margin-bottom: 12px; }
.social-cta p { font-size: 1rem; color: var(--cream-dim); margin-bottom: 32px; }
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--trans);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

/* =16= ABOUT PAGE SECTIONS =============================== */
.origin-story { background: var(--dark); }
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.origin-grid .section-label { position: sticky; top: 96px; }
.origin-text p {
  color: var(--cream-dim);
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.origin-text p:last-child { margin-bottom: 0; }
.origin-text p strong { color: var(--cream); }

.philosophy { background: var(--bg-alt); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.phil-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color var(--trans), transform var(--trans);
}
.phil-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.phil-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.phil-icon svg { width: 22px; height: 22px; }
.phil-card h3 {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.phil-card p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

.brand-values { background: var(--dark); }
.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.value-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background var(--trans);
}
.value-row:hover { background: var(--accent-dim); }
.value-row:nth-child(even) { border-right: none; }
.value-row:nth-last-child(-n+2) { border-bottom: none; }
.value-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  min-width: 36px;
}
.value-text h4 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 6px;
}
.value-text p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

.timeline { background: var(--bg-alt); }
.timeline-list {
  position: relative;
  max-width: 720px;
  margin: 48px auto 0;
  padding-left: 32px;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.timeline-year {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-item h4 {
  color: var(--cream);
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.65;
}

/* =17= MENU PAGE ========================================= */
.menu-disclaimer {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  text-align: center;
}
.menu-disclaimer p {
  font-size: 0.85rem;
  color: var(--accent);
  font-family: var(--ff-display);
  font-weight: 600;
}

.menu-categories { background: var(--dark); padding: 56px 0; }
.category-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-tile {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--trans);
  text-decoration: none;
}
.cat-tile:hover, .cat-tile.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.cat-tile-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--accent);
}
.cat-tile-icon svg { width: 32px; height: 32px; margin: 0 auto; }
.cat-tile h4 {
  font-size: 0.85rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.cat-tile span {
  font-size: 0.75rem;
  color: var(--cream-dim);
}

.menu-sections { background: var(--bg-alt); }
.menu-cat-section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.menu-cat-section:last-child { border-bottom: none; }
.menu-cat-header { margin-bottom: 40px; }
.menu-items-list { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover {
  background: var(--accent-dim);
  margin: 0 -16px;
  padding: 20px 16px;
  border-radius: 8px;
}
.menu-item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}
.menu-item-text h4 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 4px;
}
.menu-item-text p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.6;
}
.menu-item-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  background: rgba(212,176,84,0.12);
  border: 1px solid rgba(212,176,84,0.3);
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* =18= GALLERY PAGE ====================================== */
.gallery-section { background: var(--dark); }
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--trans);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--dark); }

.masonry {
  columns: 4;
  column-gap: 12px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  background: var(--bg-alt);
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.masonry-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.7);
}
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,196,160,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
  color: var(--cream);
}
.masonry-overlay svg { width: 32px; height: 32px; }
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}
.lb-close {
  position: fixed;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
  z-index: 2001;
}
.lb-close:hover { background: var(--accent); color: var(--dark); }
.lb-close svg { width: 20px; height: 20px; }
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  z-index: 2001;
}
.lb-arrow:hover { background: var(--accent); color: var(--dark); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-arrow svg { width: 20px; height: 20px; }
.lb-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-family: var(--ff-display);
  z-index: 2001;
}

/* =19= CONTACT PAGE ====================================== */
.contact-section { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-blocks { display: flex; flex-direction: column; gap: 24px; }
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--trans);
}
.contact-block:hover { border-color: var(--accent); }
.contact-block-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-block-icon svg { width: 20px; height: 20px; }
.contact-block-text h4 {
  color: var(--cream);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.contact-block-text p,
.contact-block-text a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.6;
  transition: color var(--trans);
}
.contact-block-text a:hover { color: var(--accent); }

/* Inquiry Form */
.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.inquiry-form h3 {
  color: var(--cream);
  margin-bottom: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--trans);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: var(--dark);
}
.form-group select option { background: var(--bg-alt); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { align-self: flex-start; }

#formSuccess {
  display: none;
  background: rgba(46,196,160,0.12);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--accent);
  font-family: var(--ff-display);
  font-weight: 600;
  text-align: center;
}

/* Map placeholder */
.map-placeholder {
  height: 360px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--cream-dim);
  overflow: hidden;
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

/* FAQ */
.faq-section { background: var(--bg-alt); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--trans);
}
.faq-question:hover { background: var(--accent-dim); }
.faq-question.open { color: var(--accent); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--trans);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--cream-dim);
  font-size: 0.9rem;
  line-height: 1.75;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* =20= FOOTER ============================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {}
.footer-logo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 1.5px solid var(--border);
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 36px; height: 36px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: all var(--trans);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  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.88rem;
  color: var(--cream-dim);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-visit p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-visit .accent-text {
  color: var(--accent);
  font-weight: 600;
}
.footer-hours { margin-top: 16px; }
.footer-hours p { font-size: 0.85rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--cream-dim);
}
.footer-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--cream-dim);
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--ff-display);
  font-weight: 600;
}
.footer-badge svg { width: 12px; height: 12px; color: var(--accent); }

/* =21= UTILITIES & ANIMATIONS ============================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

.text-accent { color: var(--accent); }
.text-highlight { color: var(--highlight); }
.text-cream { color: var(--cream); }
.text-dim { color: var(--cream-dim); }
.text-center { text-align: center; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 20px 0;
}
.divider-center { margin-left: auto; margin-right: auto; }

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(46,196,160,0.35);
  opacity: 0;
  pointer-events: none;
  transition: all var(--trans);
  z-index: 900;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); background: #3DD8B5; }
.scroll-top svg { width: 20px; height: 20px; }

/* CTA Split */
.cta-split {
  background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(46,196,160,0.06) 100%);
  padding: 96px 0;
}
.cta-split-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.cta-split-text h2 { margin-bottom: 12px; }
.cta-split-text p { color: var(--cream-dim); font-size: 1rem; }
.cta-split-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* =22= RESPONSIVE ======================================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-split { grid-template-columns: 1fr; }
  .brand-split-text { padding: 48px 40px; }
  .origin-grid { grid-template-columns: 1fr; gap: 32px; }
  .category-tiles { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-split-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-split-actions { justify-content: center; }
  .masonry { columns: 3; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .values-list { grid-template-columns: 1fr; }
  .value-row { border-right: none; }
  .value-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .value-row:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-split-text { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 64px 0; }
  .offerings-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .lb-arrow { display: none; }
}
