/* ============================================================================
   E&J — ELEGANT & JAZZY COSMETICS
   Global stylesheet  •  Design system + components + page styles
   "Purpose in Beauty. Beauty in Purpose."
   ----------------------------------------------------------------------------
   Visual reference: client mockup (purple-forward feminine luxury).
   Palette pulled from the approved E&J logo (regal purple + magenta) + ivory.
   ----------------------------------------------------------------------------
   ORGANIZATION
     1. Design tokens        ← edit brand colors/fonts here
     2. Base / reset
     3. Typography
     4. Layout helpers
     5. Buttons & links
     6. Header / navigation
     7. Footer
     8. Reusable components (badges, product cards, category tiles, forms, reviews)
     9. Homepage sections
    10. Motion & hover
    11. Responsive (mobile-first)
   ============================================================================ */

/* ============================================================
   1. DESIGN TOKENS  —  change the whole brand from right here
   ============================================================ */
:root {
  /* --- Brand palette (from the E&J logo + client "purple / white / pink") --- */
  --color-ivory:       #FCF8F5;  /* warm ivory — default page background        */
  --color-white:       #FFFFFF;
  --color-pink-soft:   #FBEAF2;  /* soft pink wash — light section fills         */
  --color-lav-soft:    #F3ECF8;  /* light lavender wash — light section fills    */
  --color-lilac:       #DAC7EC;  /* lilac / lavender — soft accents & fills      */
  --color-magenta:     #C42B96;  /* magenta — script accents, links, highlights  */
  --color-purple:      #6F2DA8;  /* brand purple — eyebrows, accents             */
  --color-purple-mid:  #8E5AA8;  /* orchid purple — subheads, secondary text     */
  --color-plum:        #5A2A82;  /* deep purple — headings, primary buttons, text*/
  --color-plum-deep:   #3A1D5E;  /* darkest purple — footer                      */
  --color-gold:        #C8A24B;  /* muted gold — review stars ONLY               */

  /* --- Semantic roles --- */
  --bg:         var(--color-ivory);
  --bg-alt:     var(--color-white);
  --text:       #3E2A4E;          /* dark plum-grey body text */
  --text-soft:  #7A5E8C;          /* muted purple-grey */
  --accent:     var(--color-magenta);
  --accent-2:   var(--color-lilac);
  --line:       #EBDFF0;          /* hairline borders */

  /* --- Typography --- */
  --font-serif:  "Playfair Display", "Cormorant Garamond", Georgia, serif; /* editorial headlines */
  --font-sans:   "Jost", "Montserrat", "Helvetica Neue", Arial, sans-serif; /* clean body copy    */
  --font-script: "Great Vibes", "Parisienne", cursive; /* script accent ONLY (flourishes, matches logo) */

  --fs-hero:   clamp(2.4rem, 5.2vw, 4.2rem);
  --fs-h1:     clamp(2rem, 4.5vw, 3.2rem);
  --fs-h2:     clamp(1.7rem, 3.2vw, 2.5rem);
  --fs-h3:     clamp(1.2rem, 2vw, 1.5rem);
  --fs-body:   1rem;
  --fs-small:  0.85rem;
  --fs-label:  0.72rem;

  /* --- Spacing & shape --- */
  --space-section: clamp(3.5rem, 8vw, 7rem);
  --container:   1240px;
  --container-narrow: 820px;
  --radius:      14px;
  --radius-lg:   22px;

  --shadow-sm: 0 4px 18px rgba(58, 29, 94, 0.07);
  --shadow-md: 0 14px 40px rgba(58, 29, 94, 0.12);
  --shadow-lg: 0 28px 70px rgba(58, 29, 94, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   2. BASE / RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

:focus-visible { outline: 2px solid var(--color-magenta); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 2000; background: var(--color-plum); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.14; color: var(--color-plum); letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--text-soft); }

.eyebrow {
  font-family: var(--font-sans); font-size: var(--fs-label); font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent);
  display: inline-block; margin-bottom: 1rem;
}
.script { font-family: var(--font-script); font-weight: 400; line-height: 1; color: var(--color-magenta); }
.text-center { text-align: center; }

/* ============================================================
   4. LAYOUT HELPERS
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.container-narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--space-section); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--ivory { background: var(--color-ivory); }
.section--white { background: var(--color-white); }
.section--lav   { background: linear-gradient(180deg, var(--color-lav-soft) 0%, var(--color-ivory) 100%); }
.section--pink  { background: linear-gradient(180deg, var(--color-pink-soft) 0%, var(--color-ivory) 100%); }
.section--plum  { background: var(--color-plum); color: #fff; }
.section--plum h1, .section--plum h2, .section--plum h3, .section--plum p { color: #fff; }
.section--plum .eyebrow { color: var(--color-lilac); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; max-width: none; flex-wrap: wrap; }

.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.8rem); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

/* Decorative rule (magenta, matches the mockup's little accent line) */
.rule { display: inline-flex; align-items: center; gap: .6rem; }
.rule::after { content: ""; width: 54px; height: 2px; background: var(--color-magenta); display: inline-block; }
.rule-gold { width: 64px; height: 2px; background: var(--color-magenta); border: 0; margin: 1rem 0; }
.section-head.center .rule-gold { margin-inline: auto; }

/* ============================================================
   5. BUTTONS & LINKS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 0.95rem 2rem; font-family: var(--font-sans); font-size: var(--fs-small);
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .35s var(--ease), color .35s var(--ease);
}
.btn--primary { background: var(--color-plum); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-purple); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--magenta { background: var(--color-magenta); color: #fff; }
.btn--magenta:hover { background: #a82182; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--color-plum); box-shadow: inset 0 0 0 1.5px var(--color-plum); }
.btn--outline:hover { background: var(--color-plum); color: #fff; transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--color-plum); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--sm { padding: 0.72rem 1.4rem; font-size: var(--fs-label); }
.btn--full { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; font-size: var(--fs-small); color: var(--color-magenta);
}
.link-arrow .arw { transition: transform .3s var(--ease); }
.link-arrow:hover .arw { transform: translateX(5px); }
.link-arrow:hover { color: var(--color-plum); }

/* ============================================================
   6. HEADER / NAVIGATION  (injected by js/components.js)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(252, 248, 245, 0.9);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .4s var(--ease), background-color .4s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(252, 248, 245, 0.98); }

/* Top announcement strip: brand phrase centered + social icons right */
.topbar { background: var(--color-plum); color: #fff; font-size: var(--fs-label); }
.topbar__inner { display: flex; align-items: center; justify-content: center; position: relative; padding: .55rem 1rem; min-height: 38px; }
.topbar__phrase { letter-spacing: .22em; text-transform: uppercase; text-align: center; }
.topbar__social { position: absolute; right: clamp(1rem, 5vw, 3rem); display: none; gap: .75rem; align-items: center; }
.topbar__social a { color: #EAD9F2; display: inline-flex; transition: color .3s var(--ease); }
.topbar__social a:hover { color: #fff; }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 104px; }
.nav__logo { display: inline-flex; align-items: center; line-height: 1; }
.nav__logo-img { height: 86px; width: auto; }
/* Fallback script wordmark (shown only if logo image fails to load) */
.nav__logo .wordmark { font-family: var(--font-script); font-size: 2rem; color: var(--color-plum); }

.nav__links { display: none; align-items: center; gap: clamp(.9rem, 1.8vw, 1.8rem); }
.nav__links a {
  font-size: var(--fs-small); font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-plum); position: relative; padding-block: .25rem;
}
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0; background: var(--color-magenta); transition: width .35s var(--ease); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: .25rem; }
.icon-btn { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--color-plum); transition: background-color .3s var(--ease), color .3s var(--ease); }
.icon-btn:hover { background: var(--color-lav-soft); color: var(--color-magenta); }
.icon-btn .count { position: absolute; transform: translate(12px, -14px); background: var(--color-magenta); color:#fff; font-size:.6rem; font-weight:700; min-width: 17px; height: 17px; border-radius: 999px; display:flex; align-items:center; justify-content:center; padding:0 4px; }
.nav__toggle { display: inline-flex; }

/* Slide-down product search bar */
.search-bar { background: #fff; border-bottom: 1px solid var(--line); padding: .8rem 0; box-shadow: var(--shadow-sm); }
.search-bar form { display: flex; align-items: center; gap: .6rem; }
.search-bar input { flex: 1; padding: .8rem 1.1rem; border-radius: 999px; border: 1px solid var(--line); background: var(--color-ivory); }
.search-bar input:focus { outline: none; border-color: var(--color-magenta); box-shadow: 0 0 0 3px rgba(196,43,150,.15); }

/* Mobile drawer */
.mobile-nav { position: fixed; inset: 0 0 0 auto; width: min(85vw, 360px); background: var(--color-ivory); z-index: 1200; transform: translateX(100%); transition: transform .45s var(--ease); padding: 1.5rem 1.75rem 2rem; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: .1rem; overflow-y: auto; }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { padding: .85rem 0; font-family: var(--font-serif); font-size: 1.3rem; border-bottom: 1px solid var(--line); color: var(--color-plum); }
.mobile-nav__head { display:flex; justify-content: space-between; align-items:center; margin-bottom: 1rem; }
.mobile-nav__head img { height: 48px; }
.mobile-nav__cta { margin-top: auto; padding-top: 1.5rem; display: grid; gap: .75rem; }
.overlay { position: fixed; inset: 0; background: rgba(58, 29, 94, 0.5); z-index: 1100; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease); }
.overlay.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   7. FOOTER  (injected by js/components.js)
   ============================================================ */
.site-footer { background: var(--color-plum-deep); color: #E6D8EE; }
.site-footer a { color: #E6D8EE; }
.site-footer a:hover { color: #fff; }
.footer__top { display: grid; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 5rem); grid-template-columns: 1fr; }
.footer__brand img { height: 96px; margin-bottom: 1rem; }
.footer__brand .wordmark { font-family: var(--font-script); font-size: 2.4rem; color: #fff; }
.footer__phrase { font-family: var(--font-script); font-size: 1.6rem; color: var(--color-lilac); margin-top: .5rem; }
.footer__col h4 { font-family: var(--font-sans); font-size: var(--fs-label); letter-spacing:.22em; text-transform: uppercase; color: #fff; margin-bottom: 1.1rem; }
.footer__col ul { display: grid; gap: .7rem; }
.footer__col a { font-size: var(--fs-small); color: #D3C0DE; }
.footer__social { display: flex; gap: .6rem; margin-top: .75rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items:center; justify-content:center; border: 1px solid rgba(255,255,255,.2); transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.footer__social a:hover { background: var(--color-magenta); border-color: var(--color-magenta); transform: translateY(-3px); }
.footer__handle { font-size: var(--fs-small); color: #D3C0DE; margin-top: 1rem; }
.footer__nonprofit-note { font-size: var(--fs-small); color: #D3C0DE; }
.footer__nonprofit-note .script { color: var(--color-lilac); font-size: 1.5rem; display:inline-flex; align-items:center; gap:.4rem; margin-top:.5rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.4rem; display: flex; flex-direction: column; gap: .8rem; align-items: center; text-align: center; font-size: var(--fs-small); color: #B49CC2; }
.footer__bottom .pipes { display: flex; flex-wrap: wrap; gap: .5rem 1rem; justify-content: center; }
.footer__legal { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; justify-content: center; }

/* ============================================================
   8. REUSABLE COMPONENTS
   ============================================================ */

/* --- Badges --- */
.badge { display: inline-flex; align-items: center; gap: .35rem; font-size: var(--fs-label); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .35rem .7rem; border-radius: 999px; }
.badge--new     { background: var(--color-lilac); color: var(--color-plum); }
.badge--best    { background: var(--color-magenta); color: #fff; }
.badge--low     { background: #F6E0C8; color: #9a6a2a; }
.badge--sold    { background: #E7DDE1; color: var(--color-purple-mid); }
.badge--purpose { background: var(--color-purple); color: #fff; }

/* --- Product card --- */
.product-card { background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card__media { position: relative; aspect-ratio: 1 / 1; background: var(--color-pink-soft); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .3s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__badges { position: absolute; top: .8rem; left: .8rem; display: flex; flex-direction: column; gap: .4rem; }
.product-card__fav { position: absolute; top: .7rem; right: .7rem; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); display: inline-flex; align-items:center; justify-content:center; color: var(--color-purple-mid); box-shadow: var(--shadow-sm); transition: color .3s var(--ease), transform .3s var(--ease); }
.product-card__fav:hover { color: var(--color-magenta); transform: scale(1.1); }
.product-card__body { padding: 1.15rem 1.15rem 1.35rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.product-card__name { font-family: var(--font-serif); font-size: 1.15rem; color: var(--color-plum); }
.product-card__desc { font-size: var(--fs-small); color: var(--text-soft); line-height: 1.5; }

/* Shade / style clarity — customer must ALWAYS know what they select */
.swatches { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.swatch { width: 24px; height: 24px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--line); cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.swatch:hover { transform: scale(1.12); }
.swatch[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--color-magenta); transform: scale(1.12); }
.swatch--image { background-size: cover; background-position: center; }
.shade-label { font-size: var(--fs-small); color: var(--text-soft); font-weight: 500; }
.shade-label b { color: var(--color-plum); font-weight: 700; }

.product-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .5rem; }
.price { font-family: var(--font-serif); font-size: 1.2rem; color: var(--color-plum); }
.price small { font-family: var(--font-sans); font-size: .8rem; color: var(--text-soft); }
.availability { font-size: var(--fs-small); font-weight: 600; display: inline-flex; align-items:center; gap:.4rem; color: var(--text-soft); }
.availability::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: #6FBF8E; }
.availability.is-low::before { background: #E0A64B; }
.availability.is-out::before { background: #CC7777; }

/* --- Category tile (mockup style: image on top, caption card below) --- */
.category-grid { display: grid; gap: clamp(1rem, 2vw, 1.4rem); grid-template-columns: repeat(2, 1fr); }
.category-tile { background: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.category-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.category-tile__media { aspect-ratio: 4 / 5; overflow: hidden; }
.category-tile__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transition: transform .8s var(--ease); }
.category-tile:hover .category-tile__media img { transform: scale(1.07); }
.category-tile__cap { padding: .9rem .75rem 1.05rem; text-align: center; }
.category-tile__cap h3 { font-size: 1.05rem; color: var(--color-plum); }
.category-tile__cap .cat-shop { font-size: var(--fs-label); letter-spacing: .12em; text-transform: uppercase; color: var(--color-magenta); font-weight: 600; display:inline-flex; gap:.3rem; margin-top:.3rem; }

/* Paparazzi tile (5th item in the category row) */
.paparazzi-tile { background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; text-align: center; padding: 1.5rem 1rem; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.paparazzi-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.paparazzi-tile__logo { font-family: var(--font-script); font-size: 2rem; color: var(--color-magenta); line-height: 1; }
.paparazzi-tile__logo small { display:block; font-family: var(--font-sans); font-size:.55rem; letter-spacing:.2em; text-transform:uppercase; color: var(--color-purple-mid); margin-top:.15rem; }
.paparazzi-tile__desc { font-size: var(--fs-small); color: var(--text-soft); line-height: 1.5; max-width: 34ch; }
.give-logo { font-family: var(--font-serif); font-size: 1.5rem; color: var(--color-plum); line-height: 1; }
.give-logo small { display:block; font-family: var(--font-sans); font-size:.55rem; letter-spacing:.2em; text-transform:uppercase; color: var(--color-purple-mid); margin-top:.25rem; }

/* Supporting external links row (Paparazzi + Eleven & 1), sits under the categories */
.support-grid { display: grid; gap: clamp(1rem, 2vw, 1.4rem); grid-template-columns: 1fr; margin-top: clamp(1rem, 2vw, 1.4rem); }
.tile-logo { display: block; margin: 0 auto; height: auto; }
.tile-logo--papa { width: min(160px, 62%); }
.tile-logo--e1 { width: 140px; }

/* Inline text link (e.g., Eleven & 1 mention in the purpose copy) */
.tlink { color: var(--color-magenta); border-bottom: 1px solid currentColor; transition: color .3s var(--ease); }
.tlink:hover { color: var(--color-plum); }

/* --- Placeholder media --- */
.media-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, var(--color-lilac), var(--color-pink-soft)); color: var(--color-plum); font-family: var(--font-script); font-size: 1.5rem; padding: 1rem; width: 100%; height: 100%; }
.media-ph small { display:block; font-family: var(--font-sans); font-size:.6rem; letter-spacing:.2em; text-transform:uppercase; opacity:.65; margin-top:.35rem; }

/* --- Forms --- */
.field { display: grid; gap: .4rem; margin-bottom: 1rem; text-align: left; }
.field label { font-size: var(--fs-small); font-weight: 600; color: var(--color-purple-mid); letter-spacing: .04em; }
.field input, .field textarea, .field select { padding: .9rem 1.1rem; border-radius: 12px; border: 1px solid var(--line); background: #fff; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--color-magenta); box-shadow: 0 0 0 3px rgba(196,43,150,.15); outline: none; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: var(--fs-small); color: var(--text-soft); }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }

.vip-form { display: flex; flex-direction: column; gap: .75rem; }
.vip-form .vip-row { display: flex; gap: .5rem; flex-direction: column; }
.vip-form input { flex: 1; padding: .95rem 1.25rem; border-radius: 999px; border: 1px solid var(--line); background: #fff; }

/* --- Reviews / testimonials --- */
.testimonial { background: var(--color-white); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .8rem; height: 100%; }
.stars { color: var(--color-gold); letter-spacing: 2px; font-size: .95rem; }
.testimonial blockquote { font-size: .95rem; line-height: 1.55; color: var(--text); }
.testimonial__who { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.testimonial__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--color-lilac); display:flex; align-items:center; justify-content:center; font-family: var(--font-serif); color: var(--color-plum); object-fit: cover; }
.testimonial__who b { display: block; font-size: var(--fs-small); color: var(--color-plum); }
.testimonial__who span { font-size: var(--fs-small); color: var(--text-soft); }

/* ============================================================
   9. HOMEPAGE SECTIONS
   ============================================================ */

/* --- Hero (text left; editorial photo bleeds in on the right, faded) --- */
.hero { position: relative; overflow: hidden; background: linear-gradient(155deg, var(--color-lav-soft) 0%, var(--color-pink-soft) 55%, var(--color-lilac) 130%); }
.hero__inner { position: relative; z-index: 2; padding-block: clamp(2.25rem, 6vw, 4rem); }
.hero__copy { max-width: 620px; }
.hero__copy .eyebrow { color: var(--color-magenta); }
.hero__title { font-size: var(--fs-hero); margin: .25rem 0 1.1rem; }
.hero__title .serif-line { display: block; color: var(--color-plum); }
.hero__title .script-line { display: block; font-family: var(--font-script); color: var(--color-magenta); font-weight: 400; font-size: 1.15em; line-height: 1; margin-top: .1em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.5rem; }

/* Editorial photo fades into the hero gradient (no framed box) */
.hero__photo { position: relative; width: 100%; margin-top: 1rem; z-index: 1; }
.hero__photo img {
  display: block; width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: center 22%;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 45%);
  mask-image: linear-gradient(to top, transparent 0%, #000 45%);
}

/* --- Split (purpose / founder) --- */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--shadow-md); }
.split__media img { width:100%; height:100%; object-fit: cover; }
.split .script-head { font-family: var(--font-script); color: var(--color-magenta); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; display:block; margin-bottom:.35rem; }

/* Purpose quote card */
.purpose-quote { background: var(--color-white); border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; box-shadow: var(--shadow-sm); border-left: 4px solid var(--color-magenta); }
.purpose-quote p { font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: var(--color-plum); }
.purpose-quote span { display:block; margin-top:.6rem; font-size: var(--fs-small); color: var(--text-soft); }

/* --- Founder band (soft purple gradient + floral accent from the mockup) --- */
.founder-band {
  position: relative;
  background:
    linear-gradient(120deg, var(--color-lav-soft) 0%, var(--color-pink-soft) 55%, var(--color-lilac) 100%);
  overflow: hidden;
}
/* Floral accent — right side, softly faded into the gradient */
.founder-band::after {
  content: ""; position: absolute; right: 0; bottom: 0; z-index: 0;
  width: min(34%, 300px); height: 62%;
  background: url("../assets/founder-flower.jpg") right bottom / cover no-repeat;
  -webkit-mask-image: linear-gradient(to left, #000 30%, transparent 92%), linear-gradient(to top, #000 45%, transparent 95%);
  -webkit-mask-composite: source-in; mask-composite: intersect;
  mask-image: linear-gradient(to left, #000 30%, transparent 92%), linear-gradient(to top, #000 45%, transparent 95%);
  opacity: .7; pointer-events: none;
}
/* Floral cluster behind & beside the portrait (left), mirrored and softly faded */
.founder-band::before {
  content: ""; position: absolute; left: -3%; top: 6%; z-index: 0;
  width: min(42%, 340px); height: 80%;
  background: url("../assets/founder-flower.jpg") center / cover no-repeat;
  transform: scaleX(-1);
  -webkit-mask-image: radial-gradient(closest-side, #000 36%, transparent 90%);
  mask-image: radial-gradient(closest-side, #000 36%, transparent 90%);
  opacity: .5; pointer-events: none;
}
.founder-band .container { position: relative; z-index: 1; }
/* Portrait fades into the section (no framed box); florals show through its soft edges */
.founder-band .split__media { border-radius: 0; box-shadow: none; overflow: visible; background: transparent; }
.founder-band .split__media img {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 12%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in; mask-composite: intersect;
  mask-image: linear-gradient(to right, transparent 0%, #000 15%, #000 85%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 12%, #000 82%, transparent 100%);
}
/* On phones scale the florals down so they stay soft accents, clear of the text */
@media (max-width: 819px) {
  .founder-band::after { width: 52%; height: 30%; opacity: .55; }
  .founder-band::before { width: 62%; height: 30%; top: 1%; left: -8%; opacity: .4; }
}
.founder-quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.4rem,2.6vw,2rem); line-height: 1.4; color: var(--color-plum); }
.founder-sign { font-family: var(--font-script); font-size: 2.4rem; color: var(--color-magenta); margin-top: .75rem; }

/* --- Reviews + VIP two-column --- */
.reviews-vip { display: grid; grid-template-columns: 1fr; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }
.reviews-col .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.vip-panel { background: linear-gradient(160deg, var(--color-lav-soft), var(--color-pink-soft)); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.5rem); box-shadow: var(--shadow-sm); text-align: center; }
.vip-panel h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.vip-panel .vip-form { margin-top: 1.25rem; }

/* --- VIP band (full width alt, used on other pages) --- */
.vip-band { background: linear-gradient(135deg, var(--color-purple), var(--color-plum)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 4rem); text-align: center; }
.vip-band h2, .vip-band p { color: #fff; }
.vip-band .vip-form { margin-inline: auto; max-width: 480px; align-items: center; }
.vip-band .eyebrow { color: var(--color-lilac); }

/* ============================================================
   10. MOTION & HOVER
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }

/* ============================================================
   11. RESPONSIVE  (mobile-first)
   ============================================================ */
@media (min-width: 600px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .vip-form .vip-row { flex-direction: row; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .reviews-col .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 820px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  /* category-grid stays 2×2 at all sizes so the model photos read large (no face crop) */
  /* Hero: text left, photo bleeds full-height into the right, faded on its left edge */
  .hero__inner { min-height: 540px; display: flex; align-items: center; }
  .hero__copy { max-width: 540px; }
  .hero__photo { position: absolute; top: 0; right: 0; bottom: 0; width: 56%; margin: 0; }
  .hero__photo img { height: 100%; aspect-ratio: auto; object-position: center 24%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 44%);
    mask-image: linear-gradient(to right, transparent 0%, #000 44%); }
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  .reviews-vip { grid-template-columns: 1.65fr 1fr; }
  .reviews-col .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
  .topbar__social { display: flex; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .hero__inner { min-height: 600px; }
  .hero__photo { width: 54%; }
}

/* ============================================================
   12. REVISION ADD-ONS (brand values, banners, social, final CTA)
   ============================================================ */
.hero__sub { color: var(--text-soft); margin-top: .5rem; }

/* Brand value icons strip (under hero) */
.brand-values { border-bottom: 1px solid var(--line); }
.bv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }
.bv-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.bv-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--color-lav-soft); color: var(--color-magenta); }
.bv-item h3 { font-family: var(--font-sans); font-size: var(--fs-label); letter-spacing: .16em; text-transform: uppercase; color: var(--color-plum); }
.bv-item p { font-size: var(--fs-small); color: var(--text-soft); max-width: 24ch; }

/* Category tagline */
.cat-tag { font-size: var(--fs-small); color: var(--text-soft); margin: .1rem 0 .4rem; }

/* Product card: category label + sale price */
.product-card__cat { font-size: var(--fs-label); letter-spacing: .14em; text-transform: uppercase; color: var(--color-magenta); font-weight: 600; }
.price-was { color: var(--text-soft); font-size: .9rem; margin-right: .3rem; text-decoration: line-through; }

/* Purpose "proudly supporting" block */
.purpose-give { display: flex; align-items: center; gap: .9rem; margin-top: 1.25rem; background: #fff; border-radius: var(--radius); padding: .9rem 1.1rem; box-shadow: var(--shadow-sm); }
.purpose-give img { width: 140px; height: auto; flex-shrink: 0; }
.purpose-give b { display: block; color: var(--color-plum); font-family: var(--font-serif); font-size: 1rem; }
.purpose-give .tlink { font-size: var(--fs-small); }

/* Brand values cards (5) */
.vc-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2vw, 1.4rem); }
.vc-card { background: var(--color-lav-soft); border-radius: var(--radius-lg); padding: 1.6rem 1.4rem; text-align: center; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.vc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.vc-card h3 { font-size: 1.1rem; color: var(--color-plum); margin-bottom: .35rem; }
.vc-card p { font-size: var(--fs-small); color: var(--text-soft); }

/* Founder affirmation line */
.founder-affirm { font-family: var(--font-serif); font-style: italic; color: var(--color-magenta); font-size: 1.05rem; margin-top: .5rem; }

/* Paparazzi banner (external partner) */
.paparazzi-banner { background: linear-gradient(135deg, var(--color-pink-soft), var(--color-lav-soft)); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; box-shadow: var(--shadow-sm); text-align: center; }
.paparazzi-banner h2 { color: var(--color-plum); }
.paparazzi-banner p { color: var(--text-soft); max-width: 46ch; margin: 0 auto 1.5rem; }
.paparazzi-banner .eyebrow { display: block; }
.paparazzi-banner__logo { text-align: center; order: -1; }
.paparazzi-banner__logo img { width: min(210px, 66%); margin-inline: auto; }

/* Social connect */
.social-row { display: flex; justify-content: center; gap: .9rem; margin-top: 1.5rem; }
.social-row__link { width: 52px; height: 52px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--color-lav-soft); color: var(--color-plum); transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.social-row__link:hover { background: var(--color-magenta); color: #fff; transform: translateY(-3px); }
.social-row__link svg { width: 22px; height: 22px; }

/* Final CTA */
.final-cta__script { display: block; font-size: clamp(2rem, 5vw, 3rem); color: var(--color-lilac); margin-bottom: .1rem; }
.final-cta h2 { font-size: clamp(1.9rem, 4vw, 3rem); max-width: 20ch; margin-inline: auto; }
.final-cta .lead { color: #EAD9F2; margin-top: 1rem; }

/* Footer additions */
.footer__location { font-size: var(--fs-small); color: #C6B2D2; margin-top: .75rem; }

@media (min-width: 600px) {
  .bv-grid { grid-template-columns: repeat(4, 1fr); }
  .vc-grid { grid-template-columns: repeat(2, 1fr); }
  .paparazzi-banner { grid-template-columns: 1.5fr 1fr; text-align: left; }
  .paparazzi-banner p { margin: 0 0 1.5rem; }
  .paparazzi-banner__logo { order: 0; }
}
@media (min-width: 820px) {
  .vc-grid { grid-template-columns: repeat(5, 1fr); }
  .footer__top { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr; }
}

/* ============================================================
   13. SHOP PAGE
   ============================================================ */
/* Compact shop hero — text left, editorial photo bleeds in on the right, faded */
.shop-hero { position: relative; overflow: hidden; background: linear-gradient(155deg, var(--color-pink-soft) 0%, var(--color-lav-soft) 70%, var(--color-lilac) 130%); }
.shop-hero__inner { position: relative; z-index: 2; padding-block: clamp(2rem, 5vw, 3.5rem); }
.shop-hero__inner > div { max-width: 640px; }
.shop-hero .eyebrow { font-size: .85rem; letter-spacing: .3em; }
.shop-hero__title { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: .4rem 0 1.1rem; }
.shop-hero__title .serif-line { display: block; color: var(--color-plum); }
.shop-hero__title .script-line { display: block; font-family: var(--font-script); color: var(--color-magenta); font-weight: 400; font-size: 1.15em; line-height: 1; }
.shop-hero .lead { font-size: clamp(1.12rem, 1.7vw, 1.35rem); }
/* Photo fades into the gradient (no framed box); top edge fades too */
.shop-hero__photo { position: relative; width: 100%; margin-top: 1rem; z-index: 1; }
.shop-hero__photo img {
  display: block; width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center 42%;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 45%);
  mask-image: linear-gradient(to top, transparent 0%, #000 45%);
}

/* Category shortcut row (4 categories + Paparazzi) */
.shortcut-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.9rem, 2vw, 1.3rem); }

/* Shop layout: sidebar + grid */
.shop-layout { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.shop-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.shop-toolbar h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.shop-count { font-size: var(--fs-small); color: var(--text-soft); margin-top: .25rem; }
.sort-wrap { display: flex; align-items: center; gap: .5rem; font-size: var(--fs-small); color: var(--text-soft); }
.sort-wrap select { padding: .6rem .9rem; border-radius: 10px; border: 1px solid var(--line); background: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }

/* Product card extras used on shop */
.product-card__actions { display: grid; gap: .4rem; margin-top: .7rem; }
.product-card__view { font-size: var(--fs-small); color: var(--color-magenta); font-weight: 600; letter-spacing: .04em; text-align: center; }
.product-card__view:hover { color: var(--color-plum); }

/* Sidebar */
.shop-sidebar { align-self: start; }
.sidebar-block { margin-bottom: 1.75rem; }
.sidebar-block h3 { font-family: var(--font-serif); font-size: 1.15rem; color: var(--color-plum); margin-bottom: .9rem; }
.filter-cats { display: grid; gap: .15rem; }
.filter-cats button { text-align: left; padding: .6rem .85rem; border-radius: 10px; color: var(--color-plum); font-size: var(--fs-small); font-weight: 500; transition: background-color .25s var(--ease), color .25s var(--ease); }
.filter-cats button:hover { background: var(--color-lav-soft); }
.filter-cats button.is-active { background: var(--color-plum); color: #fff; }

.filter-group { border-top: 1px solid var(--line); }
.filter-group > summary { list-style: none; cursor: pointer; padding: .9rem 0; font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-small); letter-spacing: .04em; color: var(--color-plum); display: flex; align-items: center; justify-content: space-between; }
.filter-group > summary::-webkit-details-marker { display: none; }
.filter-group > summary::after { content: "+"; font-size: 1.1rem; color: var(--color-magenta); }
.filter-group[open] > summary::after { content: "–"; }
.filter-group__body { padding-bottom: 1.1rem; }
.price-row { display: flex; align-items: center; justify-content: space-between; font-size: var(--fs-small); color: var(--text-soft); }
.price-range { width: 100%; accent-color: var(--color-magenta); }
.color-swatches { display: flex; flex-wrap: wrap; gap: .55rem; }
.color-swatches .swatch { width: 28px; height: 28px; }
.check-row { display: flex; align-items: center; gap: .55rem; font-size: var(--fs-small); color: var(--text); padding: .3rem 0; cursor: pointer; }
.check-row input { accent-color: var(--color-magenta); width: 17px; height: 17px; }

/* Support card */
.support-card { background: linear-gradient(160deg, var(--color-pink-soft), var(--color-lav-soft)); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; margin-top: 1.5rem; }
.support-card .support-ico { width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--color-magenta); display: inline-flex; align-items: center; justify-content: center; margin-bottom: .6rem; }
.support-card h3 { font-family: var(--font-serif); color: var(--color-plum); font-size: 1.1rem; margin-bottom: .35rem; }
.support-card p { font-size: var(--fs-small); color: var(--text-soft); margin-bottom: 1rem; }

/* Pagination */
.pager { display: flex; justify-content: center; align-items: center; gap: .4rem; margin-top: 2.5rem; }
.pager button { min-width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: #fff; color: var(--color-plum); font-weight: 600; transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.pager button:hover:not(:disabled) { border-color: var(--color-magenta); color: var(--color-magenta); }
.pager button.is-active { background: var(--color-plum); color: #fff; border-color: var(--color-plum); }
.pager button:disabled { opacity: .4; cursor: default; }

/* Empty state */
.shop-empty { text-align: center; padding: clamp(2.5rem, 6vw, 4.5rem) 1rem; }
.shop-empty h3 { font-size: 1.6rem; color: var(--color-plum); margin-bottom: .5rem; }
.shop-empty p { color: var(--text-soft); margin-bottom: 1.5rem; }

/* Mobile filter controls + drawer */
.shop-controls { display: flex; gap: .6rem; margin-bottom: 1.25rem; }
.shop-controls .btn { flex: 1; }
.filter-close { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.filter-close h3 { font-family: var(--font-serif); color: var(--color-plum); }

@media (min-width: 600px) {
  .shortcut-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 820px) {
  .shop-hero__inner { min-height: 440px; display: flex; align-items: center; }
  .shop-hero__inner > div { max-width: 540px; }
  .shop-hero__photo { position: absolute; top: 0; right: 0; bottom: 0; width: 55%; margin: 0; }
  .shop-hero__photo img { height: 100%; aspect-ratio: auto; object-position: center 45%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 42%), linear-gradient(to bottom, transparent 0%, #000 20%);
    -webkit-mask-composite: source-in; mask-composite: intersect;
    mask-image: linear-gradient(to right, transparent 0%, #000 42%), linear-gradient(to bottom, transparent 0%, #000 20%); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .shortcut-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1024px) {
  .shop-layout { grid-template-columns: 258px 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-controls { display: none; }               /* filters are always visible on desktop */
  .shop-sidebar { position: static !important; transform: none !important; }
}
@media (min-width: 1280px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Sidebar as a slide-in drawer on mobile/tablet (< 1024) */
@media (max-width: 1023px) {
  .shop-sidebar { position: fixed; inset: 0 auto 0 0; width: min(86vw, 340px); background: var(--color-ivory); z-index: 1200; transform: translateX(-100%); transition: transform .4s var(--ease); padding: 1.5rem 1.5rem 2rem; overflow-y: auto; box-shadow: var(--shadow-lg); }
  .shop-sidebar.is-open { transform: translateX(0); }
}

/* ============================================================
   14. ABOUT NICOLE PAGE
   ============================================================ */
/* Hero: portrait bleeds in on the left, text on the right */
.about-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--color-pink-soft) 0%, var(--color-lav-soft) 70%, var(--color-lilac) 130%); }
.about-hero__inner { position: relative; z-index: 2; padding-block: clamp(2rem, 5vw, 3.5rem); }
.about-hero__text { max-width: 640px; }
.about-hero__eyebrow { color: var(--color-magenta); }
.about-hero__title { font-size: clamp(2.6rem, 6vw, 4.2rem); color: var(--color-plum); margin: .3rem 0 .1rem; }
.about-hero__script { display: block; font-family: var(--font-script); color: var(--color-magenta); font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.05; margin-bottom: 1.1rem; }
.about-hero__text p { margin-bottom: .85rem; color: var(--text); }
.about-hero__accent { display: inline-block; font-family: var(--font-script); color: var(--color-mauve, var(--color-purple-mid)); font-size: 1.5rem; margin: .5rem 0; }
.about-affirm { font-family: var(--font-serif); font-style: italic; color: var(--color-plum); font-size: 1.1rem; line-height: 1.5; border-left: 3px solid var(--color-magenta); padding-left: 1rem; margin-top: 1.25rem; }
.about-hero__photo { position: relative; width: 100%; margin-bottom: 1.25rem; z-index: 1; }
.about-hero__photo img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 40%); mask-image: linear-gradient(to top, transparent 0%, #000 40%); }

/* Story row: Why I Started | polaroids | My Heart */
.story-row { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: center; }
.story-col h2 { color: var(--color-plum); }
.story-col p { color: var(--text-soft); margin-bottom: .85rem; }
.polaroids { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.polaroid { background: #fff; padding: .55rem .55rem 0; border-radius: 6px; box-shadow: var(--shadow-md); width: min(46%, 220px); }
.polaroid:first-child { transform: rotate(-4deg); }
.polaroid:last-child { transform: rotate(4deg); }
.polaroid img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 3px; }
.polaroid figcaption { font-family: var(--font-script); text-align: center; color: var(--color-plum); font-size: 1.15rem; padding: .5rem .25rem .7rem; line-height: 1.1; }

/* What I Believe: 5 minimal icon blocks */
.believe-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 3vw, 2rem); }

/* Founder message quote */
.founder-message { text-align: center; }
.founder-message .script-head { display: block; font-family: var(--font-script); color: var(--color-magenta); font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.founder-message blockquote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.45; color: var(--color-plum); max-width: 26ch; margin: 0 auto; }
.founder-message .affirm { color: var(--color-magenta); font-family: var(--font-serif); font-style: italic; margin-top: 1.25rem; }
.founder-message .sign { font-family: var(--font-script); color: var(--color-plum); font-size: 2rem; margin-top: 1rem; display: block; }
.founder-message .sign small { display: block; font-family: var(--font-sans); font-size: var(--fs-small); letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); }

/* Gala / upcoming event placeholder */
.gala { background: linear-gradient(135deg, var(--color-mauve), var(--color-plum)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; }
.gala h2, .gala p { color: #fff; }
.gala .eyebrow { color: var(--color-lilac); }
.gala__meta { display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: center; margin: 1rem 0 1.5rem; font-size: var(--fs-small); letter-spacing: .04em; }
.gala__meta span { display: inline-flex; align-items: center; gap: .5rem; }

@media (min-width: 600px) {
  .believe-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 820px) {
  .about-hero__inner { min-height: 540px; display: flex; align-items: center; }
  .about-hero__text { max-width: 520px; margin-left: auto; }
  .about-hero__photo { position: absolute; left: 0; top: 0; bottom: 0; width: 46%; margin: 0; }
  .about-hero__photo img { height: 100%; aspect-ratio: auto; object-position: center 20%;
    -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 40%); mask-image: linear-gradient(to left, transparent 0%, #000 40%); }
}
@media (min-width: 1024px) {
  .story-row { grid-template-columns: 1fr 1.05fr 1fr; }
  .believe-grid { grid-template-columns: repeat(5, 1fr); }
}

/* About Nicole — story photos: clean editorial images with soft rounded
   corners + a gentle diffuse shadow (no harsh square edges, no washed fade) */
#story .split__media { border-radius: 20px; overflow: hidden; box-shadow: 0 22px 55px rgba(58, 29, 94, 0.16); background: transparent; }
#story .split__media img { -webkit-mask-image: none; mask-image: none; }

/* About Nicole — larger, more readable type throughout (scoped to this page) */
.about-page p { font-size: 1.1rem; line-height: 1.75; }
.about-page .about-hero__text p { font-size: 1.15rem; }
.about-page .eyebrow { font-size: .82rem; }
.about-page .lead { font-size: clamp(1.12rem, 1.7vw, 1.35rem); }
.about-page .about-affirm { font-size: 1.25rem; }
.about-page .about-hero__accent { font-size: clamp(2rem, 4.5vw, 2.8rem); }
.about-page .bv-item h3 { font-size: .86rem; }
.about-page .bv-item p { font-size: 1rem; }
.about-page .founder-message .affirm { font-size: 1.2rem; }
.about-page .founder-message .sign small { font-size: .95rem; letter-spacing: .14em; }

/* ============================================================
   15. LOVE NOTES & CONTACT PAGE
   ============================================================ */
/* Hero — full-width image banner (falls back to gradient until image is added) */
.lnc-hero { position: relative; overflow: hidden; text-align: center; background: linear-gradient(135deg, var(--color-pink-soft) 0%, var(--color-lav-soft) 70%, var(--color-lilac) 130%); }
.lnc-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.lnc-hero__scrim { display: none; }
/* Only show the readability scrim when the hero image is actually present */
.lnc-hero__img + .lnc-hero__scrim { display: block; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(252,248,245,.62) 0%, rgba(251,234,242,.42) 60%, rgba(218,199,236,.4) 100%); }
.lnc-hero__inner { position: relative; z-index: 2; padding-top: clamp(1.5rem, 3.5vw, 2.5rem); padding-bottom: clamp(3rem, 8vw, 5.5rem); }
.lnc-hero h1 { font-size: clamp(2.8rem, 7vw, 4.8rem); color: var(--color-plum); }
.lnc-hero__script { display: block; font-family: var(--font-script); color: var(--color-magenta); font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1; margin: .35rem 0 1rem; }
.lnc-hero p { color: var(--text-soft); max-width: 54ch; margin-inline: auto; font-size: 1.05rem; }

/* Two-column: reviews (left) + contact form (right) */
.lnc-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.lnc-script-head { display: block; font-family: var(--font-script); color: var(--color-magenta); font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.05; }

/* Share your experience CTA card */
.share-card { background: linear-gradient(160deg, var(--color-pink-soft), var(--color-lav-soft)); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.25rem); text-align: center; margin-top: 1.75rem; }
.share-card h3 { font-family: var(--font-serif); color: var(--color-plum); font-size: 1.3rem; margin-bottom: .4rem; }
.share-card p { color: var(--text-soft); font-size: var(--fs-small); margin-bottom: 1.1rem; max-width: 44ch; margin-inline: auto; }

/* Contact form panel */
.contact-panel { background: var(--color-white); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.25rem); box-shadow: var(--shadow-sm); }
.contact-panel .req { color: var(--color-magenta); }

/* Contact info cards */
.info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.info-card { background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.6rem 1.25rem; text-align: center; }
.info-card .ico { width: 48px; height: 48px; border-radius: 50%; background: var(--color-lav-soft); color: var(--color-magenta); display: inline-flex; align-items: center; justify-content: center; margin-bottom: .7rem; }
.info-card h3 { font-family: var(--font-sans); font-size: var(--fs-label); letter-spacing: .16em; text-transform: uppercase; color: var(--color-plum); margin-bottom: .4rem; }
.info-card p { font-size: var(--fs-small); color: var(--text); }
.info-card p.note { color: var(--text-soft); font-style: italic; margin-top: .3rem; }
.info-card a { color: var(--color-magenta); font-weight: 600; }

/* FAQ accordions */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: .75rem; }
.faq-item { background: var(--color-white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1rem 1.2rem; font-weight: 600; color: var(--color-plum); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--color-magenta); font-size: 1.3rem; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 1.2rem 1.1rem; color: var(--text-soft); font-size: var(--fs-small); }

@media (min-width: 680px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 820px) {
  .info-cards { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .lnc-grid { grid-template-columns: 1.05fr 1fr; }
}

/* ============================================================
   16. HOMEPAGE — larger, more readable small text (scoped)
   ============================================================ */
.home-page p { font-size: 1.08rem; line-height: 1.72; }
.home-page .lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
.home-page .eyebrow { font-size: .82rem; }
.home-page .cat-tag { font-size: .95rem; }
.home-page .product-card__cat { font-size: .78rem; }
.home-page .product-card__desc { font-size: .95rem; }
.home-page .shade-label { font-size: .95rem; }
.home-page .availability { font-size: .92rem; }
.home-page .paparazzi-tile__desc { font-size: .95rem; }
.home-page .testimonial blockquote { font-size: 1.05rem; }
.home-page .testimonial__who b, .home-page .testimonial__who span { font-size: .92rem; }
.home-page .form-note { font-size: .92rem; }

/* About Nicole — soft pink floral accents spread across the open white space
   (story + What I Believe sections). Faded corners keep it airy, not busy. */
#story, #believe { position: relative; overflow: hidden; }
#story::before, #story::after,
#believe::before, #believe::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  background: url("../assets/founder-flower-pink.jpg") center / cover no-repeat;
  -webkit-mask-image: radial-gradient(closest-side, #000 34%, transparent 86%);
  mask-image: radial-gradient(closest-side, #000 34%, transparent 86%);
}
#story::before   { left: -5%;  top: -4%;    width: min(36%, 340px); height: 58%; transform: scaleX(-1); opacity: .5; }
#story::after    { right: -5%; bottom: -4%; width: min(34%, 320px); height: 56%; opacity: .5; }
#believe::before { right: -5%; top: -4%;    width: min(32%, 320px); height: 56%; opacity: .42; }
#believe::after  { left: -6%;  bottom: -5%; width: min(34%, 340px); height: 58%; transform: scaleX(-1); opacity: .42; }
#story .container, #believe .container { position: relative; z-index: 1; }
@media (max-width: 819px) {
  #story::before, #story::after,
  #believe::before, #believe::after { width: 58%; height: 24%; opacity: .32; }
}

/* ============================================================
   17. SHOP + LOVE NOTES & CONTACT — larger, more readable small text
   ============================================================ */
.shop-page p, .lnc-page p { font-size: 1.08rem; line-height: 1.72; }
.shop-page .lead, .lnc-page .lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
.shop-page .eyebrow, .lnc-page .eyebrow { font-size: .82rem; }

/* Shop */
.shop-page .cat-tag { font-size: .98rem; }
.shop-page .product-card__cat { font-size: .78rem; }
.shop-page .product-card__desc { font-size: .95rem; }
.shop-page .shade-label { font-size: .95rem; }
.shop-page .availability { font-size: .92rem; }

/* Love Notes & Contact */
.lnc-page .testimonial blockquote { font-size: 1.05rem; }
.lnc-page .testimonial__who b, .lnc-page .testimonial__who span { font-size: .92rem; }
.lnc-page .share-card p { font-size: .98rem; }
.lnc-page .info-card h3 { font-size: .78rem; }
.lnc-page .info-card p { font-size: .98rem; }
.lnc-page .info-card p.note { font-size: .92rem; }
.lnc-page .faq-item summary { font-size: 1.02rem; }
.lnc-page .faq-item .faq-body { font-size: .98rem; }
.lnc-page .field label { font-size: .95rem; }
.lnc-page .form-note { font-size: .92rem; }

/* Homepage "Meet the Founder" script — larger + bolder (text-stroke thickens the script) */
.home-page .founder-band .script-head {
  font-size: clamp(3rem, 6.5vw, 4.6rem);
  -webkit-text-stroke: 0.7px var(--color-magenta);
  text-stroke: 0.7px var(--color-magenta);
  margin-bottom: .5rem;
}

/* ============================================================================
   SHOP — ORDER CARDS  (color guide + dropdown / photo + note)
   ============================================================================ */
.order-stack { display: grid; gap: clamp(2rem, 4vw, 3.4rem); }
.order-card {
  background: var(--color-white); border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  box-shadow: 0 22px 55px -34px rgba(90, 42, 130, .55);
  scroll-margin-top: 120px;
}
.order-card__head { text-align: center; max-width: 640px; margin: 0 auto 1.5rem; }
.order-card__title { color: var(--color-plum); margin: .3rem 0 .4rem; }
.order-card__price {
  font-family: var(--font-script); color: var(--color-magenta);
  font-size: 2rem; line-height: 1; margin: .1rem 0 .7rem;
}
.order-card__guide {
  border-radius: 14px; overflow: hidden;
  background: var(--color-ivory); border: 1px solid var(--line);
}
.order-card__guide img { display: block; width: 100%; height: auto; }

/* Forms */
.order-form { max-width: 560px; margin: 1.5rem auto 0; }
.order-form__row { display: grid; grid-template-columns: 1fr auto; gap: .8rem; }
.field {
  display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 700;
}
.field select, .field input, .field textarea {
  font-family: var(--font-sans); font-size: 1rem; font-weight: 400;
  text-transform: none; letter-spacing: normal; color: var(--text);
  padding: .72rem .85rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--color-white); width: 100%;
}
.field textarea { resize: vertical; }
.field--qty input { width: 96px; }
.field select:focus, .field input:focus, .field textarea:focus {
  outline: 2px solid var(--color-lilac); outline-offset: 1px; border-color: var(--color-purple-mid);
}
.js-order-note { margin-top: .8rem; font-weight: 600; color: var(--color-magenta); text-align: center; }

/* Photo variant (sunglasses / lashes): image + panel side by side */
.order-card--photo { padding: 0; overflow: hidden; }
.order-card--photo .order-card__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.order-card--photo .order-card__panel { padding: clamp(1.5rem, 3vw, 2.6rem); }
.order-card--photo .order-form { margin-top: 1rem; }
@media (min-width: 760px) {
  .order-card--photo { display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; }
  .order-card--photo .order-card__photo { min-height: 100%; }
}

/* Sunglasses reference gallery */
.ref-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.6rem, 1.5vw, 1rem); margin-top: .4rem; }
.ref-gallery img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; border-radius: 12px; border: 1px solid var(--line); }
@media (min-width: 760px) { .ref-gallery { grid-template-columns: repeat(4, 1fr); } }

/* Shop — live shade preview (selected product photo beside the picker) */
.shade-picker { display: grid; gap: clamp(1.2rem, 3vw, 2rem); margin-top: 1.5rem; align-items: center; }
.shade-picker__preview { position: relative; aspect-ratio: 4 / 5; max-width: 420px; width: 100%; margin-inline: auto;
  border-radius: 16px; overflow: hidden; background: var(--color-ivory); border: 1px solid var(--line); }
.shade-picker__preview img, .shade-picker__preview .media-ph { display: block; width: 100%; height: 100%; object-fit: cover; }
.shade-picker__preview .media-ph { align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.4rem; color: var(--color-plum); }
.shade-picker .order-form { margin-top: 0; max-width: 100%; }
@media (min-width: 760px) {
  .shade-picker { grid-template-columns: 1fr 1fr; }
  .shade-picker__preview { max-width: 100%; }
}

/* ============================================================================
   DESKTOP COMFORT — keep tiles & product images from getting oversized on
   wide screens (so you can see the whole product without it feeling zoomed in)
   ============================================================================ */
.category-grid { max-width: 860px; margin-inline: auto; }
.order-stack { max-width: 940px; margin-inline: auto; }
@media (min-width: 760px) {
  .shade-picker__preview { max-width: 340px; }
  .order-card__guide { max-width: 760px; margin-inline: auto; }
  .ref-gallery { max-width: 820px; margin-inline: auto; }
}

/* ============================================================================
   CART — badge + slide-out drawer
   ============================================================================ */
.icon-btn .count.is-empty { display: none; }
body.cart-locked { overflow: hidden; }

.cart-drawer { position: fixed; inset: 0; z-index: 1000; visibility: hidden; }
.cart-drawer.is-open { visibility: visible; }
.cart-drawer__overlay { position: absolute; inset: 0; background: rgba(58, 29, 94, .38); opacity: 0; transition: opacity .3s var(--ease); }
.cart-drawer.is-open .cart-drawer__overlay { opacity: 1; }
.cart-drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 92vw);
  background: var(--color-white); box-shadow: -20px 0 60px -30px rgba(58,29,94,.6);
  display: flex; flex-direction: column; transform: translateX(100%);
  transition: transform .34s var(--ease);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--line); }
.cart-drawer__head h3 { color: var(--color-plum); margin: 0; }
.cart-drawer__close { font-size: 1.8rem; line-height: 1; color: var(--text-soft); background: none; border: 0; cursor: pointer; }
.cart-drawer__close:hover { color: var(--color-magenta); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; }
.cart-drawer__foot { padding: 1.2rem 1.4rem; border-top: 1px solid var(--line); background: var(--color-ivory); }

.cart-empty { text-align: center; color: var(--text-soft); padding: 2.5rem 0; }
.cart-empty p { margin-bottom: 1rem; }

.cart-line { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.cart-line__info { display: flex; flex-direction: column; gap: .15rem; }
.cart-line__cat { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--color-purple-mid); font-weight: 700; }
.cart-line__name { color: var(--color-plum); font-size: 1.02rem; }
.cart-line__price { font-size: .82rem; color: var(--text-soft); }
.cart-line__controls { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; }
.qty-step { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-step button { width: 28px; height: 28px; border: 0; background: var(--color-white); color: var(--color-plum); font-size: 1rem; cursor: pointer; }
.qty-step button:hover { background: var(--color-lav-soft); color: var(--color-magenta); }
.qty-step span { min-width: 26px; text-align: center; font-weight: 600; font-size: .9rem; }
.cart-line__sum { font-weight: 700; color: var(--color-plum); }
.cart-line__rm { background: none; border: 0; color: var(--text-soft); font-size: .76rem; text-decoration: underline; cursor: pointer; padding: 0; }
.cart-line__rm:hover { color: var(--color-magenta); }

.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; font-size: 1.1rem; margin-bottom: .3rem; }
.cart-subtotal b { color: var(--color-plum); font-size: 1.25rem; }
.cart-note { font-size: .8rem; color: var(--text-soft); margin-bottom: .9rem; }

/* ============================================================================
   ALIVE / POLISH — motion & micro-interactions
   (transforms/opacity + cheap stroke draws only; all degrade without JS)
   ============================================================================ */
html { scroll-behavior: smooth; }

/* Thin scroll-progress bar (created by JS, so it never shows without JS) */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--color-purple), var(--color-magenta));
  z-index: 1200; pointer-events: none;
}

/* Hero: warm gradient fallback + slow drift + parallax wrapper */
.hero__photo { background: linear-gradient(160deg, var(--color-lilac) 0%, var(--color-pink-soft) 55%, var(--color-lav-soft) 100%); will-change: transform; }
.hero__photo img { animation: heroDrift 20s ease-in-out infinite alternate; }
@keyframes heroDrift { 0% { transform: scale(1.02) translateY(0); } 100% { transform: scale(1.07) translateY(-1.5%); } }

/* Hand-drawn underline under the script headline */
.hero__title .script-line { position: relative; display: inline-block; }
.hand-underline { position: absolute; left: 0; bottom: -.16em; width: 100%; height: .42em; overflow: visible; pointer-events: none; }
.hand-underline path { fill: none; stroke: var(--color-magenta); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 340; stroke-dashoffset: 340; }
.hero__copy.is-visible .hand-underline path { animation: drawLine 1.1s ease forwards .35s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

/* Buttons: shine sweep on hover (all) + gentle pulse (primary CTA) */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: -10%; left: 0; width: 45%; height: 120%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-180%) skewX(-18deg); opacity: 0; pointer-events: none;
}
.btn:hover::after { animation: shine .75s ease; }
@keyframes shine { 0% { transform: translateX(-180%) skewX(-18deg); opacity: 0; } 12% { opacity: 1; } 100% { transform: translateX(320%) skewX(-18deg); opacity: 0; } }
.btn--pulse { animation: btnPulse 2.6s ease-in-out infinite; }
.btn--pulse::after { animation: shine 3.6s ease-in-out 1.2s infinite; }
.btn--pulse:hover { animation-play-state: paused; }
@keyframes btnPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.035); } }

/* Card hover lifts */
.testimonial { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.testimonial:hover { transform: translateY(-6px); box-shadow: 0 22px 46px -26px rgba(90,42,130,.5); }

/* Gentle breathe on the first (featured) category tile */
.category-grid .category-tile:first-child { animation: breathe 5.5s ease-in-out infinite; }
@keyframes breathe { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-2px) scale(1.012); } }

/* Stat strip (count-up numbers) */
.stat-strip { background: var(--color-plum); color: #fff; padding-block: clamp(1.6rem, 3.5vw, 2.6rem); }
.stat-strip__inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; text-align: center; }
.stat__num { display: block; font-family: var(--font-serif); font-weight: 600; font-size: clamp(2rem, 4.4vw, 2.9rem); line-height: 1; color: #fff; }
.stat__label { display: block; margin-top: .4rem; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--color-lilac); }
@media (min-width: 760px) { .stat-strip__inner { grid-template-columns: repeat(4, 1fr); } }

/* Why E&J (bobbing icons + draw-on checkmarks) */
.why-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.2rem, 3vw, 2rem); }
.why-card { background: var(--color-white); border: 1px solid var(--line); border-radius: 18px; padding: 2rem 1.6rem; text-align: center; box-shadow: 0 14px 40px -30px rgba(90,42,130,.4); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(90,42,130,.55); }
.why-ico { width: 58px; height: 58px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--color-lav-soft); color: var(--color-purple); margin-bottom: 1rem; }
.why-ico svg { width: 28px; height: 28px; }
.why-card.is-visible .why-ico { animation: bob 3s ease-in-out infinite; }
.why-card:nth-child(2).is-visible .why-ico { animation-delay: .4s; }
.why-card:nth-child(3).is-visible .why-ico { animation-delay: .8s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.why-card h3 { display: inline-flex; align-items: center; gap: .45rem; color: var(--color-plum); }
.draw-check { width: 20px; height: 20px; flex: none; }
.draw-check path { fill: none; stroke: var(--color-magenta); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; }
.why-card.is-visible .draw-check path { animation: drawCheck .7s ease forwards .4s; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
@media (min-width: 760px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-progress, .hero__photo img, .btn--pulse, .category-grid .category-tile:first-child, .why-card.is-visible .why-ico { animation: none !important; }
  .btn::after, .btn--pulse::after { display: none; }
  .hand-underline path, .draw-check path { stroke-dashoffset: 0 !important; animation: none !important; }
}
