/* TheScoopaholic — brand system
   shell #FFF6F7 · blush #FADDE3 · rose #E4899F · deep #B3556E · gold #C9A07C · ink #2E2226 */

:root {
  --shell: #FFF6F7;
  --blush: #FADDE3;
  --blush-soft: #FDECEF;
  --rose: #E4899F;
  --deep: #B3556E;
  --gold: #C9A07C;
  --gold-soft: #E7CDB6;
  --ink: #2E2226;
  --ink-soft: #6E5A60;
  --white: #FFFFFF;

  --shadow-soft: 0 18px 44px -28px rgba(160, 92, 112, .55);
  --shadow-lift: 0 26px 60px -30px rgba(160, 92, 112, .7);
  --radius: 22px;

  --font-body: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: "Sacramento", "Snell Roundhand", "Brush Script MT", cursive;

  --wrap: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── type ─────────────────────────────────────────── */

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--deep);
  margin: 0 0 14px;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--deep);
  line-height: 1;
}

h2.section-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 300;
  letter-spacing: .01em;
  margin: 0 0 10px;
}

.lede {
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}

/* ── hairline divider with a heart ─────────────────── */

.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px auto 0;
  max-width: 260px;
  color: var(--rose);
}
.rule::before, .rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

/* ── header ───────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 246, 247, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 160, 124, .22);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold-soft);
}
.brand span {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--deep);
  line-height: 1.1;
  padding-bottom: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav a:hover { color: var(--deep); }
@media (max-width: 760px) { .nav .hide-sm { display: none; } }
@media (max-width: 480px) {
  .brand span { font-size: 23px; }
  .brand img { width: 34px; height: 34px; }
  .site-header .bar { height: 60px; }
}

/* ── buttons ──────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 100px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--deep));
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--deep);
  box-shadow: inset 0 0 0 1px var(--gold-soft);
}
.btn-ghost:hover { background: var(--blush-soft); }
.btn-block { width: 100%; }
.btn svg { flex: none; }

/* ── hero ─────────────────────────────────────────── */

.hero {
  position: relative;
  text-align: center;
  padding: 68px 0 76px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% 50% auto;
  width: 780px;
  height: 780px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(250, 221, 227, .95) 0%, rgba(255, 246, 247, 0) 66%);
  pointer-events: none;
}
.hero > * { position: relative; }

.hero-mark {
  width: 168px;
  height: 168px;
  margin: 0 auto 26px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold-soft), 0 24px 50px -26px rgba(160, 92, 112, .6);
  animation: rise .8s cubic-bezier(.2, .7, .3, 1) both;
}
.hero h1 {
  font-size: clamp(34px, 7.4vw, 60px);
  font-weight: 300;
  letter-spacing: .015em;
  line-height: 1.14;
  margin: 0 0 6px;
  animation: rise .8s .08s cubic-bezier(.2, .7, .3, 1) both;
}
.hero h1 em {
  display: block;
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.5em;
  color: var(--deep);
  line-height: 1.05;
  padding: 4px 0 6px;
}
.hero p {
  max-width: 46ch;
  margin: 18px auto 0;
  color: var(--ink-soft);
  animation: rise .8s .16s cubic-bezier(.2, .7, .3, 1) both;
}
.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
  animation: rise .8s .24s cubic-bezier(.2, .7, .3, 1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* ── the signature: drifting pearls ───────────────── */

.pearls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.pearl {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff, var(--blush) 52%, #F0BCC8 100%);
  box-shadow: 0 2px 6px rgba(180, 120, 140, .22);
  opacity: 0;
  animation: drift 13s ease-in-out infinite;
}
@keyframes drift {
  0%   { opacity: 0; transform: translateY(14px) scale(.85); }
  18%  { opacity: .85; }
  70%  { opacity: .7; }
  100% { opacity: 0; transform: translateY(-58px) scale(1.05); }
}

/* ── sections ─────────────────────────────────────── */

.section { padding: 74px 0; }
.section-head { text-align: center; margin-bottom: 46px; }
.band { background: var(--blush-soft); }

/* ── about strip ──────────────────────────────────── */

.about { text-align: center; padding: 8px 0 66px; }
.about p {
  max-width: 60ch;
  margin: 0 auto;
  font-size: clamp(17px, 2.2vw, 19px);
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ── scoop cards ──────────────────────────────────── */

.scoops {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.scoop {
  position: relative;
  background: var(--white);
  border-radius: var(--radius) var(--radius) 8px 8px;
  padding: 34px 26px 30px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.scoop:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

/* scalloped bottom edge — the paper-tag cue */
.scoop::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -9px;
  height: 10px;
  background: radial-gradient(circle at 9px 0, transparent 9px, var(--white) 9.5px);
  background-size: 18px 10px;
  background-repeat: repeat-x;
  filter: drop-shadow(0 6px 10px rgba(160, 92, 112, .16));
}

.scoop .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--blush-soft);
  border: 1px solid var(--gold-soft);
  padding: 5px 11px;
  border-radius: 100px;
}

.scoop h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 4px;
  letter-spacing: .01em;
}
.scoop .price {
  font-family: var(--font-script);
  font-size: 48px;
  color: var(--deep);
  line-height: 1.1;
  margin: 10px 0 2px;
}
.scoop .blurb {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 10px 0 4px;
}
.scoop .details {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .04em;
  margin: 0 0 22px;
}
.scoop .spacer { flex: 1 1 auto; min-height: 14px; }

/* the scoop icon */
.scoop-icon { margin: 0 auto 2px; display: block; }

/* a real photo, when she's uploaded one */
.scoop.has-photo { padding-top: 0; }
.scoop-photo {
  margin: 0 -26px 18px;
  aspect-ratio: 4 / 3;
  background: var(--blush-soft);
  overflow: hidden;
  /* match the card's own top corners, without clipping the scalloped foot */
  border-radius: var(--radius) var(--radius) 0 0;
}
.scoop-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.scoop:hover .scoop-photo img { transform: scale(1.04); }
.scoop.has-photo .badge { top: 14px; right: 14px; background: rgba(255,255,255,.92); }

/* ── steps ────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 4px 34px;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(201, 160, 124, .28);
}
.step .n {
  counter-increment: step;
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--gold-soft);
  display: grid;
  place-items: center;
  font-size: 13px;
  color: var(--deep);
}
.step .n::before { content: counter(step, decimal-leading-zero); }
.step h4 { margin: 4px 0 3px; font-size: 16.5px; font-weight: 500; }
.step p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ── delivery ─────────────────────────────────────── */

.delivery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.deliver-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.deliver-card .top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.deliver-card h4 { margin: 0; font-size: 17px; font-weight: 500; }
.deliver-card .cost {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--deep);
  white-space: nowrap;
}
.deliver-card p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ── closing call ─────────────────────────────────── */

.closing {
  text-align: center;
  padding: 84px 0 90px;
  background:
    radial-gradient(circle at 50% 0%, rgba(250, 221, 227, .9), transparent 62%),
    var(--shell);
}
.closing .script { font-size: clamp(40px, 9vw, 72px); }
.closing p { color: var(--ink-soft); margin: 6px auto 26px; max-width: 42ch; }

/* ── footer ───────────────────────────────────────── */

.site-footer {
  border-top: 1px solid rgba(201, 160, 124, .28);
  padding: 34px 0;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.site-footer .bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: space-between;
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--deep); }
.site-footer .quiet { opacity: .5; font-size: 12px; }

/* ── float whatsapp ───────────────────────────────── */

.float-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--deep));
  box-shadow: var(--shadow-lift);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.float-wa.show { opacity: 1; transform: none; pointer-events: auto; }

/* ── reveal on scroll ─────────────────────────────── */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 2px solid var(--deep);
  outline-offset: 3px;
  border-radius: 6px;
}


/* ── legal documents (terms, privacy) ─────────────── */

.doc { padding: 56px 0 80px; }
.doc .wrap { max-width: 760px; }

.doc h1 {
  font-size: clamp(30px, 5.5vw, 44px);
  font-weight: 300;
  letter-spacing: .01em;
  margin: 0 0 6px;
}
.doc-meta {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 40px;
}
.doc h2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .01em;
  margin: 46px 0 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 160, 124, .3);
}
.doc p { margin: 0 0 15px; color: var(--ink-soft); }
.doc strong { color: var(--ink); font-weight: 500; }
.doc a { color: var(--deep); text-decoration: underline; text-underline-offset: 3px; }

.doc-bullets, .doc-steps { margin: 0 0 15px; padding-left: 22px; color: var(--ink-soft); }
.doc-bullets li, .doc-steps li { margin-bottom: 8px; }
.doc-steps { padding-left: 20px; }

.doc-list {
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: minmax(150px, auto) 1fr;
  gap: 1px;
  background: rgba(201, 160, 124, .28);
  border: 1px solid rgba(201, 160, 124, .28);
  border-radius: 14px;
  overflow: hidden;
}
.doc-list dt {
  background: var(--blush-soft);
  padding: 12px 16px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--deep);
}
.doc-list dd {
  background: var(--white);
  margin: 0;
  padding: 12px 16px;
  color: var(--ink);
  overflow-wrap: anywhere;
}
@media (max-width: 520px) {
  .doc-list { grid-template-columns: 1fr; }
  .doc-list dt { padding-bottom: 4px; }
  .doc-list dd { padding-top: 6px; }
}

.doc-callout {
  background: var(--blush-soft);
  border-left: 3px solid var(--rose);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  margin: 18px 0;
}

.doc-warning {
  background: #FDEEF1;
  border: 1px solid #D98FA4;
  border-radius: 14px;
  padding: 16px 18px;
  margin: 0 0 34px;
  color: #8C4257;
  font-size: 15px;
  line-height: 1.6;
}

.foot-links a { text-decoration: none; }
.foot-links a:hover { color: var(--deep); }
