/* =========================================================
   Noods N' Rice — Modern Asian Kitchen, Byblos
   Palette: deep teal, antique gold, ink, paper cream
   ========================================================= */

:root {
  --ink: #14110F;
  --ink-soft: #2A2522;
  --teal: #2A5967;
  --teal-deep: #1A4250;
  --teal-soft: #3D7282;
  --gold: #b16f11;
  --gold-warm: #9a5e0e;
  --gold-soft: #d49437;
  --red: #B91C2D;
  --red-deep: #8C0F1E;
  /* red vars kept for reference; hero uses teal now */
  --petal: #F4B7BC;
  --petal-soft: #FBE0DD;
  --cream: #FAF3E7;
  --cream-warm: #F2E6D0;
  --paper: #FFF9EE;
  --muted: #6B5D52;
  --line: rgba(20, 17, 15, 0.12);
  --shadow-sm: 0 2px 6px rgba(20, 17, 15, 0.08);
  --shadow-md: 0 12px 30px rgba(20, 17, 15, 0.12);
  --shadow-lg: 0 30px 60px rgba(20, 17, 15, 0.18);
  --radius: 14px;
  --radius-lg: 24px;
  --serif: "Noto Serif Display", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --korean: "Gowun Batang", "Noto Serif KR", serif;
  --max: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --topbar-h: 64px;
  --menubar-h: 64px;
  --pad: 48px;
}
@media (max-width: 1024px) { :root { --pad: 36px; } }
@media (max-width: 720px)  { :root { --pad: 28px; } }
@media (max-width: 480px)  { :root { --pad: 22px; } }

/* ---------- reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--topbar-h) + var(--menubar-h) + 8px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 12% 8%,  rgba(177,111,17,0.06) 0%, transparent 38%),
    radial-gradient(circle at 88% 92%, rgba(42,85,99,0.05) 0%, transparent 42%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; margin: 0; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-content {
  text-align: center;
}
.preloader-logo {
  height: 50px;
  width: auto;
  margin: 0 auto 24px;
  border-radius: 8px;
}
.preloader-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--line);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: preloader-spin 0.7s linear infinite;
  margin: 0 auto;
}
@keyframes preloader-spin { to { transform: rotate(360deg); } }

/* paper texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  z-index: 1;
  mix-blend-mode: multiply;
}


/* ---------- petals — drift inside hero on two layers ---------- */
.petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.petals.petals-back  { z-index: 1; }
.petals.petals-front { z-index: 3; }
.petal {
  position: absolute;
  width: 14px; height: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  border-radius: 80% 0 80% 0;
  opacity: 0;
  filter: drop-shadow(0 1px 2px rgba(140,90,20,0.18));
  will-change: transform, opacity;
}
.petal::before {
  content: "";
  position: absolute;
  inset: 25% 35%;
  background: rgba(255,255,255,0.35);
  border-radius: 80% 0 80% 0;
}

/* twelve drifting petals at varied positions, sizes, durations */
.petal:nth-child(1)  { left:  4%; top: -10%; width: 16px; height: 16px; animation: petal-fall 22s linear infinite 0s; }
.petal:nth-child(2)  { left: 14%; top: -15%; width: 12px; height: 12px; animation: petal-fall 26s linear infinite -3s; }
.petal:nth-child(3)  { left: 22%; top: -8%;  width: 18px; height: 18px; animation: petal-fall 18s linear infinite -8s; }
.petal:nth-child(4)  { left: 33%; top: -12%; width: 14px; height: 14px; animation: petal-fall 24s linear infinite -1s; }
.petal:nth-child(5)  { left: 44%; top: -20%; width: 11px; height: 11px; animation: petal-fall 28s linear infinite -10s; }
.petal:nth-child(6)  { left: 52%; top: -10%; width: 16px; height: 16px; animation: petal-fall 21s linear infinite -5s; }
.petal:nth-child(7)  { left: 62%; top: -15%; width: 20px; height: 20px; animation: petal-fall 25s linear infinite -12s; }
.petal:nth-child(8)  { left: 72%; top: -8%;  width: 13px; height: 13px; animation: petal-fall 23s linear infinite -7s; }
.petal:nth-child(9)  { left: 81%; top: -18%; width: 15px; height: 15px; animation: petal-fall 27s linear infinite -2s; }
.petal:nth-child(10) { left: 88%; top: -12%; width: 12px; height: 12px; animation: petal-fall 19s linear infinite -14s; }
.petal:nth-child(11) { left: 94%; top: -10%; width: 17px; height: 17px; animation: petal-fall 22s linear infinite -9s; }
.petal:nth-child(12) { left:  9%; top: -20%; width: 10px; height: 10px; animation: petal-fall 30s linear infinite -16s; }

@keyframes petal-fall {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg);     opacity: 0; }
  8%   { opacity: 0.85; }
  25%  { transform: translate3d(50px,  220px, 0) rotate(180deg); }
  50%  { transform: translate3d(-30px, 440px, 0) rotate(360deg); }
  75%  { transform: translate3d(60px,  680px, 0) rotate(540deg); }
  92%  { opacity: 0.85; }
  100% { transform: translate3d(-20px, 880px, 0) rotate(720deg); opacity: 0; }
}

/* ---------- container ---------- */
.container { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #2A5967;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow .25s var(--ease);
}
.topbar.is-scrolled { box-shadow: 0 4px 18px rgba(20,17,15,0.22); }
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px var(--pad);
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--topbar-h);
}
@media (max-width: 480px) { .nav { gap: 12px; } }

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  height: 26px;
  width: auto;
  border-radius: 6px;
}
@media (max-width: 480px) { .brand-logo { height: 22px; border-radius: 5px; } }

.nav-drawer {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-tabs {
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 4px;
}
.nav-tab {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(250,243,231,0.72);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-tab:hover { color: var(--cream); background: rgba(255,255,255,0.06); }
.nav-tab.is-active {
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: #F2B934;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(242,185,52,0.3);
}
.nav-cta:hover { background: #E0A41A; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(242,185,52,0.45); }

.nav-toggle { display: none; padding: 8px; border-radius: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); margin: 5px 0; transition: transform .3s var(--ease), opacity .2s; }

@media (max-width: 880px) {
  .nav-drawer { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav.is-open .nav-drawer {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    background: var(--paper);
    padding: 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav-tabs {
    flex-direction: column;
    background: transparent;
    padding: 0;
    gap: 4px;
    align-items: stretch;
  }
  /* drawer is on cream background, so override the on-teal text colors */
  .nav.is-open .nav-tab {
    text-align: left;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--ink-soft);
    border-radius: 12px;
  }
  .nav.is-open .nav-tab:hover { background: rgba(20,17,15,0.05); color: var(--ink); }
  .nav.is-open .nav-tab.is-active {
    background: var(--teal);
    color: var(--cream);
    box-shadow: 0 4px 12px rgba(42,89,103,0.25);
  }
  .nav.is-open .nav-cta { justify-content: center; padding: 14px 18px; font-size: 14px; }
  .nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- panels ---------- */
.panel {
  display: none;
  position: relative;
  z-index: 2;
}
.panel.is-active { display: block; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 80px var(--pad) 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(177,111,17,0.16), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}
@media (max-width: 880px) { .hero { padding-top: 50px; padding-bottom: 60px; } }
@media (max-width: 480px) { .hero { padding-top: 40px; padding-bottom: 50px; } }

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--teal);
}
.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin-bottom: 26px;
}
.hero h1 .accent {
  display: inline-block;
  color: var(--teal);
  font-style: italic;
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: 8px;
  width: 100%; height: 10px;
  background: var(--teal);
  opacity: 0.18;
  z-index: -1;
  border-radius: 4px;
}
.hero-ko {
  font-family: var(--korean);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--muted);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(20,17,15,0.18);
}
.btn-primary:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(42,85,99,0.32); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(177,111,17,0.32);
}
.btn-gold:hover { background: var(--gold-warm); transform: translateY(-2px); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* hero visual: bowl illustration in teal */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin-left: auto;
  display: grid;
  place-items: center;
}
.hero-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 50%),
    linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  box-shadow: 0 40px 80px rgba(42,85,99,0.45);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}
.hero-disc::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(212,148,55,0.35);
  border-radius: 50%;
}
.hero-disc::after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(177,111,17,0.45);
  border-radius: 50%;
}
.hero-char {
  position: relative;
  z-index: 2;
  font-family: var(--korean);
  font-size: clamp(140px, 22vw, 240px);
  font-weight: 700;
  color: var(--gold-soft);
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: -0.05em;
  line-height: 1;
  animation: char-float 8s ease-in-out infinite;
}
@keyframes char-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}
.hero-stamp {
  position: absolute;
  bottom: 8%;
  right: 6%;
  width: 88px; height: 88px;
  background: var(--teal);
  color: var(--cream);
  display: grid; place-items: center;
  border-radius: 12px;
  font-family: var(--korean);
  font-weight: 700;
  font-size: 28px;
  transform: rotate(-12deg);
  box-shadow: 0 12px 24px rgba(42,85,99,0.45);
  z-index: 3;
  animation: stamp-bob 5s ease-in-out infinite;
}
@keyframes stamp-bob {
  0%,100% { transform: rotate(-12deg) translateY(0); }
  50%     { transform: rotate(-9deg) translateY(-6px); }
}
.hero-lantern {
  position: absolute;
  top: -20px;
  left: -10px;
  width: 70px;
  z-index: 3;
  animation: sway 4s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes sway {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}
/* hero-local sesame seeds removed — replaced by site-wide .petals layer */

/* hero stats strip */
.hero-strip {
  margin-top: 70px;
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}
.hero-strip-item { text-align: center; }
.hero-strip-num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--teal);
  font-weight: 700;
  line-height: 1;
}
.hero-strip-label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 360px; margin: 0 auto; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); margin-top: 40px; padding: 24px; }
}

/* ---------- parallax interlude ---------- */
.parallax {
  position: relative;
  height: 520px;
  background-image: linear-gradient(rgba(26,61,74,0.55), rgba(26,61,74,0.78)), url("assets/temple.svg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 2;
  isolation: isolate;
}
.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(212,148,55,0.15), transparent 55%),
    radial-gradient(ellipse at bottom, rgba(20,17,15,0.4), transparent 60%);
  pointer-events: none;
}
.parallax-content {
  text-align: center;
  color: var(--cream);
  max-width: 720px;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.parallax-ko {
  font-family: var(--korean);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
}
.parallax h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 6px 24px rgba(0,0,0,0.4);
}
.parallax h2 .accent { color: var(--gold-soft); }
.parallax p {
  font-size: 16px;
  color: rgba(250,243,231,0.85);
  max-width: 540px;
  margin: 0 auto;
}
.parallax-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-soft);
  margin: 22px auto;
  opacity: 0.6;
}
/* mobile browsers often ignore background-attachment:fixed for performance */
@media (max-width: 880px) {
  .parallax { background-attachment: scroll; height: 420px; }
}

/* ---------- delivery banner ---------- */
.delivery {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}
.delivery-card {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.delivery-card::before {
  content: "배달";
  position: absolute;
  font-family: var(--korean);
  font-weight: 700;
  font-size: 18rem;
  color: rgba(212,148,55,0.07);
  bottom: -60px; right: -20px;
  line-height: 1;
  pointer-events: none;
}
.delivery-text { position: relative; z-index: 1; }
.delivery-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 14px;
}
.delivery-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-soft);
}
.delivery h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.delivery h2 .accent { color: var(--gold-soft); font-style: italic; }
.delivery p {
  font-size: 16px;
  color: rgba(250,243,231,0.85);
  max-width: 520px;
  margin: 0 0 22px;
}
.delivery-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.delivery-meta span { display: inline-flex; align-items: center; gap: 6px; }
.delivery-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.delivery-icon {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(244,196,96,0.5);
  display: grid; place-items: center;
  color: var(--gold-soft);
  flex-shrink: 0;
  animation: scoot 3s ease-in-out infinite;
}
@keyframes scoot {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(8px); }
}

@media (max-width: 820px) {
  .delivery-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; text-align: left; }
  .delivery-icon { width: 90px; height: 90px; margin-top: 8px; }
}
@media (max-width: 480px) {
  .delivery-card { padding: 28px 22px; }
}

/* ---------- section heading ---------- */
.section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 720px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 14px;
}
.section-title .ko {
  display: block;
  font-family: var(--korean);
  font-size: 0.4em;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
}

/* ---------- highlights row ---------- */
.highlights {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.highlight::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.highlight:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(42,85,99,0.2);
}
.highlight:hover::before { transform: scaleX(1); }
.highlight-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(42,85,99,0.08), rgba(177,111,17,0.18));
  display: grid; place-items: center;
  color: var(--teal);
}
.highlight h3 { font-size: 22px; margin-bottom: 10px; }
.highlight p { color: var(--muted); font-size: 14.5px; margin: 0; }

@media (max-width: 1024px) {
  .highlights-grid { gap: 18px; }
  .highlight { padding: 28px 22px; }
}
@media (max-width: 720px) {
  .highlights { padding-top: 60px; padding-bottom: 60px; }
  .highlights-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- featured dishes ---------- */
.featured {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(20,17,15,0.03));
  position: relative;
  z-index: 2;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dish-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  cursor: pointer;
  position: relative;
}
.dish-card:hover {
  box-shadow: var(--shadow-lg);
}
.dish-img {
  aspect-ratio: 4 / 3;
  background: var(--cream-warm);
  overflow: hidden;
  position: relative;
}
.dish-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.dish-card:hover .dish-img img { transform: scale(1.07); }
.dish-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,17,15,0.4));
  pointer-events: none;
}
.dish-tags {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; gap: 6px;
  flex-wrap: wrap;
  max-width: calc(100% - 28px);
  z-index: 2;
}
.tag {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.tag.spicy   { background: rgba(232,80,32,0.92); color: var(--cream); }
.tag.veg     { background: rgba(72,118,52,0.92); color: var(--cream); }
.tag.vegan   { background: rgba(58,104,40,0.92); color: var(--cream); }
.tag.popular { background: #F2B934; color: var(--ink); }
.tag.gf      { background: rgba(42,85,99,0.92); color: var(--cream); }
.tag.nuts    { background: rgba(140,90,30,0.92); color: var(--cream); }
.dish-body { padding: 22px; }
.dish-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.dish-price { color: var(--teal); font-weight: 700; flex-shrink: 0; }
.dish-desc {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 640px) {
  .featured { padding: 60px 0; }
  .featured-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- menu page ---------- */
.menu-page { padding-top: 40px; padding-bottom: 80px; position: relative; }

/* drifting teal circles in menu background — only visible while menu panel active */
.menu-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
.menu-bg span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(42,85,99,0.32), rgba(42,85,99,0) 70%);
  filter: blur(8px);
  opacity: 0.45;
  will-change: transform;
}
.menu-bg span:nth-child(1) { width: 480px; height: 480px; left: -8%;  top:  4%;  animation: menu-bg-float 18s ease-in-out infinite alternate; }
.menu-bg span:nth-child(2) { width: 380px; height: 380px; right: -5%; top: 18%;  animation: menu-bg-float 22s ease-in-out infinite alternate -4s; background: radial-gradient(circle at 30% 30%, rgba(177,111,17,0.22), rgba(232,168,40,0) 70%); }
.menu-bg span:nth-child(3) { width: 540px; height: 540px; left: 30%;  top: 44%;  animation: menu-bg-float 26s ease-in-out infinite alternate -10s; }
.menu-bg span:nth-child(4) { width: 320px; height: 320px; left: -5%;  top: 72%;  animation: menu-bg-float 20s ease-in-out infinite alternate -14s; background: radial-gradient(circle at 30% 30%, rgba(42,85,99,0.28), rgba(42,85,99,0) 70%); }
.menu-bg span:nth-child(5) { width: 440px; height: 440px; right: 8%;  bottom: 6%; animation: menu-bg-float 24s ease-in-out infinite alternate -6s; }
.menu-bg span:nth-child(6) { width: 260px; height: 260px; left: 50%;  top: 12%;  animation: menu-bg-float 16s ease-in-out infinite alternate -8s; background: radial-gradient(circle at 30% 30%, rgba(212,148,55,0.18), rgba(244,196,96,0) 70%); }
@keyframes menu-bg-float {
  0%   { transform: translate(0, 0)         scale(1); }
  100% { transform: translate(40px, -50px)  scale(1.12); }
}


/* sticky category sub-nav */
.menu-subnav {
  position: sticky;
  top: var(--topbar-h);
  z-index: 40;
  background: rgba(250, 243, 231, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
  margin-bottom: 36px;
  padding: 12px 0;
  transition: box-shadow .25s var(--ease);
  display: flex;
  align-items: center;
}
.menu-subnav.is-stuck { box-shadow: 0 4px 16px rgba(20,17,15,0.06); }
@media (max-width: 720px) { .menu-subnav { padding: 10px 0; } }

.menu-subnav-inner {
  display: flex;
  gap: 6px;
  align-items: center;
  overflow-x: auto;
  padding: 4px var(--pad);
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  flex: 1;
}
.menu-subnav-inner::-webkit-scrollbar { display: none; }

/* scroll arrows */
.menu-scroll-arrow {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .2s var(--ease);
  z-index: 1;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  margin: 0 2px;
}
.menu-subnav:hover .menu-scroll-arrow,
.menu-scroll-arrow.is-visible,
.menu-scroll-arrow.always-visible {
  opacity: 1;
  pointer-events: auto;
}
.menu-scroll-arrow:hover {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}
.menu-scroll-arrow.is-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}

.cat-btn {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: all .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
}
.cat-btn:hover { color: var(--ink); background: rgba(20,17,15,0.04); }
.cat-btn.is-active {
  background: var(--teal);
  color: var(--cream);
  box-shadow: 0 4px 12px rgba(42,85,99,0.25);
}
.cat-btn .ko { font-family: var(--korean); font-size: 12px; opacity: 0.7; }
.cat-btn.is-active .ko { color: var(--gold-soft); opacity: 1; }

.menu-search {
  position: relative;
  margin: 0 auto 36px;
  max-width: 520px;
}
.menu-search input {
  width: 100%;
  padding: 14px 18px 14px 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  outline: none;
  font-size: 15px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.menu-search input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42,85,99,0.1);
}
.menu-search svg {
  position: absolute;
  top: 50%; left: 18px;
  transform: translateY(-50%);
  color: var(--muted);
}

.menu-section {
  margin-bottom: 64px;
  scroll-margin-top: calc(var(--topbar-h) + var(--menubar-h) + 8px);
}
.menu-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
  position: relative;
  flex-wrap: wrap;
}
.menu-section-head::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 80px; height: 2px;
  background: var(--gold);
}
.menu-section-title { font-size: clamp(28px, 4vw, 42px); }
.menu-section-title .ko {
  font-family: var(--korean);
  font-size: 0.45em;
  color: var(--teal);
  margin-right: 14px;
  font-weight: 400;
}
.menu-section-count {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.menu-section-note {
  background: rgba(177,111,17,0.12);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.menu-item {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  cursor: pointer;
}
.menu-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(42,85,99,0.18);
}
.menu-item-img {
  width: 100px; height: 100px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-warm);
  position: relative;
  display: grid; place-items: center;
  color: var(--gold-warm);
}
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-img.placeholder {
  background: linear-gradient(135deg, rgba(177,111,17,0.18), rgba(42,85,99,0.08));
}
.menu-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.menu-item-name {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.menu-item-price {
  font-weight: 700;
  color: var(--teal);
  font-size: 15.5px;
  flex-shrink: 0;
}
.menu-item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge.spicy   { background: rgba(232,80,32,0.13);  color: #B8421A; }
.badge.veg     { background: rgba(72,118,52,0.13);  color: #3F6D2C; }
.badge.vegan   { background: rgba(58,104,40,0.15);  color: #2E5B1F; }
.badge.popular { background: rgba(242,185,52,0.25); color: #8C6B2F; }
.badge.gf      { background: rgba(42,85,99,0.15);   color: var(--teal-deep); }
.badge.nuts    { background: rgba(140,90,30,0.13);  color: #6E441A; }
.badge.cuisine { background: transparent; font-size: 12px; padding: 0 2px; }

/* cuisine tag in section heading */
.cuisine-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(42,85,99,0.1);
  color: var(--teal-deep);
  padding: 3px 10px;
  border-radius: 999px;
  vertical-align: middle;
  margin-right: 8px;
}

/* cuisine filter row */
.menu-cuisine-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 24px;
  max-width: 720px;
  padding: 10px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  flex-wrap: wrap;
  justify-content: center;
}
.cuisine-filter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.cuisine-btn {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.cuisine-btn:hover { background: rgba(20,17,15,0.05); }
.cuisine-btn.is-active {
  background: var(--teal);
  color: var(--cream);
  box-shadow: 0 2px 8px rgba(42,85,99,0.2);
}

.menu-disclaimer {
  margin: 0 auto 32px;
  max-width: 720px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  padding: 14px 22px;
  background: rgba(20,17,15,0.03);
  border-radius: var(--radius);
}
.menu-disclaimer strong { color: var(--ink); }

@media (max-width: 600px) {
  .menu-item { flex-direction: column; }
  .menu-item-img { width: 100%; height: 180px; }
  .menu-grid { grid-template-columns: 1fr; }
}

/* ---------- about page ---------- */
.about { padding-top: 80px; padding-bottom: 80px; }
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.about-text h2 {
  font-size: clamp(36px, 5vw, 54px);
  margin-bottom: 22px;
  line-height: 1.05;
}
.about-text h2 .ko {
  display: block;
  font-family: var(--korean);
  font-size: 0.4em;
  color: var(--teal);
  font-weight: 400;
  margin-bottom: 8px;
}
.about-text p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.about-text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.6em;
  font-weight: 700;
  color: var(--teal);
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
}
@media (max-width: 480px) {
  .about-text p:first-of-type::first-letter { font-size: 3em; margin: 6px 8px 0 0; }
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  box-shadow: var(--shadow-lg);
}
.about-visual::before {
  content: "鮮";
  position: absolute;
  font-family: var(--korean);
  font-size: 22rem;
  color: rgba(212,148,55,0.18);
  top: -40px; right: -40px;
  font-weight: 700;
  line-height: 1;
}
.about-visual::after {
  content: "Made fresh, every day";
  position: absolute;
  bottom: 30px; left: 30px; right: 30px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.value {
  padding: 28px 22px;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value:hover { box-shadow: var(--shadow-md); }
.value-num {
  font-family: var(--korean);
  font-size: 42px;
  color: var(--teal);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
.value-name { font-family: var(--serif); font-size: 17px; margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--muted); margin: 0; }

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 50px;
  align-items: center;
}
.location h3 { font-size: clamp(28px, 3.5vw, 36px); margin-bottom: 20px; }
.location-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.location-row:last-child { border-bottom: 0; }
.location-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(42,85,99,0.1);
  color: var(--teal);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.location-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.location-value { font-size: 15.5px; font-weight: 500; margin-top: 2px; }
.map-frame {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream-warm);
  filter: grayscale(0.15) sepia(0.05);
  position: relative;
  display: block;
  transition: filter .3s var(--ease), transform .3s var(--ease);
}
.map-frame:hover { filter: none; transform: translateY(-2px); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; pointer-events: none; }
.map-pin {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.map-pin::after { content: " Open in Maps"; }

@media (max-width: 1024px) {
  .about-hero { gap: 40px; }
  .values { gap: 16px; }
  .location { padding: 36px; gap: 30px; }
}
@media (max-width: 820px) {
  .about { padding-top: 60px; padding-bottom: 60px; }
  .about-hero { grid-template-columns: 1fr; gap: 36px; margin-bottom: 60px; }
  .about-visual { max-width: 460px; aspect-ratio: 5/4; margin: 0 auto; }
  .values { grid-template-columns: repeat(2, 1fr); margin-bottom: 60px; }
  .location { grid-template-columns: 1fr; padding: 28px; gap: 24px; }
}
@media (max-width: 480px) {
  .values { grid-template-columns: 1fr; }
  .location { padding: 22px; }
}

/* ---------- instagram section ---------- */
.insta-section {
  margin-top: 60px;
  margin-bottom: 20px;
}
.insta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.insta-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: block;
  text-decoration: none;
  color: inherit;
}
.insta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.insta-card-outline { cursor: default; }
.insta-card-outline:hover { transform: none; }
.insta-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.insta-card-content {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.insta-card:first-child .insta-card-content {
  color: #fff;
}
.insta-card:first-child h3 {
  font-family: var(--serif);
  font-size: 26px;
}
.insta-card:first-child p {
  font-size: 15px;
  opacity: 0.9;
  max-width: 360px;
}
.insta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.insta-qr {
  margin-top: 16px;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}
.insta-qr img { width: 100%; height: 100%; display: block; }

.insta-card-outline h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 4px;
}

@media (max-width: 720px) {
  .insta-grid { grid-template-columns: 1fr; }
  .insta-card-content { padding: 36px 24px; }
}

/* ---------- feedback page ---------- */
.feedback { padding-top: 80px; padding-bottom: 80px; }
.feedback-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.feedback-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--cream);
  outline: none;
  font-size: 15px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; font-family: inherit; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2314110F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42,85,99,0.08);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rating { display: flex; gap: 6px; margin-top: 4px; }
.rating button {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 20px;
  transition: all .2s var(--ease);
}
.rating button.is-active,
.rating button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: scale(1.05);
}
.form-msg {
  display: none;
  padding: 14px;
  border-radius: 10px;
  background: rgba(72,118,52,0.12);
  color: #3F6D2C;
  font-size: 14px;
  margin-top: 16px;
}
.form-msg.is-show { display: block; }

.feedback-side .testimonial {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -10px; right: 20px;
  font-family: var(--serif);
  font-size: 200px;
  color: var(--teal);
  line-height: 1;
  opacity: 0.55;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  position: relative;
  z-index: 1;
}
.feedback-contact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.feedback-contact h4 { font-family: var(--serif); font-size: 19px; margin-bottom: 14px; }
.feedback-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.feedback-contact a:hover { color: var(--teal); }
.feedback-contact a svg { color: var(--teal); flex-shrink: 0; }

@media (max-width: 1024px) {
  .feedback-grid { gap: 36px; }
  .feedback-form { padding: 32px; }
}
@media (max-width: 820px) {
  .feedback { padding-top: 60px; padding-bottom: 60px; }
  .feedback-grid { grid-template-columns: 1fr; gap: 28px; }
  .feedback-form { padding: 26px; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .feedback-form { padding: 20px; }
  .testimonial { padding: 26px; }
  .testimonial-quote { font-size: 17px; }
}

/* ---------- footer ---------- */
.footer {
  background: var(--teal);
  color: var(--cream);
  padding-top: 70px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.footer::before {
  content: "맛있게";
  position: absolute;
  font-family: var(--korean);
  font-size: 18rem;
  font-weight: 700;
  color: var(--gold-soft);
  opacity: 0.22;
  bottom: -60px;
  right: -40px;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}
@media (max-width: 600px) {
  .footer::before {
    font-size: 10rem;
    left: 50%;
    right: auto;
    bottom: -30px;
    transform: translateX(-50%);
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand-logo {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  border-radius: 10px;
}
.footer-tagline {
  color: rgba(250,243,231,0.7);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 320px;
}
.footer h5 {
  font-family: var(--serif);
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer li a, .footer li span {
  color: rgba(250,243,231,0.7);
  font-size: 14px;
  transition: color .2s var(--ease);
}
.footer li a:hover { color: var(--cream); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250,243,231,0.2);
  display: grid; place-items: center;
  color: var(--cream);
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  opacity: 0;
  transition: opacity .3s var(--ease);
  z-index: -1;
}
.social-btn:hover { transform: translateY(-3px); border-color: transparent; }
.social-btn:hover::before { opacity: 1; z-index: 0; }
.social-btn svg { position: relative; z-index: 1; }
.footer-bottom {
  border-top: 1px solid rgba(250,243,231,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(250,243,231,0.6);
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-brand-logo { margin-left: auto; margin-right: auto; }
  .footer-tagline { margin-left: auto; margin-right: auto; }
  .socials { justify-content: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* reveal class kept as no-op so HTML using it stays cosmetic-safe */
.reveal { opacity: 1; transform: none; }

/* ---------- modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(20,17,15,0.6);
  backdrop-filter: blur(6px);
  display: none;
  z-index: 100;
  padding: 24px;
  align-items: center;
  justify-content: center;
}
.modal.is-open { display: flex; }
.modal-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-img { aspect-ratio: 16 / 10; background: var(--cream-warm); overflow: hidden; display: grid; place-items: center; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 30px; }
.modal-name { font-family: var(--serif); font-size: 28px; margin-bottom: 10px; }
.modal-price { color: var(--teal); font-weight: 700; font-size: 22px; margin-bottom: 14px; }
.modal-desc { color: var(--muted); font-size: 15px; line-height: 1.6; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease);
}
.modal-close:hover { transform: rotate(90deg); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
