/* ============================================================
   LemonTart Social — index.css
   Brand system + all section styles for index.html and plans.html
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Karla', sans-serif;
  background: #fff;
  color: #1C0A10;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

:root {
  --pink:    #ffa9c3;
  --pink-2:  #FFE4EE;
  --pink-3:  #FFF0F7;
  --yellow:  #FFD100;
  --yellow-2:#FFFBEA;
  --dark:    #1C0A10;
  --white:   #FFFFFF;
  --cream:   #FFF8F0;
  --red:     #CC1E1E;
  --ease:    cubic-bezier(.34,1.56,.64,1);
  --ticker-h: 30px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px;
  font-family: 'Karla', sans-serif;
  font-size: .82rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; border: none; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .2s ease;
}
.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: scale(.97); }
.btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.btn-dark    { background: var(--dark); color: var(--yellow); box-shadow: 0 6px 22px rgba(28,10,16,.25); }
.btn-dark:hover  { box-shadow: 0 12px 30px rgba(28,10,16,.35); }
.btn-yellow  { background: var(--yellow); color: var(--dark); box-shadow: 0 6px 22px rgba(255,209,0,.4); }
.btn-yellow:hover { box-shadow: 0 12px 30px rgba(255,209,0,.5); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--yellow); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-pink {
  background: var(--pink); color: var(--dark);
  box-shadow: 0 6px 22px rgba(255,121,168,.35);
}
.btn-pink:hover { box-shadow: 0 12px 30px rgba(255,121,168,.45); }

/* ── LAYOUT ──────────────────────────────────────────── */
.section { padding: 100px 40px; }
.inner   { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: .7rem; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; display: block; margin-bottom: 14px;
}
@media (max-width: 768px) { .section { padding: 64px 20px; } }

/* ── TOP TICKER (yellow strip) ───────────────────────── */
.ticker {
  background: var(--yellow);
  height: var(--ticker-h);
  overflow: hidden;
  display: flex; align-items: center;
  width: 100%;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-roll 32s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(28,10,16,.78); padding: 0 22px;
  white-space: nowrap;
}
.ticker-sep {
  color: rgba(28,10,16,.45); font-size: .55rem;
  padding: 0 4px; flex-shrink: 0;
}
@keyframes ticker-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Page-top (sticky) variant sits above nav */
.ticker-top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: var(--ticker-h); left: 0; right: 0; z-index: 1000;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,248,240,.97); backdrop-filter: blur(14px);
  padding: 11px 40px; box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav-logo {
  display: inline-flex; flex-direction: column; line-height: 1;
  font-family: 'Playfair Display SC', serif;
  font-weight: 700; color: var(--dark); letter-spacing: .04em;
}
.nav-logo .lt-word {
  font-size: 1.4rem;
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--dark);
  text-shadow: 1px 1px 0 var(--dark);
}
.nav-logo .social-word {
  font-size: 1.05rem;
  color: var(--red);
  margin-top: 2px;
  display: inline-flex; align-items: center;
  letter-spacing: .04em;
}
.nav-logo .logo-lemon {
  display: inline-block;
  height: 1.15em; width: 1.15em;
  margin: 0 .04em;
  object-fit: contain;
  vertical-align: middle;
  transform: translateY(-.04em);
}
.nav-links {
  display: flex; align-items: center; gap: 30px;
}
.nav-links a {
  font-size: .8rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(28,10,16,.78);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--pink); }
.nav-cta {
  background: var(--dark); color: var(--white);
  padding: 11px 22px; border-radius: 100px;
  font-size: .76rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s var(--ease), box-shadow .2s ease;
  box-shadow: 0 6px 18px rgba(28,10,16,.22);
}
.nav-cta:hover { transform: translateY(-2px); color: var(--yellow); }
.ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.ham span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .ham { display: flex; }
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
}

/* ── MOBILE MENU ─────────────────────────────────────── */
.mob {
  display: none; position: fixed; inset: 0;
  background: var(--dark); z-index: 1200;
  flex-direction: column; align-items: center; justify-content: center; gap: 26px;
}
.mob.open { display: flex; }
.mob a {
  font-family: 'Playfair Display SC', serif;
  font-size: 1.9rem; font-weight: 700; color: var(--white); transition: color .2s;
}
.mob a:hover { color: var(--yellow); }
.mob-x {
  position: absolute; top: 20px; right: 22px;
  background: none; border: none; color: var(--white);
  font-size: 1.9rem; cursor: pointer; line-height: 1;
}

/* push content below the fixed ticker */
body { padding-top: var(--ticker-h); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 92dvh;
  background: linear-gradient(180deg, #ffd4e1 0%, #ffe9ee 60%, #fff5ee 100%);
  display: flex; align-items: center;
  padding: 140px 40px 80px;
  position: relative; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-blob-1 {
  width: 520px; height: 520px; background: var(--yellow); opacity: .14;
  top: -180px; right: -100px;
  animation: hblob1 9s ease-in-out infinite;
}
.hero-blob-2 {
  width: 340px; height: 340px; background: var(--white); opacity: .14;
  bottom: -80px; left: -60px;
  animation: hblob2 11s ease-in-out infinite 2s;
}
@keyframes hblob1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-16px,20px) scale(1.06)} }
@keyframes hblob2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-14px)} }

.hero-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 2;
}
.hero-title {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(3.4rem, 11vw, 9.5rem);
  font-weight: 700; line-height: .9; letter-spacing: -.02em;
  color: var(--red); margin-bottom: 18px;
  text-shadow: 2px 2px 0 rgba(204,30,30,.08);
}
.hero-title .sparkle {
  display: inline-block; color: var(--yellow);
  font-size: .55em; transform: translateY(-.35em);
  margin: 0 .05em;
}
.hero-sub {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 400; color: var(--red);
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
@media (max-width: 768px) { .hero { padding: 110px 20px 60px; } }

/* ── TASTING MENU CAROUSEL ──────────────────────────── */
.tasting { background: linear-gradient(180deg, #fff5ee 0%, var(--yellow-2) 100%); }
.tasting-head {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 36px;
}
.tasting-head h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--dark); line-height: 1;
}
.tasting-head h2 em { font-style: italic; color: var(--pink); }
.tasting-head .section-label { color: var(--pink); margin-bottom: 0; }

.carousel {
  position: relative;
}
.carousel-track {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 24px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.tasting-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 22px;
  border: 2px solid rgba(28,10,16,.08);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .25s var(--ease), border-color .2s, box-shadow .25s;
}
.carousel-loading { display: none; }

/* IG embed lives inside this slot. The IG iframe renders header + video +
   action row + caption + comments. We only want header + video, so we clip
   the iframe at a fixed height that covers those two sections. */
.tasting-embed {
  width: 100%;
  background: #fafafa;
  position: relative;
  overflow: hidden;
  height: 540px;          /* visible window: header (~60px) + video (~480px) */
}
.tasting-embed > .instagram-media,
.tasting-embed > iframe {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: block;
}
/* While IG hasn't replaced the blockquote yet, show its placeholder centered */
.tasting-embed > .instagram-media {
  height: 540px;
}
/* Once embed.js swaps in the iframe, force it tall enough that the lower
   sections (likes / caption / comments) fall outside our 540px window. */
.tasting-embed > iframe {
  height: 1000px !important;
  min-height: 1000px !important;
}
.tasting-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
.tasting-card:hover {
  transform: translateY(-5px);
  border-color: var(--pink);
  box-shadow: 0 16px 40px rgba(255,121,168,.18);
}
.tasting-art {
  height: 360px;
  background-color: #1c0a10;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative; overflow: hidden;
}
.tasting-art::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.reel-views {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; font-size: .82rem; font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.reel-views:empty,
.reel-views:where([hidden]) { display: none; }
.reel-views::before {
  content: '';
  width: 16px; height: 11px;
  background: #fff;
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 38%, transparent 39%) center / 100% 100% no-repeat,
                radial-gradient(ellipse 50% 50% at 50% 50%, #000 60%, transparent 62%) center / 100% 100% no-repeat;
          mask: radial-gradient(circle at 50% 50%, #000 38%, transparent 39%) center / 100% 100% no-repeat,
                radial-gradient(ellipse 50% 50% at 50% 50%, #000 60%, transparent 62%) center / 100% 100% no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0,0,0,.2);
  display: inline-block;
}
.tasting-card .card-body {
  padding: 18px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.tasting-card h3 {
  font-family: 'Playfair Display SC', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--dark);
  line-height: 1.25;
}
.tasting-card .card-body p {
  font-size: .82rem; line-height: 1.55;
  color: rgba(28,10,16,.62);
  flex: 1;
}
.work-cat {
  display: inline-block; align-self: flex-start;
  border-radius: 100px;
  font-size: .62rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 11px;
}
.cat-pb   { background: rgba(255,121,168,.18); color: var(--pink); }
.cat-ads  { background: rgba(255,209,0,.28);   color: #8B6C00; }
.cat-st   { background: rgba(204,30,30,.12);   color: var(--red); }
.cat-fc   { background: rgba(28,10,16,.08);    color: var(--dark); }
.work-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 800; color: var(--red);
  letter-spacing: .08em; text-transform: uppercase;
  margin-top: auto;
  transition: gap .2s ease, color .2s ease;
}
.work-link:hover { gap: 11px; color: var(--pink); }
.car-arrow {
  position: absolute; top: 50%;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 2px solid rgba(204,30,30,.5);
  color: var(--red); font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s var(--ease), background .2s, color .2s;
  z-index: 4;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.car-arrow:hover { background: var(--red); color: var(--white); transform: translateY(-50%) scale(1.05); }
.car-arrow.disabled {
  opacity: .35; pointer-events: none;
  background: var(--white); color: var(--red);
}
.car-arrow.left  { left: -10px; }
.car-arrow.right { right: -10px; }
@media (max-width: 600px) {
  .tasting-card { flex-basis: 75vw; }
  .tasting-art { height: 220px; }
  .car-arrow { display: none; }
}

/* ── 95% GOALS BAND ─────────────────────────────────── */
.goals95 {
  background: var(--pink-2);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 90px 40px;
}
.goals95 .lemon-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.goals95 .lemon-wrap img { width: min(380px, 80%); }
.goals95 .lemon-wrap::before,
.goals95 .lemon-wrap::after {
  content: '✦';
  position: absolute;
  color: var(--yellow);
  font-size: 1.6rem;
  text-shadow: 1px 1px 0 rgba(28,10,16,.3);
}
.goals95 .lemon-wrap::before { top: 12%; left: 8%; font-size: 2.2rem; }
.goals95 .lemon-wrap::after  { top: 60%; right: 10%; font-size: 1.4rem; }
.goals95-copy {
  text-align: left;
}
.goals95 h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--red); font-weight: 700; line-height: .98;
  margin-bottom: 20px;
  text-align: center;
}
.goals95 p {
  font-style: italic; color: var(--red);
  font-size: 1.05rem; line-height: 1.5;
  text-align: center; margin-bottom: 28px;
}
.goals95 .btn-wrap { text-align: center; }
@media (max-width: 768px) {
  .goals95 { grid-template-columns: 1fr; gap: 32px; padding: 56px 20px; text-align: center; }
}

/* ── SPECIALS / SERVICES ────────────────────────────── */
.specs { background: var(--cream); }
.specs-header { margin-bottom: 40px; }
.specs-header h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700; color: var(--dark); line-height: 1;
}
.specs-header h2 em { font-style: italic; color: var(--pink); }
.specs-header .section-label { color: var(--pink); }
.specs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 768px) { .specs-grid { grid-template-columns: 1fr; } }
.spec-card {
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: 18px;
  padding: 26px 28px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255,121,168,.18);
}
.spec-card .num {
  font-family: 'Playfair Display SC', serif;
  color: var(--red); font-size: 1rem; font-weight: 700;
  letter-spacing: .08em;
}
.spec-card .arrow {
  position: absolute; top: 22px; right: 22px;
  color: var(--red); font-size: 1.1rem;
}
.spec-card h3 {
  font-family: 'Playfair Display SC', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--dark);
}
.spec-card p {
  font-size: .9rem; line-height: 1.55;
  color: rgba(28,10,16,.7);
}

/* ── STATS STRIP ────────────────────────────────────── */
.stats-strip {
  background: var(--white);
  padding: 50px 40px;
}
.stats-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-cell {
  border-left: 1px solid rgba(28,10,16,.1);
  padding-left: 20px;
}
.stat-cell:first-child { border-left: none; padding-left: 0; }
.stat-cell .num {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark); line-height: 1; margin-bottom: 8px;
}
.stat-cell .lbl {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(28,10,16,.55);
}
@media (max-width: 768px) {
  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(3) { border-left: none; padding-left: 0; }
}

/* ── FOUNDERS / WHY CHOOSE US ───────────────────────── */
.founders { background: var(--pink-2); }
.founders-quote {
  text-align: center; max-width: 760px; margin: 0 auto 56px;
}
.founders-quote .q-prelude {
  color: var(--pink);
  font-style: italic;
  font-size: 1.1rem; margin-bottom: 18px;
}
.founders-quote blockquote {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(1.4rem, 2.7vw, 2.2rem);
  font-weight: 700; line-height: 1.15; color: var(--dark);
  letter-spacing: .01em;
  position: relative;
  padding: 0 30px;
}
.founders-quote blockquote::before,
.founders-quote blockquote::after {
  content: ''; position: absolute; top: 0;
  width: 14px; height: 100%;
  border: 4px solid var(--pink);
}
.founders-quote blockquote::before {
  left: 0; border-right: none;
}
.founders-quote blockquote::after {
  right: 0; border-left: none;
}
.founders-meet {
  text-align: center; color: var(--pink);
  font-style: italic; font-size: 1.05rem;
  margin-bottom: 32px;
}
.founders-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 768px) { .founders-grid { grid-template-columns: 1fr; } }
.founder-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid transparent;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), border-color .2s;
}
.founder-card:hover { transform: translateY(-4px); border-color: var(--pink); }
.founder-art {
  height: 220px;
  background: linear-gradient(180deg, #cfeaff 0%, #cfeaff 55%, #b8d678 55%, #88b04a 100%);
  position: relative; overflow: hidden;
}
.founder-art::before {
  content: '';
  position: absolute; width: 80px; height: 32px; background: #fff;
  border-radius: 50%; top: 36px; left: 28%;
  box-shadow: 28px 12px 0 -4px #fff, -22px 16px 0 -6px #fff;
}
.founder-body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.founder-body h3 {
  font-family: 'Playfair Display SC', serif;
  font-size: 1.35rem; color: var(--dark); font-weight: 700;
}
.founder-body p {
  font-size: .9rem; line-height: 1.6; color: rgba(28,10,16,.7);
}

/* ── ODDS / RESULTS GRID ────────────────────────────── */
.odds { background: var(--cream); }
.odds-head { margin-bottom: 30px; }
.odds-head h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700; color: var(--dark); line-height: 1;
}
.odds-head h2 em { font-style: italic; color: var(--pink); }
.odds-head .section-label { color: var(--pink); }
.odds-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.odds-cell {
  background: var(--white);
  border: 2px dashed rgba(255,121,168,.4);
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  color: rgba(28,10,16,.35);
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  transition: transform .25s var(--ease), border-color .2s, background .2s;
}
.odds-cell:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  background: var(--pink-2);
  color: var(--dark);
}
.odds-cta-wrap { display: flex; justify-content: flex-end; margin-top: 24px; }
.odds-cta {
  background: var(--pink-2); color: var(--dark);
  padding: 12px 22px; border-radius: 100px;
  font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.odds-cta:hover { background: var(--pink); color: var(--white); }
@media (max-width: 900px) { .odds-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .odds-grid { grid-template-columns: 1fr; } }

/* ── REVIEWS ────────────────────────────────────────── */
.reviews { background: var(--white); }
.reviews-head { margin-bottom: 36px; }
.reviews-head h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700; color: var(--dark); line-height: 1;
}
.reviews-head h2 em { font-style: italic; color: var(--pink); }
.reviews-head .section-label { color: var(--pink); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--cream);
  border-radius: 22px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), border-color .2s;
}
.review-card:hover { transform: translateY(-4px); border-color: var(--pink); }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; letter-spacing: .04em;
}
.review-quote { font-size: .92rem; line-height: 1.6; color: rgba(28,10,16,.78); }
.review-stars { color: var(--yellow); letter-spacing: .15em; font-size: 1.05rem; }
.review-name { font-weight: 800; font-size: .82rem; color: var(--dark); letter-spacing: .04em; }
.review-name span { color: rgba(28,10,16,.5); font-weight: 600; }

/* ── PROCESS ────────────────────────────────────────── */
.process { background: var(--white); }
.process-header { margin-bottom: 50px; }
.process-header .section-label { color: var(--pink); }
.process-header h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700; color: var(--dark); line-height: 1;
}
.process-header h2 em { font-style: italic; color: var(--pink); }
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }
.process-card {
  background: var(--cream); border-radius: 22px; padding: 28px;
  position: relative; overflow: hidden;
  transition: transform .26s var(--ease), box-shadow .22s;
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(255,121,168,.14);
}
.process-card::before {
  content: attr(data-n);
  position: absolute; font-family: 'Playfair Display SC', serif;
  font-size: 6rem; font-weight: 700; line-height: 1;
  color: var(--pink); opacity: .1;
  right: 12px; bottom: -10px; pointer-events: none; user-select: none;
}
.process-tag {
  display: inline-block; background: var(--pink-2);
  color: var(--dark); font-size: .65rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 11px; border-radius: 100px; margin-bottom: 14px;
}
.process-card h3 {
  font-family: 'Playfair Display SC', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--dark);
  margin-bottom: 8px;
}
.process-card p { font-size: .86rem; color: rgba(28,10,16,.65); line-height: 1.6; }

/* ── COLLABORATIONS ─────────────────────────────────── */
.collabs { background: var(--pink-3); padding: 70px 40px; }
.collabs h3 {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  text-align: center; color: var(--dark); margin-bottom: 30px;
}
.collabs h3 em { font-style: italic; color: var(--pink); }
.collab-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
}
@media (max-width: 900px) { .collab-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .collab-grid { grid-template-columns: repeat(2, 1fr); } }
.collab-cell {
  background: var(--white);
  border-radius: 14px;
  height: 78px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display SC', serif;
  font-size: .9rem; color: rgba(28,10,16,.4);
  letter-spacing: .04em;
  transition: transform .25s var(--ease), color .2s;
}
.collab-cell:hover { transform: translateY(-4px); color: var(--dark); }

/* ── CONTACT (Talk to Us) ───────────────────────────── */
.contact {
  background: linear-gradient(180deg, #ffe1eb 0%, #ffc8d8 100%);
  padding: 90px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.contact .lemon-deco {
  position: absolute;
  width: 220px; right: -20px; bottom: -30px;
  opacity: .9;
  pointer-events: none;
}
.contact h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--red); margin-bottom: 18px;
}
.contact h2 .heart {
  display: inline-block;
  color: var(--red);
  font-family: 'Karla', sans-serif;
  font-size: .85em;
  margin-left: .15em;
  transform: translateY(-.04em);
  animation: heartbeat 1.6s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 100% { transform: translateY(-.04em) scale(1); }
  20% { transform: translateY(-.04em) scale(1.18); }
  40% { transform: translateY(-.04em) scale(1); }
  60% { transform: translateY(-.04em) scale(1.12); }
  80% { transform: translateY(-.04em) scale(1); }
}
.contact p {
  max-width: 540px; margin: 0 auto 32px;
  color: rgba(28,10,16,.78); font-size: 1rem; line-height: 1.6;
}
.contact-fields {
  max-width: 760px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  text-align: left;
}
@media (max-width: 600px) { .contact-fields { grid-template-columns: 1fr; } }
.contact-field {
  background: var(--white); border-radius: 16px;
  padding: 18px 20px;
  font-size: .9rem; color: var(--dark); font-weight: 700;
  border: 2px solid transparent;
  transition: border-color .2s;
}
.contact-field:hover { border-color: var(--pink); }
.contact-field span {
  display: block; font-size: .65rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(28,10,16,.45); margin-bottom: 4px;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--dark); color: var(--white); padding: 64px 40px 32px; }
.foot-inner { max-width: 1200px; margin: 0 auto; }
.foot-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 28px;
}
@media (max-width: 768px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer { padding: 48px 20px 24px; }
}
@media (max-width: 480px) { .foot-top { grid-template-columns: 1fr; gap: 28px; } }
.foot-name {
  font-family: 'Playfair Display SC', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--yellow); margin-bottom: 12px; letter-spacing: .04em;
}
.foot-desc {
  font-size: .86rem; line-height: 1.75;
  color: rgba(255,255,255,.48); max-width: 248px; margin-bottom: 22px;
}
.soc-row { display: flex; gap: 10px; }
.soc-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .22s var(--ease); color: var(--white);
}
.soc-btn:hover { background: var(--pink); transform: translateY(-3px); }
.soc-btn svg { width: 17px; height: 17px; fill: currentColor; }
.soc-btn:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.foot-col-title {
  font-size: .68rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 18px;
}
.foot-links { display: flex; flex-direction: column; gap: 11px; }
.foot-links a {
  font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s;
}
.foot-links a:hover { color: var(--yellow); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap;
}
.foot-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.foot-copy span { color: var(--pink); }

/* ── PLANS PAGE ─────────────────────────────────────── */
.plans-hero {
  min-height: calc(100dvh - var(--ticker-h));
  background: linear-gradient(180deg, #fff5ee 0%, #ffe1eb 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 140px 40px 100px;
  position: relative; overflow: hidden;
}
.plans-hero .lemon-deco {
  position: absolute;
  width: 240px;
  bottom: 30px; left: -30px;
  pointer-events: none;
}
.plans-hero-inner {
  max-width: 760px; text-align: center; position: relative; z-index: 2;
}
.plans-label {
  display: inline-block;
  font-size: .85rem; font-weight: 800;
  color: var(--pink); letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--white);
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 32px;
  box-shadow: 0 4px 14px rgba(255,121,168,.2);
}
.plans-title {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  color: var(--dark); line-height: 1; font-weight: 700;
  margin-bottom: 14px;
}
.plans-title-2 {
  font-family: 'Playfair Display SC', serif;
  font-style: italic;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  color: var(--pink); line-height: 1; font-weight: 700;
  margin-bottom: 32px;
}
.plans-sub {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(28,10,16,.7);
  max-width: 560px; margin: 0 auto 36px;
}
.plans-pills {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.7);
  padding: 10px;
  border-radius: 100px;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.plans-pill {
  padding: 12px 22px; border-radius: 100px;
  font-size: .76rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase;
}
.plans-pill.solid { background: var(--pink); color: var(--white); }
.plans-pill.outline {
  background: transparent; color: var(--dark);
  border: 2px solid var(--dark);
}
.plans-pill.outline:hover { background: var(--dark); color: var(--yellow); }
.plans-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-top: 6px;
}

/* ── FADE IN ─────────────────────────────────────────── */
.fu {
  opacity: 0; transform: translateY(34px);
  transition: opacity .6s ease, transform .6s ease;
}
.fu.in { opacity: 1; transform: translateY(0); }
.fu[data-d="1"] { transition-delay: .1s; }
.fu[data-d="2"] { transition-delay: .2s; }
.fu[data-d="3"] { transition-delay: .3s; }
.fu[data-d="4"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
