/* ═══════════════════════════════════════════════════════════════════════
   Chelle's — Cakes by Michelle Wetsch
   Editorial minimalism · two-tone (white + #F7DEEB) · warm grain
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* Palette */
  --white: #FFFFFF;
  --pink: #F7DEEB;
  --pink-soft: #FBEEF4;
  --pink-deep: #E8A8C8;   /* decorative accent type */
  --pink-warm: #F2C8DC;   /* hover/border accent */
  --pink-shadow: 247 222 235;
  --pink-glow:   232 168 200;
  --ink: #1A1A1A;
  --ink-60: #1a1a1a99;
  --ink-40: #1a1a1a66;
  --line: #1a1a1a14;
  --err: #C56A82;         /* "red-pink" for invalid states */

  /* Type */
  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --body:    'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Motion */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Layout */
  --nav-h: 88px;
  --container: 1240px;
  --radius: 14px;
  --radius-lg: 22px;
}

/* ── Reset ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;

  /* Pure-CSS page fade-in on first paint */
  animation: pageIn 0.7s var(--ease) both;
}
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  body { animation: none !important; }
}

/* Custom text selection — on-brand pink */
::selection { background: var(--pink); color: var(--ink); }
::-moz-selection { background: var(--pink); color: var(--ink); }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }

/* ── Body grain overlay ───────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.06;
  mix-blend-mode: multiply;
  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.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* ── Container ────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 880px; }
@media (max-width: 640px) { .container { padding: 0 22px; } }

/* ── Typography ───────────────────────────────────────────────────────── */
.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--ink);
}
.h2 em { font-style: italic; color: var(--pink-deep); font-weight: 500; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 18px;
}
.eyebrow--dark { color: var(--ink); }
.eyebrow__star {
  width: 9px;
  height: 9px;
  color: var(--pink-deep);
  opacity: 0.8;
}
.eyebrow--dark .eyebrow__star { color: var(--ink); opacity: 0.6; }

/* Botanical ornament — paired with eyebrows */
.eyebrow {
  flex-wrap: wrap;
  justify-content: center;
}
.eyebrow__orn {
  width: 56px;
  height: 12px;
  color: var(--pink-deep);
  opacity: 0.85;
  flex: 0 0 auto;
}
.eyebrow__orn--flip { transform: scaleX(-1); }
.eyebrow--dark .eyebrow__orn { color: var(--ink); opacity: 0.55; }
@media (max-width: 480px) {
  .eyebrow__orn { width: 36px; }
}

.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head__sub {
  margin: 18px auto 0;
  max-width: 540px;
  color: var(--ink-60);
  font-size: 1rem;
}
.section-head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head--row .h2 { margin: 0; }
.link-ig {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--pink-warm);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.link-ig em { font-family: var(--display); font-style: italic; font-size: 16px; color: var(--ink); }
.link-ig svg { width: 18px; height: 18px; }
.link-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgb(var(--pink-glow) / 0.55);
}

/* Pink section utility — with subtle linen weave for farmhouse warmth */
.pink {
  background-color: var(--pink);
  background-image:
    repeating-linear-gradient(0deg,  rgb(26 26 26 / 0.025) 0px, rgb(26 26 26 / 0.025) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgb(26 26 26 / 0.018) 0px, rgb(26 26 26 / 0.018) 1px, transparent 1px, transparent 5px);
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--pink);
  color: var(--ink);
  box-shadow: 0 6px 24px -8px rgb(var(--pink-shadow) / 0.6);
}
.btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px -12px rgb(var(--pink-glow) / 0.7), 0 0 0 1px rgb(var(--pink-glow) / 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--white);
  transform: scale(1.02);
}
.btn--full { width: 100%; padding: 22px 30px; font-size: 14px; }

/* Ripple effect */
.ripple .ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.55);
  transform: scale(0);
  animation: ripple 700ms var(--ease-out) forwards;
  pointer-events: none;
}
@keyframes ripple {
  to { transform: scale(2.6); opacity: 0; }
}

/* ── NAV ──────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 400ms ease, backdrop-filter 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
  overflow: visible;
}
.nav__inner {
  overflow: visible;
  height: var(--nav-h);
}
.nav.is-scrolled {
  background: rgb(255 255 255 / 0.78);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom-color: var(--pink);
  box-shadow: 0 1px 0 rgb(247 222 235 / 0.6);
}
.nav.is-scrolled[data-section="about"],
.nav.is-scrolled[data-section="how"],
.nav.is-scrolled[data-section="gallery"],
.nav.is-scrolled[data-section="contact"] {
  background: rgb(247 222 235 / 0.82);
  border-bottom-color: rgb(232 168 200 / 0.4);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}
@media (max-width: 640px) { .nav__inner { padding: 0 22px; } }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  position: relative;
  z-index: 2;
}
.logo__img {
  height: 76px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
  filter: drop-shadow(0 4px 12px rgb(var(--pink-glow) / 0.25));
}
@media (max-width: 640px) {
  .logo__img { height: 56px; }
}
.logo:hover .logo__img { transform: scale(1.04); }
.logo__mark { width: 32px; height: 32px; transition: transform 0.4s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.06); }
.logo__word {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1;
  position: relative;
  top: 1px;
}
/* When logo image is present, hide the SVG mark + wordmark */
.logo.has-img .logo__mark,
.logo.has-img .logo__word { display: none; }
/* When logo image fails, hide it and show the fallback */
.logo.no-img .logo__img { display: none; }
.logo.no-img .logo__mark { display: inline-block; }
.logo.no-img .logo__word { display: inline; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right 0.4s var(--ease);
}
.nav__links a:hover::after { right: 0; }
.nav__cta {
  padding: 15px 38px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--ink); color: var(--white); }
.nav__cta.is-current { background: var(--ink); color: var(--white); border-color: var(--ink); }
@media (max-width: 820px) { .nav__links { display: none; } }

.nav__menu {
  display: none;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 640px) { .nav__menu { right: 22px; } }
.nav__menu span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__menu[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
@media (max-width: 820px) { .nav__menu { display: flex; } }

.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgb(255 255 255 / 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--pink);
  padding: 28px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  z-index: 99;
}
.nav__mobile a {
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
}
.nav__mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 16px) 32px 120px;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 640px) { .hero { padding: calc(var(--nav-h) + 20px) 22px 120px; } }
.hero__bloom {
  position: absolute;
  z-index: -1;
  width: 720px; height: 720px;
  left: -240px; bottom: -260px;
  background: radial-gradient(closest-side, rgb(247 222 235 / 0.95), rgb(247 222 235 / 0));
  filter: blur(20px);
}
.hero__bloom--two {
  left: auto;
  right: -200px;
  top: 20%;
  bottom: auto;
  width: 540px; height: 540px;
  background: radial-gradient(closest-side, rgb(247 222 235 / 0.7), rgb(247 222 235 / 0));
}
.float-dots {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.float-dots span {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  background: radial-gradient(closest-side, rgb(247 222 235 / 0.6), rgb(247 222 235 / 0));
  filter: blur(8px);
  animation: drift 24s ease-in-out infinite;
  animation-delay: var(--d);
}
@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0); }
  50%      { transform: translate3d(40px, -30px, 0); }
}

.hero__inner {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.4rem, 7.6vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  color: var(--pink-deep);
  font-weight: 500;
  display: inline-block;
  background-image: linear-gradient(to top, var(--pink) 0%, var(--pink) 22%, transparent 22%);
  background-size: 92% 100%;
  background-position: center 90%;
  background-repeat: no-repeat;
  padding: 0 0.05em;
}
.hero__sub {
  max-width: 540px;
  font-size: 1.06rem;
  color: var(--ink-60);
  margin: 0 0 38px;
  line-height: 1.6;
}
.hero__flourish {
  width: 120px;
  height: 14px;
  color: var(--pink-deep);
  opacity: 0.65;
  margin: -22px auto 30px;
  display: block;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 960px) {
  .hero__cta { justify-content: center; }
}
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.hero__meta .dot {
  width: 4px; height: 4px;
  background: var(--pink-deep);
  border-radius: 50%;
}

/* Live "currently booking" indicator dot */
.dot--live {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink-deep);
  position: relative;
  box-shadow: 0 0 0 0 rgb(var(--pink-glow) / 0.7);
  animation: livePulse 2.4s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0   rgb(var(--pink-glow) / 0.7); }
  70%  { box-shadow: 0 0 0 10px rgb(var(--pink-glow) / 0); }
  100% { box-shadow: 0 0 0 0   rgb(var(--pink-glow) / 0); }
}
@media (prefers-reduced-motion: reduce) { .dot--live { animation: none; } }

.hero__scroll {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--ink-40));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ── Dividers ─────────────────────────────────────────────────────────── */
.divider {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
  display: block;
}
.divider--bottom { bottom: -1px; }
section { position: relative; }

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════════════ */
.about {
  padding: 140px 0 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 880px) {
  .about { padding: 110px 0 0; }
  .about__grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ── Figures strip (under About) ──────────────────────────────────────── */
.figures {
  margin-top: 96px;
  padding: 60px 0 140px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgb(26 26 26 / 0.14);
}
@media (max-width: 820px) { .figures { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .figures { grid-template-columns: 1fr; } }

.figure {
  padding: 26px 28px 18px;
  border-right: 1px solid rgb(26 26 26 / 0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.4s var(--ease);
}
.figure:last-child { border-right: 0; }
@media (max-width: 820px) {
  .figure { border-right: 0; }
  .figure:nth-child(odd) { border-right: 1px solid rgb(26 26 26 / 0.1); }
  .figure:nth-child(-n+2) { border-bottom: 1px solid rgb(26 26 26 / 0.1); }
}
@media (max-width: 460px) {
  .figure { border: 0 !important; border-bottom: 1px solid rgb(26 26 26 / 0.1) !important; }
  .figure:last-child { border-bottom: 0 !important; }
}
.figure:hover { background: rgb(255 255 255 / 0.35); }

.figure__num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.figure__num small {
  font-size: 0.34em;
  font-family: var(--body);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--pink-deep);
  text-transform: lowercase;
}
.figure__label {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin-top: 8px;
}
.figure__hint {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.about__quote {
  position: relative;
  padding: 12px 0 12px 24px;
  border-left: 1px solid rgb(26 26 26 / 0.18);
}
.about__quote p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--ink);
}
.about__quote p em { color: var(--pink-deep); }
.quote-mark {
  position: absolute;
  top: -56px; left: -8px;
  font-family: var(--display);
  font-size: 14rem;
  line-height: 1;
  color: var(--white);
  z-index: -1;
  opacity: 0.9;
}
.quote-sig {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.quote-flourish {
  display: block;
  width: 100px;
  height: 12px;
  margin-top: 20px;
  color: var(--ink);
  opacity: 0.32;
}
.about__copy {
  position: relative;
}
.about__stamp {
  position: absolute;
  top: -28px;
  right: -8px;
  width: 132px;
  height: 132px;
  color: var(--ink);
  opacity: 0.42;
  transform: rotate(-12deg);
  pointer-events: none;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.about__copy:hover .about__stamp { transform: rotate(-8deg) scale(1.04); opacity: 0.55; }
@media (max-width: 880px) {
  .about__stamp {
    position: relative;
    top: 0; right: 0;
    margin: 0 0 22px;
    width: 110px; height: 110px;
    display: block;
  }
}
.about__copy p {
  color: var(--ink);
  margin: 0 0 18px;
}
.about__copy p em { font-family: var(--display); font-style: italic; font-size: 1.08em; }
.about__copy strong { font-weight: 500; }
.about__list-label {
  display: block;
  margin: 36px 0 16px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-60);
  position: relative;
  padding-left: 28px;
}
.about__list-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--ink-60);
}
.about__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgb(26 26 26 / 0.12);
  font-size: 0.98rem;
  transition: padding-left 0.3s var(--ease);
}
.about__list li:last-child { border-bottom: 0; }
.about__list li:hover { padding-left: 6px; }
.about__list li > span {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--pink-deep);
  line-height: 1;
}
.about__list li strong {
  font-family: var(--body);
  font-weight: 500;
  color: var(--ink);
}
.about__list li em {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-60);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════════════ */
.services { padding: 130px 0 150px; }

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--pink);
  border-radius: var(--radius-lg);
  padding: 48px 44px 44px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 50px -28px rgb(var(--pink-shadow) / 0.9);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, var(--pink-warm), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-warm);
  box-shadow: 0 30px 60px -28px rgb(var(--pink-glow) / 0.75);
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--ink);
}
.card__tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-deep);
  margin-bottom: 12px;
}
.card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  line-height: 1.05;
}
.card__title em { font-style: italic; color: var(--pink-deep); font-weight: 500; }
.card p {
  margin: 0 0 22px;
  color: var(--ink-60);
}
.card__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.card__meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 14px;
  border-right: 1px solid var(--line);
}
.card__meta > div:first-child { padding-left: 0; }
.card__meta > div:last-child  { padding-right: 0; border-right: 0; }
.card__meta dt {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.card__meta dd {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.2;
}
.card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--ink);
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 12px; height: 1px;
  background: var(--pink-deep);
}
.card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  align-self: flex-start;
}
.card__cta span {
  transition: transform 0.3s var(--ease);
}
.card__cta:hover span { transform: translateX(6px); }

/* ═══════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════ */
.how { padding: 130px 0 150px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  counter-reset: step;
}
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 36px; }
}

.step {
  position: relative;
  padding-top: 12px;
}
.step__num {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 0.9;
  color: rgb(232 168 200 / 0.55);
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  position: relative;
}
.step__num::after {
  content: '';
  position: absolute;
  bottom: 0.18em;
  left: 0;
  width: 38px;
  height: 1px;
  background: var(--ink);
}
.step__cta {
  display: inline-flex;
  margin-top: 12px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pink-deep);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.step__cta:hover { color: var(--ink); transform: translateX(4px); }
.step h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.step p {
  margin: 0;
  color: var(--ink);
  opacity: 0.78;
  font-size: 0.98rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   ORDER FORMS
   ═══════════════════════════════════════════════════════════════════════ */
.order { padding: 130px 0 170px; }

.tabs { margin-bottom: 56px; }
.tabs__bar {
  position: relative;
  display: flex;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  background: var(--white);
  width: 100%;
  max-width: 460px;
}
.tabs__btn {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 13px 22px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-60);
  border-radius: 999px;
  transition: color 0.4s var(--ease);
}
.tabs__btn.is-active { color: var(--ink); }
.tabs__indicator {
  position: absolute;
  z-index: 1;
  top: 6px; bottom: 6px;
  left: 6px;
  width: calc(50% - 6px);
  background: var(--pink);
  border-radius: 999px;
  transition: transform 0.5s var(--ease);
  box-shadow: 0 8px 24px -8px rgb(var(--pink-glow) / 0.6);
}

/* Form blocks */
.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.form.is-active {
  opacity: 1;
  transform: translateY(0);
}
.form[hidden] { display: none; }

.grid-2, .grid-3 {
  display: grid;
  gap: 22px;
}
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 720px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Floating label fields */
.field {
  position: relative;
}
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 22px 18px 12px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 110px; padding-top: 28px; }
.field label {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 14px;
  color: var(--ink-60);
  pointer-events: none;
  transition: top 0.25s var(--ease), font-size 0.25s var(--ease), color 0.25s var(--ease);
  background: linear-gradient(to bottom, transparent 50%, var(--white) 50%);
  padding: 0 4px;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--pink-warm);
  box-shadow: 0 0 0 4px rgb(var(--pink-shadow) / 0.55);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
/* On pink sections, mask the label sliver with pink so it sits cleanly */
.pink .field label {
  background: linear-gradient(to bottom, transparent 50%, var(--pink) 50%);
}
.field input[type="date"] { color: var(--ink); }
.field input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.5; cursor: pointer; }

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: var(--err);
  background: rgb(197 106 130 / 0.04);
  animation: shake 0.4s var(--ease);
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%     { transform: translateX(-6px); }
  75%     { transform: translateX(6px); }
}

/* Row / pill / toggle */
.row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.row__label {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 500;
}
.row__hint {
  font-size: 12px;
  color: var(--ink-60);
  font-style: italic;
}
.pills, .toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill, .toggle__btn {
  padding: 10px 18px;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-60);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.pill:hover, .toggle__btn:hover { border-color: var(--pink-warm); color: var(--ink); }
.pill.is-active, .toggle__btn.is-active {
  background: var(--pink);
  color: var(--ink);
  border-color: var(--pink);
}
.toggle {
  background: #f6f6f6;
  border-radius: 999px;
  padding: 4px;
  width: max-content;
}
.toggle__btn {
  border: 0;
  background: transparent;
  padding: 9px 18px;
  font-weight: 500;
}
.toggle__btn.is-active { background: var(--white); box-shadow: 0 2px 8px -2px rgb(var(--pink-glow) / 0.6); }

.field-block { display: flex; flex-direction: column; gap: 10px; }
.field-block__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Dropzone */
.dropzone {
  display: block;
  border: 1.5px dashed var(--pink-warm);
  border-radius: var(--radius);
  padding: 36px 20px;
  background: var(--pink-soft);
  cursor: pointer;
  text-align: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.dropzone:hover { background: var(--pink); border-color: var(--pink-deep); }
.dropzone.is-drag { background: var(--pink); border-color: var(--pink-deep); transform: scale(1.005); }
.dropzone__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.dropzone__inner svg { color: var(--pink-deep); }
.dropzone__main { font-size: 15px; }
.dropzone__main em { font-family: var(--display); font-style: italic; color: var(--pink-deep); font-size: 17px; }
.dropzone__hint { font-size: 12px; color: var(--ink-60); letter-spacing: 0.08em; }
.dropzone__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.dropzone__list:empty { display: none; }
.dropzone__list li {
  font-size: 12px;
  padding: 6px 12px;
  background: var(--white);
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.reveal-on-toggle {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease);
}
.reveal-on-toggle.is-open {
  max-height: 200px;
  opacity: 1;
}

.form__note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-60);
  margin: 4px 0 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════════════ */
.gallery { padding: 130px 0 150px; }

.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}
@media (max-width: 980px) { .masonry { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 12px; } }

.masonry__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pink);
  margin: 0;
  grid-row: span 1;
}
/* Empty-slot placeholder: subtle linen texture + tiny "Coming soon" mark */
.masonry__item:not(.has-photo)::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,  rgb(26 26 26 / 0.025) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgb(26 26 26 / 0.02) 0 1px, transparent 1px 6px);
}
.masonry__item:not(.has-photo)::after {
  content: 'Photo coming soon';
  position: absolute;
  inset: auto 0 50% 0;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-60);
  transform: translateY(50%);
  letter-spacing: 0.02em;
}
.masonry__item:not(.has-photo) img { display: none; }
.masonry__item:not(.has-photo) figcaption { display: none; }
.masonry__item.has-photo { background: var(--white); }
.masonry__item--tall { grid-row: span 2; }
.masonry__item--wide { grid-column: span 2; }
@media (max-width: 680px) {
  .masonry__item--wide { grid-column: span 2; }
}
.masonry__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.masonry__item:hover img { transform: scale(1.04); }
.masonry__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px 16px;
  background: linear-gradient(to top, rgb(26 26 26 / 0.55), transparent);
  color: var(--white);
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.01em;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.masonry__item:hover figcaption { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════ */
.kind { padding: 130px 0 150px; }

/* Featured (lead) testimonial — large editorial pull-quote */
.quote-feature {
  margin: 0 auto 70px;
  max-width: 860px;
  text-align: center;
  padding: 0 24px;
}
.quote-feature p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px;
}
.quote-feature p em {
  font-style: italic;
  color: var(--pink-deep);
  font-weight: 500;
}
.quote-feature footer {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgb(26 26 26 / 0.18);
  min-width: 220px;
}
.quote-feature__name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.quote-feature__role {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* Supporting quotes — text-forward, no card chrome */
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 80px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .quotes-grid { grid-template-columns: 1fr; gap: 48px; }
}
.quote-line {
  margin: 0;
  position: relative;
  padding-left: 28px;
}
.quote-line::before {
  content: '“';
  position: absolute;
  left: -4px;
  top: -28px;
  font-family: var(--display);
  font-size: 80px;
  line-height: 1;
  color: var(--pink);
  font-style: italic;
}
.quote-line p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 14px;
}
.quote-line p em {
  font-style: italic;
  color: var(--pink-deep);
  font-weight: 500;
}
.quote-line footer {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
  font-weight: 500;
}

/* Legacy quote-card styles kept for any other usage */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .quotes { grid-template-columns: 1fr; } }

.quote-card {
  position: relative;
  margin: 0;
  padding: 44px 36px 32px;
  background: var(--white);
  border: 1px solid var(--pink);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 50px -34px rgb(var(--pink-shadow) / 1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.quote-card::before {
  content: '“';
  position: absolute;
  top: 12px; left: 22px;
  font-family: var(--display);
  font-size: 80px;
  line-height: 1;
  color: var(--pink);
}
.quote-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-warm);
  box-shadow: 0 24px 60px -30px rgb(var(--pink-glow) / 0.7), 0 0 0 1px rgb(var(--pink-glow) / 0.35);
}
.quote-card p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 18px 0 28px;
  color: var(--ink);
}
.quote-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.quote-card__name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.quote-card__role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.footer {
  padding: 120px 0 50px;
  position: relative;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-align: center;
}
.footer__logo svg { width: 56px; height: 56px; }
.footer__logo-img {
  height: 140px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgb(var(--pink-glow) / 0.3));
}
@media (max-width: 640px) {
  .footer__logo-img { height: 110px; }
}
.footer__logo.has-img svg,
.footer__logo.has-img span { display: none; }
.footer__logo.no-img .footer__logo-img { display: none; }
.footer__logo.no-img svg { display: block; }
.footer__logo.no-img span { display: inline; }
.footer__logo span {
  font-family: var(--display);
  font-style: italic;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.footer__tag {
  text-align: center;
  max-width: 540px;
  margin: 18px auto 64px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--ink);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding: 56px 0;
  border-top: 1px solid rgb(26 26 26 / 0.12);
  border-bottom: 1px solid rgb(26 26 26 / 0.12);
}
@media (max-width: 720px) {
  .footer { padding: 130px 0 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.footer__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 12px;
}
.footer__grid p { margin: 0; font-size: 0.95rem; line-height: 1.6; }
.footer__grid a { transition: color 0.3s var(--ease); }
.footer__grid a:hover { color: var(--pink-deep); }

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer__social svg { width: 18px; height: 18px; }
.footer__social a:hover {
  background: var(--ink);
  color: var(--pink);
  transform: translateY(-2px);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-60);
}
.footer__bottom .heart { color: var(--pink-deep); }
@media (max-width: 600px) {
  .footer__bottom { flex-direction: column; text-align: center; gap: 10px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--white);
  padding: 16px 22px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  box-shadow: 0 20px 50px -10px rgb(0 0 0 / 0.3);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  z-index: 200;
}
.toast.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast svg { color: var(--pink); }

/* ═══════════════════════════════════════════════════════════════════════
   STAGGER / REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════ */
.stagger {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1.1s var(--ease) forwards;
  animation-delay: calc(var(--d, 1) * 150ms + 150ms);
}
.stagger[data-d="1"] { --d: 1; }
.stagger[data-d="2"] { --d: 2; }
.stagger[data-d="3"] { --d: 3; }
.stagger[data-d="4"] { --d: 4; }
.stagger[data-d="5"] { --d: 5; }
.stagger[data-d="6"] { --d: 6; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

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

/* When IO unsupported, fall back */
@media (prefers-reduced-motion: reduce) {
  .stagger, .reveal { opacity: 1; transform: none; animation: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   THE MENU (offerings + flavors, side-by-side)
   ═══════════════════════════════════════════════════════════════════════ */
.menu { padding: 60px 0 150px; }

.menu__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1160px;
}
@media (max-width: 900px) {
  .menu__grid { grid-template-columns: 1fr; gap: 56px; max-width: 620px; }
}

.menu__col-head {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--ink);
}
.menu__col-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 12px;
}
.menu__col-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 0;
}
.menu__col-title em { font-style: italic; color: var(--pink-deep); font-weight: 500; }

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu__list li {
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--ink);
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
}
.menu__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0;
  height: 1px;
  background: var(--pink-deep);
  transition: width 0.35s var(--ease);
}
.menu__list li:hover {
  padding-left: 24px;
  color: var(--ink);
}
.menu__list li:hover::before { width: 16px; }
.menu__list li:last-child { border-bottom: 0; }
.menu__list-more {
  font-style: italic;
  color: var(--pink-deep) !important;
}
.menu__list-more em { font-family: var(--display); font-size: 1.05rem; }

/* Flavors list — CSS columns so 80+ items don't tower */
.menu__list--dense {
  column-count: 2;
  column-gap: 36px;
  display: block;
}
.menu__list--dense li {
  break-inside: avoid;
  padding: 8px 0;
  font-size: 0.93rem;
  border-bottom: 1px dashed rgb(26 26 26 / 0.1);
}
.menu__list--dense li:last-child { border-bottom: 1px dashed rgb(26 26 26 / 0.1); }
@media (max-width: 540px) {
  .menu__list--dense { column-count: 1; }
}

.menu__diets {
  margin: 80px auto 0;
  max-width: 880px;
  padding: 32px 36px;
  background: var(--pink-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.menu__diets-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.menu__diets-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}
@media (max-width: 600px) {
  .menu__diets { padding: 26px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
}

.pill-soft {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.pill-soft:hover { background: var(--ink); color: var(--white); transform: translateY(-1px); }

.menu__note {
  margin: 40px auto 0;
  max-width: 640px;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
}
.menu__note a {
  border-bottom: 1px solid var(--pink-warm);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.menu__note a:hover { color: var(--pink-deep); border-color: var(--pink-deep); }

/* ═══════════════════════════════════════════════════════════════════════
   TAKING YOUR CAKE HOME
   ═══════════════════════════════════════════════════════════════════════ */
.care { padding: 60px 0 150px; }
.care__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 940px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .care__grid { grid-template-columns: 1fr; }
}
.care-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgb(232 168 200 / 0.5);
  border-radius: var(--radius);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.care-card:hover {
  transform: translateY(-3px);
  border-color: var(--pink-deep);
  box-shadow: 0 22px 50px -28px rgb(var(--pink-glow) / 0.7);
}
.care-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ink);
}
.care-card__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--pink-deep);
  margin-bottom: 4px;
}
.care-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.care-card p {
  margin: 0;
  color: var(--ink);
  opacity: 0.78;
  font-size: 0.95rem;
  line-height: 1.55;
}
.care__disclaimer {
  margin: 56px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--ink);
  opacity: 0.78;
  line-height: 1.6;
}
.care__disclaimer span {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════
   CAKE SLICING GUIDE — modal triggered from Cake Care section
   ═══════════════════════════════════════════════════════════════════════ */

/* Button that opens the modal — sits between Care cards and disclaimer */
.slice-trigger {
  margin: 56px auto 0;
  display: flex;
  justify-content: center;
}
.slice-trigger__btn {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  padding: 14px 26px;
  background: var(--white);
}
.slice-trigger__btn:hover { background: var(--ink); color: var(--white); }
.slice-trigger__btn span { display: inline-block; transition: transform 0.3s var(--ease); margin-left: 6px; }
.slice-trigger__btn:hover span { transform: translateX(4px); }

/* Modal container */
.slice-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.slice-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgb(26 26 26 / 0.45);
  backdrop-filter: blur(6px);
  border: 0;
  cursor: pointer;
  animation: sliceScrim 0.3s ease both;
}
@keyframes sliceScrim { from { opacity: 0; } to { opacity: 1; } }

.slice-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 880px;
  max-height: 88vh;
  overflow: auto;
  padding: 60px 56px 48px;
  box-shadow: 0 50px 100px -30px rgb(0 0 0 / 0.35);
  animation: slicePanel 0.5s var(--ease) both;
}
@keyframes slicePanel {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 640px) { .slice-modal__panel { padding: 48px 24px 32px; } }

.slice-modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.slice-modal__close:hover { background: var(--pink); border-color: var(--pink); transform: rotate(90deg); }

.slice-modal__head { text-align: center; margin-bottom: 40px; }
.slice-modal__head .h2 { margin: 6px 0 0; }

/* Body-scroll-lock when modal is open */
body.slice-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .slice-modal__scrim, .slice-modal__panel { animation: none; }
}

/* Reuse step grid for both standalone (legacy) and modal contexts */
.slice__grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  max-width: 920px;
}
@media (max-width: 720px) {
  .slice__grid { grid-template-columns: 1fr; gap: 36px; max-width: 480px; }
}

/* When there are 5 (odd) steps, the 5th (last child) centers in the second row */
.slice__step:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 28px);
  justify-self: center;
}
@media (max-width: 720px) {
  .slice__step:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}

.slice__step {
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Soft pink placeholder rectangle for the future photo slot */
.slice__photo {
  width: 100%;
  aspect-ratio: 16 / 11;
  background: var(--pink);
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 26px -18px rgb(var(--pink-glow) / 0.5);
}
/* Faint cross-hatched linen texture inside the placeholder so it doesn't look like a flat block */
.slice__photo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgb(26 26 26 / 0.025) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgb(26 26 26 / 0.02) 0 1px, transparent 1px 6px);
}

.slice__body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.slice__num {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.slice__step p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink);
  padding-top: 5px;
}

.slice__note {
  margin: 64px auto 0;
  max-width: 580px;
  text-align: center;
  font-family: var(--body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════
   REVIEWS CTA (in testimonials)
   ═══════════════════════════════════════════════════════════════════════ */
.reviews-cta {
  margin-top: 70px;
  padding: 48px 44px;
  background: var(--pink-soft);
  border: 1px solid rgb(232 168 200 / 0.4);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.reviews-cta__copy { max-width: 480px; }
.reviews-cta__stars {
  display: block;
  letter-spacing: 0.5em;
  font-size: 16px;
  color: var(--pink-deep);
  margin-bottom: 10px;
}
.reviews-cta__copy h3 {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.reviews-cta__copy p {
  margin: 0;
  color: var(--ink-60);
  font-size: 0.96rem;
}
.reviews-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.reviews-cta__actions .btn { padding: 16px 26px; font-size: 12.5px; }
@media (max-width: 720px) {
  .reviews-cta { padding: 36px 28px; gap: 24px; }
  .reviews-cta__actions .btn { flex: 1; min-width: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ORDER PAGE (order.html)
   ═══════════════════════════════════════════════════════════════════════ */
.order-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 24px 200px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.order-hero .hero__bloom {
  position: absolute;
  z-index: -1;
  width: 720px; height: 720px;
  left: -240px; bottom: -240px;
  background: radial-gradient(closest-side, rgb(247 222 235 / 0.95), rgb(247 222 235 / 0));
  filter: blur(20px);
}
.order-hero__back {
  display: inline-flex;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 36px;
  padding: 8px 14px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.order-hero__back:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.order-hero__head {
  max-width: 720px;
  margin: 0 auto;
}
.order-hero__head .hero__title { margin: 14px 0 22px; }
.order-hero__head .hero__sub { margin: 0 auto; }

/* The order section on order.html is pink (was white on home).
   Keep the tabs bar visually distinct on pink bg. */
.order.pink .tabs__bar { background: var(--white); }
.order.pink { padding: 60px 0 170px; }

/* ═══════════════════════════════════════════════════════════════════════
   POLISH — scroll progress, floating CTA
   ═══════════════════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pink-deep);
  width: 0%;
  z-index: 101;
  transition: width 0.12s linear;
  pointer-events: none;
}
.scroll-progress::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  width: 8px; height: 100%;
  background: var(--pink-deep);
  box-shadow: 0 0 12px 2px rgb(232 168 200 / 0.6);
  border-radius: 99px;
}

.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px 16px 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 18px 40px -10px rgb(0 0 0 / 0.4), 0 0 0 1px rgb(247 222 235 / 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.94);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.float-cta::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}
.float-cta:hover {
  background: var(--pink);
  color: var(--ink);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 50px -12px rgb(var(--pink-glow) / 0.8);
}
.float-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
@media (max-width: 540px) {
  .float-cta { bottom: 16px; right: 16px; padding: 14px 20px; font-size: 11px; letter-spacing: 0.18em; }
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO INTERNAL LAYOUT — content left, logo prominent, cake right
   ═══════════════════════════════════════════════════════════════════════ */
.hero__split {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
}
.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 580px;
}
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}
@media (max-width: 960px) {
  .hero__split { grid-template-columns: 1fr; gap: 28px; }
  .hero__left { align-items: center; text-align: center; max-width: none; }
  .hero__right { order: -1; }
}

/* Hero logo — the centerpiece, near the headline */
.hero__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 22px;
  color: var(--ink);
  text-decoration: none;
}
.hero__logo-img {
  height: 180px;
  width: auto;
  max-width: 460px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgb(var(--pink-glow) / 0.35));
  transition: transform 0.5s var(--ease);
}
.hero__logo:hover .hero__logo-img { transform: scale(1.02); }
.hero__logo-mark {
  width: 64px; height: 64px;
}
.hero__logo-word {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__logo.has-img .hero__logo-mark,
.hero__logo.has-img .hero__logo-word { display: none; }
.hero__logo.no-img .hero__logo-img { display: none; }
.hero__logo.no-img .hero__logo-mark { display: inline-block; }
.hero__logo.no-img .hero__logo-word { display: inline; }
@media (max-width: 960px) {
  .hero__logo-img { height: 140px; }
  .hero__logo-word { font-size: 54px; }
}
@media (max-width: 540px) {
  .hero__logo-img { height: 110px; }
  .hero__logo-word { font-size: 44px; }
}

/* Cake — sits in the hero, builds with a soothing growing animation once */
.cake {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 40px rgb(232 168 200 / 0.5));
  overflow: visible;
}
.hero__right::before {
  content: '';
  position: absolute;
  inset: -2% -6%;
  background:
    radial-gradient(closest-side at 50% 55%, rgb(247 222 235 / 0.75), rgb(247 222 235 / 0)),
    radial-gradient(closest-side at 70% 30%, rgb(232 168 200 / 0.45), rgb(247 222 235 / 0));
  z-index: -1;
  filter: blur(40px);
}
@media (min-width: 1100px) {
  .cake { max-width: 510px; }
}

/* ── Icing animations ──────────────────────────────────────────────────
   Seam ropes (thin stroke paths): draw themselves on with dashoffset.
   Frosting bands (filled paths): wipe in left-to-right with clip-path. */

/* Seam-rope draw-on (stroke only paths in tier deco groups, NOT bands) */
.cake__part[data-show-at="2"] > path:not(.cake__icing-band),
.cake__part[data-show-at="4"] > path:not(.cake__icing-band),
.cake__part[data-show-at="6"] > path:not(.cake__icing-band) {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  transition: stroke-dashoffset 0.55s cubic-bezier(0.45, 0, 0.25, 1);
}
.cake__part.is-visible[data-show-at="2"] > path:not(.cake__icing-band),
.cake__part.is-visible[data-show-at="4"] > path:not(.cake__icing-band),
.cake__part.is-visible[data-show-at="6"] > path:not(.cake__icing-band) {
  stroke-dashoffset: 0;
}

/* Filled icing bands: DRIP down from the top edge with a slight settle.
   Like buttercream dripping down the rim and settling into place. */
.cake__icing-band {
  transform-box: fill-box;
  transform-origin: center top;
  transform: scaleY(0);
  transition: transform 0.7s cubic-bezier(0.34, 1.4, 0.5, 1);
}
.cake__part.is-visible .cake__icing-band {
  transform: scaleY(1);
}
/* Per-tier sync so each band drips when its tier is reached, not at t=0 */
.cake__part[data-show-at="2"].is-visible .cake__icing-band { transition-delay: 0.85s; }
.cake__part[data-show-at="4"].is-visible .cake__icing-band { transition-delay: 2.05s; }
.cake__part[data-show-at="6"].is-visible .cake__icing-band { transition-delay: 3.15s; }

/* Logo on the cake — drawn on with an angled brush-stroke reveal.
   The clip-path is a parallelogram that grows from left edge to full size,
   so the leading edge of the reveal is tilted ~15° like a hand stroke. */
.cake-monogram {
  transform-box: fill-box;
  clip-path: polygon(-10% -10%, -10% -10%, -25% 110%, -25% 110%);
  -webkit-clip-path: polygon(-10% -10%, -10% -10%, -25% 110%, -25% 110%);
  transition: clip-path 1.6s cubic-bezier(0.78, 0.02, 0.28, 1),
              -webkit-clip-path 1.6s cubic-bezier(0.78, 0.02, 0.28, 1);
}
.cake__part.is-visible .cake-monogram {
  clip-path: polygon(-10% -10%, 115% -10%, 130% 110%, -25% 110%);
  -webkit-clip-path: polygon(-10% -10%, 115% -10%, 130% 110%, -25% 110%);
}
.cake__part[data-show-at="4"].is-visible .cake-monogram { transition-delay: 2.20s; }

@media (prefers-reduced-motion: reduce) {
  .cake__part > path { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
  .cake__icing-band { transform: none !important; transition: none !important; }
  .cake-monogram {
    clip-path: none !important;
    -webkit-clip-path: none !important;
    transition: none !important;
  }
}

/* Shared part defaults */
.cake__part {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 1s var(--ease);
}
.cake__part.is-visible { opacity: 1; }

/* Each tier visibly DROPS onto the one below — like a hand placing it.
   Small fall from above, settle into position. Reads as "being assembled". */
.cake__grow {
  transform: translateY(-14px);
  transition: transform 0.65s cubic-bezier(0.34, 1.3, 0.5, 1),
              opacity 0.45s cubic-bezier(0.25, 0.85, 0.35, 1);
}
.cake__grow.is-visible { transform: translateY(0); }

/* Decorations (icing details, seam ropes, pearls) just fade in cleanly */
.cake__fade {
  transition: opacity 0.55s cubic-bezier(0.25, 0.85, 0.35, 1);
}

/* The topper is the final piece — drops down with a slight settle */
.cake__topper {
  transform: translateY(-12px);
  transition: transform 0.6s cubic-bezier(0.34, 1.4, 0.5, 1),
              opacity 0.5s cubic-bezier(0.25, 0.85, 0.35, 1);
}
.cake__topper.is-visible { transform: translateY(0); }

/* Stage timing — narrative sequence: place tier → ice it → place next tier.
   Each step lands clearly before the next begins. */
.cake__part.is-visible[data-show-at="0"] { transition-delay: 0.05s; }   /* plate */
.cake__part.is-visible[data-show-at="1"] { transition-delay: 0.25s; }   /* bottom tier drops */
.cake__part.is-visible[data-show-at="2"] { transition-delay: 0.85s; }   /* bottom icing wipes on */
.cake__part.is-visible[data-show-at="3"] { transition-delay: 1.50s; }   /* middle tier drops */
.cake__part.is-visible[data-show-at="4"] { transition-delay: 2.05s; }   /* middle icing wipes on */
.cake__part.is-visible[data-show-at="5"] { transition-delay: 2.65s; }   /* top tier drops */
.cake__part.is-visible[data-show-at="6"] { transition-delay: 3.15s; }   /* top icing wipes on */
.cake__part.is-visible[data-show-at="7"] { transition-delay: 3.65s; }   /* topper lands */

/* Cascading florals — each <use> fades in via JS-driven stagger */
/* Cake monogram: show the logo image by default; fall back to "C" if missing */
.cake-logo-img      { display: block; }
.cake-logo-fallback { display: none; }
.cake-monogram.is-fallback .cake-logo-img      { display: none; }
.cake-monogram.is-fallback .cake-logo-fallback { display: block; }

.cake__florals { opacity: 1; transition: none; }
.cake__florals use {
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}
.cake__florals use.is-visible { opacity: 1; }

/* Pearl rim piping — each pearl gets a JS-set transition-delay so they
   appear one-by-one as if a piping bag is tracing the rim */
.cake__rim-beads circle {
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.cake__part.is-visible .cake__rim-beads circle { opacity: 1; }


/* Gentle idle sway once the whole cake is built */
@keyframes cakeSway {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.cake-built .cake {
  animation: cakeSway 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .cake__part, .cake__florals use, .cake-built .cake {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
