/* ==========================================================================
   QUIRKLEY VINTAGE — stylesheet
   Vintage cottage garden / boutique. Sage, lilac, dusty rose, cream.
   ========================================================================== */

/* ---- 1. Tokens ---------------------------------------------------------- */
:root {
  color-scheme: light;

  /* ---------------------------------------------------------------------
     EVERY COLOUR BELOW IS SAMPLED FROM GAYLE'S OWN ARTWORK.
     Do not "tidy" them towards nicer-looking values — they are the brand.

     Two of them are her exact brand colours but only reach 3:1 on cream, so
     they are marked LARGE TEXT ONLY: use them for display headings and the
     script, never for body copy. The deeper variants are the accessible
     equivalents and clear AA (4.5:1) everywhere on this site.
     --------------------------------------------------------------------- */

  /* Paper & ink */
  --paper:        #F3EADF;   /* her poster cream */
  --paper-warm:   #EDE3D5;
  --card:         #FAF6EE;
  --ink:          #2A2825;   /* 12.4:1 on cream */
  --ink-soft:     #5C564F;   /*  6.1:1 */
  --ink-faint:    #8A8279;
  --rule:         #DFD3C2;

  /* Sage — the wordmark green */
  --sage:         #5A6050;   /* 5.5:1 on cream; white on it 6.5:1 */
  --sage-brand:   #6B7160;   /* her exact wordmark — LARGE TEXT ONLY (4.3:1) */
  --sage-mid:     #909580;   /* the band across her poster */
  --sage-pale:    #E4E7DB;
  --sage-deep:    #4A5142;   /* footer */

  /* Lilac — her script and social-icon purple */
  --lilac:        #755A72;   /* 5.1:1 on cream */
  --lilac-brand:  #8B6F87;   /* her exact script colour — LARGE TEXT ONLY (3.7:1) */
  --mauve:        #A0869B;   /* her social circles — DECORATIVE FILLS ONLY (2.8:1) */
  --lilac-mid:    #C9B7C7;   /* her ribbon */
  --lilac-pale:   #EFE8EE;

  /* Blush — the roses in her floral sprays */
  --blush:        #C8AFB4;
  --blush-pale:   #F7EDEC;

  /* Kept for the demo banner only — deliberately off-brand so it is obvious */
  --ochre:        #B07E2B;
  --ochre-pale:   #F7EEDC;

  /* Roles */
  --brand:        var(--sage);
  --brand-ink:    #FAF6EE;
  --accent:       var(--lilac);
  --focus:        #755A72;

  /* Type
     Fraunces — a variable "soft serif" with an optical-size axis and a WONK axis
     that swaps in quirky alternate letterforms. Chosen over the usual Cormorant/
     Playfair because it reads as *made by someone*, which is the whole brand,
     and the wonk suits a shop called Quirkley.
     Figtree — warm humanist sans, holds up at small sizes on a phone. */
  --display: 'Fraunces', 'Hoefler Text', Georgia, serif;
  --body:    'Figtree', 'Avenir Next', system-ui, -apple-system, sans-serif;
  --script:  'Parisienne', 'Snell Roundhand', 'Brush Script MT', cursive;

  /* One easing curve everywhere — consistency is most of what reads as premium */
  --ease: cubic-bezier(.22,.68,.24,1);

  /* Space & shape */
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --measure: 68rem;
  --measure-narrow: 40rem;
  --r-sm: 6px;
  --r:    14px;
  --r-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(59,49,56,.06), 0 2px 8px rgba(59,49,56,.05);
  --shadow:    0 2px 4px rgba(59,49,56,.05), 0 10px 30px rgba(59,49,56,.09);
  --shadow-lg: 0 4px 8px rgba(59,49,56,.06), 0 24px 60px rgba(59,49,56,.14);

  --header-h: 4.5rem;
}

/* ---- 2. Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

/* Belt-and-braces: an author `display` must never beat the hidden attribute. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

body.is-locked { overflow: hidden; }

body {
  font-family: var(--body);
  font-size: clamp(1.02rem, .98rem + .2vw, 1.11rem);
  font-weight: 350;
  line-height: 1.68;
  letter-spacing: .002em;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  /* Ditsy floral wash — decorative, very low contrast */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E"),
    radial-gradient(circle at 12% 8%,  rgba(180,156,203,.10), transparent 42%),
    radial-gradient(circle at 88% 22%, rgba(224,162,180,.10), transparent 40%),
    radial-gradient(circle at 50% 96%, rgba(138,164,127,.10), transparent 45%);
  background-attachment: fixed, fixed, fixed, fixed;
  background-size: 160px 160px, auto, auto, auto;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

a { color: var(--lilac); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--lilac); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--ink); color: var(--card); padding: .7rem 1.2rem;
  border-radius: 0 0 var(--r) var(--r); z-index: 200; text-decoration: none;
  transition: transform .2s;
}
.skip-link:focus { transform: translate(-50%, 0); color: var(--card); }

/* ---- 3. Typography ------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  text-wrap: balance;
}
/* Display sizes: high optical size, soft terminals, wonk on. Lighter weight at
   large sizes is what separates editorial from default-bold-serif. */
h1, h2 {
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 45, 'WONK' 1;
  line-height: .98;
  letter-spacing: -.022em;
}
h3, h4 {
  font-weight: 600;
  font-variation-settings: 'opsz' 36, 'SOFT' 30, 'WONK' 0;
  line-height: 1.15;
  letter-spacing: -.012em;
}
h1 { font-size: clamp(2.9rem, 1.9rem + 4.6vw, 6rem); }
h2 { font-size: clamp(2.1rem, 1.5rem + 2.7vw, 3.7rem); }
h3 { font-size: clamp(1.3rem, 1.18rem + .6vw, 1.55rem); }
h4 { font-size: 1.05rem; font-family: var(--body); font-weight: 700; letter-spacing: .01em; }

/* An italic display for pull-quotes and emphasis inside headings */
h1 em, h2 em { font-style: italic; font-variation-settings: 'opsz' 144, 'SOFT' 60, 'WONK' 1; }

p { text-wrap: pretty; }
p + p { margin-top: .9em; }

.lead { font-size: clamp(1.12rem, 1.04rem + .45vw, 1.35rem); font-weight: 350; line-height: 1.55; color: var(--ink-soft); }
.script { font-family: var(--script); font-size: 1.45em; line-height: 1.2; color: var(--lilac); }

.eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--sage);
  display: flex; align-items: center; gap: .6rem;
}
.eyebrow::before {
  content: ''; width: 2.2rem; height: 1px; flex: none;
  background: linear-gradient(90deg, var(--lilac-mid), transparent);
}
.eyebrow.is-centred::after {
  content: ''; width: 2.2rem; height: 1px;
  background: linear-gradient(270deg, var(--lilac-mid), transparent);
}
.eyebrow.is-centred { justify-content: center; }

/* ---- 4. Layout ---------------------------------------------------------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--measure)); margin-inline: auto; }
.wrap-wide { width: min(100% - (var(--gutter) * 2), 82rem); margin-inline: auto; }
.wrap-narrow { width: min(100% - (var(--gutter) * 2), var(--measure-narrow)); margin-inline: auto; }

.section { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem); }
.section-sm { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1rem + 3vw, 3.25rem); }
.section-head.is-centred { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: .85rem; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); }

.tint-sage  { background: var(--sage-pale); }
.tint-lilac { background: var(--lilac-pale); }
.tint-blush  { background: var(--blush-pale); }
.tint-cream { background: var(--paper-warm); }

.stack > * + * { margin-top: 1rem; }

/* Scalloped divider — a cottage-garden edge between bands */
.scallop { position: relative; }
.scallop::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 14px;
  background: radial-gradient(circle at 12px -2px, transparent 12px, var(--paper) 12.5px);
  background-size: 24px 14px;
  pointer-events: none;
}

/* ---- 5. Buttons --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--body); font-weight: 600; font-size: .82rem;
  letter-spacing: .13em; text-transform: uppercase;
  padding: .85em 1.7em; border-radius: 999px;
  text-decoration: none; text-align: center;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--sage); color: var(--brand-ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #4E6647; color: var(--brand-ink); box-shadow: var(--shadow); }

.btn-lilac { background: var(--lilac); color: #FFFDF9; box-shadow: var(--shadow-sm); }
.btn-lilac:hover { background: #5E4A5C; color: #FFFDF9; box-shadow: var(--shadow); }

.btn-ghost { border-color: var(--sage); color: var(--sage); background: transparent; }
.btn-ghost:hover { background: var(--sage); color: var(--brand-ink); }

.btn-light { background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: #fff; color: var(--ink); box-shadow: var(--shadow); }

.btn-sm { font-size: .82rem; padding: .6em 1.2em; }
.btn-block { display: flex; width: 100%; }
.btn[disabled], .btn[aria-disabled='true'] {
  opacity: .5; cursor: not-allowed; transform: none; box-shadow: none;
}

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row.is-centred { justify-content: center; }

/* ---- 6. Header ---------------------------------------------------------- */
.announce {
  background: var(--lilac); color: #FFFDF9;
  font-size: .82rem; letter-spacing: .06em; text-align: center;
  padding: .5rem var(--gutter);
}
.announce a { color: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 96;   /* above .nav-scrim (94) */
  /* NO backdrop-filter / transform / filter here. Any of them would make this
     element the containing block for the position:fixed drawer inside it, and
     the mobile menu would size itself to the header instead of the screen. */
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { height: 2.9rem; width: auto; }
.brand-text { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--ink); line-height: 1; }
.brand-text small {
  display: block; font-family: var(--body); font-size: .58rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--sage); margin-top: .22em;
}

.nav { display: flex; align-items: center; gap: clamp(.6rem, 1.4vw, 1.4rem); }
.nav a {
  font-size: .84rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; padding: .3rem 0; position: relative;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--lilac); transform: scaleX(0); transition: transform .22s;
  transform-origin: left;
}
.nav a:hover::after, .nav a[aria-current='page']::after { transform: scaleX(1); }
.nav a[aria-current='page'] { color: var(--lilac); }

.header-actions { display: flex; align-items: center; gap: .5rem; }

.icon-btn {
  position: relative; display: grid; place-items: center;
  width: 2.75rem; height: 2.75rem; border-radius: 999px; color: var(--ink);
  transition: background-color .18s;
}
.icon-btn:hover { background: var(--sage-pale); }
.cart-count {
  position: absolute; top: .25rem; right: .2rem; min-width: 1.15rem; height: 1.15rem;
  padding: 0 .28rem; border-radius: 999px; background: var(--lilac); color: #fff;
  font-size: .68rem; font-weight: 700; display: grid; place-items: center; line-height: 1;
}
.nav-toggle { display: none; }

@media (max-width: 60rem) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(20rem, 84vw);
    background: var(--card); box-shadow: var(--shadow-lg);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: 5.5rem 1.75rem 2rem; z-index: 95;
    transform: translateX(100%); transition: transform .28s ease; overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 1rem; padding: .95rem 0; border-bottom: 1px solid var(--rule); }
  .nav a::after { display: none; }
  .nav .nav-cta { margin-top: 1.5rem; }
}

.nav-scrim {
  position: fixed; inset: 0; background: rgba(42,40,37,.45);
  z-index: 94; opacity: 0; transition: opacity .28s;
}
/* The basket opens over everything, so its scrim sits above the header */
#cart-scrim { z-index: 105; }
.nav-scrim.is-open { opacity: 1; }

/* ---- 7. Hero ------------------------------------------------------------ */
.hero {
  position: relative; isolation: isolate;
  min-height: clamp(30rem, 78vh, 46rem);
  display: grid; place-items: center; text-align: center;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter);
  background: var(--sage-pale);
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(40,32,38,.42) 0%, rgba(40,32,38,.20) 45%, rgba(40,32,38,.58) 100%);
}
.hero.no-photo { background: linear-gradient(150deg, var(--lilac-pale), var(--blush-pale) 45%, var(--sage-pale)); }
.hero.no-photo::before { background: none; }
.hero.no-photo .hero-inner { color: var(--ink); text-shadow: none; }
.hero.no-photo .hero-inner h1 { color: var(--ink); }

.hero-inner { max-width: 44rem; color: #FFFDF9; text-shadow: 0 1px 24px rgba(30,22,28,.45); }
.hero-inner h1 { color: #FFFDF9; }
.hero-sub {
  font-family: var(--body); font-size: .9rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero-blurb { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); margin-top: 1.1rem; }
.hero .btn-row { margin-top: 2.1rem; }

.hero-flourish { font-size: 2rem; line-height: 1; margin-bottom: .6rem; }

/* ---- 8. Cards & grids --------------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, .6rem + 1.4vw, 1.9rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 14rem), 1fr)); }

.card {
  background: var(--card); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--rule); box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-media {
  position: relative; aspect-ratio: 4 / 5; background: var(--paper-warm);
  display: grid; place-items: center; overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.045); }
.card-media .placeholder { font-size: 2.6rem; opacity: .38; }

.card-body { padding: 1.15rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card-body h3 { font-size: 1.3rem; }
.card-body .blurb { font-size: .93rem; color: var(--ink-soft); }
.card-body .btn { margin-top: auto; align-self: flex-start; }

/* Feature (category) card */
.feature-card { position: relative; text-decoration: none; color: inherit; }
.feature-card .card-media { aspect-ratio: 1 / 1; }
.feature-card .card-body { align-items: center; text-align: center; }
.feature-card .cta {
  font-size: .84rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sage);
}
.feature-card:hover .cta { color: var(--lilac); }

/* ---- 9. Products -------------------------------------------------------- */
.shop-toolbar {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  margin-bottom: 2rem;
}
.chip {
  font-size: .84rem; font-weight: 600; letter-spacing: .03em;
  padding: .5em 1.1em; border-radius: 999px;
  border: 1.5px solid var(--rule); background: var(--card); color: var(--ink-soft);
  transition: all .18s;
}
.chip:hover { border-color: var(--sage-mid); color: var(--ink); }
.chip[aria-pressed='true'] { background: var(--sage); border-color: var(--sage); color: #FFFDF9; }

.price { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.price .was { font-size: .7em; color: var(--ink-faint); text-decoration: line-through; margin-left: .4em; }

.badge {
  position: absolute; top: .85rem; left: .85rem; z-index: 2;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .38em .85em; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.badge-new    { background: var(--sage);  color: #FFFDF9; }
.badge-sample { background: var(--ochre); color: #fff; }
.badge-low    { background: var(--lilac);  color: #fff; }

.sold-out-veil {
  position: absolute; inset: 0; z-index: 3; display: grid; place-items: center;
  background: rgba(251,246,238,.78);
}
.sold-out-veil span {
  font-family: var(--display); font-size: 1.35rem; font-weight: 600;
  letter-spacing: .06em; color: var(--ink);
  border: 1.5px solid var(--ink); border-radius: 999px; padding: .35em 1.1em;
  background: var(--card);
}

.empty-state {
  text-align: center; padding: clamp(2.5rem, 6vw, 5rem) 1rem;
  border: 1.5px dashed var(--rule); border-radius: var(--r-lg); background: var(--card);
}
.empty-state .flourish { font-size: 2.6rem; margin-bottom: .8rem; }

/* ---- 10. Split band (personalised / about) ------------------------------ */
.split {
  display: grid; gap: clamp(1.75rem, 1rem + 3vw, 3.5rem); align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}
.split-media { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.split-media.is-single { grid-template-columns: 1fr; }
.split-media figure {
  border-radius: var(--r-lg); overflow: hidden; background: var(--paper-warm);
  aspect-ratio: 3 / 4; display: grid; place-items: center; box-shadow: var(--shadow);
}
.split-media figure:nth-child(2) { transform: translateY(1.75rem); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .placeholder { font-size: 2.4rem; opacity: .35; }
@media (max-width: 34rem) { .split-media figure:nth-child(2) { transform: none; } }

.pill-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; list-style: none; padding: 0; }
.pill-list li {
  font-size: .84rem; padding: .4em 1em; border-radius: 999px;
  background: var(--card); border: 1px solid var(--rule); color: var(--ink-soft);
}

/* ---- 11. Events --------------------------------------------------------- */
.event-list { list-style: none; padding: 0; display: grid; gap: 1rem; }
.event {
  display: grid; gap: 1rem 1.5rem; align-items: center;
  grid-template-columns: auto 1fr;
  background: var(--card); border: 1px solid var(--rule); border-left: 5px solid var(--lilac-mid);
  border-radius: var(--r); padding: 1.25rem 1.4rem; box-shadow: var(--shadow-sm);
}
.event-date {
  text-align: center; background: var(--blush-pale); border-radius: var(--r);
  padding: .7rem .95rem; min-width: 4.6rem;
}
.event-date .d { font-family: var(--display); font-size: 1.9rem; font-weight: 700; line-height: 1; display: block; }
.event-date .m { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--lilac); }
.event-date .y { font-size: .68rem; color: var(--ink-faint); display: block; }
.event h3 { font-size: 1.3rem; }
.event .venue { font-size: .93rem; color: var(--ink-soft); }
.event .times { font-size: .88rem; color: var(--sage); font-weight: 600; }
@media (max-width: 30rem) { .event { grid-template-columns: 1fr; } .event-date { justify-self: start; } }

/* ---- 12. Gallery -------------------------------------------------------- */
.gallery-grid {
  display: grid; gap: .8rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 13rem), 1fr));
}
.gallery-item {
  position: relative; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 1 / 1; background: var(--paper-warm); padding: 0; border: 0;
  box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem .8rem .6rem;
  background: linear-gradient(transparent, rgba(40,32,38,.72));
  color: #FFFDF9; font-size: .82rem; text-align: left;
  opacity: 0; transition: opacity .22s;
}
.gallery-item:hover figcaption, .gallery-item:focus-visible figcaption { opacity: 1; }

/* Lightbox — display:none by default so [hidden] can never be overruled */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 120; background: rgba(35,28,33,.93);
  place-items: center; padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 100%; max-height: 78vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: #F3ECE4; text-align: center; margin-top: 1rem; font-size: .95rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; display: grid; place-items: center;
  width: 3rem; height: 3rem; border-radius: 999px;
  background: rgba(255,253,249,.14); color: #FFFDF9; font-size: 1.5rem;
  transition: background-color .18s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,253,249,.3); }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---- 13. Forms ---------------------------------------------------------- */
.form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: .38rem; }
.field label { font-size: .88rem; font-weight: 700; letter-spacing: .02em; }
.field .hint { font-size: .82rem; color: var(--ink-faint); }
.field .req { color: var(--lilac); }
.field input, .field textarea, .field select {
  width: 100%; padding: .8em .95em;
  background: var(--card); border: 1.5px solid var(--rule); border-radius: var(--r-sm);
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--lilac); box-shadow: 0 0 0 3px var(--lilac-pale);
}
.field textarea { min-height: 7rem; resize: vertical; }
.field-row { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

.fieldset {
  border: 1px solid var(--rule); border-radius: var(--r); padding: 1.4rem;
  background: var(--card); display: grid; gap: 1.15rem;
}
.fieldset > legend {
  font-family: var(--display); font-size: 1.35rem; font-weight: 600;
  padding-inline: .5rem;
}

.form-note { font-size: .86rem; color: var(--ink-faint); }
.form-status { padding: .9rem 1.1rem; border-radius: var(--r-sm); font-size: .92rem; }
.form-status.is-ok   { background: var(--sage-pale); color: #3E5238; border: 1px solid var(--sage-mid); }
.form-status.is-bad  { background: var(--blush-pale); color: #6B4A63; border: 1px solid var(--lilac-mid); }

/* Honeypot — must be invisible to people, reachable by bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- 14. Cart drawer ---------------------------------------------------- */
.cart-drawer {
  display: none;
  position: fixed; inset: 0 0 0 auto; z-index: 110;   /* above #cart-scrim (105) */
  width: min(26rem, 92vw); background: var(--card);
  box-shadow: var(--shadow-lg);
  grid-template-rows: auto 1fr auto;
}
.cart-drawer.is-open { display: grid; animation: slide-in .28s ease; }
@keyframes slide-in { from { transform: translateX(100%); } to { transform: translateX(0); } }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.4rem; border-bottom: 1px solid var(--rule);
}
.cart-head h2 { font-size: 1.6rem; }
.cart-items { overflow-y: auto; padding: 1rem 1.4rem; display: grid; gap: 1rem; align-content: start; }
.cart-item { display: grid; grid-template-columns: 4.5rem 1fr auto; gap: .9rem; align-items: start; }
.cart-item .thumb {
  width: 4.5rem; aspect-ratio: 4/5; border-radius: var(--r-sm); object-fit: cover;
  background: var(--paper-warm);
}
.cart-item .name { font-weight: 700; font-size: .95rem; line-height: 1.3; }
.cart-item .meta { font-size: .85rem; color: var(--ink-soft); }
.qty { display: inline-flex; align-items: center; gap: .1rem; border: 1.5px solid var(--rule); border-radius: 999px; }
.qty button { width: 1.85rem; height: 1.85rem; display: grid; place-items: center; font-weight: 700; color: var(--ink-soft); }
.qty button:hover { color: var(--lilac); }
.qty output { min-width: 1.5rem; text-align: center; font-size: .9rem; font-weight: 700; }
.cart-remove { font-size: .8rem; color: var(--ink-faint); text-decoration: underline; }
.cart-remove:hover { color: var(--lilac); }
.cart-foot { padding: 1.25rem 1.4rem; border-top: 1px solid var(--rule); background: var(--paper); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .9rem; }
.cart-total .price { font-size: 1.75rem; }
.cart-empty { text-align: center; color: var(--ink-soft); padding: 3rem 1rem; }
.cart-empty .flourish { font-size: 2.4rem; margin-bottom: .6rem; }
.cart-secure { font-size: .78rem; color: var(--ink-faint); text-align: center; margin-top: .7rem; }

/* ---- 15. Social & footer ------------------------------------------------ */
.social-band { text-align: center; }
.social-row { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem; }

.site-footer {
  background: var(--sage-deep); color: #EDE7DC;
  padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 2rem;
}
.site-footer a { color: #EDE7DC; text-decoration: none; }
.site-footer a:hover { color: var(--lilac-mid); text-decoration: underline; }
.footer-grid {
  display: grid; gap: 2.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}
.footer-brand .brand-text { color: #FFFDF9; }
.footer-brand .brand-text small { color: var(--lilac-mid); }
.footer-grid h4 {
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--lilac-mid); margin-bottom: .9rem;
}
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: .5rem; font-size: .93rem; }
.footer-bottom {
  margin-top: 2.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(237,231,220,.20);
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: #C3BFAE;
}
.footer-bottom a { color: #C3BFAE; }
.made-by { opacity: .8; }

/* ---- 16. Banners -------------------------------------------------------- */
.demo-banner {
  background: var(--ochre); color: #fff; text-align: center;
  padding: .6rem var(--gutter); font-size: .85rem; font-weight: 600;
}

.cookie-bar {
  display: none;
  position: fixed; left: 50%; bottom: 1rem; transform: translateX(-50%);
  width: min(46rem, calc(100% - 2rem)); z-index: 130;
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 1.15rem 1.3rem;
  gap: 1rem; align-items: center;
  grid-template-columns: 1fr auto;
}
.cookie-bar.is-open { display: grid; }
.cookie-bar p { font-size: .88rem; color: var(--ink-soft); }
@media (max-width: 40rem) { .cookie-bar { grid-template-columns: 1fr; } }

/* ---- 17. Reveal on scroll ----------------------------------------------- */
/* Only ever hide things once we KNOW the observer exists, or a browser
   without it shows a blank page. site.js adds .reveal-ready to <html>. */
.reveal-ready .reveal { opacity: 0; transform: translateY(18px); }
.reveal-ready .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---- 18. Page intro ----------------------------------------------------- */
.page-intro {
  text-align: center; padding-block: clamp(2.75rem, 2rem + 4vw, 5rem);
  background: linear-gradient(160deg, var(--lilac-pale), var(--blush-pale) 60%, var(--sage-pale));
  border-bottom: 1px solid var(--rule);
}
.page-intro p { margin-top: 1rem; color: var(--ink-soft); max-width: 42rem; margin-inline: auto; }

/* ---- 19. Prose (policy pages) ------------------------------------------- */
.prose { max-width: 44rem; }
.prose h2 { font-size: clamp(1.5rem, 1.3rem + .9vw, 2rem); margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; font-size: 1.2rem; }
.prose p, .prose ul, .prose ol { margin-top: .9rem; }
.prose ul, .prose ol { padding-left: 1.4rem; display: grid; gap: .4rem; }
.prose .todo {
  background: var(--ochre-pale); border-left: 4px solid var(--ochre);
  padding: .9rem 1.1rem; border-radius: var(--r-sm); font-size: .92rem;
}

/* ---- 20. Print ---------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .cart-drawer, .cookie-bar, .announce, .nav-scrim { display: none !important; }
  body { background: #fff; }
}

/* ==========================================================================
   21. HER ARTWORK — decorative florals, and a proper hero
   Assets cut from the poster Gayle sent. All decorative, all aria-hidden.
   ========================================================================== */

.deco {
  position: absolute; pointer-events: none; z-index: 0;
  opacity: .85; will-change: transform;
}
.deco img { width: 100%; height: auto; display: block; }
.deco-tl { top: -1.5rem; left: -2rem;  width: clamp(8rem, 16vw, 15rem); }
.deco-tr { top: -1.5rem; right: -2rem; width: clamp(8rem, 16vw, 15rem); transform: scaleX(-1); }
.deco-bl { bottom: -2rem; left: -2.5rem;  width: clamp(7rem, 13vw, 12rem); transform: rotate(180deg); opacity: .55; }
.deco-br { bottom: -2rem; right: -2.5rem; width: clamp(7rem, 13vw, 12rem); transform: rotate(180deg) scaleX(-1); opacity: .55; }
@media (max-width: 48rem) {
  .deco-bl, .deco-br { display: none; }
  .deco-tl, .deco-tr { opacity: .5; }
}
.has-deco { position: relative; overflow: hidden; isolation: isolate; }
.has-deco > .wrap, .has-deco > .wrap-wide, .has-deco > .wrap-narrow { position: relative; z-index: 1; }

/* Gentle drift, so the page feels alive without being busy */
@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50%      { transform: translate3d(0,-9px,0) rotate(-1.2deg); }
}
@keyframes drift-flip {
  0%, 100% { transform: scaleX(-1) translate3d(0,0,0) rotate(0deg); }
  50%      { transform: scaleX(-1) translate3d(0,-9px,0) rotate(-1.2deg); }
}
.deco-tl { animation: drift 11s ease-in-out infinite; }
.deco-tr { animation: drift-flip 13s ease-in-out infinite .8s; }

/* ---- Hero, rebuilt around her still life -------------------------------- */
.hero { min-height: clamp(32rem, 84vh, 50rem); }
.hero-photo { transform: scale(1.06); animation: hero-breathe 26s ease-in-out infinite; }
@keyframes hero-breathe {
  0%, 100% { transform: scale(1.06) translate3d(0,0,0); }
  50%      { transform: scale(1.12) translate3d(0,-1.2%,0); }
}
.hero::before {
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(243,234,223,.30) 0%, rgba(243,234,223,.72) 55%, rgba(243,234,223,.94) 100%);
}
.hero .hero-inner { color: var(--ink); text-shadow: 0 1px 22px rgba(243,234,223,.85); }
.hero .hero-inner h1 { color: var(--ink); }
.hero-sub { color: var(--sage); }
.hero-blurb { color: var(--ink-soft); }
.hero .btn-light { border: 1.5px solid var(--rule); }

/* Staggered entrance for the hero */
@keyframes rise {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to   { opacity: 1; transform: none; }
}
.hero-inner > * { animation: rise .9s cubic-bezier(.2,.7,.3,1) both; }
.hero-inner > *:nth-child(1) { animation-delay: .10s; }
.hero-inner > *:nth-child(2) { animation-delay: .20s; }
.hero-inner > *:nth-child(3) { animation-delay: .30s; }
.hero-inner > *:nth-child(4) { animation-delay: .42s; }
.hero-inner > *:nth-child(5) { animation-delay: .54s; }

.hero-flourish { animation: rise .9s cubic-bezier(.2,.7,.3,1) both, sway 7s ease-in-out 1s infinite; }
@keyframes sway { 0%,100%{ transform: rotate(-5deg); } 50%{ transform: rotate(5deg); } }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--sage); font-size: .7rem; letter-spacing: .22em;
  text-transform: uppercase; display: grid; justify-items: center; gap: .4rem;
  animation: rise 1s 1s both;
}
.scroll-cue span { display: block; width: 1px; height: 2.1rem; background: linear-gradient(var(--sage), transparent); animation: cue 2.4s ease-in-out infinite; }
@keyframes cue { 0%,100%{ transform: scaleY(.4); opacity:.4; transform-origin: top; } 50%{ transform: scaleY(1); opacity:1; transform-origin: top; } }

/* ---- Richer reveals ------------------------------------------------------ */
.reveal-ready .reveal { transform: translateY(26px) scale(.985); }
.reveal-ready .reveal.is-in {
  transition: opacity .85s cubic-bezier(.2,.7,.3,1), transform .85s cubic-bezier(.2,.7,.3,1);
}
/* Stagger anything inside a grid that reveals together */
.reveal-ready .grid > .reveal:nth-child(1) { transition-delay: .00s; }
.reveal-ready .grid > .reveal:nth-child(2) { transition-delay: .08s; }
.reveal-ready .grid > .reveal:nth-child(3) { transition-delay: .16s; }
.reveal-ready .grid > .reveal:nth-child(4) { transition-delay: .24s; }
.reveal-ready .grid > .reveal:nth-child(5) { transition-delay: .32s; }
.reveal-ready .grid > .reveal:nth-child(6) { transition-delay: .40s; }

/* ---- Headings get a hand-drawn underline -------------------------------- */
.section-head h2 { position: relative; display: inline-block; }
.section-head h2::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -.35em; height: 8px;
  background: no-repeat center/100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'%3E%3Cpath d='M2 5.5C40 2.2 78 1.4 116 3.2c28 1.3 56 2.8 82 1.1' stroke='%23C9B7C7' stroke-width='2.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  transform: scaleX(0); transform-origin: left; transition: transform .9s .25s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in .section-head h2::after,
.section-head.is-in h2::after,
.is-in .section-head h2::after { transform: scaleX(1); }
.reveal-ready .section-head h2::after { transform: scaleX(0); }
.reveal-ready .reveal.is-in h2::after { transform: scaleX(1); }

/* ---- Buttons: a soft sheen on hover ------------------------------------- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.42) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform .7s ease;
}
.btn:hover::after { transform: translateX(120%); }

/* ---- Cards ------------------------------------------------------------- */
.card { transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease; }
.card:hover { transform: translateY(-7px); }
.card-media img { transition: transform .8s cubic-bezier(.2,.7,.3,1); }
.card:hover .card-media img { transform: scale(1.07); }

/* A floral placeholder instead of a bare emoji, until real photos arrive */
.placeholder-floral {
  position: absolute; inset: 0; display: grid; place-items: center;
  background:
    linear-gradient(160deg, var(--lilac-pale), var(--paper-warm) 55%, var(--sage-pale));
  overflow: hidden;
}
.placeholder-floral img {
  width: 78%; max-width: 14rem; opacity: .5;
  animation: drift 14s ease-in-out infinite;
}
.placeholder-floral .ph-label {
  position: absolute; bottom: .9rem; left: 0; right: 0; text-align: center;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint);
}

/* Sold-out stamp */
.sold-out-veil { backdrop-filter: blur(1.5px); }
.sold-out-veil span { transform: rotate(-7deg); animation: stamp .5s cubic-bezier(.2,1.6,.4,1) both; }
@keyframes stamp { from { transform: rotate(-7deg) scale(1.5); opacity: 0; } to { transform: rotate(-7deg) scale(1); opacity: 1; } }

/* ---- Basket count pops when it changes ---------------------------------- */
@keyframes pop { 0%{ transform: scale(1);} 40%{ transform: scale(1.45);} 100%{ transform: scale(1);} }
.cart-count.is-bumped { animation: pop .45s cubic-bezier(.2,1.4,.4,1); }

/* ---- Section dividers: a sprig instead of a hard edge -------------------- */
.sprig-divider {
  display: grid; place-items: center; gap: .5rem; margin: 0 auto;
  color: var(--lilac-mid); font-size: 1.3rem; letter-spacing: .6rem;
  opacity: .85;
}
.sprig-divider::before {
  content: ''; width: min(16rem, 50vw); height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule), transparent);
}

@media (prefers-reduced-motion: reduce) {
  .deco-tl, .deco-tr, .hero-photo, .hero-flourish, .placeholder-floral img,
  .scroll-cue span, .cart-count.is-bumped { animation: none !important; }
  .hero-inner > * { animation: none !important; opacity: 1 !important; transform: none !important; }
  .section-head h2::after { transform: scaleX(1) !important; }
}

/* ==========================================================================
   22. THE PREMIUM LAYER
   Paper texture, editorial numbering, line-by-line text reveals, mask wipes
   on images, parallax on the florals. All motion honours reduced-motion.
   ========================================================================== */

/* ---- Paper grain -------------------------------------------------------- */
/* A real printed-paper tooth. Very low opacity — you should feel it, not see it. */
/* NOTE: the grain is a background layer on <body>, NOT an overlay element.
   An overlay needed a z-index, which meant giving .site-header one too — and
   that override killed the sticky header and broke the mobile menu. Never
   reintroduce a full-page overlay here. */

/* ---- Editorial section numbers ------------------------------------------ */
.section-head { counter-increment: sec; }
.section-head .eyebrow::after { content: none; }
.section-head.is-numbered .eyebrow::before {
  content: counter(sec, decimal-leading-zero);
  width: auto; height: auto; background: none;
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; color: var(--lilac-brand);
}
main { counter-reset: sec; }

/* ---- Line-by-line reveal for display headings --------------------------- */
/* site.js splits the heading into .ln spans; if it does not run, the heading
   is simply a normal heading — nothing is ever hidden without the script. */
.reveal-ready .split-lines .ln { display: block; overflow: hidden; }
.reveal-ready .split-lines .ln > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1.05s var(--ease);
}
.reveal-ready .split-lines.is-in .ln > span { transform: none; }
.reveal-ready .split-lines.is-in .ln:nth-child(2) > span { transition-delay: .09s; }
.reveal-ready .split-lines.is-in .ln:nth-child(3) > span { transition-delay: .18s; }
.reveal-ready .split-lines.is-in .ln:nth-child(4) > span { transition-delay: .27s; }

/* ---- Images arrive behind a wipe, not a fade ---------------------------- */
.reveal-ready .wipe { position: relative; overflow: hidden; }
.reveal-ready .wipe > * { transform: scale(1.14); transition: transform 1.4s var(--ease); }
.reveal-ready .wipe::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
  background: var(--paper); transform-origin: bottom;
  transition: transform 1.1s var(--ease);
}
.reveal-ready .wipe.is-in > * { transform: none; }
.reveal-ready .wipe.is-in::after { transform: scaleY(0); }

/* ---- Refined reveal ----------------------------------------------------- */
.reveal-ready .reveal { opacity: 0; transform: translateY(30px); }
.reveal-ready .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

/* ---- Parallax on the florals -------------------------------------------- */
.deco { transition: transform .18s linear; }
.deco[data-par] { will-change: transform; }

/* ---- Buttons: a slower, more deliberate sheen --------------------------- */
.btn::after { transition: transform 1.05s var(--ease); }
.btn { transition: transform .4s var(--ease), box-shadow .4s var(--ease), background-color .35s ease, color .35s ease; }
.btn:hover { transform: translateY(-3px); }

/* An underline that draws itself, for text links in prose */
.prose a, .lead a {
  text-decoration: none; background-image: linear-gradient(var(--lilac), var(--lilac));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .5s var(--ease);
  padding-bottom: .06em;
  border-bottom: 1px solid var(--lilac-mid);
}
.prose a:hover, .lead a:hover { background-size: 100% 1px; }

/* ---- Cards: a slower, heavier lift -------------------------------------- */
.card { transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.card:hover { transform: translateY(-9px); }
.card-media img { transition: transform 1.2s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }

/* ---- A drawn sprig, in place of a dingbat ------------------------------- */
.sprig {
  display: block; width: 4.5rem; height: auto; margin: 0 auto; color: var(--lilac-mid);
}
.sprig-divider { color: transparent; letter-spacing: 0; gap: 1rem; }
.sprig-divider::before { width: min(9rem, 32vw); }
.sprig-divider::after {
  content: ''; width: min(9rem, 32vw); height: 1px;
  background: linear-gradient(90deg, var(--rule), transparent);
}
.sprig-divider { display: flex; align-items: center; justify-content: center; }

/* Hero flourish becomes the drawn sprig */
.hero-flourish { display: grid; place-items: center; margin-bottom: 1rem; }
.hero-flourish svg { width: 3.4rem; color: var(--lilac-brand); }

/* ---- Numerals ----------------------------------------------------------- */
.price, .event-date .d, .cart-total .price { font-variant-numeric: tabular-nums lining-nums; }
.price { font-variation-settings: 'opsz' 36, 'SOFT' 20, 'WONK' 0; font-weight: 500; }

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .split-lines .ln > span,
  .reveal-ready .wipe > * { transform: none !important; }
  .reveal-ready .wipe::after { display: none; }
  .deco[data-par] { transform: none !important; }
}

/* ==========================================================================
   23. PLACEHOLDER ART + DENSITY
   ========================================================================== */

/* Drawn, not stretched — crisp at any size */
.placeholder-floral {
  background:
    radial-gradient(120% 100% at 50% 0%, var(--card) 0%, var(--lilac-pale) 55%, var(--sage-pale) 100%);
}
.placeholder-floral .ph-art {
  width: 58%; max-width: 11rem; height: auto;
  color: var(--sage-mid); opacity: .62;
  animation: ph-turn 34s linear infinite;
}
@keyframes ph-turn { to { transform: rotate(360deg); } }
.placeholder-floral .ph-label {
  font-family: var(--body); font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; color: var(--ink-faint); opacity: .75;
}
.card:hover .placeholder-floral .ph-art { color: var(--lilac-brand); opacity: .8; }

/* ---- Marquee ribbon ----------------------------------------------------- */
.ribbon {
  background: var(--sage); color: var(--paper);
  padding: .95rem 0; overflow: hidden; position: relative;
}
.ribbon::before, .ribbon::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 6rem; z-index: 2;
}
.ribbon::before { left: 0;  background: linear-gradient(90deg, var(--sage), transparent); }
.ribbon::after  { right: 0; background: linear-gradient(270deg, var(--sage), transparent); }
.ribbon-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: slide 42s linear infinite;
}
.ribbon:hover .ribbon-track { animation-play-state: paused; }
.ribbon-track span {
  font-family: var(--display); font-size: 1.05rem; font-weight: 400;
  font-variation-settings: 'opsz' 36, 'SOFT' 40, 'WONK' 1;
  letter-spacing: .04em; white-space: nowrap;
  display: flex; align-items: center; gap: 2.5rem;
}
.ribbon-track span::after { content: '✦'; font-size: .6em; opacity: .6; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ribbon-track { animation: none; } }

/* ---- Statement band ----------------------------------------------------- */
.statement {
  text-align: center; padding-block: clamp(4rem, 3rem + 6vw, 8rem);
  position: relative; overflow: hidden;
}
.statement blockquote {
  font-family: var(--script); font-size: clamp(2rem, 1.3rem + 3.6vw, 4.2rem);
  line-height: 1.15; color: var(--lilac-brand); max-width: 22ch; margin-inline: auto;
}
.statement cite {
  display: block; margin-top: 1.6rem; font-style: normal;
  font-size: .74rem; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--sage);
}

/* ---- Promise trio ------------------------------------------------------- */
.promises { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 3rem); text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.promise svg { width: 2.6rem; height: 2.6rem; color: var(--lilac-brand); margin: 0 auto .9rem; }
.promise h3 { font-size: 1.15rem; }
.promise p { font-size: .93rem; color: var(--ink-soft); margin-top: .45rem; }
.promise { position: relative; }
.promise + .promise::before {
  content: ''; position: absolute; left: calc(-1 * clamp(.75rem, .5rem + 1vw, 1.5rem));
  top: 12%; bottom: 12%; width: 1px;
  background: linear-gradient(transparent, var(--rule), transparent);
}
@media (max-width: 48rem) { .promise + .promise::before { display: none; } }

/* ---- Full-bleed image band ---------------------------------------------- */
.bleed { position: relative; min-height: clamp(20rem, 42vw, 32rem); display: grid;
  place-items: center; overflow: hidden; isolation: isolate; text-align: center; }
.bleed img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.bleed::before { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(243,234,223,.55), rgba(243,234,223,.86)); }
.bleed .wrap-narrow { padding-block: 3rem; }
