:root {
  --cream: #FFFBF4;
  --pink: #FFD4E0;
  --pink-deep: #F8AAC0;
  --butter: #FFF1B8;
  --butter-deep: #F8D77A;
  --mint: #C8E6D5;
  --mint-deep: #95C9AE;
  --ink: #3D2B33;
  --ink-soft: #7A6168;

  --sans: 'DM Sans', system-ui, sans-serif;
  --hand: 'Caveat', cursive;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  overflow-x: hidden;
}

/* ---------- floating blobs ---------- */
.blobs {
  position: fixed; inset: 0;
  z-index: -1; pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.blob--a { width: 600px; height: 600px; background: var(--pink); top: -200px; right: -200px; animation: drift 26s ease-in-out infinite; }
.blob--b { width: 500px; height: 500px; background: var(--butter); top: 40%; left: -150px; animation: drift 32s ease-in-out infinite reverse; }
.blob--c { width: 700px; height: 700px; background: var(--mint); bottom: -300px; right: 30%; animation: drift 38s ease-in-out infinite; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.08); }
  66%     { transform: translate(-30px,20px) scale(0.95); }
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem clamp(1.5rem, 5vw, 3rem);
  background: color-mix(in srgb, var(--cream) 85%, transparent);
  backdrop-filter: blur(12px);
}
.mark {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 2rem;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.mark__heart { color: var(--pink-deep); animation: heart 2.4s ease-in-out infinite; display: inline-block; }
@keyframes heart { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.nav { display: flex; gap: 1.4rem; align-items: center; font-weight: 500; }
.nav a { transition: color .2s; }
.nav a:hover { color: var(--pink-deep); }
.cta {
  background: var(--ink); color: var(--cream);
  padding: 0.65rem 1.3rem; border-radius: 999px;
  font-weight: 500; font-size: 0.92rem;
  transition: transform .25s cubic-bezier(.5,1.6,.4,1), background .25s;
}
.cta:hover { transform: scale(1.06) rotate(-2deg); background: var(--pink-deep); color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem) clamp(5rem, 10vw, 9rem);
  text-align: center;
  min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hello { font-family: var(--hand); font-size: 1.8rem; color: var(--pink-deep); margin-bottom: 1rem; transform: rotate(-3deg); }
.hero__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.6rem;
  max-width: 16ch;
}
.hero__title em {
  font-family: var(--hand); font-style: normal; font-weight: 700;
  color: var(--pink-deep);
  font-size: 1.2em;
}
.hilite { background: var(--butter); padding: 0 0.3em; border-radius: 8px; display: inline-block; }
.hero__sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 2.5rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.btn {
  display: inline-flex; align-items: center;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  font-weight: 500;
  transition: transform .35s cubic-bezier(.5,1.6,.4,1), background .25s, color .25s;
}
.btn--main { background: var(--ink); color: var(--cream); }
.btn--main:hover { background: var(--pink-deep); color: var(--ink); transform: scale(1.05) rotate(-1deg); }
.btn--ghost { border: 2px solid var(--ink); }
.btn--ghost:hover { background: var(--butter); transform: scale(1.05) rotate(1deg); }

.float-cakes { position: relative; width: 100%; max-width: 720px; height: 200px; margin-top: 1rem; }
.fc {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 12px 24px -8px rgba(61,43,51,0.2);
  will-change: transform;
}
.fc img { width: 100%; height: 100%; object-fit: cover; }
.fc--1 { width: 140px; height: 140px; left: 10%; top: 0; animation: bob 5s ease-in-out infinite; }
.fc--2 { width: 110px; height: 110px; left: 45%; top: 60px; animation: bob 6s ease-in-out infinite 0.5s; }
.fc--3 { width: 130px; height: 130px; right: 8%; top: 20px; animation: bob 5.5s ease-in-out infinite 1s; }
@keyframes bob {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-14px) rotate(3deg); }
}
.sparkle {
  position: absolute; width: 24px; height: 24px; color: var(--butter-deep);
  animation: spin 4s ease-in-out infinite;
}
.s1 { top: 10px; left: 38%; }
.s2 { top: 80px; right: 30%; animation-delay: 1s; color: var(--pink-deep); }
.s3 { bottom: 10px; left: 22%; animation-delay: 2s; color: var(--mint-deep); }
@keyframes spin {
  0%,100% { transform: rotate(0) scale(1); opacity: 0.9; }
  50%     { transform: rotate(180deg) scale(1.3); opacity: 1; }
}

/* ---------- section shared ---------- */
section { padding: clamp(4rem, 9vw, 8rem) clamp(1.5rem, 5vw, 3rem); }
.kicker {
  text-align: center;
  font-family: var(--hand); font-size: 1.6rem;
  color: var(--pink-deep);
  margin-bottom: 0.8rem;
}
h2 {
  text-align: center;
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 3rem;
}

/* ---------- cakes ---------- */
.cake-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1100px; margin: 0 auto 4rem;
}
.cake-card {
  border-radius: 32px;
  padding: 1.5rem;
  background: var(--pink);
  transition: transform .4s cubic-bezier(.5,1.6,.4,1);
  position: relative;
}
.cake-card--pink { background: var(--pink); }
.cake-card--mint { background: var(--mint); }
.cake-card--butter { background: var(--butter); }
.cake-card:hover { transform: translateY(-10px) rotate(-1.5deg); }
.cake-card:nth-child(2):hover { transform: translateY(-10px) rotate(1.5deg); }
.cake-card figure { aspect-ratio: 1/1; border-radius: 24px; overflow: hidden; margin-bottom: 1.2rem; border: 4px solid var(--cream); }
.cake-card figure img { width: 100%; height: 100%; object-fit: cover; }
.cake-card h3 { font-family: var(--hand); font-size: 2.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.cake-card p { color: var(--ink); font-size: 0.96rem; margin-bottom: 0.7rem; }
.cake-card .price { font-weight: 500; font-family: var(--sans); font-size: 1rem; }

.also { max-width: 700px; margin: 0 auto; text-align: center; }
.also h3 { font-family: var(--hand); font-size: 2rem; color: var(--pink-deep); margin-bottom: 1.5rem; }
.also ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 2rem; }
.also li {
  display: flex; justify-content: space-between;
  padding: 0.6rem 1rem;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid rgba(61,43,51,0.08);
}
.also li span { color: var(--pink-deep); font-weight: 500; }

/* ---------- story ---------- */
.story { max-width: 1000px; margin: 0 auto; text-align: center; }
.story p {
  font-size: 1.2rem;
  max-width: 56ch;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.quotes blockquote {
  background: var(--cream);
  border-radius: 24px;
  padding: 2rem;
  font-family: var(--hand);
  font-size: 1.6rem;
  line-height: 1.3;
  position: relative;
  text-align: left;
}
.quotes blockquote::before {
  content: '"'; position: absolute; top: -10px; left: 14px;
  font-size: 5rem; color: var(--pink-deep); line-height: 1;
}
.quotes blockquote cite {
  display: block; margin-top: 1rem;
  font-family: var(--sans); font-style: normal; font-size: 0.92rem; color: var(--ink-soft);
}

/* ---------- services ---------- */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.svc-grid article {
  background: var(--cream);
  border-radius: 28px;
  padding: 2.2rem 1.8rem;
  text-align: center;
  border: 2px dashed rgba(61,43,51,0.1);
  transition: transform .35s cubic-bezier(.5,1.6,.4,1), border-color .25s;
}
.svc-grid article:hover { transform: translateY(-6px); border-color: var(--pink-deep); }
.svc-grid .emoji { font-size: 2.6rem; display: block; margin-bottom: 1rem; }
.svc-grid h3 { font-family: var(--hand); font-size: 2rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--pink-deep); }
.svc-grid p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.svc-grid a { font-weight: 500; border-bottom: 2px solid var(--pink-deep); padding-bottom: 1px; color: var(--ink); }

/* ---------- visit ---------- */
.visit { max-width: 1100px; margin: 0 auto; }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.visit-card {
  border-radius: 32px; padding: 2rem;
  text-align: center;
  transition: transform .35s cubic-bezier(.5,1.6,.4,1);
}
.visit-card--pink { background: var(--pink); }
.visit-card--mint { background: var(--mint); }
.visit-card--butter { background: var(--butter); }
.visit-card:hover { transform: translateY(-6px) rotate(1deg); }
.visit-card:nth-child(2):hover { transform: translateY(-6px) rotate(-1deg); }
.visit-card h4 { font-family: var(--hand); font-size: 2rem; margin-bottom: 0.8rem; color: var(--ink); }
.visit-card p { font-size: 1.05rem; line-height: 1.6; }
.visit-card a { font-weight: 500; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 1.5rem 2.5rem;
  text-align: center;
}
.foot__mark { font-family: var(--hand); font-size: 2.5rem; color: var(--pink-deep); margin-bottom: 0.5rem; }
.foot__line { color: rgba(255,251,244,0.7); margin-bottom: 2rem; }
.foot__social { display: flex; gap: 1.5rem; justify-content: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.foot__social a { color: var(--cream); transition: color .25s; }
.foot__social a:hover { color: var(--pink-deep); }
.foot__fine { color: rgba(255,251,244,0.4); font-size: 0.85rem; }

/* ---------- reveal ---------- */
.in-view { opacity: 1 !important; transform: none !important; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .cake-grid, .svc-grid, .visit-grid, .quotes { grid-template-columns: 1fr; }
  .also ul { grid-template-columns: 1fr; }
  .nav a:not(.cta) { display: none; }
  .float-cakes { height: 140px; }
  .fc--1 { width: 100px; height: 100px; }
  .fc--2 { width: 80px; height: 80px; }
  .fc--3 { width: 90px; height: 90px; }
}
