/* ============================================================
   Korean Kitchen Southport — Stylesheet
   Fonts: Playfair Display (headings) + Plus Jakarta Sans (body)
   Palette: Korean Flag — Red #C41E3A · Blue #003478 · White
   ============================================================ */

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ----- Variables ----- */
:root {
  --red:       #C41E3A;
  --red-hover: #a01730;
  --blue:      #003478;
  --navy:      #0a1628;
  --charcoal:  #1e2530;
  --body-text: #3d4354;
  --muted:     #6b7280;
  --border:    #e4e8f0;
  --off-white: #f7f8fc;
  --cream:     #fdf9f6;
  --white:     #ffffff;
  --gold:      #c9a050;

  --heading: 'Playfair Display', 'Georgia', serif;
  --body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,52,120,0.07);
  --shadow-md: 0 6px 24px rgba(0,52,120,0.11);
  --shadow-lg: 0 16px 48px rgba(0,52,120,0.16);

  --nav-h:  74px;
  --max-w:  1200px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur:    240ms;
  --radius: 14px;

  --section-y: clamp(4.5rem, 9vw, 7.5rem);
}

/* ----- Base ----- */
body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--nav-h) + 3px);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.25rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--body-text); line-height: 1.75; }

em { font-style: italic; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

/* ----- Layout ----- */
.container {
  width: 100%;
  padding-inline: 1.25rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
@media (min-width: 640px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1200px) { .container { padding-inline: 3rem; } }

.container--narrow {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) { .container--narrow { padding-inline: 2rem; } }

.section          { padding-block: var(--section-y); }
.section--dark    { background: var(--navy); }
.section--cream   { background: var(--off-white); }
.section--white   { background: var(--white); }

.section--dark h2, .section--dark h3, .section--dark h4,
.section--dark .eyebrow { color: var(--white); }
.section--dark .eyebrow::before { background: rgba(255,255,255,0.5); }
.section--dark .eyebrow { color: rgba(255,255,255,0.7); }
.section--dark p  { color: rgba(255,255,255,0.65); }

.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { max-width: 520px; margin-inline: auto; color: var(--muted); }
.section--dark .section-header p { color: rgba(255,255,255,0.5); }

/* ----- Flag accent bar at very top ----- */
.nav-flag-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: 3px;
  background: linear-gradient(to right, var(--red) 50%, var(--blue) 50%);
}

/* ----- Nav ----- */
.nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,52,120,0.06);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
@media (min-width: 640px)  { .nav__inner { padding-inline: 2rem; } }
@media (min-width: 1200px) { .nav__inner { padding-inline: 3rem; } }

.nav__left {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 0.4rem 2rem;
}
.nav__logo-img {
  width: 64px;
  height: auto;
  object-fit: contain;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav__center:hover .nav__logo-img { opacity: 0.85; transform: scale(1.04); }

.nav__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  padding: 0.45rem 1rem 0.45rem 0.8rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  transition: all var(--dur) var(--ease);
}
.nav__phone svg { color: var(--red); flex-shrink: 0; }
.nav__phone:hover { border-color: var(--red); color: var(--red); background: rgba(196,30,58,0.04); }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--dur);
  white-space: nowrap;
  position: relative;
}
.nav__link svg { flex-shrink: 0; opacity: 0.6; transition: opacity var(--dur); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s var(--ease);
}
.nav__link:hover { color: var(--charcoal); }
.nav__link:hover svg { opacity: 1; }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background var(--dur);
}
.nav__hamburger:hover { background: var(--off-white); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + 3px);
  left: 0; right: 0;
  bottom: 0;
  background: var(--white);
  padding: 2rem 1.5rem 3rem;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  z-index: 999;
  overflow-y: auto;
  border-top: 3px solid var(--border);
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__logo-img { width: 72px; margin-bottom: 1.5rem; }
.nav__mobile .nav__link {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  padding: 1rem 0;
  width: 100%;
  max-width: 280px;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  justify-content: center;
}
.nav__mobile .nav__link::after { display: none; }
.nav__mobile .nav__link:hover { color: var(--red); }
.nav__mobile .nav__link:last-child { border-bottom: none; }

@media (max-width: 780px) {
  .nav__left  { display: none; }
  .nav__right { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner {
    display: flex;
    justify-content: center;
    position: relative;
  }
  .nav__hamburger {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(0,52,120,0.3);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(196,30,58,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.btn--outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  height: calc(88vh - var(--nav-h) - 3px);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 68%;
  transform: scale(1.05);
  transition: transform 10s ease;
}
.hero:hover .hero__bg img { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.6)  50%,
    rgba(10,22,40,0.2) 100%
  );
}
/* Flag stripe at bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--red) 50%, var(--blue) 50%);
  z-index: 2;
}
.hero__hangul {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 0.95;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
  color: var(--white);
}
@media (min-width: 640px)  { .hero__content { padding-inline: 2rem; } }
@media (min-width: 1200px) { .hero__content { padding-inline: 3rem; } }

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-family: var(--heading);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  max-width: 640px;
  letter-spacing: -0.02em;
}
.hero__title em { color: var(--red); font-style: italic; }

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 460px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Rating pills */
.hero__ratings {
  position: absolute;
  bottom: 2rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 3;
}
@media (min-width: 640px) { .hero__ratings { right: 2rem; } }
@media (max-width: 500px) { .hero__ratings { display: none; } }

.rating-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 0.55rem 1rem 0.55rem 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  min-width: 160px;
}
.rating-pill__logo { flex-shrink: 0; display: flex; align-items: center; }
.rating-pill__info { line-height: 1.25; }
.rating-pill__score {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.rating-pill__stars { color: #f59e0b; font-size: 0.7rem; }
.rating-pill__sub {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ----- Korean Greeting Strip ----- */
.annyeong-strip {
  background: var(--navy);
  padding: 1.75rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.annyeong-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
  padding-inline: 1.25rem;
}
.annyeong-strip__ko {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
  line-height: 1;
}
.annyeong-strip__sep {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.15);
  display: block;
  flex-shrink: 0;
}
@media (max-width: 540px) { .annyeong-strip__sep { display: none; } }
.annyeong-strip__en {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.annyeong-strip__sub {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.06em;
  line-height: 1;
}

/* ----- Stats bar ----- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.stats-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem 2rem;
  border-right: 1px solid var(--border);
  flex: 1 1 140px;
}
.stat-item:last-child { border-right: none; }
@media (max-width: 640px) {
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}
.stat-item__num {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-item__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ----- About / Split ----- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); }
}
.about__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 1.25rem;
}
.about__body { display: flex; flex-direction: column; gap: 1rem; }
.about__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--border);
  box-shadow: var(--shadow-lg);
  order: -1;
}
@media (min-width: 768px) { .about__img { order: 0; } }
.about__img img { width: 100%; height: 100%; object-fit: cover; }

/* ----- Page Hero ----- */
.page-hero {
  background: var(--navy);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(196,30,58,0.15) 0%, transparent 65%);
}
.page-hero__inner { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.page-hero p { color: rgba(255,255,255,0.5); font-size: 1.05rem; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.page-hero__breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--red) 50%, var(--blue) 50%);
}

/* ----- Dish Cards ----- */
.dishes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .dishes { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
@media (max-width: 420px) {
  .dishes { grid-template-columns: 1fr; }
}

.dish-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.dish-card__visual {
  aspect-ratio: 4/3;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}
.dish-card__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.dish-card:hover .dish-card__visual img { transform: scale(1.08); }
.dish-card__body {
  padding: 1.1rem 1.25rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dish-card__name {
  font-family: var(--heading);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}
.dish-card__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.8rem;
  flex: 1;
}
.dish-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.dish-card__price {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--red);
}
.dish-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ----- Hours Section ----- */
.hours__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .hours__wrap { grid-template-columns: 1fr 1.4fr; align-items: center; gap: clamp(3rem, 5vw, 5rem); }
}
.hours-simple {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.hours-simple__icon { font-size: 1.5rem; }
.hours-simple__days {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.2rem;
}
.hours-simple__time {
  font-family: var(--heading);
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
}
.hours__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 4/3;
}
.hours__map iframe {
  width: 100%; height: 100%;
  display: block;
  border: none;
  min-height: 300px;
}
.contact-block { margin-top: 2.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--dur);
}
.contact-item:last-child { border-bottom: none; }
.contact-item:hover { color: var(--white); }
.contact-item svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }

/* ----- Review Strip ----- */
.review-strip {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.review-strip__score {
  background: var(--red);
  color: var(--white);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
  min-width: 140px;
}
.review-strip__google-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.review-strip__google-logo svg { width: 26px; height: 26px; }
.review-strip__num {
  font-family: var(--heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}
.review-strip__stars { font-size: 1rem; letter-spacing: 0.05em; margin: 0.3rem 0; }
.review-strip__platform { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; }
.review-strip__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  flex: 1;
  background: var(--border);
}
@media (max-width: 640px) { .review-strip__cards { grid-template-columns: 1fr; } }
.review-card { background: var(--white); padding: 1.5rem; }
.review-card__stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.6rem; }
.review-card__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--body-text);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.review-card__author { font-size: 0.75rem; font-weight: 700; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 860px) {
  .review-strip { flex-direction: column; }
}

/* ----- Gallery ----- */
.gallery-grid {
  columns: 3;
  column-gap: 0.875rem;
}
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 520px)  { .gallery-grid { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.875rem;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  background: var(--border);
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,40,0);
  transition: background var(--dur);
}
.gallery-item:hover .gallery-item__overlay { background: rgba(10,22,40,0.3); }

/* ----- Facebook Cards ----- */
.fb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .fb-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .fb-grid { grid-template-columns: repeat(3, 1fr); } }

.fb-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.fb-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.fb-card__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1rem 0.5rem;
}
.fb-logo {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.fb-card__meta { flex: 1; }
.fb-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #050505;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.fb-card__verified { color: #1877f2; }
.fb-card__date { font-size: 0.7rem; color: #65676b; margin-top: 1px; }
.fb-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--border);
}
.fb-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.fb-card:hover .fb-card__image img { transform: scale(1.04); }
.fb-card__body {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #1c1e21;
  line-height: 1.65;
  flex: 1;
}
.fb-card__emoji { font-size: 1.05rem; }
.fb-card__divider { height: 1px; background: var(--border); margin: 0 1rem; }
.fb-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
}
.fb-card__reactions {
  font-size: 0.78rem;
  color: #65676b;
}
.fb-card__view {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1877f2;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: opacity var(--dur);
}
.fb-card__view:hover { opacity: 0.75; }

/* ----- CTA Band ----- */
.cta-band {
  background: var(--blue);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,30,58,0.3) 0%, transparent 65%);
}
.cta-band__inner { position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ----- Menu Page ----- */
.menu-cats {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,52,120,0.04);
}
.menu-cats__inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1rem;
}
.menu-cats__inner::-webkit-scrollbar { display: none; }
.menu-cat-btn {
  padding: 1rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  letter-spacing: 0.02em;
}
.menu-cat-btn:hover { color: var(--charcoal); }
.menu-cat-btn.active { color: var(--red); border-bottom-color: var(--red); }

.menu-section { padding-block: 3rem; border-bottom: 1px solid var(--border); }
.menu-section:last-child { border-bottom: none; }
.menu-section__head { margin-bottom: 2rem; }
.menu-section__head h2 { margin-bottom: 0.3rem; }
.menu-section__head p { font-size: 0.9rem; color: var(--muted); }

.menu-items { display: flex; flex-direction: column; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__info { flex: 1; min-width: 0; }
.menu-item__name {
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--charcoal);
}
.menu-item__ko { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.3rem; }
.menu-item__desc { font-size: 0.83rem; color: var(--muted); line-height: 1.55; margin-bottom: 0.4rem; }
.menu-item__tags { display: flex; gap: 0.375rem; flex-wrap: wrap; }
.tag {
  display: inline-block;
  padding: 0.12rem 0.5rem;
  border-radius: 100px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tag--v   { background: #e8f5e9; color: #2e7d32; }
.tag--hot { background: #fce4e4; color: #b71c1c; }
.tag--pop { background: #fff8e1; color: #795b00; }
.tag--gf  { background: #e3f2fd; color: #0d47a1; }
.menu-item__price {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--red);
  flex-shrink: 0;
  white-space: nowrap;
}

/* ----- Footer ----- */
.footer { background: var(--navy); padding: 5rem 0 0; }
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 900px) {
  .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer__brand-logo img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.1);
  object-fit: cover;
}
.footer__brand-logo strong {
  font-family: var(--heading);
  font-size: 1.1rem;
  color: var(--white);
}
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--dur);
}
.footer__social a:hover { border-color: var(--red); background: var(--red); color: var(--white); }
.footer__col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}
.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  padding: 0.3rem 0;
  transition: color var(--dur);
}
.footer__col a:hover { color: var(--white); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bar p, .footer__bar a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}
.footer__bar a:hover { color: rgba(255,255,255,0.6); }

/* ----- Reveal Animations ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.45s; }

/* ----- Utilities ----- */
.text-center { text-align: center; }
.mt-xs { margin-top: 0.5rem; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
