/*
 * Ember — styles.css
 * Palette derived from logo: deep teal-green background, warm cream text
 * Fonts: Rokkitt (display) + Commissioner (body)
 *
 * SECTIONS:
 * 1.  Reset & Variables
 * 2.  Base Typography
 * 3.  Utility Classes
 * 4.  Navbar
 * 5.  Hero
 * 6.  Page Hero
 * 7.  Features Strip
 * 8.  Offerings Grid
 * 9.  Brand Teaser
 * 10. Stats Row
 * 11. Reviews
 * 12. Social CTA
 * 13. Social Feed
 * 14. About Page
 * 15. Menu Page
 * 16. Gallery Page
 * 17. Contact Page
 * 18. Footer
 * 19. Scroll-to-top
 * 20. Animations
 * 21. Lightbox
 * 22. Responsive
 */

/* ===========================
   1. Reset & Variables
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #1B3D38;
  --bg-alt:     #243F3A;
  --accent:     #C8823C;
  --highlight:  #E8C890;
  --cream:      #EDE4CA;
  --cream-dim:  rgba(237, 228, 202, 0.65);
  --accent-dim: rgba(200, 130, 60, 0.14);
  --border:     rgba(200, 130, 60, 0.22);
  --ff-display: 'Rokkitt', serif;
  --ff-body:    'Commissioner', sans-serif;
  --navbar-h:   72px;
  --radius:     4px;
  --trans:      0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===========================
   2. Base Typography
   =========================== */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-weight: 300; color: var(--cream-dim); }

/* ===========================
   3. Utility Classes
   =========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 600px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: var(--dark);
}
.btn-accent:hover { background: var(--highlight); color: var(--dark); }
.btn-outline {
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent-dim); }
.btn-cream {
  background: var(--cream);
  color: var(--dark);
}
.btn-cream:hover { background: var(--highlight); }

.divider {
  width: 48px; height: 2px;
  background: var(--accent);
  margin: 20px 0;
}
.divider-center { margin: 20px auto; }

/* ===========================
   4. Navbar
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  z-index: 900;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
}
.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-cta { }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--navbar-h); left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream-dim);
  transition: color var(--trans);
}
.mobile-nav a:hover { color: var(--accent); }

/* ===========================
   5. Hero
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 61, 56, 0.55) 0%,
    rgba(27, 61, 56, 0.72) 60%,
    rgba(27, 61, 56, 0.90) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  padding-top: var(--navbar-h);
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: var(--cream-dim);
  font-style: italic;
  margin-bottom: 12px;
}
.hero-sub {
  font-size: 1rem;
  color: var(--cream-dim);
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; opacity: 0.6; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   6. Page Hero
   =========================== */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 61, 56, 0.30) 0%,
    rgba(27, 61, 56, 0.85) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 0;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { opacity: 0.5; }

/* ===========================
   7. Features Strip
   =========================== */
.features {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-title {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ===========================
   8. Offerings Grid
   =========================== */
.offerings-section { background: var(--dark); }
.offerings-header { margin-bottom: 48px; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.offering-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.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(27,61,56,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--trans);
}
.offering-card:hover .offering-card-overlay { opacity: 1; }
.offering-card-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}
.offering-card-cat {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.offerings-cta { margin-top: 40px; text-align: center; }

/* ===========================
   9. Brand Teaser
   =========================== */
.brand-teaser { background: var(--bg-alt); }
.brand-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.brand-teaser-img {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.brand-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.brand-teaser-body {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-teaser-body p {
  margin-bottom: 16px;
  font-size: 1rem;
}
.michelin-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
  margin-bottom: 24px;
}
.michelin-badge svg { width: 18px; height: 18px; color: var(--accent); }

/* ===========================
   10. Stats Row
   =========================== */
.stats { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ===========================
   11. Reviews
   =========================== */
.reviews { background: var(--bg-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg { width: 16px; height: 16px; color: var(--accent); }
.review-quote {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.review-author-name {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cream);
}
.review-author-meta {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===========================
   12. Social CTA
   =========================== */
.social-cta {
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.social-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.social-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  transition: all var(--trans);
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.social-btn svg { width: 18px; height: 18px; }

/* ===========================
   13. Social Feed
   =========================== */
.social-feed { background: var(--bg-alt); }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-top: 32px;
}
.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.feed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feed-item:hover img { transform: scale(1.08); }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 61, 56, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 28px; height: 28px; color: var(--cream); }

/* ===========================
   14. About Page
   =========================== */
.about-origin { background: var(--dark); }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split-img { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-split-img img { width: 100%; display: block; }
.about-split-body p { margin-bottom: 16px; }

.philosophy { background: var(--bg-alt); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.philosophy-icon {
  width: 48px; height: 48px;
  color: var(--accent);
  margin: 0 auto 20px;
}
.philosophy-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.philosophy-card p { font-size: 0.9rem; }

.values { background: var(--dark); }
.values-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.value-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.value-item:last-child { border-right: none; }
.value-num {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 10px;
}
.value-title { font-size: 0.95rem; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.value-desc { font-size: 0.8rem; color: var(--cream-dim); }

.timeline { background: var(--bg-alt); }
.timeline-list {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
  padding-left: 40px;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
}
.timeline-year {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.timeline-desc { font-size: 0.9rem; color: var(--cream-dim); }

.about-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--dark);
}
.about-cta-img { overflow: hidden; min-height: 380px; position: relative; }
.about-cta-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-cta-body {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background: var(--bg-alt);
}

/* ===========================
   15. Menu Page
   =========================== */
.disclaimer-bar {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  text-align: center;
}
.disclaimer-bar p {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--cream-dim);
}
.menu-categories { background: var(--bg-alt); }
.menu-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.menu-cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.menu-cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-cat-card:hover img { transform: scale(1.06); }
.menu-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,61,56,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.menu-cat-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}

.menu-sections { background: var(--dark); }
.menu-category {
  margin-bottom: 72px;
}
.menu-category:last-child { margin-bottom: 0; }
.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.menu-cat-header h2 { font-size: 1.6rem; }
.menu-cat-header .section-label { margin-bottom: 0; }
.menu-item-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.menu-item {
  padding: 20px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--trans);
}
.menu-item:hover { border-color: var(--accent); }
.menu-item-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.menu-item-desc { font-size: 0.85rem; color: var(--cream-dim); }

.menu-cta { background: var(--bg-alt); border-top: 1px solid var(--border); }

/* ===========================
   16. Gallery Page
   =========================== */
.filter-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--navbar-h);
  z-index: 100;
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--cream-dim);
  transition: all var(--trans);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.gallery-sections { background: var(--dark); }
.gallery-section { margin-bottom: 72px; }
.gallery-section:last-child { margin-bottom: 0; }
.gallery-section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}
.gallery-section-header h3 { font-size: 1.4rem; }
.gallery-count {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.masonry {
  columns: 4;
  column-gap: 8px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,61,56,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg { width: 32px; height: 32px; color: var(--cream); }

.gallery-cta { background: var(--bg-alt); border-top: 1px solid var(--border); }

/* ===========================
   21. Lightbox
   =========================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 28, 24, 0.96);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(27,61,56,0.7);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all var(--trans);
  z-index: 10;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.lightbox-close { top: -16px; right: -16px; }
.lightbox-prev { top: 50%; left: -52px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: -52px; transform: translateY(-50%); }
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg { width: 20px; height: 20px; }
.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--cream-dim);
  letter-spacing: 0.06em;
}

/* ===========================
   17. Contact Page
   =========================== */
.contact-blocks { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-block-icon {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 16px;
}
.contact-block h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.contact-block p,
.contact-block a {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.8;
}
.contact-block a:hover { color: var(--accent); }

.inquiry-section { background: var(--bg-alt); }
.inquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: flex-start;
}
.inquiry-info h2 { margin-bottom: 16px; }
.inquiry-info p { margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  transition: border-color var(--trans);
  outline: none;
  appearance: none;
}
.form-group select option { background: var(--dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(237,228,202,0.3); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.form-success.show { display: block; }
.form-success svg { width: 40px; height: 40px; color: var(--accent); margin: 0 auto 12px; }
.form-success h3 { color: var(--cream); margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; }

.map-section { background: var(--dark); }
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  flex-direction: column;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); opacity: 0.6; }
.map-placeholder p { font-size: 0.9rem; }
.map-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.map-link:hover { text-decoration: underline; }

.faq-section { background: var(--bg-alt); }
.faq-list { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  transition: color var(--trans);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--trans);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

/* ===========================
   18. Footer
   =========================== */
.footer {
  background: #0F2420;
  border-top: 1px solid var(--border);
}
.footer-main {
  padding: 72px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
}
.footer-logo-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--cream-dim);
  margin-bottom: 20px;
  font-style: italic;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: all var(--trans);
}
.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.footer-social-link svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(237,228,202,0.4);
}
.footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,228,202,0.35);
  border: 1px solid rgba(200,130,60,0.15);
  border-radius: 3px;
  padding: 4px 10px;
}

/* ===========================
   19. Scroll-to-top
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--trans);
  box-shadow: 0 4px 16px rgba(200,130,60,0.4);
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--highlight); }
.scroll-top svg { width: 20px; height: 20px; }

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

/* ===========================
   22. Responsive
   =========================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-item:nth-child(3) { border-right: none; }
  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 3; }
  .brand-teaser-body { padding: 48px 40px; }
  .menu-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .inquiry-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .values-list { grid-template-columns: repeat(3, 1fr); }
  .value-item:nth-child(3) { border-right: none; }
}

@media (max-width: 768px) {
  :root { --navbar-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .brand-teaser-inner { grid-template-columns: 1fr; }
  .brand-teaser-img { min-height: 280px; }
  .brand-teaser-body { padding: 40px 24px; }
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .about-cta-split { grid-template-columns: 1fr; }
  .about-cta-img { min-height: 260px; }
  .about-cta-body { padding: 40px 24px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(2n) { border-right: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2n) { border-right: none; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 2; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .inquiry-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-item-list { grid-template-columns: 1fr; }
  .page-hero { height: 320px; }
  .form-row { grid-template-columns: 1fr; }
  .lightbox-prev { left: -16px; }
  .lightbox-next { right: -16px; }
  .menu-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .values-list { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .menu-cat-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
}
