:root {
  --cream: #fdf7f6;
  --sand: #faeeec;
  --clay: #a53f5c;
  --clay-soft: rgba(165, 63, 92, .24);
  --sage: #dda3b1;          /* ornaments only, too light for text */
  --sage-ink: #7d4a63;
  --cocoa: #4a2f37;
  --muted: rgba(74, 47, 55, .78);
  --radius: 18px;
  --shadow: 0 10px 34px rgba(74, 47, 55, .07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--cocoa);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* soft pools of warmth instead of a flat fill */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(38rem 28rem at 12% 8%, rgba(232, 167, 184, .28), transparent 70%),
    radial-gradient(34rem 26rem at 88% 32%, rgba(221, 163, 177, .2), transparent 70%),
    radial-gradient(40rem 30rem at 50% 96%, rgba(165, 63, 92, .13), transparent 70%);
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.18; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.eyebrow {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
}

.mark { display: block; width: 3.4rem; height: 2.2rem; margin: 0 auto 1.2rem; color: var(--clay); opacity: .85; }

.bloom {
  position: absolute;
  width: 3.4rem;
  height: 3.4rem;
  color: var(--sage);
  opacity: .5;
  pointer-events: none;
}

.sprig {
  position: absolute;
  width: 5rem;
  height: 10.6rem;
  color: var(--sage);
  opacity: .34;
  pointer-events: none;
}

/* ---- nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: .8rem clamp(1.1rem, 5vw, 4rem);
  background: rgba(253, 247, 246, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clay-soft);
}

.nav-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  color: var(--clay);
  text-decoration: none;
}

.nav nav { display: flex; gap: 1.3rem; align-items: center; }
.nav nav a { font-size: .9rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav nav a:hover { color: var(--clay); }

.nav-cta {
  padding: .5rem 1.15rem;
  color: var(--cream) !important;
  background: var(--clay);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: .3rem;
  padding: .55rem;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--clay);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

@media (max-width: 47.99rem) {
  .nav-toggle { display: flex; }

  /* the links leave the header row entirely, so it stays one line tall */
  .nav nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .4rem clamp(1.1rem, 5vw, 4rem) 1rem;
    background: var(--cream);
    border-bottom: 1px solid var(--clay-soft);
    box-shadow: 0 14px 26px rgba(74, 47, 55, .1);
    display: none;
  }

  .nav.open nav { display: flex; }
  .nav nav a { padding: .8rem 0; font-size: .98rem; border-bottom: 1px solid rgba(165, 63, 92, .16); }
  .nav nav a:last-child { border-bottom: 0; }

  .nav-cta { margin-top: .8rem; text-align: center; }

  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(.5rem) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-.5rem) rotate(-45deg); }
}

/* ---- hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 10vw, 6.5rem) 1.5rem clamp(3rem, 8vw, 5rem);
  text-align: center;
}

/* a soft arch behind the hero, the shape wedding stationery tends to use */
.hero::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 50%;
  translate: -50% 0;
  width: min(31rem, 86vw);
  height: min(35rem, 96vw);
  background: linear-gradient(180deg, rgba(232, 167, 184, .34), rgba(253, 247, 246, 0) 78%);
  border-radius: 999px 999px 3rem 3rem;
}

.hero-inner { position: relative; z-index: 2; max-width: 42rem; margin: 0 auto; }

.bloom-hero-l { bottom: 12%; left: 8%; rotate: -12deg; }
.bloom-hero-r { top: 16%; right: 9%; width: 2.4rem; height: 2.4rem; opacity: .4; rotate: 14deg; }

.sprig-l { top: 8%; left: -1.2rem; transform: rotate(14deg); }
.sprig-r { top: 12%; right: -1.2rem; transform: scaleX(-1) rotate(14deg); }

.hero h1 { margin: .9rem 0 1.3rem; font-size: clamp(2.4rem, 7.5vw, 4rem); color: var(--cocoa); }
.hero h1 br { display: none; }

.lede { max-width: 34rem; margin: 0 auto; font-size: 1.06rem; color: var(--muted); }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2.2rem; }

.btn {
  display: inline-block;
  padding: .85rem 1.9rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--cream);
  background: linear-gradient(160deg, #b04563, var(--clay));
  border: 1px solid var(--clay);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(165, 63, 92, .26);
  transition: transform .2s, box-shadow .2s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(165, 63, 92, .32); }

.btn-ghost {
  color: var(--clay);
  background: transparent;
  border-color: var(--clay-soft);
  box-shadow: none;
}

/* ---- divider ---- */
.rule { display: flex; justify-content: center; padding: .6rem 1.5rem; }
.rule svg { width: min(20rem, 62%); height: 18px; color: var(--clay); opacity: .4; }

/* ---- sections ---- */
.section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 9vw, 5.5rem) 1.5rem;
  text-align: center;
}

.section > *:not(.sprig):not(.bloom) { position: relative; z-index: 2; max-width: 62rem; margin-inline: auto; }

.section-warm {
  background: var(--sand);
  border-block: 1px solid var(--clay-soft);
}

.section h2 { margin: .7rem 0 1rem; font-size: clamp(1.8rem, 4.6vw, 2.6rem); color: var(--cocoa); }
.section-lede { max-width: 34rem; margin: 0 auto 2.4rem; color: var(--muted); }

.section-dark { color: #fbeef0; background: linear-gradient(170deg, #4a2833, #2f1a22); }
.section-dark h2 { color: #fdf3f5; }
.section-dark .eyebrow { color: #e8a7b8; }
.section-dark .section-lede { color: rgba(251, 238, 240, .8); }
.section-dark .sprig { color: #d9a6b4; opacity: .22; }
.section-dark .grid li { background: rgba(253, 247, 246, .08); border-color: rgba(232, 167, 184, .3); }
.section-dark .grid h3 { color: #fdf3f5; }
.section-dark .grid p { color: rgba(251, 238, 240, .78); }

/* ---- feature grid ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.1rem;
  margin-top: 2.4rem;
  list-style: none;
  text-align: left;
}

.grid-tight { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }

.grid li {
  padding: 1.5rem 1.6rem;
  background: rgba(255, 251, 250, .92);
  border: 1px solid var(--clay-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.grid h3 { font-size: 1.2rem; color: var(--clay); }
.grid p { margin-top: .4rem; font-size: .94rem; color: var(--muted); }

/* ---- template selector ---- */
.tpls {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  justify-content: center;
}

.tpl {
  display: block;
  width: min(15rem, 68vw);
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease;
}

.tpl-phone {
  position: relative;
  padding: 1.15rem .5rem .7rem;
  background: linear-gradient(155deg, #6d4a58, #3a2029);
  border-radius: 2rem;
  box-shadow: 0 18px 40px rgba(74, 47, 55, .24), inset 0 0 0 1px rgba(255, 255, 255, .1);
  rotate: var(--tilt, 0deg);
  transition: rotate .3s ease, box-shadow .3s ease;
}

.tpl-speaker {
  position: absolute;
  top: .5rem;
  left: 50%;
  translate: -50% 0;
  width: 2.6rem;
  height: .26rem;
  background: rgba(255, 255, 255, .28);
  border-radius: 999px;
  z-index: 2;
}

/* matches the cover screenshots, so the whole gate shows uncropped */
.tpl-screen {
  position: relative;
  aspect-ratio: 1066 / 1898;
  overflow: hidden;
  background: var(--sand);
  border-radius: 1.45rem;
}

.tpl-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* a soft sheen so the screen reads as glass */
.tpl-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, .22) 0 32%, transparent 58%);
  pointer-events: none;
}

.tpl-meta { margin-top: 1.4rem; text-align: center; }
.tpl-meta h3 { font-size: 1.45rem; color: var(--clay); }
.tpl-meta p { margin-top: .1rem; font-size: .9rem; color: var(--muted); }

.tpl-link {
  display: inline-block;
  margin-top: .7rem;
  padding: .45rem 1.2rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--sage-ink);
  border: 1px solid rgba(125, 74, 99, .4);
  border-radius: 999px;
  transition: background .25s, color .25s;
}

.tpl:hover .tpl-phone { rotate: 0deg; box-shadow: 0 26px 54px rgba(74, 47, 55, .3), inset 0 0 0 1px rgba(255, 255, 255, .14); }
.tpl:hover { transform: translateY(-6px); }
.tpl:hover .tpl-link { color: var(--cream); background: var(--sage-ink); }

/* ---- service paths ---- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

.paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
  text-align: left;
}

.path {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.8rem;
  background: rgba(255, 251, 250, .94);
  border: 1px solid var(--clay-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.path-featured { border-color: var(--clay); box-shadow: 0 16px 40px rgba(165, 63, 92, .16); }

.path-icon { display: block; width: 2.7rem; height: 2rem; color: var(--clay); }
.path h3 { margin-top: .7rem; font-size: 1.4rem; color: var(--clay); }
.path-for { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--sage-ink); }
.path p { margin-top: .5rem; font-size: .95rem; color: var(--muted); }

.path-price {
  margin-top: 1rem !important;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  color: var(--cocoa) !important;
}

.path-price strong { font-size: 1.5rem; color: var(--clay); }
.path-price span { font-size: .9rem; color: var(--muted); }

.path-fit {
  margin-top: .9rem !important;
  font-size: .84rem;
  color: var(--sage-ink) !important;
}

.ticks { margin-top: .6rem; list-style: none; }

.ticks li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .94rem;
  color: var(--muted);
  line-height: 2;
}

.ticks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--sage-ink);
}

.path .btn, .path .btn-ghost { margin-top: auto; align-self: flex-start; }
.path .ticks { margin-bottom: 1.6rem; }

.path-note {
  max-width: 40rem;
  margin: 2.2rem auto 0;
  padding: 1.1rem 1.4rem;
  font-size: .96rem;
  color: var(--muted);
  background: rgba(232, 167, 184, .18);
  border: 1px solid var(--clay-soft);
  border-radius: 14px;
}

.path-note strong { display: block; color: var(--clay); }

/* ---- pricing tiers ---- */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
  text-align: left;
}

/* the three cards escalate in material as the package does: Basic is plain,
   Professional is lifted, Premium is gilded */
/* the cards escalate in material, never in geometry: identical padding keeps
   the three names and prices on one line across the row */
.tier {
  position: relative;
  padding: 1.9rem 1.7rem;
  background: transparent;
  border: 1px solid rgba(165, 63, 92, .18);
  border-radius: var(--radius);
  box-shadow: none;
}

.tier-mid {
  background: rgba(255, 251, 250, .96);
  border-color: rgba(165, 63, 92, .55);
  box-shadow: 0 12px 30px rgba(165, 63, 92, .12);
}

/* Premium inverts against its neighbours: a dark plum panel between two pale
   ones, so it reads as a different object rather than a heavier outline */
.tier-top {
  background: linear-gradient(168deg, #5c2136, #37131f);
  border-color: #37131f;
  box-shadow: inset 0 0 0 1px rgba(240, 185, 200, .28), 0 24px 54px rgba(55, 19, 31, .38);
}

.tier-top .tier-name { color: #f0b9c8; }
.tier-top .tier-price { color: #fdf3f5; }
.tier-top .tier-price span { color: rgba(251, 238, 240, .74); }
.tier-top .tier-figure { color: #fdf3f5; }
.tier-top .tier-figure span { color: rgba(251, 238, 240, .74); }
.tier-top .tier-desc { color: rgba(251, 238, 240, .82); }
.tier-top .ticks li { color: rgba(251, 238, 240, .88); }
.tier-top .ticks li::before { color: #f0b9c8; }
.tier-top .badge-top { color: #37131f; background: linear-gradient(120deg, #fdf3f5, #f0b9c8); }

/* gilded rule under the heading, clear of the badge */
.tier-top .tier-name::after {
  content: '';
  display: block;
  width: 2.6rem;
  height: 2px;
  margin-top: .5rem;
  background: linear-gradient(90deg, #f0b9c8, rgba(240, 185, 200, 0));
}

.badge-top {
  background: linear-gradient(120deg, #7d2c46, var(--clay));
  box-shadow: 0 6px 16px rgba(165, 63, 92, .3);
}

/* Premium ornament layer. Clipped to the card, and kept out of the badge's way
   by living in its own box rather than putting overflow on .tier-top. */
.tier-orn {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius);
  pointer-events: none;
}

/* an inset hairline, the way the invitation themes frame a card */
.tier-orn::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(240, 185, 200, .22);
  border-radius: calc(var(--radius) - 6px);
}

/* a soft bloom of light in the top corner */
.tier-orn::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -25%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(240, 185, 200, .22), transparent 68%);
}

.tier-top > *:not(.tier-orn):not(.tier-badge) { position: relative; z-index: 1; }

.tier-bloom, .tier-sprig { position: absolute; color: #f0b9c8; }
.tier-bloom-a { top: -1.2rem; left: -1rem; width: 5.4rem; height: 5.4rem; opacity: .16; rotate: -14deg; }
.tier-bloom-b { bottom: 1.4rem; left: 1rem; width: 2.6rem; height: 2.6rem; opacity: .2; rotate: -8deg; }
.tier-sprig { bottom: -2.4rem; right: -1.2rem; width: 4.6rem; height: 9.8rem; opacity: .14; rotate: 16deg; }

/* the dark section's Premium card is pale, so its ornaments invert too */
.tiers-dark .tier-orn::after { border-color: rgba(165, 63, 92, .2); }
.tiers-dark .tier-orn::before { background: radial-gradient(circle, rgba(165, 63, 92, .12), transparent 68%); }
.tiers-dark .tier-bloom, .tiers-dark .tier-sprig { color: var(--clay); }
.tiers-dark .tier-bloom-a { opacity: .12; }
.tiers-dark .tier-bloom-b { opacity: .14; }
.tiers-dark .tier-sprig { opacity: .1; }

.tier-badge {
  position: absolute;
  z-index: 2;
  top: -.7rem;
  left: 1.6rem;
  padding: .25rem .8rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--clay);
  border-radius: 999px;
}

/* two classes, so this wins over .tier-badge regardless of source order */
.tier-badge.badge-top { left: auto; right: 1.6rem; }

/* gold is a gradient with its own dark stop and a darker outline, so the same
   crown reads on the plum card and the cream one */
.tier-crown {
  display: block;
  width: 2.5rem;
  height: 1.65rem;
  margin-bottom: .65rem;
  filter: drop-shadow(0 0 6px rgba(255, 217, 61, .45)) drop-shadow(0 2px 3px rgba(50, 28, 6, .5));
}

.tiers-dark .tier-crown { filter: drop-shadow(0 0 5px rgba(240, 185, 11, .3)) drop-shadow(0 2px 3px rgba(120, 86, 20, .3)); }

.tier-name {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay);
}

.tier-price {
  margin-top: .3rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--cocoa);
}

.tier-price span { font-size: 1.1rem; color: var(--muted); }

.tier-desc { margin-top: .55rem; font-size: .92rem; color: var(--muted); }
.tier .ticks { margin-top: 1rem; }

.tiers-dark .tier { background: transparent; border-color: rgba(232, 167, 184, .22); box-shadow: none; }

.tiers-dark .tier-mid {
  background: rgba(253, 247, 246, .1);
  border-color: rgba(232, 167, 184, .55);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .26);
}

/* and inverts the other way inside the dark section */
.tiers-dark .tier-top {
  background: linear-gradient(168deg, #fdf7f6, #f8e7e8);
  border-color: #fdf7f6;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .42);
}

.tiers-dark .tier-top .tier-name { color: var(--clay); }
.tiers-dark .tier-top .tier-figure { color: var(--cocoa); }
.tiers-dark .tier-top .tier-figure span { color: var(--muted); }
.tiers-dark .tier-top .tier-desc { color: var(--muted); }
.tiers-dark .tier-top .ticks li { color: var(--muted); }
.tiers-dark .tier-top .ticks li::before { color: var(--sage-ink); }
.tiers-dark .tier-top .badge-top { color: var(--cream); background: linear-gradient(120deg, #7d2c46, var(--clay)); }

.tiers-dark .tier-top .tier-name::after { background: linear-gradient(90deg, var(--clay), rgba(165, 63, 92, 0)); }

/* the premium card tints its own ground, so its label lifts to stay legible */
.tiers-dark .tier-name { color: #e8a7b8; }
.tiers-dark .tier-desc, .tiers-dark .ticks li { color: rgba(251, 238, 240, .8); }
.tiers-dark .ticks li::before { color: #e8a7b8; }
.tiers-dark .tier-badge { color: #2f1a22; background: #e8a7b8; }
.tiers-dark .badge-top { color: #2f1a22; background: linear-gradient(120deg, #f3c3ce, #e8a7b8); }

.path-quote {
  font-family: 'Nunito', system-ui, sans-serif !important;
  font-size: .95rem !important;
  font-style: italic;
  color: var(--sage-ink) !important;
}

.btn-light {
  color: #46242f;
  background: #fbeef0;
  border-color: #fbeef0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
}

.btn-light:hover { box-shadow: 0 14px 30px rgba(0, 0, 0, .28); }

.tiers-dark .tier-name { margin-bottom: .2rem; }

.tier-figure {
  margin-top: .4rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--cocoa);
}

.tier-figure span { font-size: .95rem; font-weight: 400; color: var(--muted); }
.tiers-dark .tier-figure { color: #fdf3f5; }
.tiers-dark .tier-figure span { color: rgba(251, 238, 240, .74); }

/* the section rule already caps width, so constrain the note rather than fight it */

/* ---- comparison tables ---- */
.table-wrap {
  margin-top: 2.4rem;
  overflow-x: auto;
  border: 1px solid var(--clay-soft);
  border-radius: var(--radius);
  background: rgba(255, 251, 250, .94);
}

.cmp { width: 100%; border-collapse: collapse; min-width: 34rem; text-align: left; }

.cmp th, .cmp td { padding: .8rem 1rem; font-size: .92rem; }

.cmp thead th {
  font-family: 'Fraunces', Georgia, serif;
  font-size: .95rem;
  color: var(--clay);
  background: rgba(232, 167, 184, .18);
  white-space: nowrap;
}

.cmp tbody th { font-weight: 500; color: var(--cocoa); }
.cmp tbody td { color: var(--muted); text-align: center; }
.cmp tbody tr + tr th, .cmp tbody tr + tr td { border-top: 1px solid rgba(165, 63, 92, .14); }
.cmp .yes { color: var(--sage-ink); font-weight: 600; }
.cmp .no { color: rgba(74, 47, 55, .7); }

.fineprint { margin-top: 1rem; font-size: .86rem; font-style: italic; color: var(--muted); }

.sprig-dark-l { bottom: 4%; left: -1.5rem; transform: rotate(-10deg); }
.sprig-dark-r { top: 6%; right: -1.5rem; transform: scaleX(-1) rotate(-10deg); }

/* the bonus row is flagged with a ribbon; the tick still carries the meaning,
   so the ribbon is decoration rather than the only signal */
.row-bonus .yes { position: relative; padding-block: 1.1rem; }

/* the whole ribbon, fitted rather than covered, so nothing is cropped */
.ribbon {
  position: absolute;
  top: 50%;
  left: 66%;
  max-width: 48%;
  max-height: 100%;
  width: auto;
  height: auto;
  translate: -50% -50%;
  pointer-events: none;
}

.tick { position: relative; z-index: 2; }

.panel-dark .row-bonus .tick { color: #fff2f4; }
.row-bonus th { font-weight: 600; }

/* premium invitation included — gold, to read as a bonus rather than a note */
.included {
  position: relative;
  display: flex;
  gap: 1.4rem;
  align-items: center;
  max-width: 40rem;
  margin: 2.6rem auto 0;
  padding: 1.5rem 1.8rem;
  overflow: hidden;
  text-align: left;
  background: linear-gradient(140deg, rgba(240, 207, 122, .16), rgba(253, 247, 246, .05) 62%);
  border: 1px solid rgba(240, 207, 122, .5);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.included-glow {
  position: absolute;
  top: -55%;
  left: -8%;
  width: 46%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(240, 207, 122, .22), transparent 70%);
  pointer-events: none;
}

.included-icon, .included-body { position: relative; z-index: 1; }

.included-icon {
  flex: none;
  width: 3.9rem;
  height: 3.9rem;
  color: #f0cf7a;
  filter: drop-shadow(0 2px 4px rgba(60, 34, 8, .5));
}

.included-badge {
  display: inline-block;
  margin-bottom: .35rem;
  padding: .16rem .7rem;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #3a2606;
  background: linear-gradient(120deg, #f7e0a4, #e0b558);
  border-radius: 999px;
}

.included h3 { font-size: 1.34rem; color: #f7e6bd; }
.included p { margin-top: .35rem; font-size: .95rem; color: rgba(251, 238, 240, .86); }

@media (max-width: 32rem) {
  .included { flex-direction: column; align-items: flex-start; gap: .8rem; }
}

/* ---- action row + collapsible panels ---- */
.acts {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-top: 2.4rem;
}

.acts .btn { display: inline-flex; align-items: center; gap: .5rem; }

.acts [data-panel]::after {
  content: '+';
  font-size: 1.05rem;
  line-height: 1;
  transition: transform .2s;
}

.acts [data-panel][aria-expanded="true"]::after { transform: rotate(45deg); }

.btn-outline-light {
  color: #fbeef0;
  background: transparent;
  border-color: rgba(251, 238, 240, .5);
  box-shadow: none;
}

.btn-outline-light:hover { border-color: #fbeef0; box-shadow: none; }

.acts-note {
  max-width: 28rem;
  margin: .9rem auto 0;
  font-size: .92rem;
  color: var(--muted);
}

.section-dark .acts-note { color: rgba(251, 238, 240, .8); }

.panel { margin-top: 1.6rem; }
.panel[hidden] { display: none; }

.panel-dark .table-wrap { background: rgba(253, 247, 246, .06); border-color: rgba(232, 167, 184, .28); }
.panel-dark .cmp thead th { color: #f6d8e0; background: rgba(232, 167, 184, .16); }
.panel-dark .cmp tbody th { color: #fdf3f5; }
.panel-dark .cmp tbody td { color: rgba(251, 238, 240, .82); }
.panel-dark .cmp tbody tr + tr th, .panel-dark .cmp tbody tr + tr td { border-top-color: rgba(232, 167, 184, .18); }
.panel-dark .cmp .yes { color: #e8a7b8; }
.panel-dark .cmp .no { color: rgba(251, 238, 240, .68); }

.ticks-wide {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 2rem;
  justify-content: center;
  max-width: 46rem;
  margin: 2.2rem auto 0;
}

.ticks-wide li { color: rgba(251, 238, 240, .84); }
.ticks-wide li::before { color: #e8a7b8; }

.bloom-price { top: 8%; right: 7%; rotate: 12deg; }

/* ---- faq ---- */
.faq { max-width: 42rem; margin: 0 auto; text-align: left; }

.faq details {
  padding: 1.05rem 1.4rem;
  margin-bottom: .7rem;
  background: rgba(255, 251, 250, .95);
  border: 1px solid var(--clay-soft);
  border-radius: 14px;
}

.faq summary {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--cocoa);
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  flex: none;
  font-size: 1.3rem;
  color: var(--clay);
  transition: transform .2s;
}

.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: .55rem; font-size: .95rem; color: var(--muted); }

/* ---- cta ---- */
.section-cta { background: var(--sand); border-block: 1px solid var(--clay-soft); }
.bloom-cta-l { top: 18%; left: 11%; rotate: -10deg; }
.bloom-cta-r { bottom: 16%; right: 12%; width: 2.6rem; height: 2.6rem; opacity: .42; rotate: 16deg; }
.sprig-cta-l { bottom: -2rem; left: 4%; transform: rotate(-16deg); }
.sprig-cta-r { bottom: -2rem; right: 4%; transform: scaleX(-1) rotate(-16deg); }

/* ---- footer ---- */
.foot { padding: 2.6rem 1.5rem; text-align: center; font-size: .88rem; color: var(--muted); }
.foot-brand { font-family: 'Fraunces', Georgia, serif; font-size: 1.5rem; font-weight: 600; color: var(--clay); }

/* ---- reveal ---- */
.reveal > *:not(.sprig):not(.bloom) { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in > *:not(.sprig):not(.bloom) { opacity: 1; transform: none; }

@media (min-width: 40rem) {
  .hero h1 br { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .tpl, .tpl-phone, .tpl-link, .faq summary::after, .nav-toggle span { transition: none; }
  .btn:hover, .tpl:hover { transform: none; }
  .tpl-phone { rotate: 0deg; }
  .reveal > *:not(.sprig):not(.bloom) { opacity: 1; transform: none; transition: none; }
}
