/* ============================================================
   the mala — 韓国式マーラータン
   赤み強めのオレンジ + 白 / 水色 + ピンク アクセント
   黒不使用・M PLUS Rounded 1c
   ============================================================ */

:root {
  --primary: #F04A1E;
  --primary-deep: #C93810;
  --primary-soft: #FFEDE5;
  --white: #FFFFFF;
  --cream: #FFF7F0;
  --blue: #7DCBE8;
  --blue-soft: #DBF0FA;
  --pink: #FFB4C6;
  --pink-soft: #FFE8EE;
  --ink: #F04A1E;
  --ink-soft: #C93810;
  --mute: rgba(240, 74, 30, 0.55);
  --font: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", sans-serif;
  --maxw: 1600px;
  --radius: 24px;
  --radius-lg: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: light; }
body {
  font-family: var(--font);
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary-soft);
}
.nav-inner {
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 24px; font-weight: 900; color: var(--primary);
  letter-spacing: 0.02em;
}
.brand-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.75; }
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.16em;
}
.nav-links a {
  color: var(--primary);
  padding: 8px 4px;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 2px; left: 4px; right: 4px;
  height: 3px;
  border-radius: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  place-items: center;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}
.nav-toggle span::before { top: calc(50% - 7px); }
.nav-toggle span::after  { top: calc(50% + 7px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translate(-50%, 7px) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translate(-50%, -7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn span { transition: transform 0.3s var(--ease); }
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(240, 74, 30, 0.32);
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(240, 74, 30, 0.45);
}
.btn-primary:hover span { transform: translateX(6px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 32px 120px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: blob 14s ease-in-out infinite;
}
.blob-1 { width: 520px; height: 520px; background: #FFD8C4; opacity: 0.55; top: -160px; left: -140px; }
.blob-2 { width: 600px; height: 600px; background: #FFE4D4; opacity: 0.5;  bottom: -220px; right: -180px; animation-delay: -5s; }
.blob-3 { width: 380px; height: 380px; background: #FFCDB4; opacity: 0.35; top: 42%;    right: -100px; animation-delay: -10s; }
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 1280px;
}
.hero-logo {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto 40px;
  animation: fadeUp 0.9s var(--ease) 0.2s both;
}
.hero-character {
  max-width: 520px;
  width: 100%;
  margin: 0 auto 32px;
  animation: bounce 3.4s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 36px;
  animation: fadeUp 0.9s var(--ease) 0.5s both;
}
.hero-marquee {
  position: absolute;
  bottom: 30px; left: -20px; right: -20px;
  overflow: hidden;
  background: var(--primary);
  padding: 14px 0;
  transform: rotate(-2deg);
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.12em;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 20px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.28em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head.light .eyebrow { background: var(--white); color: var(--primary); }
.section-head h2 {
  font-size: clamp(28px, 5vw, 44px);
  color: var(--primary);
  font-weight: 900;
  line-height: 1.2;
}
.section-head.light h2 { color: var(--white); }
.section-head p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 700;
}
.section-head.light p { color: var(--white); opacity: 0.92; }

/* ---------- ABOUT ---------- */
.about { padding: 100px 32px; background: var(--white); }
.about-intro {
  max-width: var(--maxw);
  margin: 0 auto 40px;
  padding: 48px 56px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  text-align: center;
}
.about-intro p {
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.95;
  margin-bottom: 10px;
}
.about-intro p:last-child { margin-bottom: 0; }
.about-intro strong {
  color: var(--primary);
  font-weight: 900;
}
/* NEWS block (heading + 3 posters) */
.news-block {
  max-width: 900px;
  margin: 0 auto 64px;
}
.news-heading {
  text-align: center;
  color: var(--primary);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.24em;
  margin-bottom: 24px;
}
.news-posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news-poster {
  aspect-ratio: 1080 / 1350;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s var(--ease);
}
.news-poster:hover { transform: translateY(-6px) rotate(-1deg); }
.news-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.about-card {
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.about-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(240,74,30,0.12);
}
.about-card:nth-child(1) { background: var(--primary-soft); }
.about-card:nth-child(2) { background: var(--blue-soft); }
.about-card:nth-child(3) { background: var(--pink-soft); }
.about-emoji { font-size: 60px; margin-bottom: 20px; }
.about-card h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 900;
}
.about-card p { color: var(--ink-soft); font-size: 15px; font-weight: 700; line-height: 1.75; }

/* ---------- DELIVERY ---------- */
.delivery {
  padding: 110px 32px;
  background: var(--primary);
  position: relative;
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.delivery-grid--single {
  grid-template-columns: 1fr;
  max-width: 520px;
}
.delivery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.delivery-card:hover { transform: translateY(-10px) rotate(-1deg); }
.delivery-card.blue { background: var(--blue-soft); }
.delivery-card.pink { background: var(--pink-soft); }
.delivery-logo {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}
.delivery-card p {
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  font-weight: 700;
}
.delivery-btn {
  display: inline-block;
  padding: 12px 26px;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: transform 0.25s var(--ease);
}
.delivery-card:hover .delivery-btn { transform: scale(1.08); }

/* ---------- MENU PREVIEW ---------- */
.menu-preview { padding: 110px 32px; background: var(--cream); }
.menu-preview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--maxw);
  margin: 0 auto 56px;
  position: relative;
}
.menu-preview-item {
  padding: 0 32px;
  text-align: center;
  border-right: 1px solid rgba(240, 74, 30, 0.18);
  transition: transform 0.35s var(--ease);
  display: block;
}
.menu-preview-item:last-child { border-right: none; }
.menu-preview-item:hover { transform: translateY(-8px); }
.menu-preview-photo {
  aspect-ratio: 1 / 1;
  max-width: 340px;
  margin: 0 auto 24px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: transparent;
}
.menu-preview-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 20px rgba(240, 74, 30, 0.08));
}
.menu-preview-eyebrow {
  display: block;
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.22em;
  font-weight: 900;
  margin-bottom: 10px;
}
.menu-preview-item h3 {
  font-size: 34px;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.2;
}
.menu-preview-desc {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 20px;
}
.menu-preview-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.menu-preview-tags span {
  padding: 6px 16px;
  background: var(--pink-soft);
  color: var(--primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.menu-preview-cta { text-align: center; }

/* ---------- SHOP ---------- */
.shop { padding: 110px 32px; background: var(--primary); color: var(--white); }
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: start;
}
.shop-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.shop-info > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: baseline;
}
.shop-info dt {
  color: var(--pink);
  font-size: 14px;
  letter-spacing: 0.24em;
  padding-top: 5px;
  font-weight: 900;
  text-transform: uppercase;
}
.shop-info dd {
  font-size: 22px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.5;
  white-space: nowrap;
}
.shop-info dd small { white-space: normal; }
.shop-info dd small {
  display: block;
  font-size: 14px;
  opacity: 0.75;
  margin-top: 4px;
  font-weight: 700;
}
.shop-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  background: var(--white);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.shop-map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 460px; }

/* ---------- SOCIAL ---------- */
.social { padding: 110px 32px; background: var(--white); }
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.social-card {
  background: transparent;
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  transition: transform 0.35s var(--ease);
  display: block;
}
.social-card:hover { transform: translateY(-8px) scale(1.02) rotate(1deg); }
.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 56px 32px 44px;
  text-align: center;
}
.footer-logo { font-size: 28px; font-weight: 900; margin-bottom: 20px; }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 0.16em;
  flex-wrap: wrap;
}
.footer-nav a { opacity: 0.85; transition: opacity 0.2s; font-weight: 800; }
.footer-nav a:hover { opacity: 1; }
.footer-copy { font-size: 13px; opacity: 0.75; font-weight: 700; }

/* ---------- MENU PAGE ---------- */
.page-hero {
  padding: 100px 32px 60px;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(40px, 8vw, 72px);
  color: var(--primary);
  margin: 12px 0 8px;
  font-weight: 900;
  position: relative;
  z-index: 1;
}
.page-hero p { color: var(--ink-soft); font-size: 18px; font-weight: 700; position: relative; z-index: 1; }

.main-menu { padding: 80px 32px; background: var(--white); }
.main-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.main-menu-item {
  background: var(--primary-soft);
  border-radius: var(--radius-lg);
  padding: 24px 24px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.35s var(--ease);
}
.main-menu-item:hover { transform: translateY(-10px); }
.main-menu-item.pink { background: var(--pink-soft); }
.main-menu-item.blue { background: var(--blue-soft); }

/* Photo: 白四角の枠を撤去。写真はそのまま表示（縦長を抑える） */
.main-menu-photo {
  height: clamp(220px, 22vw, 320px);
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-menu-photo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* 麻辣とっぽぎ（menu3.png）はメニューページで少し小さめに表示 */
.main-menu-photo img[src$="menu3.png"] { max-width: 80%; max-height: 80%; }
/* ブンモジャ / トッポギ: 下が切れる問題を解消（contain＋少し上にずらす） */
.ing-photo img[src$="noo-bunmoja.png"],
.ing-photo img[src$="noo-tteokbokki.png"] {
  object-fit: contain;
  object-position: center top;
  transform: scale(0.9) translateY(-10%);
}

.badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  font-weight: 900;
}
.main-menu-item h2 { font-size: 32px; color: var(--primary); font-weight: 900; margin-bottom: 4px; }
.main-menu-item .ko { color: var(--ink-soft); font-size: 14px; margin-bottom: 18px; letter-spacing: 0.04em; }
.main-menu-item .price { font-size: 40px; color: var(--primary); font-weight: 900; line-height: 1.1; }
.main-menu-item .price small { font-size: 18px; color: var(--ink-soft); font-weight: 800; }
.main-menu-item .note { color: var(--ink-soft); font-size: 13px; margin-top: 10px; font-weight: 700; }

/* ---------- SPICE LEVELS ---------- */
.spice-levels { padding: 100px 32px; background: var(--cream); }
.spice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.spice-level {
  background: var(--white);
  border-radius: 22px;
  padding: 22px 14px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--primary);
  transition: transform 0.3s var(--ease);
}
.spice-level:hover { transform: translateY(-6px) rotate(-2deg); }
.spice-level span {
  display: block;
  font-size: 40px;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 4px;
  line-height: 1;
}
.spice-level[data-level="0"] { background: var(--blue-soft); }
.spice-level[data-level="1"], .spice-level[data-level="2"] { background: var(--pink-soft); }
.spice-level[data-level="3"] { background: var(--primary-soft); }
.spice-level[data-level="4"], .spice-level[data-level="5"],
.spice-level[data-level="6"], .spice-level[data-level="7"], .spice-level[data-level="8"],
.spice-level[data-level="9"], .spice-level[data-level="10"] {
  background: var(--primary);
  color: var(--white);
}
.spice-level[data-level="4"] span, .spice-level[data-level="5"] span,
.spice-level[data-level="6"] span, .spice-level[data-level="7"] span,
.spice-level[data-level="8"] span, .spice-level[data-level="9"] span,
.spice-level[data-level="10"] span { color: var(--white); }
.spice-note {
  text-align: center;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

/* ---------- INGREDIENTS ---------- */
.ingredients { padding: 110px 32px; background: var(--white); }
.ing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.ing-tab {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: all 0.2s var(--ease);
}
.ing-tab:hover { background: var(--primary-soft); transform: translateY(-2px); }
.ing-tab.active {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240,74,30,0.3);
}
.ing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.ing-card {
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.ing-card:hover { transform: translateY(-6px); }
.ing-photo {
  aspect-ratio: 1 / 1;
  background: var(--white);
  border-radius: 24px;
  margin-bottom: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
  font-size: 64px;
  color: var(--primary);
  transition: transform 0.3s var(--ease);
}
.ing-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
/* --- 個別サイズ調整 --- */
/* 大きく */
.ing-photo img[src$="noo-corn.png"],
.ing-photo img[src$="tofu-yuba.png"],
.ing-photo img[src$="meat-meatball.png"] {
  transform: scale(1.22);
}
/* 少しだけ小さく */
.ing-photo img[src$="veg-komatsuna.png"] {
  /* 上下カット控えめ: 高さ85%で横帯表示 */
  height: 88%;
  align-self: center;
  transform: none;
}
.ing-photo img[src$="veg-hourensou.png"] {
  /* 枠はそのまま、写真だけ上にずらす */
  transform: scale(0.95) translateY(-10%);
  object-position: center top;
}
/* 小さく */
.ing-photo img[src$="etc-himetake.png"],
.ing-photo img[src$="noo-china-harusame.png"],
.ing-photo img[src$="noo-harusame.png"],
.ing-photo img[src$="veg-hakusai.png"],
.ing-photo img[src$="veg-chingensai.png"],
.ing-photo img[src$="mush-kikurage.png"],
.ing-photo img[src$="mush-mushroom.png"],
.ing-photo img[src$="sauce-oyster.png"] {
  transform: scale(0.85);
}
/* 左右を切らずに全体表示（contain 使用） */
.ing-photo img[src$="noo-jankenmochi.png"],
.ing-photo img[src$="veg-pakuchi.png"] {
  object-fit: contain;
  transform: scale(0.9);
}
/* さらに小さく */
.ing-photo img[src$="mush-enoki.png"] {
  transform: scale(0.72);
}
/* 左右を切らずに全体表示（contain 使用）＋少し小さめ */
.ing-photo img[src$="sauce-kurozu.png"],
.ing-photo img[src$="sauce-garlic.png"],
.ing-photo img[src$="sauce-sansho.png"] {
  object-fit: contain;
  transform: scale(0.8);
}
.ing-card:hover .ing-photo { transform: scale(1.05) rotate(-3deg); }
.ing-card span {
  display: block;
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
}
.ing-card.hide { display: none; }

/* ---------- SAUCES ---------- */
.sauces { padding: 100px 32px; background: var(--white); }
.sauce-grid {
  max-width: 900px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

/* ---------- DRINKS ---------- */
.drinks-section { padding: 100px 32px; background: var(--primary); }
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.drink-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px 18px;
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.drink-card:hover { transform: translateY(-6px) rotate(-2deg); }
.drink-card:nth-child(2n) { background: var(--pink-soft); }
.drink-card:nth-child(3n) { background: var(--blue-soft); }
.drink-card h3 { font-size: 24px; color: var(--primary); font-weight: 900; margin-bottom: 2px; }
.drink-card p { color: var(--ink-soft); font-size: 13px; margin-bottom: 12px; font-weight: 700; letter-spacing: 0.06em; }
.drink-card span {
  display: inline-block;
  padding: 6px 18px;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 28px 32px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    box-shadow: 0 20px 40px rgba(240,74,30,0.12);
    font-size: 18px;
    letter-spacing: 0.1em;
  }
  body.nav-open .nav-links { transform: translateY(0); }
  .about-grid,
  .delivery-grid,
  .menu-preview-row,
  .main-menu-grid,
  .social-grid { grid-template-columns: 1fr; }
  .menu-preview-item { border-right: none; border-bottom: 1px solid rgba(240, 74, 30, 0.18); padding: 40px 0; }
  .menu-preview-item:last-child { border-bottom: none; }
  .shop-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-logo { max-width: 90%; }
  .hero-character { max-width: 260px; }
  .hero { min-height: 78vh; padding: 60px 24px 100px; }
}
@media (max-width: 540px) {
  .nav-inner { padding: 12px 20px; }
  .brand { font-size: 20px; }
  .about, .delivery, .menu-preview, .shop, .social,
  .ingredients, .main-menu, .drinks-section, .spice-levels { padding: 60px 20px; }
  .shop-info > div { grid-template-columns: 1fr; gap: 4px; }
  .shop-info dt { margin-top: 6px; }
  .shop-info dd { white-space: normal; }
  .ing-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 14px; }
  .ing-photo { border-radius: 18px; font-size: 36px; }
  .ing-card span { font-size: 12px; }
  .spice-grid { grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); }
  .spice-level { padding: 16px 8px; font-size: 12px; }
  .spice-level span { font-size: 30px; }
  .main-menu-item .price { font-size: 32px; }
  .main-menu-item h2 { font-size: 28px; }
  .btn { padding: 14px 30px; font-size: 16px; }
  .hero-marquee { padding: 10px 0; }
  .marquee-track { font-size: 14px; gap: 24px; }
  .footer-nav { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
