/* ============================================================
   ESCALERA CAFE — styles.css
   Palette: Violet-Heritage
   Fonts: Antonio (display) + Oxygen (body)
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --dark: #180E1E;
  --bg-alt: #231330;
  --accent: #9B6EB0;
  --highlight: #E8B470;
  --cream: #F9F4EE;
  --cream-dim: rgba(249, 244, 238, 0.65);
  --accent-dim: rgba(155, 110, 176, 0.14);
  --border: rgba(155, 110, 176, 0.22);
  --white: #ffffff;
  --text-muted: rgba(249, 244, 238, 0.55);
  --navbar-height: 72px;
  --transition: 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Oxygen', sans-serif;
  background-color: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
h5 { font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; }

p { font-size: 1rem; color: var(--cream-dim); }

.section-label {
  font-family: 'Antonio', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.75rem;
  display: block;
}

/* ============================================================
   4. UTILITY CLASSES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Antonio', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--highlight);
  color: var(--dark);
  font-weight: 700;
}
.btn-primary:hover { background: #f0c484; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,180,112,0.3); }

.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(--cream);
  border: 1.5px solid rgba(249,244,238,0.25);
}
.btn-ghost:hover { border-color: var(--cream); transform: translateY(-2px); }

.divider {
  width: 48px;
  height: 3px;
  background: var(--highlight);
  margin: 16px 0 24px;
}
.divider-center { margin: 16px auto 24px; }

/* ============================================================
   5. 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;
}

/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

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

.navbar-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.navbar-logo-text {
  font-family: 'Antonio', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-nav a {
  font-family: 'Antonio', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--highlight);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--cream);
}

.navbar-nav a:hover::after, .navbar-nav a.active::after {
  transform: scaleX(1);
}

.navbar-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.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: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  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;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(24,14,30,0.88) 0%,
    rgba(24,14,30,0.70) 50%,
    rgba(35,19,48,0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: calc(var(--navbar-height) + 40px) 24px 80px;
  margin: 0 auto 0 0;
}

.hero-label {
  display: inline-block;
  font-family: 'Antonio', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--highlight);
  border: 1px solid rgba(232,180,112,0.35);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: 'Antonio', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--cream-dim);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-family: 'Antonio', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cream-dim), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================================
   8. FEATURES STRIP
   ============================================================ */
.features {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-item {
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--accent-dim); }

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--highlight);
}

.feature-item h4 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   9. OFFERINGS SECTION
   ============================================================ */
.offerings { background: var(--dark); }

.offerings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

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

.offering-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  cursor: pointer;
}

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

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

.offering-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,14,30,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background var(--transition);
}

.offering-tile:hover .offering-tile-overlay {
  background: linear-gradient(to top, rgba(24,14,30,0.92) 0%, rgba(155,110,176,0.1) 60%);
}

.offering-tile-category {
  font-family: 'Antonio', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 4px;
}

.offering-tile h4 {
  font-size: 1.15rem;
  color: var(--cream);
}

.offering-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Antonio', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.offering-tile:hover .offering-view {
  opacity: 1;
  transform: none;
}

/* ============================================================
   10. BRAND TEASER
   ============================================================ */
.brand-teaser { background: var(--bg-alt); }

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

.brand-teaser-image {
  position: relative;
  overflow: hidden;
}

.brand-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.brand-teaser:hover .brand-teaser-image img { transform: scale(1.04); }

.brand-teaser-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(155,110,176,0.15), rgba(24,14,30,0.3));
}

.brand-teaser-content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-teaser-content p {
  margin-bottom: 16px;
}

.brand-teaser-content p:last-of-type { margin-bottom: 32px; }

/* ============================================================
   11. STATS SECTION
   ============================================================ */
.stats {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 56px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--highlight);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   12. REVIEWS SECTION
   ============================================================ */
.reviews { background: var(--bg-alt); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--highlight);
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-name {
  font-family: 'Antonio', sans-serif;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.review-platform {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   13. SOCIAL CTA SECTION
   ============================================================ */
.social-cta {
  background: var(--dark);
  text-align: center;
}

.social-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Antonio', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 1.5px solid;
}

.social-btn-whatsapp { border-color: #25D366; color: #25D366; }
.social-btn-whatsapp:hover { background: #25D366; color: var(--dark); transform: translateY(-2px); }

.social-btn-instagram { border-color: #C13584; color: #C13584; }
.social-btn-instagram:hover { background: #C13584; color: var(--white); transform: translateY(-2px); }

.social-btn-facebook { border-color: #1877F2; color: #1877F2; }
.social-btn-facebook:hover { background: #1877F2; color: var(--white); transform: translateY(-2px); }

.social-btn svg { width: 18px; height: 18px; }

/* ============================================================
   14. SOCIAL FEED PREVIEW
   ============================================================ */
.social-feed { background: var(--bg-alt); }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 40px;
}

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

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

.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,14,30,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.feed-item:hover img { transform: scale(1.08); }
.feed-item:hover .feed-item-overlay { opacity: 1; }

.feed-item-overlay svg { width: 28px; height: 28px; color: var(--cream); }

/* ============================================================
   15. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  margin-top: var(--navbar-height);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,14,30,0.92) 0%, rgba(24,14,30,0.4) 100%);
}

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

.page-hero-content h1 { color: var(--cream); margin-bottom: 8px; }
.page-hero-content p { color: var(--cream-dim); font-size: 1.1rem; max-width: 560px; }

/* ============================================================
   16. ABOUT PAGE SECTIONS
   ============================================================ */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.philosophy-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.philosophy-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.philosophy-icon {
  width: 52px;
  height: 52px;
  color: var(--highlight);
  margin-bottom: 20px;
}

.philosophy-card h3 { margin-bottom: 12px; color: var(--cream); }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.value-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.value-number {
  font-family: 'Antonio', sans-serif;
  font-size: 2.5rem;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.value-item h4 { color: var(--cream); margin-bottom: 8px; }

.timeline {
  position: relative;
  margin-top: 48px;
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}

.timeline-item:nth-child(odd) .timeline-content { text-align: right; grid-column: 1; }
.timeline-item:nth-child(odd) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }

.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; grid-row: 1; }

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--highlight);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 3px var(--accent);
  z-index: 1;
  flex-shrink: 0;
}

.timeline-year {
  font-family: 'Antonio', sans-serif;
  font-size: 1.4rem;
  color: var(--highlight);
  margin-bottom: 4px;
}

.timeline-content h4 { color: var(--cream); margin-bottom: 6px; }

/* ============================================================
   17. MENU PAGE
   ============================================================ */
.disclaimer-bar {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-left: 4px solid var(--highlight);
  padding: 16px 24px;
  border-radius: var(--radius);
  margin-bottom: 48px;
  font-size: 0.9rem;
  color: var(--cream-dim);
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 80px;
}

.category-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/2;
  cursor: pointer;
  border: 1px solid var(--border);
}

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

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

.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,14,30,0.88), rgba(24,14,30,0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background var(--transition);
}

.category-tile:hover .category-tile-overlay { background: linear-gradient(to top, rgba(24,14,30,0.95), rgba(155,110,176,0.15)); }

.category-tile h4 { color: var(--cream); font-size: 1.05rem; }
.category-tile-count { font-size: 0.78rem; color: var(--highlight); margin-top: 4px; letter-spacing: 0.08em; }

.menu-section { margin-bottom: 72px; scroll-margin-top: calc(var(--navbar-height) + 24px); }

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.menu-section-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
  flex-shrink: 0;
}

.menu-section-icon svg { width: 24px; height: 24px; }

.menu-section-header h2 { font-size: 2rem; }
.menu-section-desc { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }

.menu-items-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.menu-item {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.menu-item:hover { background: var(--accent-dim); }

.menu-item-name {
  font-family: 'Antonio', sans-serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   18. GALLERY PAGE
   ============================================================ */
.gallery { background: var(--dark); }

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

.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: 'Antonio', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--highlight);
  color: var(--highlight);
  background: rgba(232,180,112,0.08);
}

.masonry-grid {
  columns: 4;
  column-gap: 8px;
  margin-bottom: 48px;
}

.masonry-section { margin-bottom: 64px; }
.masonry-section-title {
  font-family: 'Antonio', sans-serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

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

.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,14,30,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 4px;
}

.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg { width: 32px; height: 32px; color: var(--cream); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 5, 14, 0.95);
  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: 24px; right: 24px;
  color: var(--cream);
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-close svg { width: 28px; height: 28px; }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cream);
  cursor: pointer;
  padding: 16px 20px;
  opacity: 0.6;
  transition: opacity var(--transition);
  font-family: 'Antonio', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev svg, .lightbox-next svg { width: 24px; height: 24px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Antonio', sans-serif;
  font-size: 0.85rem;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
}

/* ============================================================
   19. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 24px;
}

.contact-info-block h4 {
  color: var(--cream);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-block h4 svg {
  width: 20px; height: 20px;
  color: var(--highlight);
  flex-shrink: 0;
}

.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--cream-dim);
}
.hours-table td:last-child { text-align: right; color: var(--cream); }

.form-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: 'Antonio', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--cream);
  font-family: 'Oxygen', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

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

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239B6EB0' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(249,244,238,0.25);
}

#formSuccess {
  display: none;
  background: rgba(155,110,176,0.12);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--cream);
  font-size: 0.95rem;
  margin-top: 16px;
  text-align: center;
}

.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin: 48px 0;
  text-align: center;
  text-decoration: none;
  transition: border-color var(--transition);
}
.map-placeholder:hover { border-color: var(--accent); }
.map-placeholder svg { width: 40px; height: 40px; color: var(--highlight); }
.map-placeholder span { font-family: 'Antonio', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); }

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

.faq-list { margin-top: 48px; }

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
}

.faq-question h4 {
  font-size: 1rem;
  color: var(--cream);
  transition: color var(--transition);
}

.faq-question:hover h4 { color: var(--highlight); }

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================================
   20. CTA SPLIT SECTION
   ============================================================ */
.cta-split {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.cta-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 360px;
}

.cta-split-col {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-split-col:first-child {
  border-right: 1px solid var(--border);
  background: var(--dark);
}

.cta-split-col h3 { margin-bottom: 12px; }
.cta-split-col p { margin-bottom: 28px; }

/* ============================================================
   21. FOOTER
   ============================================================ */
.footer {
  background: #0F0815;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-wrap img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand-name {
  font-family: 'Antonio', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

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

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: all var(--transition);
}

.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.footer-social-link svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--highlight);
  margin-bottom: 20px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav-links a:hover { color: var(--cream); }

.footer-address-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-address-item svg {
  width: 16px;
  height: 16px;
  color: var(--highlight);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-address-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.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-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-badge {
  font-family: 'Antonio', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ============================================================
   22. SCROLL TO TOP + RESPONSIVE
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--highlight);
  color: var(--dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.scroll-top:hover { background: #f0c484; transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }

/* 1024px breakpoint */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(1),
  .feature-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid .offering-tile:nth-child(9) { display: none; }

  .brand-teaser-content { padding: 48px 40px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid .review-card:last-child { display: none; }

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

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

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: auto auto 1fr; gap: 20px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { text-align: left; grid-column: 3; }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { grid-column: 2; }
  .timeline-item:nth-child(odd) .timeline-empty,
  .timeline-item:nth-child(even) .timeline-empty { display: none; }
}

/* 768px breakpoint */
@media (max-width: 768px) {
  :root { --navbar-height: 64px; }

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

  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    left: 0; right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
  }

  .mobile-nav.open { display: flex; }

  .mobile-nav a {
    font-family: 'Antonio', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream-dim);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
  }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav a:hover, .mobile-nav a.active { color: var(--cream); }

  .mobile-nav-cta {
    margin-top: 16px;
    display: flex;
    justify-content: flex-start;
  }

  .hero-content { padding: calc(var(--navbar-height) + 24px) 20px 60px; }

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

  .brand-teaser-inner { grid-template-columns: 1fr; }
  .brand-teaser-image { height: 300px; }
  .brand-teaser-content { padding: 40px 24px; }

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

  .cta-split-inner { grid-template-columns: 1fr; }
  .cta-split-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }

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

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

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

  .form-row { grid-template-columns: 1fr; }

  .timeline::before { left: 16px; }
  .timeline-item { grid-template-columns: auto auto 1fr; gap: 16px; }

  .section-pad { padding: 64px 0; }

  .menu-items-list { grid-template-columns: 1fr; }
}

/* 480px breakpoint */
@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 1; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }

  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }

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

  .social-cta-buttons { flex-direction: column; align-items: center; }

  .page-hero { height: 280px; }

  .offerings-header { flex-direction: column; align-items: flex-start; }

  .form-card { padding: 28px 20px; }
}
