/* ============================================================
   SPARX CAFÉ — styles.css
   Design System: Deep warm-black + Gold + Ember-orange
   Fonts: Syne (display) + Inter (body)
   ============================================================ */

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

/* === 2. CSS CUSTOM PROPERTIES === */
:root {
  --dark:       #13100D;
  --bg-alt:     #1C1813;
  --bg-card:    #231E17;
  --accent:     #CD9936;
  --highlight:  #E06B2A;
  --cream:      #F5ECD7;
  --cream-dim:  rgba(245, 236, 215, 0.65);
  --accent-dim: rgba(205, 153, 54, 0.14);
  --border:     rgba(205, 153, 54, 0.22);
  --text-muted: rgba(245, 236, 215, 0.55);
  --ff-display: 'Syne', sans-serif;
  --ff-body:    'Inter', sans-serif;
  --transition: 0.3s ease;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-sm:  0 2px 12px rgba(0, 0, 0, 0.3);
}

/* === 3. RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--ff-body);
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 120px; }
select option { background: var(--bg-card); color: var(--cream); }

/* === 4. TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
}
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.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--cream-dim); }
p:last-child { margin-bottom: 0; }
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.text-accent { color: var(--accent); }
.text-highlight { color: var(--highlight); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* === 5. LAYOUT UTILITIES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--cream-dim);
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.divider-left {
  margin: 1rem 0 0;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* === 6. BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover {
  background: #d9a230;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 146, 42, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-ghost:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-highlight {
  background: var(--highlight);
  color: #fff;
}
.btn-highlight:hover {
  background: #f06533;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 92, 42, 0.35);
}

/* === 7. NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(19, 16, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
}
.nav-logo-text {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-logo-text span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream-dim);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 2px;
}
.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 { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === 8. HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: transform 0.6s ease;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(19, 16, 13, 0.82) 0%,
    rgba(19, 16, 13, 0.55) 50%,
    rgba(19, 16, 13, 0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content .eyebrow { font-size: 0.8rem; }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-subtitle {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}
.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2rem;
  font-style: italic;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  text-align: center;
}
.hero-badge .badge-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-badge .badge-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* === 9. PAGE HERO (subpages) === */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(19, 16, 13, 0.92) 0%,
    rgba(19, 16, 13, 0.4) 60%,
    rgba(19, 16, 13, 0.3) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 3rem;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border); }

/* === 10. FEATURES STRIP === */
.features-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.features-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 160px;
  justify-content: center;
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--accent);
}
.feature-text {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  white-space: nowrap;
}

/* === 11. OFFERINGS GRID === */
.offerings-section { background: var(--dark); }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.offering-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  group: true;
}
.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.offering-card:hover img { transform: scale(1.08); }
.offering-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,16,13,0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.offering-card:hover .offering-overlay { opacity: 1; }
.offering-name {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.03em;
}

/* === 12. BRAND TEASER === */
.brand-teaser { background: var(--bg-alt); }
.brand-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.brand-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}
.brand-content { padding-left: 2rem; }
.brand-content p { margin-bottom: 1.25rem; }

/* === 13. STATS ROW === */
.stats-section {
  background: var(--accent);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(19, 16, 13, 0.75);
  margin-top: 0.25rem;
}

/* === 14. REVIEW CARDS === */
.reviews-section { background: var(--dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 1.1rem;
}
.review-quote {
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: serif;
  opacity: 0.6;
}
.review-text {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-meta { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.reviewer-name {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
}
.reviewer-source {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* === 15. SOCIAL CTA === */
.social-cta-section {
  background: var(--bg-alt);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-links-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--bg-card);
  transition: all var(--transition);
}
.social-link-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-link-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.social-link-btn.ig:hover { border-color: #e1306c; color: #e1306c; }
.social-link-btn.fb:hover { border-color: #1877f2; color: #1877f2; }
.social-link-btn.wa:hover { border-color: #25d366; color: #25d366; }

/* === 16. SOCIAL FEED GRID === */
.social-feed-section { background: var(--dark); padding: 5rem 0; }
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.feed-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.feed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feed-item:hover img { transform: scale(1.1); }
.feed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(196, 146, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--dark);
}
.feed-item:hover .feed-overlay { opacity: 1; }
.feed-overlay svg { width: 32px; height: 32px; }

/* === 17. FOOTER === */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--cream-dim);
}
.footer-social-btn svg { width: 16px; height: 16px; }
.footer-social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.footer-contact-item a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-tagline {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  font-style: italic;
}

/* === 18. ABOUT PAGE === */
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 0;
}
.philosophy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--transition);
}
.philosophy-card:hover { transform: translateY(-4px); }
.philosophy-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.philosophy-card h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.values-list .value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.value-item-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.value-item-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--cream);
}
.value-item-text p {
  font-size: 0.82rem;
  margin: 0;
  color: var(--text-muted);
}
/* Timeline */
.timeline { position: relative; padding-left: 3rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-dot {
  position: absolute;
  left: -2.2rem;
  top: 0.35rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 3px var(--border);
}
.timeline-year {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.timeline-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.35rem;
}
.timeline-text { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
/* CTA split */
.cta-split {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-split-text h2 { margin-bottom: 0.5rem; }
.cta-split-text p { margin: 0; }
.cta-split-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* === 19. MENU PAGE === */
.disclaimer-bar {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.disclaimer-bar svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.disclaimer-bar p { margin: 0; font-size: 0.875rem; color: var(--cream-dim); }
.disclaimer-bar a { color: var(--accent); }
.category-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.cat-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--transition);
}
.cat-tile:hover { transform: translateY(-4px); }
.cat-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-tile:hover img { transform: scale(1.08); }
.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,16,13,0.9) 0%, rgba(19,16,13,0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1rem;
}
.cat-tile-label {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream);
  line-height: 1.3;
}
.menu-category-section { margin-bottom: 4rem; }
.menu-category-section:last-child { margin-bottom: 0; }
.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.menu-cat-icon { font-size: 1.8rem; }
.menu-cat-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
}
.menu-cat-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2.5rem;
}
.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(196, 146, 42, 0.08);
}
.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: 0.5rem;
}
.menu-item-info {}
.menu-item-name {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.15rem;
}
.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.menu-cta-bar {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
}
.menu-cta-bar h3 { margin-bottom: 0.5rem; }
.menu-cta-bar p { margin-bottom: 1.5rem; }

/* === 20. GALLERY PAGE === */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--cream-dim);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
  font-family: var(--ff-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}
.gallery-group { margin-bottom: 3.5rem; }
.gallery-group-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(196,146,42,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 36px; height: 36px; color: var(--dark); }
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--accent);
  color: var(--dark);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: 700;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--highlight); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(196,146,42,0.85);
  color: var(--dark);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: background var(--transition);
  font-weight: 700;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }
.gallery-cta-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}

/* === 21. CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-block-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-block-head svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.contact-block-head h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(196,146,42,0.1); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--cream-dim);
}
.hours-table td:first-child { font-weight: 600; color: var(--cream); width: 55%; }
.hours-highlight td { color: var(--accent) !important; font-weight: 600; }
.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.contact-link-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.contact-link-item a { color: inherit; }
.contact-link-item:hover { color: var(--cream); }
/* Inquiry Form */
.contact-form-section {}
.inquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-success {
  display: none;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.form-success.show { display: block; }
.form-success p { margin: 0; color: #25d366; font-weight: 600; }
.map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); }
.map-placeholder-text { text-align: center; }
.map-placeholder-text h4 { color: var(--cream); margin-bottom: 0.25rem; }
.map-placeholder-text a {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: underline;
}
/* FAQ */
.faq-section { background: var(--dark); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--accent);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: var(--dark); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq-answer p { margin: 0; font-size: 0.925rem; color: var(--cream-dim); line-height: 1.75; }

/* === 22. RESPONSIVE === */

/* 1024px — tablet landscape */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .category-tiles { grid-template-columns: repeat(3, 1fr); }
  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { gap: 2.5rem; }
  .brand-content { padding-left: 1rem; }
  .gallery-masonry { columns: 2; }
}

/* 768px — tablet portrait */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  /* Mobile nav */
  .mobile-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: var(--bg-alt);
    border-left: 1px solid var(--border);
    padding: 5rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: right 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
  }
  .mobile-nav.open { right: 0; }
  .mobile-nav a {
    display: block;
    padding: 0.85rem 1rem;
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream-dim);
    border-radius: var(--radius);
    transition: all var(--transition);
  }
  .mobile-nav a:hover, .mobile-nav a.active {
    color: var(--cream);
    background: var(--accent-dim);
  }
  .mobile-nav .btn { margin-top: 1rem; width: 100%; justify-content: center; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
  }
  .nav-overlay.show { display: block; }
  .hero-badge { display: none; }
  .hero-content { max-width: 100%; }
  .features-list { flex-direction: column; align-items: stretch; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; justify-content: flex-start; }
  .feature-item:last-child { border-bottom: none; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .brand-content { padding-left: 0; }
  .brand-image-wrap { aspect-ratio: 16/9; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }
  .cta-split { flex-direction: column; text-align: center; }
  .cta-split-btns { justify-content: center; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .menu-items-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .social-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .page-hero { height: 50vh; }
}

/* 480px — mobile portrait */
@media (max-width: 480px) {
  .section { padding: 2.5rem 0; }
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .offerings-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .category-tiles { grid-template-columns: 1fr 1fr; }
  .social-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { gap: 0.5rem; }
  .filter-btn { font-size: 0.72rem; padding: 0.45rem 0.9rem; }
  .gallery-masonry { columns: 1; }
  .menu-cat-header { flex-wrap: wrap; gap: 0.5rem; }
  .page-hero { height: 45vh; }
  .disclaimer-bar { flex-direction: column; align-items: flex-start; }
  .btn { padding: 0.7rem 1.4rem; font-size: 0.82rem; }
}
