/* ============================================================
   KODAWARI — STYLES.CSS
   Palette: Saffron Yellow + Forest Green (derived from logo)
   Fonts: Amiri (display) + Rasa (body)
   ============================================================ */

/* 1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --dark:       #1C2E1A;   /* deep forest-night green */
  --accent:     #D4A800;   /* saffron gold (logo yellow) */
  --highlight:  #F5C800;   /* bright logo yellow */
  --cream:      #FAF7EC;   /* warm ivory */
  --bg-alt:     #243320;   /* dark forest green alt */
  --text:       #1C2E1A;
  --text-muted: #5A6C58;
  --text-light: #8A9E88;
  --white:      #FFFFFF;
  --border:     #D4C88A;

  --font-display: 'Amiri', serif;
  --font-body:    'Rasa', serif;

  --radius:     4px;
  --radius-lg:  8px;
  --shadow:     0 2px 16px rgba(28,46,26,0.12);
  --shadow-lg:  0 8px 40px rgba(28,46,26,0.18);
  --transition: 0.3s ease;

  --nav-h: 76px;
  --max-w: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  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; }

/* 3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { font-size: 1.05rem; line-height: 1.75; color: var(--text); }
.lead { font-size: 1.2rem; font-weight: 500; }

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

/* 4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section--alt { background: var(--bg-alt); color: var(--cream); }
.section--alt h1, .section--alt h2, .section--alt h3,
.section--alt h4, .section--alt h5 { color: var(--cream); }
.section--alt p { color: rgba(250,247,236,0.85); }
.section--alt .section-label { color: var(--highlight); }

.section--yellow { background: var(--highlight); }
.section--yellow h1, .section--yellow h2,
.section--yellow h3, .section--yellow h4 { color: var(--dark); }
.section--yellow p { color: var(--dark); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 640px; margin: 0.75rem auto 0; color: var(--text-muted); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* 5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--highlight);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212,168,0,0.35);
}
.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--cream);
  color: var(--dark);
}
.btn-light:hover {
  background: var(--highlight);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--cream);
}
.btn-dark:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
}

/* 6. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--dark);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(28,46,26,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 50%;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--highlight);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(250,247,236,0.85);
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--highlight); }
.nav-cta {
  background: var(--accent);
  color: var(--dark) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.08em !important;
}
.nav-cta:hover {
  background: var(--highlight) !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 7. HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,46,26,0.82) 0%,
    rgba(28,46,26,0.55) 50%,
    rgba(28,46,26,0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 760px;
}
.hero-michelin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,200,0,0.15);
  border: 1px solid rgba(245,200,0,0.4);
  color: var(--highlight);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-michelin svg { width: 14px; height: 14px; }
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--highlight); }
.hero-tagline {
  font-size: 1.15rem;
  color: rgba(250,247,236,0.88);
  margin-bottom: 2rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,247,236,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,200,0,0.7), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* 8. FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--highlight);
  padding: 3rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.feature-item {
  text-align: center;
  padding: 1.25rem 0.75rem;
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  color: var(--dark);
}
.feature-item h4 {
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.feature-item p {
  font-size: 0.82rem;
  color: rgba(28,46,26,0.7);
  line-height: 1.5;
}

/* 9. MENU GRID (Offerings)
   ============================================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.menu-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover img { transform: scale(1.06); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,46,26,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.menu-card-overlay h3 {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.menu-card-overlay p {
  color: rgba(250,247,236,0.75);
  font-size: 0.85rem;
}

/* 10. BRAND TEASER / ABOUT PREVIEW
   ============================================================ */
.brand-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
.brand-teaser-img {
  position: relative;
  overflow: hidden;
}
.brand-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-teaser-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
}
.brand-teaser-content h2 { color: var(--highlight); margin-bottom: 1rem; }
.brand-teaser-content p { color: rgba(250,247,236,0.85); margin-bottom: 1.5rem; }

/* 11. STATS STRIP
   ============================================================ */
.stats-strip { background: var(--dark); padding: 4rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(250,247,236,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* 12. REVIEWS
   ============================================================ */
.reviews-section { background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--accent);
}
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
}
.review-source {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* 13. SOCIAL CTA
   ============================================================ */
.social-cta {
  background: var(--bg-alt);
  padding: 5rem 0;
  text-align: center;
}
.social-cta h2 { color: var(--cream); margin-bottom: 0.75rem; }
.social-cta p { color: rgba(250,247,236,0.75); max-width: 520px; margin: 0 auto 2rem; }
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  color: var(--dark);
  background: var(--highlight);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* 14. INSTAGRAM FEED STRIP
   ============================================================ */
.feed-strip { background: var(--cream); padding: 4rem 0; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feed-item:hover img { transform: scale(1.1); }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,46,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 28px; height: 28px; color: var(--cream); }

/* 15. PAGE HERO
   ============================================================ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,46,26,0.8) 0%, rgba(28,46,26,0.45) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
}
.page-hero-content h1 { color: var(--cream); margin-bottom: 0.75rem; }
.page-hero-content p { color: rgba(250,247,236,0.85); font-size: 1.1rem; }
.page-hero-content .section-label { color: var(--highlight); }

/* 16. ABOUT PAGE SECTIONS
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 140px;
  height: 140px;
  background: var(--highlight);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.philosophy-card {
  background: var(--dark);
  color: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
}
.philosophy-card:hover { transform: translateY(-4px); }
.philosophy-card .icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(245,200,0,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--highlight);
}
.philosophy-card h3 { color: var(--highlight); margin-bottom: 0.75rem; font-size: 1.2rem; }
.philosophy-card p { color: rgba(250,247,236,0.8); font-size: 0.92rem; }

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--highlight);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
.value-icon svg { width: 22px; height: 22px; }
.value-item h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.value-item p { font-size: 0.88rem; color: var(--text-muted); }

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--dark));
}
.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.65rem;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
}
.timeline-year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.timeline-item h4 { margin-bottom: 0.25rem; }
.timeline-item p { font-size: 0.9rem; color: var(--text-muted); }

/* 17. MENU / OFFERINGS PAGE
   ============================================================ */
.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.cat-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}
.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-tile:hover img { transform: scale(1.07); }
.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,46,26,0.9) 0%, rgba(28,46,26,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.cat-tile-overlay h3 { color: var(--highlight); font-size: 1.4rem; margin-bottom: 0.25rem; }
.cat-tile-overlay p { color: rgba(250,247,236,0.8); font-size: 0.88rem; }

.menu-section { margin-bottom: 3.5rem; }
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}
.menu-section-header h3 {
  font-size: 1.5rem;
  color: var(--dark);
}
.menu-section-header .section-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.menu-item {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(212,200,138,0.35);
  transition: background var(--transition);
}
.menu-item:hover { background: rgba(245,200,0,0.06); }
.menu-item h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.menu-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.menu-note {
  background: var(--highlight);
  color: var(--dark);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 2rem;
}

/* 18. GALLERY PAGE
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}
.masonry-grid {
  columns: 3;
  column-gap: 1rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,46,26,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay svg { width: 36px; height: 36px; color: var(--cream); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 1.25rem;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* 19. CONTACT PAGE
   ============================================================ */
.contact-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.contact-block {
  background: var(--dark);
  color: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}
.contact-block .icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(245,200,0,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--highlight);
}
.contact-block .icon-wrap svg { width: 24px; height: 24px; }
.contact-block h4 { color: var(--highlight); margin-bottom: 0.5rem; }
.contact-block p { color: rgba(250,247,236,0.8); font-size: 0.9rem; line-height: 1.6; }
.contact-block a { color: var(--highlight); transition: color var(--transition); }
.contact-block a:hover { color: var(--accent); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,168,0,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: var(--highlight);
  color: var(--dark);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
}

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
}
.faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.map-placeholder {
  background: var(--dark);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(245,200,0,0.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(212,168,0,0.05) 0%, transparent 60%);
}
.map-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
}
.map-inner svg { width: 40px; height: 40px; color: var(--highlight); margin-bottom: 1rem; }
.map-inner h4 { color: var(--highlight); margin-bottom: 0.5rem; }
.map-inner p { color: rgba(250,247,236,0.7); font-size: 0.9rem; }

/* Locations grid */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.location-card {
  padding: 2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.location-card h4 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.location-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  background: var(--highlight);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

/* 20. FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--highlight);
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(250,247,236,0.65);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,236,0.7);
  transition: all var(--transition);
}
.footer-social-icon svg { width: 18px; height: 18px; }
.footer-social-icon:hover {
  background: var(--accent);
  color: var(--dark);
}
.footer-col h5 {
  color: var(--highlight);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(250,247,236,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--highlight); }
.footer-hours { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-hour {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(250,247,236,0.65);
}
.footer-hour .day { font-weight: 600; color: rgba(250,247,236,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(250,247,236,0.45);
}
.footer-bottom a { color: rgba(250,247,236,0.55); }
.footer-bottom a:hover { color: var(--highlight); }
.michelin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(250,247,236,0.55);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
}

/* 21. ANIMATIONS & SCROLL EFFECTS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-left.visible { opacity: 1; transform: none; }
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-right.visible { opacity: 1; transform: none; }

/* 22. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .feed-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 2rem;
    gap: 1.25rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-mobile-menu.open { transform: translateY(0); }
  .nav-mobile-menu a {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(250,247,236,0.85);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-mobile-menu a:hover { color: var(--highlight); }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser { grid-template-columns: 1fr; }
  .brand-teaser-img { height: 340px; }
  .brand-teaser-content { padding: 3rem 2rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-blocks { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .menu-categories { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .menu-categories { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
