/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --bg: #fbf3f1;
  --bg-soft: #f7e8ec;
  --bg-blue: #e7f0f7;
  --ink: #2d3a55;
  --ink-soft: #5e6685;
  --muted: #9aa0b8;
  --pink: #f0a7b8;
  --pink-deep: #d98aa1;
  --blue: #a8c8df;
  --blue-deep: #7ba6c8;
  --sun: #f5d488;
  --rule: rgba(45, 58, 85, 0.15);
  --field-border: rgba(45, 58, 85, 0.22);

  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Outfit", "Manrope", system-ui, -apple-system, sans-serif;
  --script: "Caveat", cursive;
  --marker: "Permanent Marker", "Caveat", cursive;

  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(56px, 10vw, 140px);
  --maxw: 1340px;

  --radius: 12px;
  --shadow-card: 0 8px 24px rgba(45, 58, 85, 0.08);
  --shadow-lift: 0 16px 40px rgba(217, 138, 161, 0.25);
  --shadow-btn: 0 8px 22px rgba(45, 58, 85, 0.25);
}

/* ─── Reset / base ────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

ul,
ol { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.015em; }
p { margin: 0; }

.nowrap { white-space: nowrap; }

/* ─── Background blobs ────────────────────────────────────── */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.blob-1 { top: -200px; left: -160px; width: 600px; height: 600px; background: var(--pink); opacity: 0.18; }
.blob-2 { top: 100px; right: -180px; width: 560px; height: 560px; background: var(--blue); opacity: 0.28; }
.blob-3 { bottom: -240px; left: 30%; width: 640px; height: 640px; background: var(--pink); opacity: 0.12; filter: blur(100px); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { box-shadow: 0 10px 26px rgba(45, 58, 85, 0.3); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-large {
  padding: 17px 30px;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) {
  .btn-large { padding: 20px 36px; font-size: 16px; }
}

/* ─── Nav ─────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo { flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: clamp(20px, 4.8vw, 26px);
  color: var(--ink);
}
.brand-script {
  font-family: var(--script);
  font-size: clamp(14px, 3.8vw, 17px);
  color: var(--pink-deep);
  margin-top: 4px;
}
.nav-links {
  display: none;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-cta { padding: 10px 18px; font-size: 12px; }
@media (min-width: 640px) { .nav-cta { padding: 11px 22px; font-size: 13px; } }

/* hide script subline on the smallest phones */
@media (max-width: 380px) { .brand-script { display: none; } }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 56px);
  padding: clamp(24px, 5vw, 60px) var(--gutter) clamp(64px, 10vw, 120px);
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) { .hero { grid-template-columns: 1.05fr 1fr; } }

.spots-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--script);
  font-size: clamp(20px, 4vw, 26px);
  color: var(--pink-deep);
  transform: rotate(-3deg);
  min-height: 28px;
}
.spots-badge::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--pink-deep);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transform: rotate(8deg);
}

.hero-title {
  font-size: clamp(44px, 11vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: pretty;
}
.hero-title em {
  color: var(--blue-deep);
  font-style: italic;
}
.squiggle { position: relative; display: inline-block; }
.squiggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  height: 0.14em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2,8 Q30,1 60,8 T120,8 T180,8 L198,7' stroke='%23f0a7b8' stroke-width='5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hero-sub {
  font-size: clamp(16px, 3.2vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: clamp(20px, 3vw, 32px);
  max-width: 500px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(24px, 4vw, 40px);
  flex-wrap: wrap;
}
.script-aside {
  font-family: var(--script);
  font-size: clamp(20px, 4vw, 26px);
  color: var(--blue-deep);
  transform: rotate(-4deg);
  display: inline-block;
}
.meta-row {
  display: flex;
  gap: 20px 28px;
  margin-top: clamp(28px, 4vw, 44px);
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-row li { display: flex; align-items: center; gap: 8px; }
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.dot-pink { background: var(--pink); box-shadow: 0 0 0 3px rgba(240, 167, 184, 0.25); }
.dot-blue { background: var(--blue); box-shadow: 0 0 0 3px rgba(168, 200, 223, 0.25); }

/* Hero collage */
.hero-collage {
  position: relative;
  min-height: 280px;
  margin-top: 8px;
}
@media (min-width: 640px) { .hero-collage { min-height: 420px; } }
@media (min-width: 1024px) { .hero-collage { min-height: 580px; margin-top: 0; } }

.hi-friend {
  display: none;
  position: absolute;
  font-family: var(--script);
  font-size: clamp(22px, 4vw, 30px);
  color: var(--pink-deep);
  transform: rotate(-6deg);
  z-index: 5;
}
@media (min-width: 640px) {
  .hi-friend { display: block; top: -10px; right: 4%; }
}
@media (min-width: 1024px) {
  .hi-friend { top: -52px; right: 38%; left: auto; }
}

.collage-back-card {
  position: absolute;
  border-radius: 8px;
  display: none;
}
@media (min-width: 640px) {
  .collage-back-card { display: block; }
  .collage-back-pink { top: 8%; left: -4%; width: 94%; height: 78%; background: var(--bg-soft); transform: rotate(-3deg); }
  .collage-back-blue { top: 14%; right: -6%; width: 70%; height: 60%; background: var(--bg-blue); transform: rotate(4deg); }
}

.collage-banner { position: absolute; }
.collage-banner-main {
  top: 30px;
  left: 4%;
  width: 90%;
  transform: rotate(-2deg);
  z-index: 3;
}
@media (min-width: 640px) {
  .collage-banner-main { top: 50px; left: 4%; width: 82%; }
}
.collage-banner-second {
  display: none;
  bottom: 20px;
  right: 0;
  width: 60%;
  transform: rotate(3deg);
  z-index: 4;
}
@media (min-width: 640px) { .collage-banner-second { display: block; } }

.taped { position: relative; display: inline-block; width: 100%; }
.taped::before,
.taped::after {
  content: "";
  position: absolute;
  top: -12px;
  width: 70px;
  height: 22px;
  background: var(--pink);
  opacity: 0.85;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  z-index: 2;
}
.taped::before { left: 12%; transform: rotate(-4deg); }
.taped::after { right: 12%; transform: rotate(3deg); }
.taped[data-tape="blue"]::before,
.taped[data-tape="blue"]::after { background: var(--blue); }

.sticky-note {
  position: absolute;
  top: 0;
  right: -2%;
  background: var(--sun);
  padding: 12px 16px;
  width: 140px;
  font-family: var(--script);
  font-size: clamp(16px, 3.5vw, 22px);
  color: #5a4a2a;
  line-height: 1.15;
  transform: rotate(8deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 5;
}
@media (min-width: 640px) { .sticky-note { width: 160px; padding: 14px 18px; } }

.heart { position: absolute; z-index: 5; pointer-events: none; }
.heart-pink { bottom: 30px; left: -10px; width: 32px; height: 32px; }
.heart-blue { top: 200px; right: -8px; width: 20px; height: 20px; transform: rotate(15deg); display: none; }
@media (min-width: 640px) {
  .heart-pink { bottom: 40px; left: -20px; width: 40px; height: 40px; }
  .heart-blue { display: block; top: 240px; right: -10px; width: 22px; height: 22px; }
}

/* ─── Section heads ───────────────────────────────────────── */
.section-head {
  text-align: center;
  margin: 0 auto clamp(40px, 6vw, 64px);
  max-width: 720px;
  padding: 0 var(--gutter);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-deep);
  font-weight: 700;
  margin: 0;
}
.script-eyebrow {
  font-family: var(--script);
  font-size: clamp(24px, 4.5vw, 32px);
  color: var(--pink-deep);
  transform: rotate(-2deg);
  display: inline-block;
  margin: 0 0 4px;
}
.section-head h2 {
  font-size: clamp(36px, 7vw, 64px);
  line-height: 1.02;
  margin: 8px 0 0;
}
.section-sub {
  font-size: clamp(15px, 2.4vw, 18px);
  color: var(--ink-soft);
  margin: 16px auto 0;
  max-width: 560px;
  line-height: 1.55;
}

/* ─── Stats ───────────────────────────────────────────────── */
.stats {
  padding: 0 var(--gutter) clamp(56px, 8vw, 96px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); padding: 36px 0; } }
.stats-grid li { font-weight: 300; }
.stats-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stats-grid span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 400;
}

/* ─── About ───────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 80px);
  padding: 0 var(--gutter) var(--section-pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 1024px) { .about { grid-template-columns: 1fr 1.4fr; } }
.about-head h2 {
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.02;
  margin-top: 10px;
}
.about-head em { color: var(--pink-deep); font-style: italic; }
.wave-rule { margin-top: 24px; }
.about-body { padding-top: 4px; }
.about-body p {
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.about-body blockquote {
  border-left: 3px solid var(--pink-deep);
  padding-left: 22px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(20px, 3.4vw, 28px);
  line-height: 1.3;
  font-style: italic;
  color: var(--ink);
}

/* ─── Gallery ─────────────────────────────────────────────── */
.gallery {
  background: var(--bg-blue);
  padding: var(--section-pad) 0;
  position: relative;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-card {
  background: #fff;
  padding: 20px 20px 14px;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(58, 52, 88, 0.08);
  position: relative;
}
@media (min-width: 640px) { .gallery-card { padding: 24px 24px 18px; } }

.gallery-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 40%;
  width: 60px;
  height: 20px;
  background: var(--pink);
  opacity: 0.85;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: rotate(-3deg);
  z-index: 2;
}
.gallery-card[data-tape="blue"]::before { background: var(--blue); }
.gallery-card[data-tape="none"]::before { display: none; }

.gallery-card-label {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-family: var(--script);
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}

.more-on-insta {
  text-align: center;
  margin-top: 48px;
  font-family: var(--script);
  font-size: 24px;
  color: var(--pink-deep);
}

/* ─── Pricing ─────────────────────────────────────────────── */
.pricing {
  background: var(--bg-soft);
  color: var(--ink);
  padding: var(--section-pad) var(--gutter);
  position: relative;
  overflow: hidden;
}
.pricing::before,
.pricing::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.pricing::before { top: -120px; left: -120px; width: 360px; height: 360px; background: var(--pink); opacity: 0.25; }
.pricing::after { bottom: -140px; right: -120px; width: 400px; height: 400px; background: var(--blue); opacity: 0.28; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.price-card {
  padding: 36px 24px 28px;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-card);
  position: relative;
}
.price-card-featured {
  border: 2px solid var(--pink);
  box-shadow: var(--shadow-lift);
}
@media (min-width: 1024px) {
  .price-card-featured { transform: translateY(-12px); }
}
.most-loved {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  font-family: var(--script);
  font-size: 20px;
  color: var(--pink-deep);
  background: var(--bg-soft);
  padding: 2px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-size {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-weight: 700;
}
.price-card-featured .price-size { color: var(--pink-deep); }
.price-amount {
  display: block;
  font-family: var(--serif);
  font-size: clamp(52px, 9vw, 68px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 14px 0 4px;
}
.price-dims {
  display: block;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.price-bar {
  display: block;
  margin-top: 24px;
  height: 5px;
  background: var(--blue);
  border-radius: 3px;
  transform: scaleX(var(--scale, 0.5));
  transform-origin: left;
}
.price-bar-pink { background: var(--pink); }

.pricing-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 40px auto 0;
  max-width: 1180px;
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
}
@media (min-width: 640px) { .pricing-meta { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.pricing-meta > div {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.pricing-meta dt { font-weight: 600; color: var(--ink); margin: 0; }
.pricing-meta dd { margin: 0; color: var(--pink-deep); font-weight: 500; }

.pricing-ps {
  text-align: center;
  margin: 36px auto 0;
  font-family: var(--script);
  font-size: clamp(20px, 3.5vw, 26px);
  color: var(--blue-deep);
  position: relative;
}

/* ─── Process ─────────────────────────────────────────────── */
.process {
  padding: var(--section-pad) var(--gutter);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  border-top: 1px solid var(--ink);
  padding-top: 20px;
  position: relative;
}
.step-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.step-num {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 56px);
  line-height: 1;
}
.step-num-pink { color: var(--pink-deep); }
.step-num-blue { color: var(--blue-deep); }
.step-aside {
  font-family: var(--script);
  font-size: clamp(18px, 3vw, 22px);
  transform: rotate(-3deg);
}
.step-aside-pink { color: var(--pink-deep); }
.step-aside-blue { color: var(--blue-deep); }
.process-step h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 400;
  color: var(--ink);
  margin: 14px 0 0;
  line-height: 1.2;
}
.process-step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 10px;
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding: var(--section-pad) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 1024px) { .faq { grid-template-columns: 1fr 1.6fr; } }

.faq-head h2 {
  font-size: clamp(34px, 6vw, 60px);
  margin-top: 10px;
}
.script-aside-static {
  font-family: var(--script);
  font-size: clamp(20px, 3.4vw, 24px);
  color: var(--blue-deep);
  margin-top: 18px;
  transform: rotate(-2deg);
  display: inline-block;
}

.faq-list details {
  border-top: 1px solid var(--rule);
  padding: 18px 0;
}
.faq-list details:first-child { border-top: 1px solid var(--ink); }
.faq-list details:last-child { border-bottom: 1px solid var(--ink); }
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(18px, 3vw, 24px);
  color: var(--ink);
  min-height: 44px;
  padding: 4px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-toggle {
  color: var(--pink-deep);
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  display: inline-block;
}
.faq-list details[open] .faq-toggle { transform: rotate(45deg); }
.faq-list details p {
  margin-top: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 640px;
}

/* ─── CTA ─────────────────────────────────────────────────── */
.cta {
  padding: 0 var(--gutter) var(--section-pad);
}
.cta-card {
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  color: var(--ink);
  padding: clamp(48px, 9vw, 120px) clamp(24px, 6vw, 64px);
  border-radius: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(217, 138, 161, 0.25);
}
.cta-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  opacity: 0.3;
  display: block;
}
.cta-eyebrow {
  font-size: clamp(26px, 5vw, 38px);
  color: var(--ink);
  margin-bottom: 8px;
}
.cta h2 {
  font-size: clamp(42px, 9vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 8px auto 0;
  max-width: 900px;
  text-wrap: balance;
  position: relative;
}
.cta-sub {
  font-size: clamp(16px, 2.6vw, 21px);
  color: var(--ink);
  opacity: 0.8;
  margin: 22px auto 0;
  max-width: 600px;
  line-height: 1.5;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: clamp(32px, 5vw, 48px);
  position: relative;
  z-index: 1;
}
.cta-or { font-size: 15px; color: var(--ink); opacity: 0.85; }
.cta-or a { font-weight: 600; text-underline-offset: 3px; }

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 56px var(--gutter) 32px;
  border-top: 1px solid var(--rule);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
@media (min-width: 640px) { .footer { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; } }

.footer-brand p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col ul { display: grid; gap: 8px; }
.footer-col li, .footer-col a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
}
.footer-col a:hover { color: var(--ink); }
.footer-fineprint {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}
.footer-fineprint .script {
  font-family: var(--script);
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
}
@media (min-width: 640px) {
  .footer-fineprint { flex-direction: row; justify-content: space-between; }
}

/* ─── Order modal (bottom sheet on phone, centered on desktop) ─ */
.order-modal {
  border: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  width: 100vw;
  height: 100dvh;
  max-width: 100vw;
  max-height: 100dvh;
  inset: 0;
  margin: auto;
  overflow: hidden;
}
.order-modal::backdrop {
  background: rgba(45, 58, 85, 0.55);
  backdrop-filter: blur(8px);
}
.order-modal[open] {
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) {
  .order-modal {
    width: min(720px, calc(100vw - 32px));
    height: auto;
    max-height: calc(100dvh - 64px);
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  }
}

.order-modal form:not([hidden]),
.order-modal .modal-success:not([hidden]) {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.modal-head {
  padding: 24px 22px 18px;
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(135deg, rgba(240, 167, 184, 0.13) 0%, rgba(168, 200, 223, 0.13) 100%);
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 640px) { .modal-head { padding: 28px 36px 22px; } }
.modal-head h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 5vw, 36px);
  margin: 4px 0 0;
  letter-spacing: -0.015em;
}
.modal-head .script-eyebrow { font-size: clamp(20px, 4vw, 26px); margin-bottom: 0; }
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.9); }

.modal-body {
  padding: 24px 22px 32px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 640px) { .modal-body { padding: 32px 36px 36px; } }

.form-section {
  border: 0;
  padding: 0;
  margin: 0 0 28px;
}
.form-section legend {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 0;
}
.form-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.form-section legend > span:last-child {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}

.form-rows { display: flex; flex-direction: column; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; gap: 16px; } }
.field-row-address { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 480px) {
  .field-row-address { grid-template-columns: minmax(0, 2fr) minmax(0, 0.7fr) minmax(0, 1fr); gap: 12px; }
}

.field { display: flex; flex-direction: column; gap: 6px; }
[hidden] { display: none !important; }
.field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.req { color: var(--pink-deep); }
.field-hint {
  font-size: 12px;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 16px; /* 16px prevents iOS Safari from zooming on focus */
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--field-border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus,
.field textarea:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 4px rgba(217, 138, 161, 0.15);
}

.radio-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-pill {
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  min-height: 44px;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--field-border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.12s ease;
}
.radio-pill input { display: none; }
.radio-pill:has(input:checked) {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.size-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 480px) { .size-grid { grid-template-columns: repeat(2, 1fr); } }
.size-option {
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--field-border);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 60px;
  transition: all 0.12s ease;
}
.size-option input { display: none; }
.size-option:has(input:checked) {
  background: rgba(168, 200, 223, 0.2);
  border-color: var(--blue-deep);
}
.size-option-custom:has(input:checked) {
  background: rgba(240, 167, 184, 0.2);
  border-color: var(--pink-deep);
}
.size-name { font-weight: 600; font-size: 14px; }
.size-price { font-size: 13px; color: var(--muted); }
.size-note { font-size: 12px; color: var(--pink-deep); font-style: italic; }

.form-deposit {
  margin-top: 24px;
  padding: 16px 18px;
  background: #fef4a8;
  font-family: var(--script);
  font-size: 17px;
  color: #5a4a2a;
  line-height: 1.35;
  border-radius: 8px;
}
.form-error {
  margin-top: 14px;
  padding: 12px 14px;
  background: #fdeaee;
  border: 1px solid var(--pink-deep);
  border-radius: 8px;
  font-size: 14px;
  color: #a4324e;
}
.btn-submit {
  margin-top: 22px;
  width: 100%;
  padding: 18px 24px;
  font-size: 15px;
  position: relative;
}
.btn-submit .btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
.btn-submit.is-loading .btn-label { opacity: 0.5; }
.btn-submit.is-loading .btn-spinner { display: inline-block; }
.btn-submit[disabled] { cursor: progress; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-or {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.success-body {
  padding: 36px 22px 36px;
  text-align: center;
  flex: 1;
  overflow-y: auto;
}
@media (min-width: 640px) { .success-body { padding: 44px 36px; } }
.success-body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto;
}
.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* When the success panel is shown, hide the form. */
.order-modal[data-state="success"] form { display: none !important; }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
