/* ==========================================================================
   4uKitchen — Modern Design System
   ========================================================================== */

:root {
  /* Brand colors (from logo: coral red + navy) */
  --ink: #15130f;
  --ink-soft: #2a2620;
  --cream: #fbf5ea;
  --cream-dim: #f1e8d8;
  --coral: #ff4b3e;
  --coral-dark: #e0362a;
  --navy: #1c1b2e;
  --gold: #e8a33d;
  --white: #ffffff;
  --line: rgba(21, 19, 15, 0.1);
  --line-light: rgba(255, 255, 255, 0.16);

  /* Type */
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1220px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;

  /* Shadow */
  --shadow-sm: 0 2px 10px rgba(21, 19, 15, 0.08);
  --shadow-md: 0 12px 32px rgba(21, 19, 15, 0.14);
  --shadow-lg: 0 24px 60px rgba(21, 19, 15, 0.22);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.grid { display: grid; gap: 28px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.on-dark .eyebrow { color: var(--gold); }

h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  background-size: 220% 220%;
  background-position: 200% 0%;
  transition: background-position 0.6s ease;
  pointer-events: none;
}
.btn:hover::before { background-position: -40% 0%; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: scale(0.96); }
.btn-primary { background: var(--coral); color: var(--white); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--coral-dark); box-shadow: 0 16px 36px rgba(224, 54, 42, 0.35); }
.btn-ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.on-dark .btn-ghost { color: var(--white); }
.on-dark .btn-ghost:hover { background: var(--white); color: var(--ink); }
.btn-light { background: var(--white); color: var(--ink); box-shadow: var(--shadow-md); }
.btn-light:hover { background: var(--cream); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled { background: rgba(251, 245, 234, 0.9); backdrop-filter: saturate(180%) blur(14px); box-shadow: var(--shadow-sm); padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--white); transition: color var(--dur) var(--ease); }
.site-header.is-scrolled .brand-name { color: var(--ink); }

.nav-links { display: none; }
.nav-links ul { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color var(--dur) var(--ease);
}
.site-header.is-scrolled .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: right var(--dur) var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--coral); }
.site-header.is-scrolled .nav-links a.active { color: var(--coral-dark); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 12px 24px; font-size: 0.88rem; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  border: none;
}
.site-header.is-scrolled .nav-toggle { background: var(--ink); }
.nav-toggle span { width: 18px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white); }
.mobile-nav a.active { color: var(--coral); }

@media (min-width: 960px) {
  .nav-links { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 9, 7, 0.55) 0%, rgba(10, 9, 7, 0.35) 40%, rgba(10, 9, 7, 0.92) 100%), url("../images/site/cover-web.jpg") center 22% / cover no-repeat;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 10%, rgba(255, 75, 62, 0.18), transparent 55%);
  pointer-events: none;
}
.hero-inner { position: relative; padding: 200px 0 72px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-tag {
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  animation: tagFloat 3.2s ease-in-out infinite;
}
.hero-tags .hero-tag:nth-child(2) { animation-delay: 0.3s; }
.hero-tags .hero-tag:nth-child(3) { animation-delay: 0.6s; }
@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (prefers-reduced-motion: reduce) { .hero-tag { animation: none; } }
.hero h1 { max-width: 15ch; text-wrap: balance; }
.hero h1 em { font-style: normal; color: var(--coral); }
.hero-sub { max-width: 46ch; color: rgba(255, 255, 255, 0.82); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-scroll {
  position: absolute;
  right: 24px;
  bottom: 26px;
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.hero-scroll .line { width: 1px; height: 34px; background: rgba(255, 255, 255, 0.4); position: relative; overflow: hidden; }
.hero-scroll .line::after { content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--coral); animation: scrollLine 1.8s infinite; }
@keyframes scrollLine { to { top: 100%; } }
@media (min-width: 760px) { .hero-scroll { display: flex; } }

/* ---------- Marquee ---------- */
.marquee-strip { background: var(--ink); color: var(--cream); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-track span::after { content: "\2022"; color: var(--coral); }
.cc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 3px 7px;
  border-radius: 6px;
  background: var(--coral);
  color: var(--white);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- About / Stats ---------- */
.about-grid { grid-template-columns: 1fr; align-items: center; }
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, var(--navy), var(--ink));
  box-shadow: var(--shadow-lg);
}
.about-media video, .about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media .badge-float {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-float strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--coral-dark); }
.badge-float span { font-size: 0.78rem; color: var(--ink-soft); }

.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 36px; }
.stat-row .stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--coral-dark); }
.stat-row .stat span { font-size: 0.85rem; color: var(--ink-soft); }

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.85fr 1fr; gap: 64px; }
  .stat-row { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Cards: Personalities ---------- */
.people-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.people-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.people-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.people-photo {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}
.people-photo .initials { display: inline-block; transition: transform 0.4s var(--ease); }
.people-card:hover .people-photo .initials { transform: scale(1.12) rotate(-4deg); }
.people-photo::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 55%); }
.people-photo .flag { position: absolute; top: 14px; right: 14px; transition: transform 0.3s var(--ease); }
.people-card:hover .people-photo .flag { transform: scale(1.15) rotate(6deg); }
.people-body { padding: 22px 22px 26px; }
.people-body .role { font-family: var(--font-display); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral-dark); margin-bottom: 6px; }
.people-body h3 { margin-bottom: 4px; }
.people-body h3 a { color: inherit; transition: color 0.2s ease; }
.people-body h3 a:hover { color: var(--coral-dark); text-decoration: underline; }
.people-body .dish { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 12px; }
.people-body blockquote { margin: 0; padding-top: 12px; border-top: 1px dashed var(--line); font-size: 0.88rem; font-style: italic; color: var(--ink-soft); }

/* ---------- Cards: Menu / Dishes ---------- */
.menu-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.dish-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dish-plate {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  background: repeating-radial-gradient(circle, var(--cream) 0 2px, var(--cream-dim) 2px 4px);
  box-shadow: inset 0 0 0 6px var(--white), inset 0 0 0 8px var(--line), var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dish-card:hover .dish-plate { transform: scale(1.12) rotate(-8deg); }
.dish-top { display: flex; align-items: center; gap: 18px; }
.dish-card h3 { margin-bottom: 2px; }
.dish-origin { font-size: 0.8rem; color: var(--coral-dark); font-weight: 600; font-family: var(--font-display); }
.dish-card p.desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 0; }
.dish-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); }
.dish-price { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.dish-by { font-size: 0.78rem; color: var(--ink-soft); }
.dish-by strong { color: var(--ink); }

/* ---------- Testimonials ---------- */
.testi-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 0.95rem; }
.testi-card p { font-size: 0.98rem; color: var(--ink-soft); }
.testi-who { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 0.85rem; }
.testi-who strong { display: block; font-size: 0.9rem; }
.testi-who span { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--ink));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band h2 { margin-bottom: 6px; max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding: 64px 0 40px; }
.footer-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 38px; margin-bottom: 14px; }
.footer-brand p { max-width: 32ch; font-size: 0.92rem; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.92rem; transition: color var(--dur) var(--ease); }
.footer-col a:hover { color: var(--coral); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); }
.footer-social a:hover { background: var(--coral); color: var(--white); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; border-top: 1px solid var(--line-light); padding-top: 24px; font-size: 0.82rem; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Page header (blog / portfolio) ---------- */
.page-header {
  padding: 160px 0 70px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(10,9,7,0.6), rgba(10,9,7,0.92)), url("../images/site/cover-web.jpg") center 15% / cover no-repeat;
}
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; font-family: var(--font-display); letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--coral); }

/* ---------- Stories / Blog listing ---------- */
.story-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.story-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); display: flex; flex-direction: column; }
.story-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.story-media { aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; position: relative; }
.story-media .tag { position: absolute; top: 14px; left: 14px; background: var(--white); color: var(--ink); font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-pill); }
.story-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.story-meta { font-size: 0.78rem; color: var(--ink-soft); display: flex; gap: 10px; align-items: center; }
.story-body h3 a:hover { color: var(--coral-dark); }
.story-excerpt { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.story-more { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--coral-dark); display: inline-flex; align-items: center; gap: 6px; transition: transform 0.25s ease, color 0.25s ease; }
.story-more:hover { transform: translateX(5px); color: var(--coral); }

.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 48px; }
.pagination a, .pagination span { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; background: var(--white); box-shadow: var(--shadow-sm); }
.pagination .current { background: var(--coral); color: var(--white); }

/* ---------- Single article ---------- */
.article-wrap { max-width: 760px; margin: -110px auto 0; position: relative; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(28px, 6vw, 60px); }
.article-wrap .byline { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.byline .testi-avatar { width: 48px; height: 48px; font-size: 1rem; }
.byline strong { display: block; }
.byline span { font-size: 0.82rem; color: var(--ink-soft); }
.article-body { font-size: 1.05rem; color: var(--ink-soft); }
.article-body h2 { color: var(--ink); margin-top: 1.6em; }
.article-body blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 24px;
  border-left: 4px solid var(--coral);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: normal;
  color: var(--ink);
}
.article-body figure { margin: 28px 0; border-radius: var(--radius-md); overflow: hidden; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 30px; }
.article-tags a { font-size: 0.78rem; font-weight: 600; padding: 7px 14px; border-radius: var(--radius-pill); background: var(--cream-dim); }
.article-tags a:hover { background: var(--coral); color: var(--white); }
.share-row { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.share-row a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--cream-dim); }
.share-row a:hover { background: var(--coral); color: var(--white); }

.related-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 20px; }

/* ---------- Dish spotlight (portfolio) ---------- */
.spotlight-hero { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; padding-top: 30px; }
.spotlight-plate {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.5), var(--shadow-lg);
  max-width: 420px;
  margin: 0 auto;
  align-self: center;
  justify-self: center;
}
.spotlight-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }
.meta-chip { background: var(--white); box-shadow: var(--shadow-sm); border-radius: var(--radius-pill); padding: 8px 16px; font-size: 0.82rem; font-weight: 600; font-family: var(--font-display); display: flex; align-items: center; gap: 6px; }
.ingredient-list { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); margin-top: 18px; }
.ingredient-item { background: var(--white); border-radius: var(--radius-md); padding: 18px; text-align: center; box-shadow: var(--shadow-sm); }
.ingredient-item .ico { font-size: 1.8rem; margin-bottom: 8px; }
.ingredient-item span { font-size: 0.85rem; font-weight: 600; }
@media (min-width: 900px) { .spotlight-hero { grid-template-columns: 0.9fr 1.1fr; } }

/* ---------- Duotone gradient palette (used across placeholder avatars/plates) ---------- */
.tone-1 { background: linear-gradient(145deg, #ff6a4d, #c9302c); }
.tone-2 { background: linear-gradient(145deg, #2f2c53, #15132a); }
.tone-3 { background: linear-gradient(145deg, #e8a33d, #b5691f); }
.tone-4 { background: linear-gradient(145deg, #2c8c6e, #14493a); }
.tone-5 { background: linear-gradient(145deg, #3d6ea5, #1c3a5e); }
.tone-6 { background: linear-gradient(145deg, #b5459a, #6b2260); }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  z-index: 90;
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Print/retina safety ---------- */
@media (min-resolution: 2dppx) {
  body { -webkit-font-smoothing: antialiased; }
}
