/* =============================================================
   Il-lengan Cafe — styles.css
   Palette: cool pine-mist mountain (Baguio City)
   Fonts: EB Garamond (display) + Rubik (body)
   =============================================================

   SECTIONS:
   01. Custom Properties & Reset
   02. Typography
   03. Base & Body
   04. Navbar
   05. Hero / Page Hero
   06. Buttons & Links
   07. Footer
   08. Home Page Sections
   09. About Page
   10. Menu Page
   11. Gallery Page
   12. Contact Page
   13. Fade-In Animation
   14. Scroll-to-Top Button
   15. Offerings / Menu Filter
   16. Gallery Lightbox
   17. FAQ Accordion
   18. Forms
   19. Utility Classes
   20. Media Query — 1024px
   21. Media Query — 768px
   22. Media Query — 480px
   ============================================================= */

/* ============================================================
   01. Custom Properties & Reset
   ============================================================ */
:root {
  --dark:       #141A1E;
  --bg-alt:     #1C2530;
  --accent:     #5A7E90;
  --highlight:  #C8A05A;
  --cream:      #EEE8DE;
  --cream-dim:  rgba(238,232,222,0.70);
  --accent-dim: rgba(90,126,144,0.18);
  --border:     rgba(90,126,144,0.28);
  --dark-glass: rgba(20,26,30,0.85);

  --font-display: 'EB Garamond', Georgia, serif;
  --font-body:    'Rubik', system-ui, sans-serif;

  --nav-h:      72px;
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.28s ease;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.35);
  --shadow-md:  0 6px 32px rgba(0,0,0,0.45);
  --shadow-lg:  0 16px 64px rgba(0,0,0,0.55);

  --page-hero-bg: #1C2530;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   02. Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p, li, label, input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream-dim);
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight);
  display: block;
  margin-bottom: 0.6rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.section-sub {
  font-family: var(--font-body);
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ============================================================
   03. Base & Body
   ============================================================ */
body {
  background-color: var(--dark);
  color: var(--cream-dim);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }

/* ============================================================
   04. Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
  letter-spacing: 0.04em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--highlight);
  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 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius);
  background: var(--highlight);
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: #d9b06a; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity 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-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 1.5rem 24px 2rem;
  z-index: 899;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--cream-dim);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--highlight); }
.mobile-menu .nav-cta {
  margin-top: 0.5rem;
  border-bottom: none;
  width: fit-content;
  color: var(--dark) !important;
}

/* ============================================================
   05. Hero / Page Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) saturate(0.8);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,26,30,0.72) 0%,
    rgba(20,26,30,0.40) 60%,
    rgba(90,126,144,0.10) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-content .section-label { margin-bottom: 1rem; }
.hero-content h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1.08;
  margin-bottom: 1.4rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--highlight);
}
.hero-content p {
  font-size: 1.15rem;
  color: var(--cream-dim);
  margin-bottom: 2.2rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
  overflow: hidden;
  background: var(--page-hero-bg);
  padding-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-img, none);
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) saturate(0.7);
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, transparent 70%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content h1 { margin-bottom: 0.5rem; }
.breadcrumb {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--cream-dim);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.breadcrumb a:hover { color: var(--highlight); }

/* ============================================================
   06. Buttons & Links
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--highlight);
  color: var(--dark);
}
.btn-primary:hover { background: #d9b06a; box-shadow: 0 4px 20px rgba(200,160,90,0.35); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(238,232,222,0.06); }
.btn-accent {
  background: var(--accent);
  color: var(--cream);
}
.btn-accent:hover { background: #6a8fa0; box-shadow: 0 4px 20px rgba(90,126,144,0.35); }
.text-link {
  color: var(--highlight);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.text-link:hover { gap: 10px; color: #d9b06a; }

/* ============================================================
   07. Footer
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 1.2rem; }
.footer-brand p {
  font-size: 0.92rem;
  color: var(--cream-dim);
  margin-bottom: 1.4rem;
  max-width: 260px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--cream-dim);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-links a:hover {
  border-color: var(--highlight);
  color: var(--highlight);
  background: rgba(200,160,90,0.08);
}
.social-links svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a {
  font-size: 0.92rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--cream); }
.footer-col address {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--cream-dim);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  line-height: 1.5;
}
.footer-col address a { transition: color var(--transition); }
.footer-col address a:hover { color: var(--highlight); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  opacity: 0.6;
}
.footer-bottom a { color: var(--highlight); }

/* ============================================================
   08. Home Page Sections
   ============================================================ */

/* --- About Teaser --- */
.about-teaser {
  background: var(--dark);
}
.about-teaser .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-teaser .img-wrap {
  position: relative;
}
.about-teaser .img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-teaser .img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--highlight);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  text-align: center;
  line-height: 1.3;
}
.about-teaser .img-badge span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(20,26,30,0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* --- Featured / Offerings Preview --- */
.offerings-preview {
  background: var(--bg-alt);
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.offering-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(90,126,144,0.5);
}
.offering-card .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.offering-card .card-body {
  padding: 1.4rem 1.4rem 1.6rem;
}
.offering-card .card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}
.offering-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.offering-card p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  opacity: 0.85;
}

/* --- Reviews / Testimonials --- */
.reviews-section {
  background: var(--dark);
}
.reviews-intro { max-width: 560px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.35;
  position: absolute;
  top: 10px; left: 18px;
  line-height: 1;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.8rem;
}
.review-stars svg {
  width: 14px; height: 14px;
  fill: var(--highlight);
}
.review-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
}
.review-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-author span {
  display: block;
  font-weight: 400;
  color: var(--cream-dim);
  opacity: 0.7;
  font-size: 0.78rem;
}

/* --- Visit Strip --- */
.visit-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.visit-strip .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.visit-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.visit-item .vi-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visit-item .vi-icon svg {
  width: 22px; height: 22px;
  color: var(--accent);
}
.visit-item .vi-text strong {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--cream);
  display: block;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.visit-item .vi-text p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.4;
}

/* --- CTA Band --- */
.cta-band {
  background: var(--accent);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-band p { color: rgba(238,232,222,0.85); margin-bottom: 2rem; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { background: var(--dark); color: var(--cream); }
.cta-band .btn-primary:hover { background: var(--bg-alt); }
.cta-band .btn-outline { border-color: rgba(238,232,222,0.5); color: var(--cream); }
.cta-band .btn-outline:hover { border-color: var(--cream); background: rgba(238,232,222,0.1); }

/* ============================================================
   09. About Page
   ============================================================ */
.about-story {
  background: var(--dark);
}
.about-story .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-story img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-story .text-col p { margin-bottom: 1.2rem; }
.values-section {
  background: var(--bg-alt);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  transition: border-color var(--transition);
}
.value-card:hover { border-color: rgba(90,126,144,0.55); }
.value-card .v-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.value-card .v-icon svg { width: 24px; height: 24px; color: var(--accent); }
.value-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; }
.timeline-section {
  background: var(--dark);
}
.timeline {
  position: relative;
  margin-top: 2.5rem;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.tl-item {
  position: relative;
  margin-bottom: 2.4rem;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--highlight);
  border: 2px solid var(--dark);
  box-shadow: 0 0 0 3px rgba(200,160,90,0.3);
}
.tl-item .tl-year {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--highlight);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.tl-item h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.tl-item p { font-size: 0.9rem; }
.team-section {
  background: var(--bg-alt);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.team-card {
  text-align: center;
}
.team-card img {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--border);
}
.team-card h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-card p { font-size: 0.88rem; opacity: 0.8; }

/* ============================================================
   10. Menu Page
   ============================================================ */
.menu-intro {
  background: var(--dark);
  padding-bottom: 0;
}
.menu-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--cream-dim);
  background: transparent;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--highlight);
  border-color: var(--highlight);
  color: var(--dark);
  font-weight: 600;
}
.menu-categories {
  background: var(--dark);
  padding-top: 3rem;
}
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}
.cat-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}
.cat-tile:hover { transform: scale(1.03); }
.cat-tile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
  transition: filter var(--transition);
}
.cat-tile:hover img { filter: brightness(0.65) saturate(0.85); }
.cat-tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(20,26,30,0.9) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
}
.menu-section {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--border);
}
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.menu-section-header h3 {
  font-size: 1.6rem;
  flex: 1;
}
.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:last-child { border-bottom: none; }
.mi-left { flex: 1; }
.mi-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.mi-desc {
  font-size: 0.88rem;
  color: var(--cream-dim);
  opacity: 0.75;
  line-height: 1.5;
}
.mi-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.mi-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border);
}

/* ============================================================
   11. Gallery Page
   ============================================================ */
.gallery-filter {
  background: var(--dark);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.gallery-grid-section {
  background: var(--dark);
  padding-top: 3rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-alt);
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}
.gallery-item.wide img,
.gallery-item.tall img { height: 100%; min-height: 220px; }
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.75);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,26,30,0.55);
  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: 9999;
  background: rgba(20,26,30,0.96);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
}
.lightbox-inner img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  padding: 4px 10px;
  background: rgba(90,126,144,0.2);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(90,126,144,0.5); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(20,26,30,0.7);
  color: var(--cream);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 1.4rem;
  transition: background var(--transition);
}
.lightbox-prev { left: -50px; }
.lightbox-next { right: -50px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--accent); }
.lightbox-caption {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream-dim);
  opacity: 0.7;
}

/* ============================================================
   12. Contact Page
   ============================================================ */
.contact-section {
  background: var(--dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.5rem; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cd-item .cd-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cd-item .cd-icon svg { width: 18px; height: 18px; color: var(--accent); }
.cd-item strong {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--cream);
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.cd-item p { font-size: 0.92rem; line-height: 1.5; }
.cd-item a { color: var(--cream-dim); transition: color var(--transition); }
.cd-item a:hover { color: var(--highlight); }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.hours-table td {
  padding: 4px 0;
  font-size: 0.88rem;
  color: var(--cream-dim);
  vertical-align: top;
}
.hours-table td:first-child {
  font-weight: 500;
  color: var(--cream);
  padding-right: 1.5rem;
  min-width: 110px;
}
/* FAQ Accordion */
.faq-section {
  background: var(--bg-alt);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  cursor: pointer;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--highlight); }
.faq-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent-dim);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--accent); }
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--highlight);
}
.faq-item.open .faq-icon svg { color: var(--dark); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding var(--transition);
}
.faq-a-inner {
  padding-bottom: 1.2rem;
}
.faq-a-inner p { font-size: 0.95rem; }
.faq-item.open .faq-a { max-height: 400px; }
/* Contact Form */
.contact-form-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; }
.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  background: var(--dark);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(238,232,222,0.35); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(90,126,144,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  padding: 12px 16px;
  background: rgba(90,126,144,0.2);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.form-error {
  font-size: 0.8rem;
  color: #e07070;
  margin-top: 4px;
  display: none;
}
.form-group.error input,
.form-group.error textarea { border-color: #e07070; }
.form-group.error .form-error { display: block; }

/* ============================================================
   13. Fade-In Animation
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  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; }
.fade-in.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   14. Scroll-to-Top Button
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--highlight);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top:hover { background: #d9b06a; }
.scroll-top svg { width: 20px; height: 20px; }

/* ============================================================
   15. Offerings / Menu Filter
   ============================================================ */
.menu-cat-block { display: none; }
.menu-cat-block.visible { display: block; }

/* ============================================================
   16. Gallery Lightbox (see section 11)
   ============================================================ */

/* ============================================================
   17. FAQ Accordion (see section 12)
   ============================================================ */

/* ============================================================
   18. Forms (see section 12)
   ============================================================ */

/* ============================================================
   19. Utility Classes
   ============================================================ */
.text-highlight { color: var(--highlight); }
.text-accent    { color: var(--accent); }
.text-muted     { opacity: 0.65; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }
.divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

/* ============================================================
   20. Media Query — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 1.4rem; }
  .about-teaser .two-col,
  .about-story .two-col,
  .contact-grid { gap: 2.5rem; }
  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-tiles { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   21. Media Query — 768px
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-teaser .two-col,
  .about-story .two-col,
  .contact-grid { grid-template-columns: 1fr; }
  .about-teaser .img-wrap img,
  .about-story img { height: 320px; }
  .about-teaser .img-badge { bottom: -16px; right: 16px; }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .visit-strip .inner { flex-direction: column; gap: 1.5rem; }
  .lightbox-prev { left: -12px; }
  .lightbox-next { right: -12px; }
  .form-row { grid-template-columns: 1fr; }
  .menu-filter-bar { gap: 0.4rem; }
}

/* ============================================================
   22. Media Query — 480px
   ============================================================ */
@media (max-width: 480px) {
  section { padding: 48px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .offerings-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .scroll-top { bottom: 16px; right: 16px; }
  .contact-form-wrap { padding: 1.5rem; }
}
