/* ============================================================================
   sunroom.css — Prototype B "Sunroom" design system for Edelweiss Embroidery.
   Houston morning light in a garden-district sunroom; the joy of giving.
   Warm surface ladder, arched doorways, running-stitch line-work, one amber
   accent for CTAs. Vanilla CSS, no build step. Componentized like Shopify
   sections. All motion behind a global reduced-motion gate (bottom of file).
   ========================================================================== */

@import url('../fonts/fonts.css');

/* ── design tokens ──────────────────────────────────────────────────────────── */
:root {
  /* warm surface ladder: base → cream → white card */
  --warm-white: #FDFBF7;
  --cream: #F5EBDD;
  --cream-deep: #EFE1CE;
  --card: #FFFFFF;

  /* colored surfaces (real surfaces, not decoration) */
  --apricot: #F2C9A8;
  --peony: #E8A0A8;
  --cornflower: #7C93C4;
  --garden: #5C7A5A;
  --garden-deep: #2E4A2D;

  /* soft content tints (editorial cards, no shadow) — all bear walnut body text */
  --apricot-tint: #FBEBDC;
  --peony-tint: #F6DDE0;
  --cornflower-tint: #DCE3F1;
  --garden-tint: #E3ECDF;

  /* ink */
  --walnut: #4A3F35;      /* body text — 9.89:1 on warm-white */
  --walnut-ink: #3A322A;  /* darkest — CTA text on amber (4.87:1) */
  --walnut-soft: #6B5D4F; /* secondary text — 6.15:1 on warm-white */
  --link: #4A6349;        /* garden link — 6.41:1 on warm-white */

  /* one warm accent for primary CTAs */
  --sun: #E58B4C;         /* CTA fill (with walnut-ink text: 4.87:1) */
  --sun-deep: #D6773A;    /* LARGE-text / display accent only (script, big glyphs) — AA-large ≥3:1 */
  --sun-text: #9E5518;    /* small-text amber accent — AA on warm-white 5.39, cream 4.73, tints 4.7+ */
  --sun-hover: #B85A20;   /* CTA hover fill (with WHITE text: 4.64:1) */

  /* deep accents for small emphasis on light */
  --cornflower-deep: #43598F;
  --peony-deep: #B85D67;

  /* running-stitch thread tone (decorative line-work) */
  --stitch: #C89A6E;
  --stitch-soft: #D8B891;

  /* radii — generous */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* soft, grounded, warm-tinted shadows */
  --sh-sm: 0 2px 10px rgba(74,63,53,.06);
  --sh-md: 0 14px 34px -12px rgba(74,63,53,.16);
  --sh-lg: 0 28px 64px -20px rgba(74,63,53,.22);

  --focus: #43598F;

  --wrap: 1160px;
  --wrap-narrow: 760px;

  --ease: cubic-bezier(.34, 1.2, .44, 1); /* gentle overshoot — "settle like fabric" */
}

/* ── reset & base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; } /* guard: explicit display rules must not defeat the hidden attribute */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--warm-white);
  color: var(--walnut);
  font-family: 'Karla', ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--sun-text); }
h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.08; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

/* visible focus everywhere */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--walnut-ink); color: #fff; padding: 12px 18px;
  border-radius: var(--r-pill); font-weight: 600; transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ── typography roles ───────────────────────────────────────────────────────── */
.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: 'opsz' 120;
  letter-spacing: -0.015em;
  color: var(--walnut-ink);
}
.script {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-variation-settings: 'opsz' 96;
  color: var(--sun-deep);
}
.d-hero { font-size: clamp(2.6rem, 8vw, 4.6rem); line-height: 1.02; }
.d-1 { font-size: clamp(2rem, 5vw, 3rem); }
.d-2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.d-3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

.eyebrow {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sun-text);
  margin: 0 0 .5rem;
}
.eyebrow--garden { color: var(--garden); }
.eyebrow--onink { color: var(--apricot); }

.lede {
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
  line-height: 1.6;
  color: var(--walnut-soft);
}
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── layout ─────────────────────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.section--cream { background: var(--cream); }
.section--garden { background: var(--garden-deep); color: #fff; }
.section-head { max-width: 640px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── running-stitch line-work (the system's signature line device) ──────────── */
/* horizontal running stitch — dividers, under-headline flourishes */
.stitch-rule {
  height: 3px; border: 0; margin: 0;
  background: repeating-linear-gradient(90deg,
    var(--stitch) 0 11px, transparent 11px 19px);
  border-radius: 3px;
}
.stitch-rule--short { width: 66px; }
.stitch-rule--center { margin-left: auto; margin-right: auto; }
/* dashed stitched frame for cards/tags */
.stitch-frame { position: relative; }
.stitch-frame::after {
  content: ""; position: absolute; inset: 9px; border-radius: inherit;
  border: 2px dashed var(--stitch); opacity: .7; pointer-events: none;
}

/* ── buttons (pill) ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: 'Karla', sans-serif; font-weight: 700; font-size: 1rem;
  padding: .85em 1.7em; border-radius: var(--r-pill); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1;
  transition: transform .18s var(--ease), background-color .2s ease, box-shadow .2s ease;
}
.btn--sun {
  background: var(--sun); color: var(--walnut-ink); box-shadow: var(--sh-sm);
}
.btn--sun:hover { background: var(--sun-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn--ghost {
  background: transparent; color: var(--walnut-ink); border-color: var(--walnut-ink);
}
.btn--ghost:hover { background: var(--walnut-ink); color: var(--warm-white); transform: translateY(-2px); }
.btn--onink { background: var(--sun); color: var(--walnut-ink); }
.btn--onink:hover { background: #fff; color: var(--walnut-ink); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4em; font-weight: 700;
  color: var(--link); text-decoration: none;
}
.link-arrow::after { content: "→"; transition: transform .2s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ── header / nav ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 251, 247, .88);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(200, 154, 110, .3);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 14px; padding-bottom: 14px;
}
.nav__brand {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.35rem;
  color: var(--walnut-ink); text-decoration: none; letter-spacing: -.01em;
  display: inline-flex; align-items: center; gap: .5em; white-space: nowrap;
}
.nav__brand .sun-mark { flex: none; }
.nav__brand span { color: var(--sun-text); font-style: italic; }
.nav__links {
  display: flex; gap: clamp(.9rem, 2.5vw, 1.9rem); list-style: none;
  align-items: center; flex-wrap: wrap;
}
.nav__links a {
  font-weight: 600; font-size: .96rem; color: var(--walnut); text-decoration: none;
  padding: 6px 2px; position: relative;
}
.nav__links a[aria-current="page"] { color: var(--sun-text); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--sun) 0 5px, transparent 5px 9px);
  opacity: 0; transition: opacity .2s ease;
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { opacity: 1; }
.nav__cart {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-pill); color: var(--walnut-ink);
  text-decoration: none; background: transparent; transition: background-color .2s ease;
  flex: none;
}
.nav__cart:hover { background: var(--apricot-tint); color: var(--walnut-ink); }
.nav__cart svg { width: 22px; height: 22px; }
.nav__cart-count {
  position: absolute; top: 3px; right: 2px; min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: var(--r-pill); background: var(--sun); color: var(--walnut-ink);
  font-size: .68rem; font-weight: 700; line-height: 18px; text-align: center;
}
@media (max-width: 560px) {
  .nav { flex-wrap: wrap; }
  .nav__brand { order: -1; }
}

/* ── hero (sunlit bloom) ────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 95% at 72% 8%, #FFF3E0 0%, #FCEAD3 26%, rgba(252,234,211,0) 62%),
    radial-gradient(90% 70% at 10% 100%, var(--garden-tint) 0%, rgba(227,236,223,0) 55%),
    var(--warm-white);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
}
.hero__bloom {
  position: absolute; top: -14%; right: -6%; width: min(60vw, 560px); aspect-ratio: 1;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(255,216,150,.55) 0%, rgba(255,216,150,0) 68%);
  filter: blur(4px);
}
.hero__grid {
  position: relative; z-index: 1; display: grid; gap: clamp(1.8rem, 4vw, 3rem);
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.02fr .98fr; } }
.hero__copy { max-width: 560px; }
.hero__title { margin: .3em 0 .55em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero__media {
  position: relative; border-radius: var(--r-xl) var(--r-xl) var(--r-lg) var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-lg);
  aspect-ratio: 3 / 2;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__reassure {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 1.6rem;
  font-size: .92rem; color: var(--walnut-soft); font-weight: 600;
}
.hero__reassure span { display: inline-flex; align-items: center; gap: .45em; }
.hero__reassure svg { width: 17px; height: 17px; color: var(--garden); flex: none; }

/* ── gift wall (the signature — arched doorways) ────────────────────────────── */
.giftwall { display: grid; gap: 1.1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .giftwall { grid-template-columns: repeat(4, 1fr); } }
.giftwall--home { margin-top: 2.4rem; }

.doorway {
  position: relative; display: block; text-decoration: none; color: var(--walnut-ink);
  border-radius: 130px 130px var(--r-md) var(--r-md);
  overflow: hidden; background: var(--card); box-shadow: var(--sh-md);
  transition: transform .22s var(--ease), box-shadow .22s ease;
  isolation: isolate;
}
.doorway:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); color: var(--walnut-ink); }
.doorway__frame { position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  border-radius: 130px 130px var(--r-md) var(--r-md); }
.doorway__frame img { width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease); }
.doorway:hover .doorway__frame img { transform: scale(1.05); }
.doorway__frame::before { /* warm light wash + legibility scrim at base */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,240,220,.10) 0%, rgba(58,50,42,0) 38%,
    rgba(58,50,42,.62) 100%);
}
.doorway__frame::after { /* stitched arch outline */
  content: ""; position: absolute; inset: 10px; z-index: 2; pointer-events: none;
  border: 2px dashed rgba(255,248,238,.72);
  border-radius: 120px 120px var(--r-sm) var(--r-sm);
}
.doorway__label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 1.1rem 1rem 1.2rem;
  text-align: center; color: #fff;
}
.doorway__occasion {
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--apricot); display: block; margin-bottom: .15em;
}
.doorway__title {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.28rem; color: #fff;
  font-variation-settings: 'opsz' 72;
}
@media (max-width: 400px) { .doorway__title { font-size: 1.12rem; } }

/* ── tiers (Quick Ship vs Custom) ───────────────────────────────────────────── */
.tiers { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .tiers { grid-template-columns: 1fr 1fr; } }
.tier {
  border-radius: var(--r-lg); padding: clamp(1.6rem, 3.5vw, 2.2rem);
  position: relative;
}
.tier--quick { background: var(--apricot-tint); }
.tier--custom { background: var(--cornflower-tint); }
.tier__pill {
  display: inline-flex; align-items: center; gap: .4em; font-weight: 700; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; padding: .4em .85em; border-radius: var(--r-pill);
  margin-bottom: .9rem;
}
.tier__pill--quick { background: var(--sun); color: var(--walnut-ink); }
.tier__pill--custom { background: var(--cornflower-deep); color: #fff; }
.tier__title { margin-bottom: .5rem; }
.tier__body { color: var(--walnut); margin-bottom: 1.1rem; }
.tier__list { list-style: none; margin: 0 0 1.2rem; display: grid; gap: .5rem; }
.tier__list li { display: flex; gap: .6em; align-items: flex-start; font-size: .98rem; }
.tier__list svg { width: 18px; height: 18px; color: var(--garden); flex: none; margin-top: .2em; }

/* ── product cards / catalog ────────────────────────────────────────────────── */
.catalog { display: grid; gap: 1.4rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .catalog { grid-template-columns: repeat(3, 1fr); } }
/* a 4-item catalog reads as 3+1 in the 720–979 band (one tile orphaned on its own
   row); hold it to a clean 2×2 there, then open to a single 4-up row at ≥980. */
@media (min-width: 720px) and (max-width: 979.98px) { .catalog--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .catalog--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  display: flex; flex-direction: column; text-decoration: none; color: var(--walnut-ink);
  background: var(--card); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); transition: transform .2s var(--ease), box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); color: var(--walnut-ink); }
.card__frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream); }
.card__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.card:hover .card__frame img { transform: scale(1.045); }
.card__tags { position: absolute; top: 12px; left: 12px; display: flex; gap: .4rem; flex-wrap: wrap; z-index: 2; }
.pill-tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .35em .7em; border-radius: var(--r-pill); backdrop-filter: blur(3px);
}
.pill-tag--quick { background: rgba(229,139,76,.94); color: var(--walnut-ink); }
.pill-tag--custom { background: rgba(67,89,143,.94); color: #fff; }
.card__body { padding: 1rem 1.1rem 1.3rem; display: flex; flex-direction: column; gap: .2rem; flex: 1; }
.card__title { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.15rem; font-variation-settings: 'opsz' 48; }
.card__meta { font-size: .88rem; color: var(--walnut-soft); }
.card__price { margin-top: .5rem; font-weight: 700; font-size: 1.05rem; color: var(--walnut-ink); }
.card__price small { font-weight: 600; color: var(--walnut-soft); font-size: .8rem; }

/* ── occasion sections on shop ──────────────────────────────────────────────── */
.occ-head { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.occ-head h2 { margin: 0; }
.occ-head p { margin: 0; color: var(--walnut-soft); }

/* pill filter row */
.pill-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.6rem 0 2.4rem; }
.pill-filter {
  font-weight: 700; font-size: .92rem; padding: .55em 1.1em; border-radius: var(--r-pill);
  border: 2px solid var(--stitch-soft); background: transparent; color: var(--walnut); cursor: pointer;
  text-decoration: none; transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.pill-filter:hover { border-color: var(--sun); color: var(--walnut-ink); }
.pill-filter[aria-current="true"], .pill-filter.is-active { background: var(--walnut-ink); border-color: var(--walnut-ink); color: #fff; }

/* ── feature (story tease / editorial split) ────────────────────────────────── */
.feature { display: grid; gap: clamp(1.6rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 820px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--flip .feature__media { order: 2; }
}
.feature__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 4 / 5; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__media--wide { aspect-ratio: 3 / 2; }
.feature__body { max-width: 520px; }
.prose p { color: var(--walnut); }
.prose--soft p { color: var(--walnut-soft); }

/* ── proof band ─────────────────────────────────────────────────────────────── */
.promise-band { max-width: 720px; }
.promise-band .lede { color: rgba(255,255,255,.9); }
.promise-steps { display: grid; gap: 1.1rem; grid-template-columns: 1fr; margin-top: 2.4rem; counter-reset: step; }
@media (min-width: 720px) { .promise-steps { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .promise-steps--6 { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--card); border-radius: var(--r-lg); padding: 1.5rem 1.4rem; text-align: left;
  box-shadow: var(--sh-sm);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: var(--r-pill); background: var(--apricot-tint); color: var(--sun-text);
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.25rem; margin-bottom: .8rem;
}
.step h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; margin-bottom: .35rem; color: var(--walnut-ink); }
.step p { color: var(--walnut-soft); font-size: .96rem; margin: 0; }

/* pull-quote / emphasis block on tint (no shadow — editorial) */
.tint-card { border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 2.4rem); }
.tint-card--apricot { background: var(--apricot-tint); }
.tint-card--peony { background: var(--peony-tint); }
.tint-card--cornflower { background: var(--cornflower-tint); }
.tint-card--garden { background: var(--garden-tint); }

/* ── accordions (PDP fabrication/care) ──────────────────────────────────────── */
.accordion { border-top: 1px solid var(--cream-deep); }
.accordion details { border-bottom: 1px solid var(--cream-deep); }
.accordion summary {
  cursor: pointer; list-style: none; padding: 1.1rem .2rem; font-weight: 700; font-size: 1.05rem;
  color: var(--walnut-ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--sun-text); transition: transform .2s ease; }
.accordion details[open] summary::after { content: "–"; }
.accordion__body { padding: 0 .2rem 1.2rem; color: var(--walnut-soft); }
.accordion__body p { margin-bottom: .7em; }

/* ── footer ─────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--garden-deep); color: rgba(255,255,255,.86); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.footer__brand-name { font-family: 'Fraunces', serif; font-size: 1.5rem; color: #fff; margin-bottom: .5rem; }
.footer__brand-name .sun-mark { vertical-align: -3px; margin-right: .3em; }
.footer__tag { color: rgba(255,255,255,.78); max-width: 34ch; }
.footer__col h2 { font-family: 'Karla', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--apricot); margin-bottom: .9rem; }
.footer__col ul { list-style: none; display: grid; gap: .55rem; }
.footer__col a { color: rgba(255,255,255,.86); text-decoration: none; }
.footer__col a:hover { color: var(--apricot); text-decoration: underline; }
.footer__rule { border: 0; height: 2px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.28) 0 11px, transparent 11px 19px); margin: 2.4rem 0 1.4rem; }
.footer__base { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center; }
.footer__fine { font-size: .84rem; color: rgba(255,255,255,.72); margin: 0; max-width: 62ch; }
.footer__proto { font-size: .84rem; color: rgba(255,255,255,.72); margin: 0; }
.footer__proto a { color: var(--apricot); }

/* ── generic helpers ────────────────────────────────────────────────────────── */
.stack > * + * { margin-top: 1rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .6rem; }
.mt-2 { margin-top: 1.4rem; }
.mt-3 { margin-top: 2.2rem; }
.badge-final {
  display: inline-flex; gap: .5em; align-items: center; font-size: .9rem; font-weight: 600;
  color: var(--walnut-soft); background: var(--cream); padding: .5em 1em; border-radius: var(--r-pill);
}

/* ── "design your gift" teaser (Home; styled here since Home doesn't load the skin) ── */
.pz-teaser {
  display: grid; gap: 1.6rem; align-items: center; grid-template-columns: 1fr;
  background: var(--card); border-radius: var(--r-xl); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--sh-md);
}
@media (min-width: 760px) { .pz-teaser { grid-template-columns: 1fr 1.1fr; } }
.pz-teaser__art {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; min-height: 220px;
  background: radial-gradient(120% 110% at 30% 20%, #FFF3E0, var(--apricot-tint) 55%, var(--peony-tint));
  display: flex; align-items: center; justify-content: center;
}
.pz-teaser__tag {
  position: relative; width: 58%; max-width: 210px; aspect-ratio: 3 / 4;
  background: linear-gradient(155deg, #FCF4E7 0%, #F4E6D0 100%);
  border-radius: 16px; box-shadow: var(--sh-md); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 2.2rem 1rem 1rem;
  transform: rotate(-4deg);
}
.pz-teaser__tag::after { /* running-stitch frame */
  content: ""; position: absolute; inset: 9px; border-radius: 10px;
  border: 2px dashed var(--stitch); opacity: .65;
}
.pz-teaser__tag .hole { /* punched hole */
  position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%; background: var(--warm-white);
  box-shadow: inset 0 1px 2px rgba(74,63,53,.4), 0 0 0 2px rgba(200,154,110,.5); z-index: 2;
}
.pz-teaser__tag .ribbon { /* ribbon through the hole */
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 70px; height: 34px; z-index: 1; pointer-events: none;
}
.pz-teaser__mono {
  position: relative; z-index: 1; font-family: 'Fraunces', serif; font-weight: 500; font-size: 2.4rem;
  color: var(--sun-deep); font-variation-settings: 'opsz' 120; line-height: 1; letter-spacing: .04em;
}
.pz-teaser__sub { position: relative; z-index: 1; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--walnut-soft); font-weight: 700; margin-top: .5rem; }

/* ── GLOBAL reduced-motion gate (day one) ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto !important; }
}
