/* =========================================================================
   GEPREKBRO — STYLE SYSTEM
   Tokens → Base → Layout → Components → Sections → Utilities → Responsive
   ========================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap");

:root {
  /* Color tokens */
  --purple-900: #4F0C64;
--purple-800: #741291;
--purple-700: #AA1BD5;
--purple-600: #BA45DE;
--purple-500: #C678DD;
--purple-100: #F5E5FA;
--purple-50: #FAF3FC;

  --orange-600: #E85D2C;
  --orange-500: #F97316;
  --orange-400: #FB923C;
  --orange-100: #FFE8D6;

  --white: #FFFFFF;
  --offwhite: #FDFBFE;
  --ink: #201229;
  --ink-soft: #4B3B57;
  --gray-500: #79708A;
  --gray-300: #E4DCEE;
  --gray-100: #F5F1FA;

  /* Type */
  --font-display: "Baloo 2", "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;

  /* Layout */
  --container-w: 1180px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(46, 10, 79, 0.08);
  --shadow-lift: 0 18px 40px rgba(46, 10, 79, 0.16);
  --navbar-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--purple-900);
  line-height: 1.15;
  margin: 0;
}

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--orange-400); outline-offset: 2px; }
.btn-primary { background: var(--purple-700); color: var(--white); box-shadow: 0 8px 20px rgba(91, 28, 150, 0.3); }
.btn-primary:hover { background: var(--purple-800); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(91, 28, 150, 0.36); }
.btn-secondary { background: var(--white); color: var(--purple-700); border: 2px solid var(--purple-700); }
.btn-secondary:hover { background: var(--purple-50); transform: translateY(-2px); }
.btn-accent { background: var(--orange-500); color: var(--white); box-shadow: 0 8px 20px rgba(249, 115, 22, 0.32); }
.btn-accent:hover { background: var(--orange-600); transform: translateY(-2px); }
.btn-ghost { background: var(--purple-100); color: var(--purple-700); }
.btn-ghost:hover { background: var(--purple-500); color: var(--white); }
.btn-white { background: var(--white); color: var(--purple-700); }
.btn-white:hover { background: var(--orange-100); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------------------------------------------------------------------
   NAVBAR
   --------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.navbar.is-scrolled { box-shadow: 0 6px 24px rgba(46, 10, 79, 0.08); border-color: var(--gray-300); }
.navbar-inner {
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--purple-800); }
.logo-text-accent { color: var(--purple-700); }
.navbar-links { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange-500);
  transform: scaleX(0);
  transition: transform 0.22s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--purple-700); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.navbar-actions { display: flex; align-items: center; gap: 14px; }
.navbar-cta { display: inline-flex; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--purple-800); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.navbar-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  padding: 12px 24px 20px;
}
.navbar-mobile.is-open { display: flex; }
.navbar-mobile .nav-link { display: block; padding: 12px 4px; font-size: 1.05rem; }
.navbar-mobile li:last-child { margin-top: 10px; }

/* ---------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 110px;
  background: var(--white);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 0;
}
.hero-blob-1 { width: 480px; height: 480px; background: var(--purple-100); top: -180px; right: -140px; }
.hero-blob-2 { width: 220px; height: 220px; background: var(--orange-100); bottom: -60px; left: -60px; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple-100);
  color: var(--purple-700);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-title .accent { color: var(--orange-500); }
.hero-subtitle {
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 480px;
}
.hero-cta-row { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-lift);
  background: linear-gradient(155deg, var(--purple-700), var(--purple-500));
}
.hero-visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-card .stars { color: var(--orange-500); font-size: 0.95rem; }
.hero-float-card strong { display: block; font-family: var(--font-display); color: var(--purple-800); font-size: 1.1rem; }

/* Sambal-drip divider — the signature motif, used at key section transitions */
.drip-divider {
  display: block;
  width: 100%;
  height: 56px;
  margin-top: -1px;
}

/* ---------------------------------------------------------------------
   SECTION SCAFFOLDING
   --------------------------------------------------------------------- */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.section-alt { background: var(--purple-50); }
.section-dark { background: linear-gradient(135deg, var(--purple-800), var(--purple-600)); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 12px;
}
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.section-desc { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; }
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------
   BRAND INTRO / STATS
   --------------------------------------------------------------------- */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-soft); background: var(--purple-100); }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.intro-text p { color: var(--ink-soft); font-size: 1.05rem; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.stat-card { text-align: center; padding: 20px 8px; border-radius: var(--radius-md); background: var(--purple-50); }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--purple-700); }
.stat-label { font-size: 0.82rem; color: var(--gray-500); margin-top: 4px; }

/* ---------------------------------------------------------------------
   FEATURE / WHY CARDS
   --------------------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--purple-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* ---------------------------------------------------------------------
   MENU
   --------------------------------------------------------------------- */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-chip {
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.filter-chip:hover { border-color: var(--purple-500); }
.filter-chip.is-active { background: var(--purple-700); border-color: var(--purple-700); color: var(--white); }

.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px; }
.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-300);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.menu-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--purple-100); }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-body { padding: 20px 22px 24px; }
.menu-card-title { font-size: 1.1rem; margin-bottom: 6px; }
.menu-card-desc { color: var(--ink-soft); font-size: 0.9rem; margin: 0 0 16px; min-height: 42px; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.menu-card-price { font-family: var(--font-display); font-weight: 700; color: var(--purple-700); font-size: 1.05rem; }
.menu-card-actions { display: flex; gap: 8px; }

.img-placeholder-icon {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--purple-100), var(--orange-100));
}

/* ---------------------------------------------------------------------
   OUTLETS
   --------------------------------------------------------------------- */
.outlet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 36px; }
.outlet-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md); overflow: hidden; transition: transform 0.22s ease, box-shadow 0.22s ease; }
.outlet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.outlet-card-img { aspect-ratio: 16/10; background: var(--purple-100); }
.outlet-card-img img { width: 100%; height: 100%; object-fit: cover; }
.outlet-card-body { padding: 22px; }
.outlet-card-title { font-size: 1.12rem; margin-bottom: 10px; }
.outlet-card-line { font-size: 0.9rem; color: var(--ink-soft); margin: 4px 0; }
.outlet-card-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   REVIEWS
   --------------------------------------------------------------------- */
.rating-summary { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 44px; flex-wrap: wrap; }
.rating-number { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--purple-700); }
.rating-stars { color: var(--orange-500); font-size: 1.3rem; letter-spacing: 3px; }
.rating-caption { color: var(--gray-500); font-size: 0.88rem; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md); padding: 26px; }
.review-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar-fallback {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple-700); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display); flex-shrink: 0;
}
.review-name { font-size: 1rem; margin: 0; }
.review-stars { margin: 2px 0 0; color: var(--orange-500); font-size: 0.9rem; }
.review-text { color: var(--ink-soft); font-size: 0.96rem; font-style: italic; margin: 0; }
.review-date { margin-top: 12px; font-size: 0.78rem; color: var(--gray-500); }

.review-carousel { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.review-carousel .review-card { min-width: 82%; scroll-snap-align: start; }

/* ---------------------------------------------------------------------
   CTA SECTION
   --------------------------------------------------------------------- */
.cta-section { position: relative; overflow: hidden; text-align: center; }
.cta-section .container { position: relative; z-index: 1; }
.cta-blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); z-index: 0; }
.cta-blob-1 { width: 360px; height: 360px; top: -160px; left: -100px; }
.cta-blob-2 { width: 260px; height: 260px; bottom: -140px; right: -60px; }
.cta-title { font-size: clamp(2rem, 3.6vw, 2.8rem); color: var(--white); }
.cta-sub { color: rgba(255,255,255,0.86); margin: 16px auto 34px; max-width: 480px; font-size: 1.05rem; }
.cta-btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.footer { background: var(--purple-900); color: rgba(255,255,255,0.82); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-logo-text { color: var(--white); }
.footer-tagline { margin: 14px 0 20px; font-size: 0.92rem; color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; }
.footer-social a:hover { background: var(--orange-500); }
.footer-heading { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer-links a:hover { color: var(--orange-400); }
.footer-bottom { padding: 22px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ---------------------------------------------------------------------
   PAGE HEADER (inner pages)
   --------------------------------------------------------------------- */
.page-header { padding: 64px 0 56px; background: var(--purple-50); text-align: center; position: relative; overflow: hidden; }
.page-header h1 { font-size: clamp(2rem, 3.6vw, 2.7rem); }
.page-header p { color: var(--ink-soft); max-width: 560px; margin: 14px auto 0; }
.breadcrumb { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 14px; }
.breadcrumb a { color: var(--purple-700); font-weight: 600; }

/* ---------------------------------------------------------------------
   ABOUT PAGE
   --------------------------------------------------------------------- */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-block + .about-block { margin-top: 90px; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--purple-100); box-shadow: var(--shadow-soft); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.mission-list { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.mission-item { display: flex; gap: 12px; align-items: flex-start; }
.mission-item .num { font-family: var(--font-display); font-weight: 800; color: var(--orange-500); font-size: 1.1rem; flex-shrink: 0; }

/* ---------------------------------------------------------------------
   CONTACT PAGE
   --------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md); padding: 30px; }
.contact-info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.contact-info-row:last-child { border-bottom: none; }
.contact-info-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--purple-100); color: var(--purple-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.15rem; }
.contact-info-row h4 { font-size: 0.95rem; margin-bottom: 3px; }
.contact-info-row p, .contact-info-row a { font-size: 0.9rem; color: var(--ink-soft); }
.contact-form-card { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md); padding: 34px; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.form-row input, .form-row textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-300); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--purple-500); }
.form-note { margin-top: 14px; font-size: 0.88rem; color: var(--purple-700); font-weight: 600; opacity: 0; transition: opacity 0.3s ease; }
.form-note.is-visible { opacity: 1; }

/* ---------------------------------------------------------------------
   MODAL
   --------------------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(32, 18, 41, 0.6); backdrop-filter: blur(2px); }
.modal-panel {
  position: relative; background: var(--white); border-radius: var(--radius-lg);
  max-width: 760px; width: 100%; max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow-lift);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--white); box-shadow: var(--shadow-soft); font-size: 1.3rem; color: var(--ink); z-index: 2; }
.modal-img { aspect-ratio: 1/1; background: var(--purple-100); }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 32px; display: flex; flex-direction: column; }
.badge-category { display: inline-block; background: var(--purple-100); color: var(--purple-700); font-size: 0.76rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; width: fit-content; }
.modal-title { font-size: 1.5rem; margin-bottom: 10px; }
.modal-desc { color: var(--ink-soft); font-size: 0.95rem; }
.modal-price { font-family: var(--font-display); font-weight: 800; color: var(--purple-700); font-size: 1.4rem; margin: 12px 0 18px; }
.spicy-levels { margin-bottom: 22px; }
.spicy-label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; }
.spicy-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-outline { border: 1.5px solid var(--gray-300); background: var(--white); padding: 7px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
.chip-outline.is-active { border-color: var(--purple-700); background: var(--purple-700); color: var(--white); }

/* ---------------------------------------------------------------------
   REVEAL ANIMATION
   --------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.no-scroll { overflow: hidden; }

/* ---------------------------------------------------------------------
   MAP EMBED
   --------------------------------------------------------------------- */
.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-300); aspect-ratio: 16/7; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .hero-grid, .intro-grid, .about-block, .contact-grid { grid-template-columns: 1fr; }
  .about-block { gap: 32px; }
  .about-block + .about-block { margin-top: 60px; }
  .about-block:nth-child(even) .about-photo { order: -1; }
  .feature-grid, .menu-grid, .outlet-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 48px 0 90px; }
  .modal-panel { grid-template-columns: 1fr; }
  .modal-img { aspect-ratio: 16/9; }
}

@media (max-width: 760px) {
  :root { --navbar-h: 68px; }
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
  .feature-grid, .menu-grid, .outlet-grid, .review-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-cta-row .btn, .cta-btn-row .btn { flex: 1 1 auto; }
  .hero-float-card { position: static; margin-top: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
}
