/*
 * TMBrew+Bistro — styles.css
 * ============================================================
 * PALETTE RATIONALE
 * The brand logo is pure monochrome (charcoal line-art on white),
 * so palette is derived from the interior design of the venue:
 *   • Dark muted slate-charcoal walls (#1E2A26) — deep bistro backdrop
 *   • Sage-teal cabinet doors → highlight (#8BB4A2)
 *   • Brass/gold pendant fixtures + baked crust → accent (#C49A3C)
 *   • Grey marble table tops → bg-alt (#263530)
 *   • Warm cream plating & walls → cream (#F4EFE4)
 * Result: a moody, upscale dark bistro palette that feels distinctly
 * different from the logo's minimalism while honouring the space.
 *
 * FONTS
 * Spectral — high-contrast transitional serif with ink-trap elegance;
 *             ideal for a sophisticated all-day bistro headline.
 * DM Sans  — clean modern geometric sans; excellent body legibility.
 * Neither font has been used in the aisite.ph portfolio previously.
 * ============================================================
 *
 * SECTION INDEX
 *  1. CSS Custom Properties
 *  2. Reset & Base
 *  3. Typography
 *  4. Layout Utilities
 *  5. Navbar
 *  6. Hero (Home)
 *  7. Page Hero (Inner Pages)
 *  8. Sections & Containers
 *  9. Features Strip
 * 10. Offerings Grid
 * 11. Brand Teaser (50/50)
 * 12. Stats Row
 * 13. Review Cards
 * 14. Social CTA
 * 15. Social Feed Preview
 * 16. Gallery / Masonry
 * 17. Lightbox
 * 18. Menu Page
 * 19. Contact Page
 * 20. Footer
 * 21. Scroll-to-top Button
 * 22. Animations & Utilities
 */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --dark:       #1E2A26;
  --bg-alt:     #263530;
  --accent:     #C49A3C;
  --highlight:  #8BB4A2;
  --cream:      #F4EFE4;
  --cream-dim:  rgba(244,239,228,0.65);
  --accent-dim: rgba(196,154,60,0.14);
  --border:     rgba(196,154,60,0.22);
  --ff-display: 'Spectral', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --nav-h: 72px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

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

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  line-height: 1.2;
  font-weight: 600;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--cream-dim);
}

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

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

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

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 92%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--dark);
}
.btn--primary:hover {
  background: #d4aa52;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,60,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: rgba(244,239,228,0.1);
  color: var(--cream);
  border: 1.5px solid rgba(244,239,228,0.2);
}
.btn--ghost:hover {
  background: rgba(244,239,228,0.18);
  transform: translateY(-2px);
}

/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(30,42,38,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--cream);
}

.brand-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.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 .nav-reserve {
  padding: 0.6rem 1.4rem;
  background: var(--accent);
  color: var(--dark);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta .nav-reserve:hover {
  background: #d4aa52;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,154,60,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: 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);
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(30,42,38,0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0 2rem;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
    backdrop-filter: blur(12px);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    padding: 0.9rem 0;
    font-size: 0.95rem;
  }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   6. HERO (HOME)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,42,38,0.88) 0%,
    rgba(30,42,38,0.60) 60%,
    rgba(30,42,38,0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--highlight);
  margin-bottom: 1.25rem;
  font-style: italic;
  font-weight: 300;
}

.hero-tagline {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--cream-dim);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: scrollBounce 2s infinite;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  color: var(--cream);
}

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

/* ============================================================
   7. PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  position: relative;
  min-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(--nav-h);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,42,38,0.92) 0%, rgba(30,42,38,0.5) 50%, rgba(30,42,38,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 0;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin-bottom: 0.75rem;
}

.page-hero-content p {
  max-width: 500px;
  font-size: 1.05rem;
  color: var(--cream-dim);
}

/* ============================================================
   8. SECTIONS & CONTAINERS
   ============================================================ */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 1.25rem 0;
  border-radius: 2px;
}

.divider--center { margin: 1.25rem auto; }

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

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

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

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* ============================================================
   10. OFFERINGS GRID
   ============================================================ */
.offerings-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--cream-dim);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

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

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

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

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

.offering-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,42,38,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.offering-card-overlay h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.offering-card-overlay p {
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.offering-card[data-category] { transition: opacity var(--transition), transform var(--transition); }
.offering-card.hidden { opacity: 0; pointer-events: none; transform: scale(0.95); position: absolute; }

@media (max-width: 700px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   11. BRAND TEASER (50/50)
   ============================================================ */
.brand-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}

.teaser-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teaser-content {
  padding: 5rem 5rem 5rem 4.5rem;
  background: var(--bg-alt);
}

.teaser-content h2 {
  margin-bottom: 1.5rem;
}

.teaser-content p {
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.teaser-content .btn { margin-top: 1rem; }

@media (max-width: 900px) {
  .brand-teaser { grid-template-columns: 1fr; }
  .teaser-img { aspect-ratio: 16/9; }
  .teaser-content { padding: 3rem 1.5rem; }
}

/* ============================================================
   12. STATS ROW
   ============================================================ */
.stats-row {
  background: var(--accent);
  padding: 60px 0;
}

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

.stat-item .stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.75;
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   13. REVIEW CARDS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}

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

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.review-author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}

.review-stars svg {
  width: 12px;
  height: 12px;
  color: var(--accent);
}

/* ============================================================
   14. SOCIAL CTA
   ============================================================ */
.social-cta {
  text-align: center;
  padding: 80px 0;
}

.social-cta h2 { margin-bottom: 1rem; }
.social-cta p { margin-bottom: 2.5rem; }

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1.5px solid;
}

.social-btn--wa {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.social-btn--wa:hover { background: #1ebe5c; border-color: #1ebe5c; transform: translateY(-2px); }

.social-btn--ig {
  background: transparent;
  border-color: var(--border);
  color: var(--cream);
}
.social-btn--ig:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

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

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

/* ============================================================
   15. SOCIAL FEED PREVIEW
   ============================================================ */
.social-feed {
  padding-bottom: 96px;
}

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

.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}

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

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

.feed-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,42,38,0);
  transition: background var(--transition);
}

.feed-item:hover::after { background: rgba(30,42,38,0.35); }

@media (max-width: 700px) {
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   16. GALLERY / MASONRY
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.masonry-section { margin-bottom: 3.5rem; }

.masonry-section-title {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

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

.masonry-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  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::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,42,38,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.masonry-item:hover::after { background: rgba(30,42,38,0.3); }

.gallery-hidden { display: none; }

@media (max-width: 1100px) { .masonry { columns: 3; } }
@media (max-width: 700px)  { .masonry { columns: 2; } }
@media (max-width: 420px)  { .masonry { columns: 1; } }

/* ============================================================
   17. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: -1rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30,42,38,0.7);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.lightbox-btn svg { width: 20px; height: 20px; }

.lightbox-prev { left: -4rem; }
.lightbox-next { right: -4rem; }

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

@media (max-width: 700px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-img { max-width: 92vw; max-height: 70vh; }
}

/* ============================================================
   18. MENU PAGE
   ============================================================ */
.disclaimer-bar {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 3rem;
  font-size: 0.875rem;
  color: var(--cream-dim);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.disclaimer-bar svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 5rem;
}

.menu-cat-tile {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: default;
}

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

.menu-cat-tile:hover img { transform: scale(1.05); }

.menu-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,42,38,0.88) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.menu-cat-overlay h3 {
  font-size: 1.1rem;
  color: var(--cream);
}

.menu-cat-overlay p {
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin-top: 0.25rem;
}

.menu-section {
  margin-bottom: 3.5rem;
}

.menu-section-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--cream);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.25rem;
}

.menu-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(196,154,60,0.1);
}

.menu-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

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

.contact-blocks { display: flex; flex-direction: column; gap: 2rem; }

.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

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

.contact-block-icon svg { width: 20px; height: 20px; }

.contact-block-content h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.contact-block-content p,
.contact-block-content a {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

.contact-block-content a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.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: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(244,239,228,0.06);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--cream);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

.form-group select option { background: var(--dark); color: var(--cream); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(244,239,228,0.35); }

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

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

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

.form-success {
  display: none;
  background: rgba(139,180,162,0.15);
  border: 1px solid var(--highlight);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  color: var(--highlight);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.map-placeholder {
  margin-top: 4rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
}

.map-placeholder p { color: var(--cream-dim); margin-top: 0.75rem; font-size: 0.9rem; }

.faq-section { padding-top: 0; }

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

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

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

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

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--accent);
}

.faq-icon svg { width: 12px; height: 12px; transition: transform var(--transition); }

.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

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

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

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   20. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--cream);
}

.footer-logo .brand-name { font-size: 1rem; }

.footer-brand p {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

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

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

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

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  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(--cream-dim);
  transition: color var(--transition);
}

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

.footer-info { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-info p {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(244,239,228,0.4);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   21. SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(196,154,60,0.4);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover { box-shadow: 0 8px 24px rgba(196,154,60,0.5); }
.scroll-top svg { width: 20px; height: 20px; }

/* ============================================================
   22. ANIMATIONS & UTILITIES
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* About page */
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.philosophy-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.philosophy-card .phil-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}

.philosophy-card .phil-icon svg { width: 24px; height: 24px; }

.philosophy-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.philosophy-card p {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

@media (max-width: 700px) {
  .philosophy-cards { grid-template-columns: 1fr; }
}

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

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.value-number {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
}

.value-content h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.value-content p {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.25rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.timeline-item h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.timeline-item p {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* CTA Split */
.cta-split {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.cta-split .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-split-text h2 { margin-bottom: 0.5rem; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-split-text p { max-width: 400px; }

.cta-split-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Responsive helpers */
@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-split .container { flex-direction: column; align-items: flex-start; }
}
