/*
  Design rationale: Terracotta rose on near-black evokes PIÑA's signature dusty-pink stucco walls, pineapple-gold logo, and lush tropical garden — hacienda warmth meets jungle lushness.
  Heading: Abril Fatface — bold, expressive display serif with Latin warmth; evokes hand-painted signage on a hacienda wall
  Body: IBM Plex Sans — clean, modern, highly readable — contrasts the display font without competing with the lush visuals
*/

/* ═══════════════════════════════════════════════════════════════
   1. Reset & Custom Properties
═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #1A1012;
  --bg-alt:     #251519;
  --accent:     #C4845C;
  --highlight:  #E8B84B;
  --cream:      #FBF5EE;
  --cream-dim:  rgba(251,245,238,0.65);
  --accent-dim: rgba(196,132,92,0.14);
  --border:     rgba(196,132,92,0.22);
  --ff-display: 'Abril Fatface', serif;
  --ff-body:    'IBM Plex Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 16px;
  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; }

/* ═══════════════════════════════════════════════════════════════
   2. Typography
═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.15;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; font-family: var(--ff-body); font-weight: 600; }

p { color: var(--cream-dim); }

.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.accent-text { color: var(--accent); }
.highlight-text { color: var(--highlight); }

section { padding: 90px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 580px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   3. Buttons
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover { background: #d4956e; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--dark); }

.btn-highlight {
  background: var(--highlight);
  color: var(--dark);
}
.btn-highlight:hover { background: #f2c55a; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════
   4. Navbar
═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: var(--dark);
  padding: 14px 24px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
}
.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.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 overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--cream);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .btn { margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════════
   5. Hero (Homepage)
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,16,18,0.75) 0%,
    rgba(26,16,18,0.45) 50%,
    rgba(26,16,18,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}

.hero-content .label { margin-bottom: 16px; }
.hero-content h1 { margin-bottom: 20px; max-width: 720px; }
.hero-content p {
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 36px;
  color: rgba(251,245,238,0.8);
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════════
   6. Features Strip
═══════════════════════════════════════════════════════════════ */
.features-strip {
  background: var(--accent);
  padding: 48px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.feature-item {
  text-align: center;
  padding: 16px;
}
.feature-item svg {
  width: 36px; height: 36px;
  margin: 0 auto 12px;
  color: var(--dark);
}
.feature-item h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.78rem;
  color: rgba(26,16,18,0.7);
}

/* ═══════════════════════════════════════════════════════════════
   7. Offerings Grid (Homepage 3×3)
═══════════════════════════════════════════════════════════════ */
.offerings-section {
  background: var(--bg-alt);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.offering-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}

.offering-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offering-tile:hover img { transform: scale(1.08); }

.offering-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,18,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.offering-tile:hover .offering-tile-overlay { opacity: 1; }

.offering-tile-overlay .label { margin-bottom: 4px; }
.offering-tile-overlay h4 {
  color: var(--cream);
  font-size: 1rem;
  font-family: var(--ff-display);
}

/* ═══════════════════════════════════════════════════════════════
   8. Brand Teaser Split
═══════════════════════════════════════════════════════════════ */
.brand-teaser {
  background: var(--dark);
}

.brand-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 560px;
}

.brand-teaser-img {
  overflow: hidden;
  position: relative;
}
.brand-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-teaser-copy {
  background: var(--bg-alt);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-teaser-copy .label { margin-bottom: 14px; }
.brand-teaser-copy h2 { margin-bottom: 24px; }
.brand-teaser-copy p { margin-bottom: 16px; }
.brand-teaser-copy .btn { margin-top: 24px; align-self: flex-start; }

/* ═══════════════════════════════════════════════════════════════
   9. Stats Row
═══════════════════════════════════════════════════════════════ */
.stats-row {
  background: var(--bg-alt);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 32px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--accent-dim);
}

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ═══════════════════════════════════════════════════════════════
   10. Review Cards
═══════════════════════════════════════════════════════════════ */
.reviews-section {
  background: var(--dark);
}

.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: 6px;
  padding: 36px 28px;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--highlight); }

.review-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 20px;
  line-height: 1.7;
}

.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   11. Social CTA + Platform Buttons
═══════════════════════════════════════════════════════════════ */
.social-cta {
  background: var(--bg-alt);
  text-align: center;
  padding: 80px 0;
}

.social-cta h2 { margin-bottom: 14px; }
.social-cta p { max-width: 480px; margin: 0 auto 36px; }

.social-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  transition: all 0.25s ease;
}
.social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.social-btn.whatsapp:hover { border-color: #25D366; color: #25D366; }
.social-btn.instagram:hover { border-color: #E1306C; color: #E1306C; }
.social-btn.facebook:hover { border-color: #1877F2; color: #1877F2; }

/* ═══════════════════════════════════════════════════════════════
   12. Social Feed Grid
═══════════════════════════════════════════════════════════════ */
.feed-section {
  background: var(--dark);
  padding: 80px 0;
}

.feed-section .section-header { margin-bottom: 36px; }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.feed-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feed-item:hover img { transform: scale(1.06); }

.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,16,18,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 28px; height: 28px; }

/* ═══════════════════════════════════════════════════════════════
   13. Footer
═══════════════════════════════════════════════════════════════ */
.footer {
  background: #120B0D;
  padding: 72px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cream-dim);
  transition: all 0.25s;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

.footer-col h4 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cream); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-contact-item span {
  font-size: 0.87rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--cream-dim);
  opacity: 0.6;
}

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 20px;
}
.footer-badge svg { width: 12px; height: 12px; color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════
   14. Page Hero (inner pages)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  margin-top: 0;
  padding-top: 80px;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,16,18,0.92) 0%,
    rgba(26,16,18,0.45) 60%,
    rgba(26,16,18,0.3) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
  width: 100%;
}

.page-hero-content .label { margin-bottom: 12px; }
.page-hero-content h1 { max-width: 700px; }

/* ═══════════════════════════════════════════════════════════════
   15. About Page
═══════════════════════════════════════════════════════════════ */
.about-origin {
  background: var(--dark);
}

.about-origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-origin-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about-origin-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-origin-copy .label { margin-bottom: 12px; }
.about-origin-copy h2 { margin-bottom: 28px; }
.about-origin-copy p { margin-bottom: 16px; }

/* Philosophy cards */
.philosophy-section {
  background: var(--bg-alt);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 30px;
}

.philosophy-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.philosophy-icon svg { width: 24px; height: 24px; color: var(--accent); }

.philosophy-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.philosophy-card p { font-size: 0.9rem; }

/* Values list */
.values-section {
  background: var(--dark);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }

.value-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
}

.value-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--cream);
}
.value-content p { font-size: 0.9rem; }

/* Timeline */
.timeline-section {
  background: var(--bg-alt);
}

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 110px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 40px;
  padding: 0 0 48px;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: right;
  padding-top: 4px;
}

.timeline-body {
  position: relative;
  padding-left: 28px;
}

.timeline-body::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-alt);
}

.timeline-body h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--cream);
}
.timeline-body p { font-size: 0.9rem; }

/* About CTA split */
.about-cta-split {
  background: var(--dark);
}

.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  align-items: stretch;
}

.about-cta-img { overflow: hidden; }
.about-cta-img img { width: 100%; height: 100%; object-fit: cover; }

.about-cta-copy {
  background: var(--bg-alt);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-cta-copy h2 { margin-bottom: 20px; }
.about-cta-copy p { margin-bottom: 14px; }
.about-cta-btns {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   16. Menu / Offerings Page
═══════════════════════════════════════════════════════════════ */
.disclaimer-bar {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.disclaimer-bar p {
  font-size: 0.85rem;
  color: var(--cream-dim);
}
.disclaimer-bar a { color: var(--accent); }

.category-tiles-section {
  background: var(--bg-alt);
  padding: 72px 0;
}

.category-tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-tile:hover img { transform: scale(1.06); }

.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,18,0.9) 0%, rgba(26,16,18,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.category-tile-overlay .label { margin-bottom: 6px; }
.category-tile-overlay h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 4px; }
.category-tile-overlay .item-count {
  font-size: 0.78rem;
  color: var(--cream-dim);
  font-weight: 500;
}

/* Category sections */
.menu-sections {
  background: var(--dark);
}

.menu-category {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.menu-category:last-child { border-bottom: none; }

.menu-category-header {
  margin-bottom: 40px;
}
.menu-category-header .label { margin-bottom: 8px; }
.menu-category-header h2 { margin-bottom: 12px; }

.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
}
.menu-item:last-child { border-bottom: none; }

.menu-item-info h4 {
  color: var(--cream);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.menu-item-info p { font-size: 0.9rem; }

.badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.badge-signature {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border);
}

.badge-bestseller {
  background: rgba(232,184,75,0.12);
  color: var(--highlight);
  border: 1px solid rgba(232,184,75,0.25);
}

.badge-new {
  background: rgba(100,180,100,0.12);
  color: #7AC87A;
  border: 1px solid rgba(100,180,100,0.25);
}

.menu-cta {
  background: var(--bg-alt);
  text-align: center;
  padding: 80px 0;
}

/* ═══════════════════════════════════════════════════════════════
   17. Gallery Page
═══════════════════════════════════════════════════════════════ */
.gallery-section {
  background: var(--dark);
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--cream-dim);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.gallery-group { margin-bottom: 60px; }

.gallery-group-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.gallery-group-header h3 { font-size: 1.2rem; }
.gallery-group-date {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.masonry-grid {
  columns: 4;
  column-gap: 6px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.masonry-item:hover img { transform: scale(1.04); }

.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,16,18,0.4);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.masonry-item-overlay svg { width: 28px; height: 28px; }
.masonry-item:hover .masonry-item-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--accent); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(26,16,18,0.6);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev svg,
.lightbox-next svg { width: 20px; height: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
}

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

/* ═══════════════════════════════════════════════════════════════
   18. Contact Page
═══════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.contact-block:last-child { border-bottom: none; }

.contact-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-block-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-block-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-block-header h4 {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-block p, .contact-block a {
  font-size: 0.92rem;
  color: var(--cream-dim);
  display: block;
  margin-bottom: 4px;
}
.contact-block a { transition: color 0.2s; }
.contact-block a:hover { color: var(--accent); }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--cream-dim);
}
.hours-table tr.highlight td {
  color: var(--highlight);
  font-weight: 600;
}

/* Inquiry form */
.form-group { margin-bottom: 20px; }

.form-group 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-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #E05050; }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--bg-alt); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.visible { display: block; }

.form-success-icon {
  width: 64px; height: 64px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success-icon svg { width: 32px; height: 32px; color: var(--accent); }
.form-success h3 { margin-bottom: 12px; }
.form-success p { font-size: 0.92rem; }

/* Map placeholder */
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 48px;
  text-align: center;
  margin-top: 64px;
}
.map-placeholder svg {
  width: 40px; height: 40px;
  color: var(--accent);
  margin: 0 auto 16px;
}
.map-placeholder h4 { margin-bottom: 8px; }
.map-placeholder p { font-size: 0.9rem; margin-bottom: 6px; }
.map-placeholder .note {
  font-size: 0.8rem;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   19. FAQ Accordion
═══════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--bg-alt);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   20. Scroll-to-Top
═══════════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  color: var(--dark);
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover { background: #d4956e; }
.scroll-top svg { width: 20px; height: 20px; }

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

/* ═══════════════════════════════════════════════════════════════
   22. Contact Page — Extended Classes
═══════════════════════════════════════════════════════════════ */

/* Section wrapper alias */
.contact-main { background: var(--dark); }

/* Two-column layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2,
.contact-form-wrap h2 { margin: 10px 0 16px; }

.contact-intro {
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.contact-blocks { margin-top: 8px; }

/* Contact blocks — icon + body layout */
.contact-block {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-block:last-child { border-bottom: none; }

.contact-block-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-block-icon svg { width: 20px; height: 20px; color: var(--accent); }

.contact-block-body h4 {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-block-body p {
  font-size: 0.92rem;
  color: var(--cream-dim);
  margin-bottom: 12px;
}

.contact-block-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.87rem;
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s;
}
.contact-block-link svg { width: 13px; height: 13px; }
.contact-block-link:hover { color: var(--highlight); }

.contact-block-btn { margin-top: 4px; }

/* Hours table adjustments */
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 10px; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--cream-dim);
}
.hours-table td:last-child { text-align: right; }
.hours-table tr.hours-highlight td {
  color: var(--highlight);
  font-weight: 600;
}
.hours-note {
  font-size: 0.8rem;
  color: var(--accent);
  font-style: italic;
  margin-top: 6px;
}

/* Inquiry form grid */
.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.inquiry-form .form-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.inquiry-form .form-group--full { grid-column: 1 / -1; }
.inquiry-form .btn-submit { grid-column: 1 / -1; }

/* Form extras */
.required-mark { color: var(--accent); }
.form-group--full { grid-column: 1 / -1; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.btn-submit svg { width: 16px; height: 16px; }

/* Contact form wrapper */
.contact-form-wrap > p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

/* Map section */
.map-section { background: var(--dark); padding: 80px 0; }

.map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.map-copy h2 { margin: 10px 0 20px; }
.map-copy > p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.75;
}

.map-landmarks {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-landmarks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--cream-dim);
}
.map-landmarks li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.map-btn svg { width: 15px; height: 15px; }

.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder-inner {
  text-align: center;
  padding: 48px;
}
.map-placeholder-inner svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin: 0 auto 16px;
  opacity: 0.6;
}
.map-placeholder-inner p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: var(--cream-dim);
}
.map-placeholder-inner a {
  font-size: 0.87rem;
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s;
}
.map-placeholder-inner a:hover { color: var(--highlight); }

/* FAQ section — chevron variant */
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* faq-answer inner content (direct p child) */
.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.75;
}

/* Social CTA inner layout */
.social-cta-inner { text-align: center; }
.social-cta-inner h2 { margin: 10px 0 16px; }
.social-cta-inner > p {
  max-width: 520px;
  margin: 0 auto 36px;
  color: var(--cream-dim);
}

.social-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-cta-btns .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.social-cta-btns .btn svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════════════════
   23. Responsive Breakpoints
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .brand-teaser-copy { padding: 56px 40px; }
  .about-cta-copy { padding: 56px 40px; }
  .masonry-grid { columns: 3; }
  .timeline::before { left: 90px; }
  .timeline-item { grid-template-columns: 90px 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content h1 { font-size: 2.4rem; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .offerings-grid { grid-template-columns: repeat(2, 1fr); }

  .brand-teaser-inner { grid-template-columns: 1fr; }
  .brand-teaser-img { height: 300px; }
  .brand-teaser-copy { padding: 48px 28px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .reviews-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .about-origin-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-origin-img { aspect-ratio: 16 / 9; }

  .philosophy-grid { grid-template-columns: 1fr; }

  .value-item { grid-template-columns: 60px 1fr; gap: 20px; }
  .value-num { font-size: 2rem; }

  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .timeline-date { text-align: left; }
  .timeline-body { padding-left: 0; }
  .timeline-body::before { display: none; }

  .about-cta-inner { grid-template-columns: 1fr; }
  .about-cta-img { height: 300px; }
  .about-cta-copy { padding: 48px 28px; }
  .about-cta-btns { flex-direction: column; }

  .category-tiles-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .inquiry-form { grid-template-columns: 1fr; }
  .inquiry-form .form-row { grid-template-columns: 1fr; }
  .map-inner { grid-template-columns: 1fr; }
  .map-placeholder { display: none; }

  .feed-grid { grid-template-columns: repeat(2, 1fr); }

  .masonry-grid { columns: 2; }

  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }

  .page-hero { height: 360px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }

  .features-grid { grid-template-columns: 1fr 1fr; }

  .offerings-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .category-tiles-grid { grid-template-columns: 1fr; }

  .feed-grid { grid-template-columns: repeat(3, 1fr); }

  .masonry-grid { columns: 2; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .social-cta-btns { flex-direction: column; align-items: center; }
  .social-cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
}
