/* ============================================================
   CC's Cookie Co — v1 site stylesheet
   Brand palette + typography per the locked Brand Style Guide v1
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces.ttf') format('truetype-variations'),
       url('../fonts/Fraunces.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/FrauncesItalic.ttf') format('truetype-variations'),
       url('../fonts/FrauncesItalic.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter.ttf') format('truetype-variations'),
       url('../fonts/Inter.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --pink:     #E91D8E;
  --blush:    #F4C6D9;
  --teal:     #4DBED0;
  --cream:    #FFFFFF;
  --taupe:    #9F7754;
  --charcoal: #2A1F2D;
  --white:    #FFFFFF;

  /* All-pink palette (v2 — Sweet Suga Lips vibe) */
  --bg-pink:     #FCE8F2;  /* page background — soft, almost cotton-candy */
  --hot-pink:    #EF4275;  /* primary accent — bold, dominant */
  --deep-pink:   #C71A5A;  /* deeper hot pink for hover/emphasis */
  --pink-soft:   #FBD3E2;  /* tier card / soft surface */
  --pink-stroke: #F2A4C0;  /* subtle border / scallop highlights */
  /* legacy retained for backwards compat; not actively used in v2 */
  --purple:      #9333EA;
  --purple-deep: #6D28D9;
  --lavender:    #C7B3FF;
  --blue:        #2DA8E0;
  --blue-deep:   #1E6FB8;
  --sky:         #95D8F2;
  --teal-bright: #14B8C4;
  --mint:        #A6F0EC;

  /* Type scale */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (8pt grid) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;

  /* Layout */
  --max-content: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--bg-pink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: inherit;
  text-decoration: none;
}
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--charcoal); color: var(--white);
  padding: 8px 16px; z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- Typography classes ---------- */
.display {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--hot-pink);
}
.h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}
.h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.3;
}
.lead {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
}
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-block;
  padding: 7px 18px;
  background: var(--hot-pink);
  border-radius: 999px;
  box-shadow: 0 4px 14px -4px rgba(239, 66, 117, 0.5);
}

/* ---------- Layout container ---------- */
.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 232, 242, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(239, 66, 117, 0.18);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--hot-pink); }
.brand { color: var(--hot-pink); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  max-width: var(--max-content);
  margin: 0 auto;
}
.brand {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--pink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav__links a {
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--pink); }
.nav__toggle {
  display: none;
  font-size: 24px;
  color: var(--charcoal);
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 20px var(--gutter);
    gap: 20px;
    border-bottom: 1px solid rgba(159, 119, 84, 0.18);
  }
  .nav__toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--hot-pink);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(239, 66, 117, 0.45);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--deep-pink);
  box-shadow: 0 10px 32px rgba(199, 26, 90, 0.55);
}
.btn--secondary {
  background: var(--teal);
  color: var(--charcoal);
}
.btn--secondary:hover { transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn--ghost:hover { background: var(--charcoal); color: var(--cream); }
.btn__arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(42, 31, 45, 0.62) 0%, rgba(42, 31, 45, 0.30) 40%, rgba(42, 31, 45, 0.00) 75%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  max-width: 760px;
  margin: 0 auto 0 0;
  width: 100%;
  max-width: calc(var(--max-content) - var(--gutter) * 2);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.hero__title { color: var(--white); margin: 0; }
.hero__sub {
  color: var(--white);
  margin: 24px 0 40px;
  max-width: 560px;
  opacity: 0.94;
}
.hero__cta { margin-top: 8px; }

/* ---------- Sections ---------- */
section { padding: clamp(64px, 10vw, 128px) 0; }
section + section { padding-top: clamp(40px, 6vw, 80px); }

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head .eyebrow { margin-bottom: 12px; display: inline-block; }
.section-head .h1 { margin: 0; }
.section-head .lead {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--taupe);
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.pillar {
  text-align: center;
}
.pillar__photo {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--blush);
  box-shadow: 0 8px 32px -16px rgba(42, 31, 45, 0.25);
}
.pillars .pillar .pillar__photo { background: var(--pink-soft); box-shadow: 0 16px 36px -14px rgba(239, 66, 117, 0.45); }
.pillars .pillar__title { color: var(--hot-pink); }
.pillar__desc { color: var(--charcoal); }
.pillar__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.pillar:hover .pillar__photo img { transform: scale(1.03); }
.pillar__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 8px;
}
.pillar__desc { color: var(--taupe); font-size: 16px; margin: 0; }

/* ---------- Gallery preview ---------- */
.gallery-preview {
  background: var(--pink-soft);
  position: relative;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blush);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover {
  box-shadow: 0 16px 40px -16px rgba(139, 92, 246, 0.45);
  transform: translateY(-2px);
}
.gallery-grid > .gallery-item:nth-child(3n+1) { background: var(--blush); }
.gallery-grid > .gallery-item:nth-child(3n+2) { background: var(--sky); }
.gallery-grid > .gallery-item:nth-child(3n+3) { background: var(--lavender); }

.gallery-cta {
  text-align: center;
  margin-top: var(--s-6);
}

/* ---------- How it works ---------- */
.how {
  background: var(--bg-pink);
  position: relative;
}
.steps {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.step {
  text-align: center;
  padding: var(--s-5) var(--s-4);
  background: var(--white);
  border-radius: 20px;
  border: 2px solid var(--pink-stroke);
  box-shadow: 0 14px 34px -16px rgba(239, 66, 117, 0.32);
  transition: transform 0.2s, box-shadow 0.2s;
}
.step:hover { transform: translateY(-4px); box-shadow: 0 20px 42px -18px rgba(239, 66, 117, 0.42); }
.step__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 84px;
  line-height: 1;
  margin-bottom: var(--s-3);
  color: var(--hot-pink);
}
.step__title { color: var(--hot-pink); }
.step__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 12px;
}
.step__desc { color: var(--charcoal); margin: 0; }

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, var(--charcoal) 0%, #1a1320 100%);
  color: var(--white);
  padding: var(--s-7) 0 var(--s-5);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--hot-pink);
}
.footer__inner {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: start;
}
.footer__brand .brand { color: var(--blush); }
.footer__brand p {
  margin-top: var(--s-3);
  color: rgba(244, 237, 223, 0.7);
  font-size: 15px;
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
  margin: 0 0 var(--s-3);
}
.footer__col a, .footer__col p {
  display: block;
  color: rgba(244, 237, 223, 0.85);
  font-size: 15px;
  margin: 0 0 8px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--blush); }
.footer__bottom {
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(244, 237, 223, 0.14);
  font-size: 13px;
  color: rgba(244, 237, 223, 0.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
}
@media (max-width: 720px) {
  .sticky-cta {
    display: block;
    position: fixed; bottom: 16px; left: 16px; right: 16px;
    z-index: 60;
  }
  .sticky-cta .btn { width: 100%; justify-content: center; }
  body { padding-bottom: 80px; }
}

/* ---------- Page-specific ---------- */
/* About */
.about-hero { padding-top: var(--s-7); }
.about-hero .h1 { max-width: 640px; }
.about-prose {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--s-7) 0;
}
.about-prose p {
  font-size: 19px;
  line-height: 1.65;
  margin: 0 0 var(--s-3);
}
.about-prose p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 82px;
  color: var(--hot-pink);
  float: left;
  line-height: 0.85;
  padding-right: 12px;
  padding-top: 8px;
}
.about-values {
  background: var(--pink-soft);
  text-align: center;
}
.about-values__items .about-value h3 { color: var(--hot-pink); }
.about-values__items {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}
.about-value h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--pink);
}
.about-value p { color: var(--charcoal); margin: 0; }

/* Gallery */
.gallery-page {
  padding: var(--s-7) 0 var(--s-8);
}
.gallery-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--s-5);
}
.gallery-cat {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--taupe);
  border: 1px solid rgba(159, 119, 84, 0.2);
  transition: all 0.2s;
}
.gallery-cat:hover,
.gallery-cat.is-active {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.gallery-page .gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-page .gallery-item {
  border-radius: 12px;
}
.gallery-item__caption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  padding: 12px 4px 0;
  color: var(--charcoal);
}

/* Menu / Pricing */
.menu-tiers {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: var(--s-6);
}
.tier {
  background: var(--white);
  border-radius: 20px;
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  border: 2px solid var(--pink-stroke);
  box-shadow: 0 14px 36px -18px rgba(239, 66, 117, 0.35);
}
.tier--featured {
  background: var(--hot-pink);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: 0 24px 60px -24px rgba(239, 66, 117, 0.6);
  position: relative;
  overflow: hidden;
}
.tier--featured::before {
  content: "Most popular";
  position: absolute;
  top: 18px; right: -36px;
  background: var(--white);
  color: var(--hot-pink);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 40px;
  transform: rotate(35deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.tier--featured .tier__name,
.tier--featured .tier__price,
.tier--featured .tier__features li { color: var(--cream); }
.tier--featured .tier__price-num { color: var(--hot-pink); }
.tier--featured .tier__features li::before { color: var(--blush); }
.tier__photo {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--s-4);
  background: var(--blush);
}
.tier__photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-tiers .tier:nth-child(3) .tier__photo img { object-position: center 88%; }
.tier__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  margin: 0 0 8px;
}
.tier__price {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 0 0 var(--s-3);
}
.tier__price-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 52px;
  color: var(--hot-pink);
}
.tier__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-4);
  flex-grow: 1;
}
.tier__features li {
  padding: 6px 0;
  font-size: 15px;
  display: flex;
  gap: 10px;
}
.tier__features li::before {
  content: "✿";
  color: var(--hot-pink);
}
.menu-note {
  text-align: center;
  margin-top: var(--s-6);
  font-size: 16px;
  color: var(--taupe);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Finishing Touches add-on callout */
.finishing-touches {
  margin-top: var(--s-7);
  background: var(--white);
  border: 2px solid var(--hot-pink);
  border-radius: 18px;
  padding: var(--s-5);
  box-shadow: 0 18px 40px -22px rgba(255, 26, 154, 0.35);
}
.finishing-touches__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid rgba(255, 26, 154, 0.18);
}
.finishing-touches__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--hot-pink);
  margin: 0;
}
.finishing-touches__price {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--taupe);
  margin: 0;
}
.finishing-touches__price strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--hot-pink);
  margin: 0 4px;
}
.finishing-touches__intro {
  color: var(--charcoal);
  font-size: 15px;
  margin: 0 0 var(--s-4);
  max-width: 640px;
}
.finishing-touches__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.finishing-touches__list li {
  background: var(--blush);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px;
  color: var(--charcoal);
}
.finishing-touches__list li strong { color: var(--hot-pink); }
.finishing-touches__list .muted {
  color: var(--taupe);
  font-size: 13px;
  display: block;
  margin-top: 2px;
}

/* Contact */
.contact-page {
  padding: var(--s-8) 0;
}
.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(42, 31, 45, 0.06);
}
.contact-card .display {
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 var(--s-3);
}
.contact-card .lead {
  margin: 0 auto var(--s-5);
  max-width: 480px;
  color: var(--taupe);
}
.contact-meta {
  display: flex;
  justify-content: center;
  gap: var(--s-5);
  flex-wrap: wrap;
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(159, 119, 84, 0.18);
  font-size: 15px;
  color: var(--charcoal);
}
.contact-meta strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 4px;
}
.contact-secondary {
  text-align: center;
  margin-top: var(--s-7);
  padding: var(--s-5);
  background: var(--blush);
  border-radius: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.contact-secondary p {
  font-size: 17px;
  margin: 0 0 var(--s-3);
  color: var(--charcoal);
}

/* ---------- v2 decorative shapes ---------- */
.deco {
  position: absolute;
  pointer-events: none;
  color: var(--hot-pink);
  z-index: 1;
}
.deco svg { display: block; width: 100%; height: 100%; }
.deco--sparkle      { width: 36px; height: 36px; }
.deco--sparkle-sm   { width: 22px; height: 22px; opacity: 0.85; }
.deco--whisk        { width: 70px; height: 140px; opacity: 0.85; }
.deco--rolling-pin  { width: 130px; height: 46px; opacity: 0.85; }
.deco--dots         { width: 70px; height: 70px; opacity: 0.8; }

@media (max-width: 720px) {
  .deco--hide-mobile { display: none; }
}

/* inline sparkle next to headings */
.with-sparkle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.with-sparkle__star {
  width: 28px; height: 28px;
  color: var(--hot-pink);
  flex-shrink: 0;
}
.with-sparkle__star svg { width: 100%; height: 100%; }

/* Circular price badge — flyer-style */
.tier__badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid var(--hot-pink);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  margin: -50px auto var(--s-3);
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 18px -8px rgba(239, 66, 117, 0.5);
}
.tier__badge-label,
.tier__badge-unit {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--hot-pink);
  text-transform: uppercase;
  line-height: 1.2;
}
.tier__badge-price {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 34px;
  color: var(--hot-pink);
  line-height: 1;
  margin: 4px 0;
}
.tier--featured .tier__badge {
  background: var(--hot-pink);
  border-color: var(--white);
}
.tier--featured .tier__badge-label,
.tier--featured .tier__badge-unit,
.tier--featured .tier__badge-price { color: var(--white); }

/* Scalloped section divider (SVG-based, dropped into HTML) */
.scallop-divider {
  display: block;
  width: 100%;
  height: 32px;
  margin: 0;
  color: var(--pink-soft);
}
.scallop-divider svg { display: block; width: 100%; height: 100%; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
