/* ==========================================================================
   Café Chico — Catering Page  |  "Mosaic" design
   Asymmetric CSS Grid, filter chips, scroll-snap, hover overlays
   ========================================================================== */

/* ---- Hero ---- */
.cat-hero {
  position: relative;
  height: 65vh;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.cat-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: heroSlowZoom 18s ease-out forwards;
}
@keyframes heroSlowZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.cat-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      oklch(15% 0.02 145 / 0.20) 0%,
      oklch(15% 0.02 145 / 0.55) 55%,
      oklch(15% 0.02 145 / 0.88) 100%);
}

.cat-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-8) var(--space-4) clamp(64px, 8vw, 96px);
  color: white;
}

.cat-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;                                                                    /* was oklch(100% 0 0 / 0.75) — 25% alpha loss × 45% tile overlay = ~41% L (mid grey) */
  margin: 0 0 var(--space-5);
  text-shadow: 0 1px 2px oklch(20% 0.04 145 / 0.7);
}
.cat-hero__kicker .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px oklch(42% 0.08 145 / 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px oklch(42% 0.08 145 / 0.25); }
  50%       { box-shadow: 0 0 0 7px oklch(42% 0.08 145 / 0.08); }
}

.cat-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: white;
  margin: 0 0 var(--space-3);
  text-shadow: 0 2px 4px oklch(25% 0.05 145 / 0.9), 0 0 32px oklch(20% 0.04 145 / 0.55);
}
.cat-hero__title .line {
  display: block;
}
.cat-hero__title em {
  font-style: italic;
  color: oklch(78% 0.08 75);
}

.cat-hero__sub {
  max-width: 44ch;
  font-size: clamp(15px, 1.3vw, 18px);
  color: #fff;                                                                    /* was oklch(100% 0 0 / 0.82) — 18% alpha loss × 45% tile overlay = ~41% L */
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 1px 3px oklch(20% 0.04 145 / 0.8);
}

.cat-hero__scroll {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-6);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;                                                                    /* was oklch(100% 0 0 / 0.6) — 40% alpha loss × 45% tile overlay = ~33% L (mid grey, very dim) */
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 200ms;
}
.cat-hero__scroll:hover { color: white; }
.cat-hero__scroll svg { animation: arrowBob 2s ease-in-out infinite; }
@keyframes arrowBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ---- Mosaic Grid ---- */
.cat-video {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.cat-video__head {
  text-align: center;
  margin-bottom: var(--space-6);
}
.cat-video__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--fg);
  margin: var(--space-2) 0 0;
}
.cat-video__title em {
  font-style: italic;
  color: var(--accent);
}
.cat-video__embed {
  max-width: 605px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: #000;   /* black container — TikTok iframe default is white, override to black per user 25 Aug 2026 */
}
.cat-video__embed .tiktok-embed {
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}
/* TikTok embed fallback (before iframe loads) — force dark */
.cat-video__embed .tiktok-embed section { background: #000 !important; color: #fff !important; }
.cat-video__embed .tiktok-embed a { color: #fff !important; }
@media (max-width: 640px) {
  .cat-video__embed { max-width: 100%; }
}

.cat-mosaic {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--bg);
}

.cat-mosaic__head {
  margin-bottom: var(--space-6);
}
.cat-mosaic__title {
  font-size: clamp(36px, 4.5vw, 58px);
  margin-top: var(--space-2);
}
.cat-mosaic__title em {
  font-style: italic;
  color: var(--accent);
}

/* Filter chips */
.cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-6);
}

.cat-filter {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition:
    background 180ms,
    color 180ms,
    border-color 180ms,
    transform 150ms;
}
.cat-filter:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.cat-filter.is-active {
  background: var(--fg);
  border-color: var(--fg);
  color: white;
}

/* Mosaic grid — 4-column layout for 8 platters */
.cat-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

/* Tile sizes */
.cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  cursor: pointer;
}
.cat-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-soft), filter 400ms;
  filter: saturate(0.9);
}
.cat-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

/* Dim non-active tiles when a filter is active */
.cat-filters:not([data-active="all"]) ~ .cat-mosaic__grid .cat-tile {
  transition: opacity 350ms, filter 350ms;
}
.cat-mosaic__grid .cat-tile.is-hidden {
  opacity: 0.22;
  filter: grayscale(1);
  pointer-events: none;
}

/* Tall tile spans 2 rows */
.cat-tile--tall { grid-row: span 2; }
/* Wide tile spans 2 columns */
.cat-tile--wide { grid-column: span 2; }

/* Caption overlay */
.cat-tile figcaption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-4);
  background: linear-gradient(
    0deg,
    oklch(15% 0.02 145 / 0.85) 0%,
    oklch(15% 0.02 145 / 0.3) 45%,
    transparent 100%);
  color: white;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}
.cat-tile:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.cat-tile__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #fff;                                                                    /* was oklch(100% 0 0 / 0.5) — 50% alpha loss × 45% tile overlay = ~27% L (very dim) */
  margin-bottom: 4px;
}
.cat-tile figcaption h3 {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 400;
  line-height: 1.15;
  color: white;
  margin-bottom: 6px;
}
.cat-tile__desc {
  font-size: 13px;
  line-height: 1.5;
  color: #fff;                                                                    /* was oklch(100% 0 0 / 0.82) — see line 99 note */
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-tile__price {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: oklch(78% 0.08 75);
  margin: 0;
}
.cat-tile__price span {
  color: #fff;                                                                    /* was oklch(100% 0 0 / 0.55) — 45% alpha loss × 45% tile overlay = ~30% L */
  font-size: 11px;
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .cat-mosaic__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }
  .cat-tile--tall { grid-row: span 1; }
  .cat-tile--wide { grid-column: span 1; }
}

/* Mobile: scroll-snap */
@media (max-width: 640px) {
  .cat-mosaic__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: var(--space-3);
  }
  .cat-tile {
    flex: 0 0 75vw;
    scroll-snap-align: start;
    height: 75vw;
    max-height: 360px;
  }
  .cat-tile--tall,
  .cat-tile--wide { grid-column: auto; grid-row: auto; }
}

/* ---- Quote ---- */
.cat-quote {
  background: var(--bg-dark);
  padding: clamp(56px, 7vw, 96px) 0;
  text-align: center;
}
.cat-quote__text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.45;
  color: oklch(95% 0.012 80);
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  font-style: normal;
}
.cat-quote__text em {
  color: oklch(78% 0.08 75);
}
.cat-quote__mark {
  font-size: 1.5em;
  color: var(--accent);
  line-height: 0;
  vertical-align: -0.2em;
  margin: 0 4px;
}

/* ---- Dietary ---- */
.cat-dietary {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cat-dietary__head h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-top: var(--space-2);
}
.cat-dietary__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 var(--space-4);
}
.cat-dietary__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.cat-dietary__list li span {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cat-dietary__note {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* ---- How it works ---- */
.cat-how {
  padding: clamp(64px, 9vw, 120px) 0;
}
.cat-how__title {
  font-size: clamp(34px, 4vw, 52px);
  margin: var(--space-2) 0 var(--space-7);
}
.cat-how__title em { font-style: italic; color: var(--accent); }

.cat-how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  position: relative;
}
.cat-how__steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.cat-how__steps li {
  position: relative;
  z-index: 1;
}
.cat-how__num {
  display: inline-block;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--fg);
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 44px;
  text-align: center;
  margin-bottom: var(--space-3);
  font-weight: 600;
}
.cat-how__steps h3 {
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 500;
}
.cat-how__steps p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cat-how__fineprint {
  list-style: none;
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-7);
}
.cat-how__fineprint li {
  font-size: 13px;
  color: var(--muted);
}
.cat-how__fineprint strong {
  color: var(--fg);
  font-weight: 600;
}

@media (max-width: 860px) {
  .cat-how__steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .cat-how__steps::before { display: none; }
}
@media (max-width: 520px) {
  .cat-how__steps { grid-template-columns: 1fr; }
}

/* ---- Enquire form ---- */
.cat-enquire {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--bg-dark);
}
.cat-enquire__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.cat-enquire__text h2 {
  font-size: clamp(32px, 4vw, 50px);
  color: white;
  margin: var(--space-2) 0 var(--space-3);
}
.cat-enquire__text h2 em { font-style: italic; color: oklch(78% 0.08 75); }
.cat-enquire__text > p {
  color: oklch(90% 0.012 80);
  font-size: 15px;
  margin-bottom: var(--space-4);
}
.cat-enquire__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.cat-enquire__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: oklch(90% 0.012 80);
  font-size: 14px;
  transition: color 150ms;
}
.cat-enquire__contact a:hover { color: oklch(78% 0.08 75); }
.cat-enquire__contact strong { color: oklch(78% 0.08 75); font-weight: 500; }
.cat-enquire__pricing-note {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(60% 0.012 80);
  padding: 8px 12px;
  border: 1px dashed oklch(60% 0.012 80 / 0.4);
  border-radius: var(--radius-sm);
  margin: 0;
}

/* Form */
.cat-enquire__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: oklch(25% 0.02 145);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid oklch(95% 0.012 80 / 0.06);
}
.cat-enquire__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cat-enquire__form label span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(78% 0.06 35);
  font-weight: 600;
}
.cat-enquire__form input,
.cat-enquire__form textarea,
.cat-enquire__form select {
  background: oklch(18% 0.015 145);
  border: 1px solid oklch(95% 0.012 80 / 0.12);
  border-radius: var(--radius-sm);
  color: white;
  font: inherit;
  font-size: 15px;
  padding: 11px 14px;
  width: 100%;
  transition: border-color 180ms;
  appearance: none;
  -webkit-appearance: none;
}
.cat-enquire__form input::placeholder,
.cat-enquire__form textarea::placeholder { color: oklch(60% 0.012 80); }
.cat-enquire__form input:focus,
.cat-enquire__form textarea:focus,
.cat-enquire__form select:focus {
  outline: none;
  border-color: oklch(78% 0.08 75);
}
.cat-enquire__form textarea { resize: vertical; min-height: 100px; }
.cat-enquire__form select { cursor: pointer; }
.cat-enquire__form select option { background: oklch(18% 0.015 145); }

.cat-enquire__form .btn {
  margin-top: var(--space-2);
  justify-content: center;
  background: var(--accent);
  color: white;
  font-weight: 600;
  padding: 14px 24px;
}
.cat-enquire__form .btn:hover {
  background: oklch(42% 0.10 55);
  box-shadow: 0 6px 20px oklch(48% 0.10 60 / 0.3);
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .cat-enquire__inner { grid-template-columns: 1fr; }
}

/* ---- Scroll-driven reveal for tiles ---- */
.cat-tile {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms var(--ease-soft),
    transform 600ms var(--ease-soft);
}
.cat-tile.is-visible {
  opacity: 1;
  transform: none;
}
.cat-tile:nth-child(1) { transition-delay: 0ms; }
.cat-tile:nth-child(2) { transition-delay: 80ms; }
.cat-tile:nth-child(3) { transition-delay: 160ms; }
.cat-tile:nth-child(4) { transition-delay: 240ms; }
.cat-tile:nth-child(5) { transition-delay: 320ms; }
.cat-tile:nth-child(6) { transition-delay: 400ms; }
.cat-tile:nth-child(7) { transition-delay: 480ms; }
.cat-tile:nth-child(8) { transition-delay: 560ms; }

/* ============================================================
   FEATURED SECTION — 3 animation themes
   ============================================================ */

.cat-featured {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.cat-featured .kicker { margin-bottom: 16px; }
.cat-featured__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0 0 64px;
  color: var(--fg);
  line-height: 1;
}
.cat-featured__title em { color: var(--accent); font-style: italic; }
.cat-featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .cat-featured__grid { grid-template-columns: 1fr; }
}

/* Shared frame */
.cat-feat__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: oklch(88% 0.02 145);
  margin-bottom: 16px;
}
.cat-feat__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-feat__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(transparent, oklch(20% 0.04 145 / 0.8));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.cat-feat__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: oklch(25% 0.04 145);
  padding: 3px 8px;
  border-radius: 3px;
}
.cat-feat__caption {
  font-size: 11px;
  color: oklch(85% 0.01 80);
  font-style: italic;
  margin: 0;
}
.cat-feat__sub {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}

/* ── ① CINEMATIC KEN BURNS ── */
@keyframes kenBurns2 {
  0%   { transform: scale(1)    translate(0%, 0%); }
  50%  { transform: scale(1.07) translate(1.5%, -1%); }
  100% { transform: scale(1.03) translate(-1%, 0.5%); }
}
.cat-feat--cinema img {
  animation: kenBurns2 16s ease-in-out infinite;
}
.cat-feat--cinema:hover img {
  animation-duration: 4s;
}

/* ── ② PARALLAX ── */
.cat-feat--parallax .cat-feat__parallax-wrap {
  width: 100%;
  height: 120%;
  position: absolute;
  inset: -10% 0;
}
.cat-feat--parallax .cat-feat__parallax-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* ── ③ CURTAIN REVEAL ── */
@keyframes curtainRevealBottom {
  0%   { clip-path: inset(100% 0 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}
.cat-feat--curtain img {
  clip-path: inset(100% 0 0 0);
}
.cat-feat--curtain.is-visible img {
  animation: curtainRevealBottom 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ============================================================
   PLATTER LIGHTBOX — click any tile to open large view + body
   ============================================================ */
.cat-tile { cursor: zoom-in; }
.cat-tile:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; border-radius: var(--radius-md); }

.platter-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 48px);
  background: oklch(12% 0.02 145 / 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--ease-soft);
}
.platter-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}
.platter-modal[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}
.platter-modal__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 1100px;
  max-height: calc(100vh - 96px);
  background: var(--bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: scale(0.96);
  transition: transform 360ms var(--ease-soft);
}
.platter-modal[aria-hidden="false"] .platter-modal__inner {
  transform: scale(1);
}
.platter-modal__media {
  position: relative;
  background: oklch(20% 0.02 145);
  aspect-ratio: 4/3;
  overflow: hidden;
}
.platter-modal__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.platter-modal__body {
  padding: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.platter-modal__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 80px);
  line-height: 0.9;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
}
.platter-modal__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.1;
  color: var(--fg);
  margin: 0 0 20px;
  font-weight: 500;
}
.platter-modal__desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px;
}
.platter-modal__price {
  font-family: var(--font-display);
  font-size: clamp(22px, 1.8vw, 28px);
  color: var(--fg);
  margin: 0 0 28px;
  font-weight: 500;
}
.platter-modal__price span {
  font-size: 0.65em;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}
.platter-modal__hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  opacity: 0.7;
}
.platter-modal__close,
.platter-modal__nav {
  position: absolute;
  background: oklch(100% 0 0 / 0.92);
  backdrop-filter: blur(6px);
  border: 0;
  color: oklch(15% 0.02 145);
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 200ms, transform 200ms;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.platter-modal__close:hover,
.platter-modal__nav:hover {
  background: white;
  transform: scale(1.08);
}
.platter-modal__close { top: 20px; right: 20px; font-size: 32px; }
.platter-modal__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.platter-modal__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
.platter-modal__nav--prev:hover { transform: translateY(-50%) scale(1.08); }
.platter-modal__nav--next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 760px) {
  .platter-modal__inner {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
  }
  .platter-modal__media { aspect-ratio: 4/3; }
  .platter-modal__nav--prev, .platter-modal__nav--next { top: calc(50% - 24px - 12px); }
}

/* ---------- 3D Album (5-dish ring carousel) ---------- */
.album {
  background: transparent;        /* user wants the section (incl. right text) to inherit page bg */
  padding: clamp(48px, 6vw, 80px) 0;   /* reduced from clamp(80px,10vw,140px) — user: section too tall */
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.album::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.30);
  pointer-events: none;
  z-index: 0;
}
.album > * {
  position: relative;
  z-index: 1;
}
.album .section-head--center {
  text-align: center;
  margin-bottom: var(--space-3);    /* tightened from var(--space-4) so heading sits closer to ring */
}
.album .section-head--center .lede { margin-top: var(--space-2); }    /* tighten lede gap */
.album .section-head--center h2 {
  font-size: clamp(24px, 2.8vw, 40px);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .album .section-head--center h2 { white-space: normal; }
}
.album__stage {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  isolation: isolate;
  position: relative;
}
@media (max-width: 880px) {
  .album__stage { grid-template-columns: 1fr; gap: var(--space-6); }
}

.album__ring {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 780px;                  /* boundary 600 → 780 (×1.3 per user) */
  margin: 0 auto;
  perspective: 1900px;
  overflow: hidden;
  transform-style: preserve-3d;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.album__ring.is-dragging { cursor: grabbing; }
.album__item {
  position: absolute;
  inset: 26%;                    /* ×1.3 enlarge per user: item width 36% → 48% */
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 24px 64px oklch(20% 0.02 145 / 0.25), 0 4px 12px oklch(20% 0.02 145 / 0.12);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, filter;
  transition: filter 0.5s var(--ease-soft), opacity 0.5s var(--ease-soft);
}
.album__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.album__caption {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fdf6ed;
  background: oklch(20% 0.02 145 / 0.65);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.album__item.is-active { z-index: 5; }
.album__item.is-active .album__caption { color: #fdf6ed; }

.album__info {
  padding: 0 var(--space-3);
  position: relative;
  z-index: 100;
  background: transparent;          /* explicit: no card backdrop behind dish name/desc/price */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.album__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-3);
}
.album__title {
  font-family: "Fraunces", var(--font-display);
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin: 0 0 var(--space-3);
  color: var(--fg);
}
.album__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 var(--space-5);
  max-width: 44ch;
}
.album__price-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin: 0 0 var(--space-5);
}
.album__price {
  font-family: "Fraunces", var(--font-display);
  font-size: clamp(28px, 2.8vw, 36px);
  color: var(--fg);
  line-height: 1;
  letter-spacing: -0.01em;
}

.album__dots {
  display: flex;
  gap: 8px;
  margin-top: var(--space-4);
}
.album__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: oklch(80% 0.01 80);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 200ms var(--ease-soft), transform 200ms var(--ease-soft);
}
.album__dot.is-active {
  background: var(--accent);
  transform: scale(1.4);
}
.album__dot:hover { background: var(--accent); }

.album__hint {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  pointer-events: none;
}

