/* ============================================================
   113 Wagner Café — styles.css
   Palette: --dark #0D1214, --bg-alt #151E20, --accent #4A8C7A,
            --highlight #C4A85A, --cream #F4F0E8
   Fonts: Marcellus (display) + Public Sans (body)
   ============================================================ */

/* ── 1. IMPORTS ── */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ── 2. CUSTOM PROPERTIES ── */
:root {
  --dark:      #0D1214;
  --bg-alt:    #151E20;
  --accent:    #4A8C7A;
  --highlight: #C4A85A;
  --cream:     #F4F0E8;

  --text-primary:   #F4F0E8;
  --text-secondary: #B8B4AA;
  --text-muted:     #7A7672;
  --border:         rgba(196, 168, 90, 0.18);
  --border-light:   rgba(244, 240, 232, 0.10);
  --card-bg:        rgba(21, 30, 32, 0.85);
  --overlay-dark:   rgba(13, 18, 20, 0.72);
  --overlay-hero:   rgba(13, 18, 20, 0.55);

  --font-display: 'Marcellus', Georgia, serif;
  --font-body:    'Public Sans', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.30);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.40);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.50);

  --transition: 0.28s ease;
  --transition-slow: 0.48s ease;

  --page-hero-bg: url('images/banner.jpg');
}

/* ── 3. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 4. TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--text-secondary); }
.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── 5. UTILITY CLASSES ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 96px 0;
}
.section-alt {
  background-color: var(--bg-alt);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 12px;
}
.section-title {
  color: var(--cream);
  margin-bottom: 16px;
}
.accent-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--highlight), var(--accent));
  margin: 20px auto 0;
  border-radius: 2px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--highlight);
  color: var(--dark);
  border: 2px solid var(--highlight);
}
.btn-primary:hover {
  background: transparent;
  color: var(--highlight);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(244,240,232,0.35);
}
.btn-outline:hover {
  border-color: var(--highlight);
  color: var(--highlight);
}
.btn-accent {
  background: var(--accent);
  color: var(--dark);
  border: 2px solid var(--accent);
}
.btn-accent:hover {
  background: transparent;
  color: var(--accent);
}
.tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── 6. FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.12s; }
.fade-in-delay-2 { transition-delay: 0.24s; }
.fade-in-delay-3 { transition-delay: 0.36s; }
.fade-in-delay-4 { transition-delay: 0.48s; }

/* ── 7. NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 18, 20, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: var(--shadow-md);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.navbar-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.06em;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--highlight);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--highlight);
}
.navbar-links a:hover::after,
.navbar-links a.active::after {
  transform: scaleX(1);
}
.navbar-reserve {
  font-size: 0.72rem;
  padding: 10px 22px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  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); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 18, 20, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--highlight); }

/* ── 8. HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--page-hero-bg) center center / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,18,20,0.80) 0%,
    rgba(13,18,20,0.55) 50%,
    rgba(13,18,20,0.70) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--highlight);
}
.hero-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--highlight);
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-tagline {
  font-size: 1.1rem;
  color: rgba(244,240,232,0.82);
  max-width: 560px;
  margin-bottom: 42px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(244,240,232,0.5);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── 9. PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--page-hero-bg) center center / cover no-repeat;
  margin-top: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,18,20,0.68);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  margin-top: 72px;
}
.page-hero h1 {
  color: var(--cream);
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.page-hero p {
  font-size: 1rem;
  color: rgba(244,240,232,0.72);
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--highlight); }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }

/* ── 10. HIGHLIGHTS / FEATURE STRIP ── */
.highlights {
  background: var(--bg-alt);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.highlight-item {
  background: var(--bg-alt);
  padding: 36px 32px;
  text-align: center;
  transition: background var(--transition);
}
.highlight-item:hover { background: rgba(74,140,122,0.08); }
.highlight-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: var(--highlight);
}
.highlight-icon svg { width: 100%; height: 100%; }
.highlight-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.highlight-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── 11. ABOUT PREVIEW / STORY ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-image-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 56%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--dark);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--highlight);
  color: var(--dark);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-text .section-label { text-align: left; }
.about-text h2 {
  color: var(--cream);
  margin-bottom: 20px;
}
.about-text p { margin-bottom: 18px; }
.about-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--highlight);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── 12. MENU / OFFERINGS ── */
.menu-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--highlight);
  color: var(--dark);
  border-color: var(--highlight);
}
.menu-category {
  margin-bottom: 56px;
}
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.menu-category-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.menu-item {
  background: var(--bg-alt);
  padding: 24px 28px;
  transition: background var(--transition);
}
.menu-item:hover { background: rgba(74,140,122,0.06); }
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.menu-item-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.menu-item-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(74,140,122,0.15);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.set-menu-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.set-menu-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(196,168,90,0.35);
}
.set-menu-card-header {
  padding: 28px 28px 0;
}
.set-menu-card-body {
  padding: 20px 28px 28px;
}
.set-menu-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.set-menu-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.set-menu-courses {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.course-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.course-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--highlight);
  margin-top: 7px;
  flex-shrink: 0;
}
.note-box {
  background: rgba(74,140,122,0.08);
  border: 1px solid rgba(74,140,122,0.20);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 40px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.note-box svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.note-box p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ── 13. GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--bg-alt);
}
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,18,20,0.50);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--cream);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13,18,20,0.96);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  color: var(--cream);
  font-size: 2.4rem;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity var(--transition);
  padding: 16px;
  z-index: 2001;
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ── 14. REVIEWS ── */
.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: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  border-color: rgba(196,168,90,0.30);
  box-shadow: var(--shadow-sm);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--highlight);
}
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.review-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
}
.review-source {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── 15. TIMELINE ── */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.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 48px 1fr;
  gap: 0 24px;
  margin-bottom: 48px;
  align-items: start;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; grid-row: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-dot    { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(odd) .timeline-empty  { grid-column: 3; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-empty   { grid-column: 1; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-dot     { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; grid-row: 1; text-align: left; }
.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--highlight);
  position: relative;
  z-index: 1;
}
.timeline-content {}
.timeline-year {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 4px;
}
.timeline-content h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ── 16. TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  text-align: center;
}
.team-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--border);
  transition: border-color var(--transition);
}
.team-card:hover .team-img { border-color: var(--highlight); }
.team-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 10px;
}
.team-bio {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ── 17. EXPERIENCE CARDS ── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 36px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.experience-card:hover {
  border-color: rgba(196,168,90,0.35);
  transform: translateY(-4px);
}
.experience-icon {
  width: 52px;
  height: 52px;
  color: var(--highlight);
  margin-bottom: 20px;
}
.experience-icon svg { width: 100%; height: 100%; }
.experience-card h3 {
  color: var(--cream);
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.experience-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── 18. FAQ / ACCORDION ── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--highlight); }
.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--highlight);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 19. CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(74,140,122,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-item-value a { transition: color var(--transition); }
.contact-item-value a:hover { color: var(--highlight); }
.contact-form-section {}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,140,122,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7672' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; cursor: pointer; }
.form-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: 24px;
  background: rgba(74,140,122,0.10);
  border: 1px solid rgba(74,140,122,0.25);
  border-radius: var(--radius-md);
  color: var(--accent);
  font-size: 0.92rem;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid var(--border);
}
.hours-table td {
  padding: 10px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.hours-table td:last-child { text-align: right; color: var(--cream); }
.hours-table .closed { color: var(--text-muted); font-style: italic; }
.map-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
  padding: 24px;
}
.map-frame svg { width: 36px; height: 36px; color: var(--accent); margin-bottom: 4px; }
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.social-link {
  width: 42px;
  height: 42px;
  background: rgba(244,240,232,0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--highlight);
  color: var(--dark);
  border-color: var(--highlight);
}
.social-link svg { width: 18px; height: 18px; }

/* ── 20. FOOTER ── */
.footer {
  background: #090D0F;
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--highlight); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--highlight); }

/* ── 21. SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--highlight);
  color: var(--dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.scroll-top svg { width: 18px; height: 18px; }
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--accent);
}

/* ── 22. RESPONSIVE ── */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 560px; margin: 0 auto; }
  .about-image-accent { display: none; }
  .about-badge { left: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-reserve { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item:nth-child(odd) .timeline-content { grid-column: 2; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-dot { grid-column: 1; }
  .timeline-item:nth-child(odd) .timeline-empty { display: none; }
  .timeline-item:nth-child(even) .timeline-empty { display: none; }
  .timeline-item:nth-child(even) .timeline-dot { grid-column: 1; }
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .section { padding: 44px 0; }
  .hero h1 { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .highlights-grid { grid-template-columns: 1fr; }
}
