/* =========================================================
   ZÁMERA WELLNESS — design system
   Mobile-first. Tokens and identity carried over from the
   original site; text colours deepened to meet WCAG AA.
   ========================================================= */

:root {
  /* Brand palette (owner-approved) */
  --paper:      #F5F0E7;   /* Warm Ivory */
  --paper-2:    #ECE4D6;   /* warm tint — alt sections */
  --sand:       #DED0BB;
  --sand-2:     #D8C8B4;
  --linen:      #C7B69C;   /* decorative only — never text */
  --soft-white: #FCFAF6;
  --espresso:   #493A30;   /* headings, primary text */
  --cocoa:      #574A3D;   /* body text */
  --stone:      #6B5D4F;   /* muted text — 5.5:1 on ivory (was 3.9:1) */
  --taupe:      #A9957D;
  --sage:       #89927A;   /* icons, soft botanical marks */
  --deep-olive: #4F5943;   /* primary actions */
  --olive-ink:  #3E4735;
  --gold:       #B79A6B;   /* decorative gold — rules, borders, marks */
  --gold-soft:  #CBB187;
  --gold-ink:   #7A5F36;   /* gold for TEXT — 5.2:1 on ivory */
  --line:       rgba(73, 58, 48, 0.16);
  --line-soft:  rgba(73, 58, 48, 0.09);
  --shadow:     0 26px 50px -34px rgba(73, 58, 48, .5);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Century Gothic", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1240px;
  --gut: clamp(1.15rem, 4.5vw, 3.5rem);
  --sec-pad: clamp(3.75rem, 9vw, 7.5rem);
  --radius: 6px;
  --radius-lg: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 64px;

  color-scheme: light;
}
@media (min-width: 900px) { :root { --nav-h: 76px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1rem); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; font-family: var(--sans); font-weight: 300;
  font-size: clamp(1rem, .25vw + .95rem, 1.0625rem); line-height: 1.7;
  color: var(--cocoa); background: var(--paper);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
p { margin: 0 0 1rem; }
ul { margin: 0; }

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

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 300;
  background: var(--espresso); color: var(--soft-white); padding: .75rem 1.2rem; border-radius: var(--radius);
  font-size: .9rem; transition: top .2s;
}
.skip-link:focus { top: 1rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); color: var(--espresso); font-weight: 500; margin: 0; line-height: 1.1; letter-spacing: .005em; }
h1 { font-size: clamp(2.5rem, 7vw, 4.6rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.6rem); }
em { font-style: italic; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sans); font-weight: 400; font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-ink);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.eyebrow--plain::before { display: none; }
.lede { font-size: clamp(1.08rem, 1.1vw + .85rem, 1.3rem); line-height: 1.6; color: var(--cocoa); }
.muted { color: var(--stone); }
.small { font-size: .875rem; }
.script { font-style: italic; }

.link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--espresso);
  border-bottom: 1px solid var(--gold); padding-bottom: .35rem; transition: color .3s, gap .35s var(--ease);
}
.link:hover { color: var(--gold-ink); gap: .8rem; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2 * var(--gut), var(--maxw)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2 * var(--gut), 760px); margin-inline: auto; }
.section { padding-block: var(--sec-pad); position: relative; }
.section--alt { background: var(--paper-2); }
.section--sand { background: var(--sand); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.center { text-align: center; }

.section-head { display: grid; gap: .9rem; margin-bottom: clamp(2rem, 5vw, 3.25rem); max-width: 640px; }
.section-head--center { text-align: center; margin-inline: auto; justify-items: center; }
.section-head p { margin: 0; color: var(--stone); }
.section-head--split { max-width: none; }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }
  .section-head--split > div { max-width: 640px; display: grid; gap: .9rem; }
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--espresso); --fg: var(--soft-white); --bd: var(--espresso);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 48px; padding: .85rem 1.6rem;
  background: var(--bg); color: var(--fg); border: 1px solid var(--bd); border-radius: 3px;
  font-family: var(--sans); font-size: .75rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  text-align: center; line-height: 1.2;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: none; }
.btn .arw { transition: transform .35s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { --bg: var(--deep-olive); --bd: var(--deep-olive); }
.btn--primary:hover { --bg: var(--olive-ink); --bd: var(--olive-ink); }
.btn--dark:hover { --bg: var(--cocoa); }
.btn--ghost { --bg: transparent; --fg: var(--espresso); --bd: var(--line); }
.btn--ghost:hover { --bg: var(--espresso); --fg: var(--soft-white); --bd: var(--espresso); }
.btn--light { --bg: var(--soft-white); --fg: var(--espresso); --bd: var(--soft-white); }
.btn--light:hover { --bg: transparent; --fg: var(--soft-white); }
.btn--outline-light { --bg: transparent; --fg: var(--soft-white); --bd: rgba(252,250,246,.6); }
.btn--outline-light:hover { --bg: var(--soft-white); --fg: var(--espresso); --bd: var(--soft-white); }
.btn--sm { min-height: 40px; padding: .6rem 1.1rem; font-size: .68rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; pointer-events: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ---------- Pills & notices ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .62rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  padding: .38rem .75rem; border-radius: 100px; background: var(--soft-white); color: var(--espresso);
  border: 1px solid var(--line-soft); white-space: nowrap;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }
.pill--soon::before { background: var(--gold); }
.pill--order::before { background: var(--deep-olive); }
.pill--stock::before { background: #3D7A2F; }

.notice {
  display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start;
  padding: 1.1rem 1.25rem; border-radius: var(--radius); background: var(--soft-white);
  border: 1px solid var(--line-soft); border-left: 3px solid var(--gold);
  font-size: .92rem; color: var(--cocoa); line-height: 1.6;
}
.notice svg { width: 22px; height: 22px; color: var(--gold-ink); margin-top: .1rem; }
.notice p { margin: 0; }
.notice strong { font-weight: 500; color: var(--espresso); }

/* =========================================================
   HEADER
   ========================================================= */
.announce {
  background: var(--deep-olive); color: var(--soft-white);
  font-size: .72rem; letter-spacing: .08em; text-align: center; padding: .5rem var(--gut); line-height: 1.4; margin: 0;
}
.announce a { text-decoration: underline; text-underline-offset: 3px; }
.announce span[aria-hidden] { opacity: .55; margin-inline: .5rem; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 250, 246, .94);
  -webkit-backdrop-filter: saturate(140%) blur(12px); backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line-soft);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header--overlay:not(.is-scrolled):not(.is-open) {
  background: linear-gradient(180deg, rgba(245,240,231,.82) 0%, rgba(245,240,231,.5) 70%, rgba(245,240,231,0) 100%);
  box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none;
}
.nav {
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: min(100% - 2 * var(--gut), 1400px); margin-inline: auto;
}
.brand { display: flex; align-items: center; flex: none; min-height: 44px; }
.brand img { height: 30px; width: auto; }
@media (min-width: 900px) { .brand img { height: 36px; } }

.primary-nav { display: none; }
.menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: clamp(.9rem, 1.8vw, 2rem); }
.menu__item { position: relative; }
.menu__link {
  display: inline-flex; align-items: center; gap: .35rem; background: none; border: 0; padding: .6rem 0;
  font-size: .72rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--cocoa);
  position: relative; white-space: nowrap;
}
.menu__link::after { content: ""; position: absolute; left: 0; bottom: .3rem; height: 1px; width: 0; background: var(--gold); transition: width .35s var(--ease); }
.menu__link:hover, .menu__link[aria-current="page"], .menu__item.is-active > .menu__link { color: var(--espresso); }
.menu__link:hover::after, .menu__link[aria-current="page"]::after, .menu__item.is-active > .menu__link::after { width: 100%; }
.menu__link .chev { width: 10px; height: 10px; transition: transform .3s var(--ease); }
.menu__toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
/* Clickable label + separate caret (e.g. Shop): the label links, the caret (or hover) opens the menu */
.menu__caret { display: inline-grid; place-items: center; width: 1.4rem; height: 1.8rem; margin-left: -.2rem; padding: 0; background: none; border: 0; color: var(--cocoa); cursor: pointer; }
.menu__caret:hover, .menu__item.is-open > .menu__caret { color: var(--espresso); }
.menu__caret .chev { width: 10px; height: 10px; transition: transform .3s var(--ease); }
.menu__item.has-sub > .menu__link + .menu__caret { vertical-align: middle; }

.submenu {
  position: absolute; top: calc(100% + .4rem); left: -1.5rem; min-width: 250px;
  background: var(--soft-white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -30px rgba(73,58,48,.45); padding: 1.4rem 1.5rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.submenu--wide { min-width: 520px; display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1.5rem; }
.submenu--wide:has(> div:nth-child(3)) { min-width: 640px; grid-template-columns: repeat(3, 1fr); }
.menu__item.is-open > .submenu { opacity: 1; visibility: visible; transform: none; }
.submenu h2 { font-family: var(--sans); font-size: .62rem; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); margin: 0 0 .7rem; }
.submenu ul { list-style: none; padding: 0; display: grid; gap: .1rem; }
.submenu a { display: block; padding: .4rem 0; font-size: .95rem; color: var(--cocoa); transition: color .25s, padding-left .25s var(--ease); }
.submenu a:hover { color: var(--espresso); padding-left: .3rem; }
.submenu a.submenu__all { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); margin-top: .4rem; }

.nav-actions { display: flex; align-items: center; gap: .25rem; }
.icon-btn {
  position: relative; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: none; border: 0; color: var(--espresso); transition: background .25s;
}
.icon-btn:hover { background: rgba(73,58,48,.06); }
.icon-btn svg { width: 21px; height: 21px; }
.bag-count {
  position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
  background: var(--deep-olive); color: var(--soft-white); font-size: .66rem; font-weight: 500; line-height: 18px; text-align: center;
}
.nav-shop { display: none; margin-left: .6rem; }

@media (min-width: 1080px) {
  .primary-nav { display: block; }
  .menu-btn { display: none; }
  .nav-shop { display: inline-flex; }
}

/* ---------- Drawers (mobile menu + bag) ---------- */
.scrim {
  position: fixed; inset: 0; z-index: 180; background: rgba(46, 38, 30, .38);
  opacity: 0; transition: opacity .3s var(--ease);
}
.scrim.is-visible { opacity: 1; }
.drawer {
  position: fixed; top: 0; bottom: 0; z-index: 190; width: min(92vw, 420px);
  background: var(--paper); display: flex; flex-direction: column;
  box-shadow: -30px 0 60px -30px rgba(46,38,30,.4);
  transition: transform .4s var(--ease);
}
.drawer--right { right: 0; transform: translateX(100%); }
.drawer--left { left: 0; transform: translateX(-100%); box-shadow: 30px 0 60px -30px rgba(46,38,30,.4); }
.drawer.is-open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line-soft); min-height: var(--nav-h); }
.drawer__head h2 { font-size: 1.5rem; }
.drawer__body { flex: 1; overflow-y: auto; padding: 1.25rem; -webkit-overflow-scrolling: touch; }
.drawer__foot { padding: 1.1rem 1.25rem calc(1.1rem + env(safe-area-inset-bottom)); border-top: 1px solid var(--line-soft); background: var(--soft-white); }

.mobile-nav { list-style: none; padding: 0; display: grid; }
.mobile-nav > li { border-bottom: 1px solid var(--line-soft); }
.mobile-nav a, .mobile-nav summary {
  display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: .5rem 0;
  font-family: var(--serif); font-size: 1.45rem; color: var(--espresso); cursor: pointer; list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.mobile-nav details[open] summary svg { transform: rotate(180deg); }
.mobile-nav details ul { list-style: none; padding: 0 0 1rem .2rem; display: grid; }
.mobile-nav details a { font-family: var(--sans); font-size: 1rem; min-height: 44px; color: var(--cocoa); }
.mobile-nav__split { display: grid; grid-template-columns: 1fr auto; align-items: center; }
.mobile-nav__toggle { width: 48px; height: 48px; display: grid; place-items: center; background: none; border: 0; color: var(--espresso); cursor: pointer; }
.mobile-nav__toggle svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.mobile-nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-nav__split > ul { grid-column: 1 / -1; list-style: none; padding: 0 0 1rem .2rem; margin: 0; display: grid; }
.mobile-nav__split > ul[hidden] { display: none; }
.mobile-nav__split > ul a { font-family: var(--sans); font-size: 1rem; min-height: 44px; color: var(--cocoa); }
.mobile-menu__contact { margin-top: 1.5rem; display: grid; gap: .75rem; }

/* =========================================================
   HERO (home) — editorial plaster wall, owner reference
   ========================================================= */
.hero {
  position: relative; overflow: hidden; display: flex; align-items: flex-end;
  min-height: min(88svh, 820px); margin-top: calc(-1 * var(--nav-h));
  padding: calc(var(--nav-h) + 2.5rem) 0 clamp(2.5rem, 7vw, 5rem);
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 30% center; z-index: 0; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(245,240,231,.55) 0%, rgba(245,240,231,.25) 30%, rgba(245,240,231,.72) 70%, rgba(245,240,231,.9) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-inline: var(--gut); }
.hero__copy { max-width: 34rem; }
.hero__eyebrow { margin-bottom: 1.2rem; }
.hero__title { font-size: clamp(3rem, 12vw, 5.4rem); color: var(--deep-olive); line-height: .98; }
.hero__rule { display: block; width: 1px; height: 40px; background: var(--espresso); opacity: .45; margin: 1.4rem 0; }
.hero__sub { font-size: clamp(1.05rem, 1vw + .9rem, 1.2rem); color: var(--espresso); max-width: 30rem; margin-bottom: 1.8rem; line-height: 1.6; }
.hero .btn-row .btn { flex: 1 1 auto; }
.hero__assure { list-style: none; padding: 0; margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; font-size: .82rem; color: var(--cocoa); }
.hero__assure li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__assure svg { width: 16px; height: 16px; color: var(--deep-olive); }

@media (min-width: 900px) {
  .hero { align-items: center; min-height: min(92vh, 860px); padding-bottom: 4rem; }
  .hero::before { background: linear-gradient(90deg, rgba(245,240,231,0) 0%, rgba(245,240,231,0) 16%, rgba(245,240,231,.5) 26%, rgba(245,240,231,.42) 54%, rgba(245,240,231,0) 72%), linear-gradient(180deg, rgba(245,240,231,.55) 0%, rgba(245,240,231,0) 22%); }
  .hero__bg { object-position: center; }
  .hero__copy { margin-left: clamp(0px, 21vw - var(--gut), 26rem); }
  .hero .btn-row .btn { flex: 0 0 auto; }
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(2.75rem, 7vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
  background: radial-gradient(130% 130% at 88% -10%, #FCFAF6 0%, #F5F0E7 52%, #E7DBC7 100%);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { margin-top: 1rem; max-width: 18ch; }
.page-hero h1 em { color: var(--gold-ink); }
.page-hero .lede { max-width: 58ch; margin: 1.1rem 0 0; }
.page-hero .btn-row { margin-top: 1.8rem; }

.crumbs { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); margin-bottom: 1.2rem; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .25rem .6rem; }
.crumbs li { display: inline-flex; align-items: center; gap: .6rem; }
.crumbs li + li::before { content: "/"; opacity: .5; }
.crumbs a { color: var(--gold-ink); }
.crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   COLLECTION CARDS — Shop by wellness need
   ========================================================= */
.need-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.75rem, 2vw, 1.25rem); }
@media (min-width: 900px) { .need-grid { grid-template-columns: repeat(4, 1fr); } }
.need-card { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); aspect-ratio: 3 / 4; isolation: isolate; box-shadow: var(--shadow); }
.need-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); z-index: -2; }
.need-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(46,38,30,0) 30%, rgba(46,38,30,.78) 100%); }
.need-card:hover img { transform: scale(1.06); }
.need-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(.9rem, 2.2vw, 1.4rem); color: var(--soft-white); }
.need-card__name { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.75rem); line-height: 1.05; color: var(--soft-white); }
.need-card__types { display: none; font-size: .8rem; line-height: 1.5; color: rgba(252,250,246,.88); margin: .45rem 0 0; }
.need-card__cta { display: inline-flex; align-items: center; gap: .4rem; margin-top: .6rem; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--soft-white); border-bottom: 1px solid var(--gold-soft); padding-bottom: .2rem; }
@media (min-width: 640px) { .need-card__types { display: block; } }

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 3vw, 2rem) clamp(.75rem, 2.4vw, 1.75rem); }
@media (min-width: 900px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .product-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.pcard { display: flex; flex-direction: column; min-width: 0; }
.pcard__media { --img-scale: 1; position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow); }
/* Packshots share one 4:5 ivory frame: contain (never crop or stretch), centred, with a per-product --img-scale to even out perceived size */
.pcard__media img { width: 100%; height: 100%; object-fit: contain; object-position: center; transform: scale(var(--img-scale)); transition: transform 1.1s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(calc(var(--img-scale) * 1.05)); }
.pcard__media .pill { position: absolute; top: .7rem; left: .7rem; }
.pcard__body { display: flex; flex-direction: column; flex: 1; padding-top: .9rem; }
.pcard__cat { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); margin: 0 0 .3rem; }
.pcard__name { font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.1; }
.pcard__name a:hover { color: var(--gold-ink); }
.pcard__desc { display: none; font-size: .88rem; color: var(--stone); margin: .45rem 0 0; line-height: 1.55; }
@media (min-width: 640px) { .pcard__desc { display: block; } }
.pcard__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem; margin-top: auto; padding-top: .9rem; }
.pcard__foot .btn { flex: 1 1 auto; }
@media (min-width: 640px) { .pcard__foot .btn { flex: 0 0 auto; } }

.price { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.45rem); color: var(--espresso); line-height: 1; white-space: nowrap; }
.price small { font-family: var(--sans); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); margin-right: .3rem; }
.price--tba { font-family: var(--sans); font-size: .82rem; font-style: italic; color: var(--stone); }

/* =========================================================
   SPLIT STORY
   ========================================================= */
.split { display: grid; background: var(--paper); }
.split__media { position: relative; min-height: 56vw; overflow: hidden; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__copy { padding: clamp(2.75rem, 7vw, 6rem) var(--gut); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.split__copy h2 { max-width: 15ch; margin: 1rem 0 1.1rem; }
.split__copy h2 em { color: var(--gold-ink); }
.split__copy p { color: var(--stone); max-width: 44ch; }
.split__copy .btn-row, .split__copy .link { margin-top: 1rem; }
.split--alt { background: var(--paper-2); }
/* No image: the copy stands alone, centred */
.split--solo .split__copy { align-items: center; text-align: center; }
.split--solo .split__copy h2, .split--solo .split__copy p { margin-inline: auto; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; min-height: 560px; }
  .split__media { min-height: 0; }
  .split--reverse .split__media { order: 2; }
  .split.split--solo { grid-template-columns: 1fr; min-height: 0; }
  .split__copy { padding-inline: clamp(3rem, 6vw, 6rem); }
}

/* =========================================================
   BUNDLES
   ========================================================= */
.bundle-grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
@media (min-width: 700px) { .bundle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .bundle-grid { grid-template-columns: repeat(3, 1fr); } }
.bundle-card { display: flex; flex-direction: column; background: var(--soft-white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .4s var(--ease), transform .4s var(--ease); }
.bundle-card:hover { box-shadow: 0 30px 50px -34px rgba(73,58,48,.4); transform: translateY(-3px); }
.bundle-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand); }
.bundle-card__media img { width: 100%; height: 100%; object-fit: cover; }
.bundle-card__media .pill { position: absolute; top: .8rem; left: .8rem; }
.bundle-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.3rem 1.3rem 1.4rem; }
.bundle-card__label { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); margin: 0 0 .35rem; }
.bundle-card h3 { font-size: 1.55rem; }
.bundle-card__tagline { font-size: .92rem; color: var(--stone); margin: .4rem 0 1rem; }
.bundle-card__inside { list-style: none; padding: 0; margin: 0 0 1.1rem; display: grid; gap: .45rem; font-size: .9rem; color: var(--cocoa); }
.bundle-card__inside li { display: flex; gap: .6rem; align-items: baseline; }
.bundle-card__inside li::before { content: ""; flex: none; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); transform: translateY(-2px); }
.bundle-card__inside a { border-bottom: 1px solid var(--gold-soft); }
.bundle-card__inside .tag { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); }
.bundle-card__foot { margin-top: auto; display: grid; gap: .75rem; }
.bundle-card__price { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-top: .9rem; border-top: 1px solid var(--line-soft); }

/* Full bundle detail (bundles page) */
.bundle-detail { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); padding-block: clamp(2.5rem, 6vw, 4.5rem); border-top: 1px solid var(--line-soft); scroll-margin-top: calc(var(--nav-h) + 1rem); }
.bundle-detail:first-of-type { border-top: 0; padding-top: 0; }
.bundle-detail__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand); box-shadow: var(--shadow); }
.bundle-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.bundle-detail__media .pill { position: absolute; top: 1rem; left: 1rem; }
.bundle-detail h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: .6rem 0 .5rem; }
.bundle-detail__blocks { display: grid; gap: 1.4rem; margin: 1.6rem 0; }
.bundle-detail__blocks h3 { font-family: var(--sans); font-size: .7rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); margin-bottom: .5rem; }
.bundle-detail__blocks p { margin: 0; }
@media (min-width: 900px) {
  .bundle-detail { grid-template-columns: .9fr 1.1fr; align-items: start; }
  .bundle-detail:nth-of-type(even) .bundle-detail__media { order: 2; }
  .bundle-detail__media { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
  .bundle-detail__blocks { grid-template-columns: 1fr 1fr; }
  .bundle-detail__blocks .span-2 { grid-column: 1 / -1; }
}

/* =========================================================
   HOW IT WORKS — steps
   ========================================================= */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; counter-reset: step; }
.step { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; padding: 1.35rem 0; border-top: 1px solid var(--line-soft); }
.step:last-child { border-bottom: 1px solid var(--line-soft); }
.step__num { font-family: var(--serif); font-size: 2rem; line-height: 1; color: var(--gold-ink); }
.step__icon { display: none; }
.step h3 { font-family: var(--sans); font-size: .78rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--espresso); margin-bottom: .35rem; }
.step p { margin: 0; font-size: .95rem; color: var(--stone); }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
  .step { grid-template-columns: 1fr; gap: .3rem; padding: 2rem 1.4rem 2.2rem; border: 0; border-left: 1px solid var(--line-soft); position: relative; }
  .step:first-child { border-left: 0; padding-left: 0; }
  .step:last-child { border-bottom: 0; }
  .step__num { font-size: 2.6rem; margin-bottom: .6rem; }
  .step__icon { display: block; position: absolute; top: 2rem; right: 1.4rem; width: 26px; height: 26px; color: var(--sage); }
}

/* =========================================================
   TRUST CARDS
   ========================================================= */
.trust-grid { display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-card { background: var(--paper); padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.3rem, 2.4vw, 1.9rem); }
.section--alt .trust-card { background: var(--paper-2); }
.trust-card svg { width: 34px; height: 34px; color: var(--deep-olive); margin-bottom: 1.2rem; }
.trust-card h3 { font-family: var(--sans); font-size: .76rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--espresso); margin-bottom: .6rem; }
.trust-card p { margin: 0; font-size: .95rem; color: var(--stone); line-height: 1.6; }

/* =========================================================
   GUIDE CARDS
   ========================================================= */
.guide-grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 700px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .guide-grid { grid-template-columns: repeat(3, 1fr); } }
.guide-card { display: flex; flex-direction: column; background: var(--soft-white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -34px rgba(73,58,48,.4); }
.guide-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand); }
.guide-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.guide-card:hover .guide-card__media img { transform: scale(1.05); }
.guide-card__body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; gap: .45rem; }
.guide-card__meta { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-ink); }
.guide-card h3 { font-size: 1.45rem; line-height: 1.15; }
.guide-card p { font-size: .9rem; color: var(--stone); margin: 0; }
.guide-card .link { margin-top: auto; padding-top: .8rem; align-self: flex-start; border-bottom: 0; }
.guide-card .link span { border-bottom: 1px solid var(--gold); padding-bottom: .3rem; }

/* =========================================================
   GUIDE ARTICLE
   ========================================================= */
.article-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem); background: var(--paper-2); }
.article-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin: .9rem 0; max-width: 20ch; }
.article-hero .lede { max-width: 56ch; }
.article-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; font-size: .8rem; color: var(--stone); margin-top: 1rem; }
.article-cover { width: min(100% - 2 * var(--gut), 1000px); margin: 0 auto; aspect-ratio: 21 / 9; border-radius: var(--radius-lg); overflow: hidden; transform: translateY(-1.5rem); box-shadow: var(--shadow); background: var(--sand); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.prose { font-size: 1.06rem; line-height: 1.8; color: var(--cocoa); }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: clamp(1.7rem, 3.4vw, 2.2rem); margin-top: 2.6rem; }
.prose h3 { font-size: 1.35rem; margin-top: 1.8rem; }
.prose p { margin-bottom: 0; }
.prose ul { padding-left: 1.2rem; display: grid; gap: .5rem; }
.prose li::marker { color: var(--gold); }
.prose strong { font-weight: 500; color: var(--espresso); }
.prose a { color: var(--deep-olive); border-bottom: 1px solid var(--gold-soft); }
.prose a:hover { color: var(--espresso); }
.guide-lede { font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 1.65rem); line-height: 1.45; color: var(--espresso); }
.guide-note { margin: 2.2rem 0; padding: 1.4rem 1.5rem; background: var(--soft-white); border: 1px solid var(--line-soft); border-left: 3px solid var(--deep-olive); border-radius: var(--radius); }
.guide-note--first { margin-top: 0; }
.guide-note h3, .prose .guide-note__title { font-family: var(--sans); font-size: .74rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--deep-olive); margin: 0 0 .5rem; }
.guide-note p { margin: 0; font-size: .98rem; }
.prose ul.guide-takeaways { list-style: none; padding: 1.4rem 1.5rem; background: var(--paper-2); border-radius: var(--radius); }
.guide-takeaways li { padding-left: 1.6rem; position: relative; }
.guide-takeaways li::before { content: ""; position: absolute; left: 0; top: .6em; width: 12px; height: 7px; border-left: 1.5px solid var(--deep-olive); border-bottom: 1.5px solid var(--deep-olive); transform: rotate(-45deg); }
.article-disclaimer { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--line-soft); font-size: .85rem; color: var(--stone); }

/* =========================================================
   COLLECTION PAGE — sourcing grid
   ========================================================= */
.type-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
@media (min-width: 900px) { .type-grid { grid-template-columns: repeat(3, 1fr); } }
.type-tile { height: 100%; display: flex; flex-direction: column; gap: .5rem; padding: 1.1rem 1.1rem 1.2rem; background: var(--soft-white); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.type-tile h3 { font-size: 1.25rem; line-height: 1.15; }
.type-tile p { margin: 0; font-size: .82rem; color: var(--stone); }
.type-tile a { margin-top: auto; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); padding-top: .4rem; }
.type-tile a:hover { color: var(--espresso); }

.empty-state { text-align: center; padding: clamp(2.5rem, 6vw, 4rem) 1.5rem; background: var(--soft-white); border: 1px dashed var(--line); border-radius: var(--radius-lg); }
.empty-state h3 { margin-bottom: .6rem; }
.empty-state p { color: var(--stone); max-width: 46ch; margin: 0 auto 1.4rem; }

/* =========================================================
   SHOP — toolbar, filters
   ========================================================= */
.shop-layout { display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); }
.shop-toolbar { display: grid; gap: .75rem; }
.search-field { position: relative; }
.search-field svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--stone); pointer-events: none; }
.search-field input { padding-left: 2.8rem; }
.filter-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.filter-row .field--search { grid-column: 1 / -1; }
@media (min-width: 700px) { .filter-row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .filter-row { grid-template-columns: 2fr repeat(5, 1fr); } .filter-row .field--search { grid-column: auto; } }
.shop-meta { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .6rem; font-size: .88rem; color: var(--stone); }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { display: inline-flex; align-items: center; gap: .4rem; min-height: 36px; padding: .4rem .9rem; border-radius: 100px; border: 1px solid var(--line); background: var(--soft-white); font-size: .82rem; color: var(--cocoa); transition: background .25s, border-color .25s, color .25s; }
.chip:hover { border-color: var(--espresso); color: var(--espresso); }
.chip[aria-pressed="true"] { background: var(--espresso); border-color: var(--espresso); color: var(--soft-white); }
.chip svg { width: 12px; height: 12px; }

/* =========================================================
   FORMS
   ========================================================= */
.field { display: grid; gap: .4rem; }
.field label, .field .label { font-size: .72rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--espresso); }
.field .hint { font-size: .8rem; color: var(--stone); }
.input, .select, .textarea {
  width: 100%; min-height: 48px; padding: .75rem 1rem;
  background: var(--soft-white); border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 1rem; color: var(--espresso); transition: border-color .25s, box-shadow .25s;
  -webkit-appearance: none; appearance: none;
}
.select { padding-right: 2.5rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23493A30' stroke-width='1.6'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .85rem center; background-size: 16px; }
.textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.input::placeholder, .textarea::placeholder { color: #9A8B7B; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--deep-olive); box-shadow: 0 0 0 3px rgba(79,89,67,.16); outline: none; }
.input:user-invalid, .select:user-invalid, .textarea:user-invalid { border-color: #A0463A; }
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .span-2 { grid-column: 1 / -1; } }
.form-card { background: var(--soft-white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.5rem); }
.form-note { font-size: .82rem; color: var(--stone); margin: .2rem 0 0; }
.form-success { display: grid; gap: .5rem; padding: 1.2rem 1.3rem; border-radius: var(--radius); background: #EEF1E8; border: 1px solid rgba(79,89,67,.25); color: var(--olive-ink); font-size: .95rem; }

.qty { display: inline-grid; grid-template-columns: 44px 44px 44px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft-white); height: 48px; }
.qty button { height: 100%; background: none; border: 0; color: var(--espresso); font-size: 1.2rem; }
.qty button:hover { background: rgba(73,58,48,.05); }
.qty input { width: 100%; height: 100%; border: 0; background: none; text-align: center; font-size: 1rem; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty--sm { grid-template-columns: 36px 36px 36px; height: 38px; }

/* =========================================================
   PRODUCT PAGE
   ========================================================= */
.pdp { display: grid; gap: clamp(1.75rem, 5vw, 4.5rem); padding-block: clamp(1.5rem, 4vw, 3.5rem) var(--sec-pad); }
@media (min-width: 900px) { .pdp { grid-template-columns: 1.05fr .95fr; align-items: start; } }
.gallery { display: grid; gap: .75rem; }
@media (min-width: 900px) { .gallery { position: sticky; top: calc(var(--nav-h) + 1.25rem); } }
.gallery__main { border-radius: var(--radius-lg); overflow: hidden; background: var(--sand); aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: flex; gap: .6rem; overflow-x: auto; }
.gallery__thumb { flex: none; width: 76px; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); padding: 0; background: var(--sand); opacity: .7; transition: opacity .25s, border-color .25s; }
.gallery__thumb[aria-current="true"] { opacity: 1; border-color: var(--espresso); }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp__info h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: .5rem 0 .6rem; }
.pdp__brand { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-ink); }
.pdp__summary { font-size: 1.08rem; color: var(--cocoa); margin: 0 0 1.2rem; }
.pdp__price-row { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.2rem; padding: 1.1rem 0; border-block: 1px solid var(--line-soft); }
.pdp__price-row .price { font-size: 2rem; }
.pdp__price-row .price--tba { font-size: 1.05rem; }
.bag-total .price--tba, .bag-total [data-bag-subtotal] { white-space: nowrap; }
.pdp__size { font-size: .9rem; color: var(--stone); }
.pdp__buy { display: grid; gap: .7rem; margin: 1.4rem 0; }
.pdp__buy-row { display: flex; gap: .7rem; }
.pdp__buy-row .btn { flex: 1; }
.pdp__assure { list-style: none; padding: 1rem 1.1rem; margin: 0 0 1.4rem; display: grid; gap: .6rem; background: var(--soft-white); border: 1px solid var(--line-soft); border-radius: var(--radius); font-size: .9rem; }
.pdp__assure li { display: grid; grid-template-columns: 22px 1fr; gap: .7rem; align-items: start; }
.pdp__assure svg { width: 20px; height: 20px; color: var(--deep-olive); margin-top: .15rem; }
.pdp__assure strong { font-weight: 500; color: var(--espresso); }

.key-info { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .5rem; }
.key-info li { display: grid; grid-template-columns: 18px 1fr; gap: .6rem; font-size: .95rem; }
.key-info li::before { content: ""; width: 10px; height: 6px; margin-top: .55em; border-left: 1.5px solid var(--deep-olive); border-bottom: 1.5px solid var(--deep-olive); transform: rotate(-45deg); }

/* Native disclosure accordions — no JS required */
.accordion { border-top: 1px solid var(--line-soft); }
.accordion details { border-bottom: 1px solid var(--line-soft); }
.accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 60px; padding: .9rem 0;
  font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.35rem); color: var(--espresso); cursor: pointer; list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: ""; flex: none; width: 12px; height: 12px; border-right: 1.5px solid var(--gold-ink); border-bottom: 1.5px solid var(--gold-ink); transform: rotate(45deg) translateY(-3px); transition: transform .3s var(--ease); }
.accordion details[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.accordion__body { padding: 0 0 1.3rem; color: var(--cocoa); font-size: .98rem; }
.accordion__body p:last-child { margin-bottom: 0; }
.accordion__body ul { padding-left: 1.2rem; display: grid; gap: .35rem; }

/* Sticky mobile purchase bar */
.buy-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem var(--gut) calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(252,250,246,.97); border-top: 1px solid var(--line-soft);
  box-shadow: 0 -12px 30px -20px rgba(73,58,48,.4);
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.buy-bar.is-visible { transform: none; }
.buy-bar__name { flex: 1; min-width: 0; font-size: .85rem; line-height: 1.3; color: var(--espresso); }
.buy-bar__name span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.buy-bar .price { font-size: 1.05rem; }
@media (min-width: 900px) { .buy-bar { display: none; } }

/* =========================================================
   BAG
   ========================================================= */
.bag-lines { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.bag-line { display: grid; grid-template-columns: 76px 1fr; gap: .9rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line-soft); }
.bag-line img { width: 76px; height: 92px; object-fit: cover; border-radius: var(--radius); background: var(--sand); }
.bag-line__top { display: flex; justify-content: space-between; gap: .75rem; }
.bag-line h3 { font-size: 1.15rem; line-height: 1.15; }
.bag-line__meta { font-size: .8rem; color: var(--stone); margin: .2rem 0 .6rem; }
.bag-line__bottom { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.bag-line__remove { background: none; border: 0; padding: .3rem 0; font-size: .75rem; letter-spacing: .08em; color: var(--stone); text-decoration: underline; text-underline-offset: 3px; }
.bag-empty { text-align: center; padding: 3rem 1rem; }
.bag-empty svg { width: 44px; height: 44px; color: var(--sage); margin: 0 auto 1rem; }
.bag-empty p { color: var(--stone); }
.bag-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .4rem; font-size: .95rem; }
.bag-total .price { font-size: 1.5rem; }
.bag-note { font-size: .8rem; color: var(--stone); margin: 0 0 .9rem; line-height: 1.5; }
.bag-actions { display: grid; gap: .6rem; }

/* =========================================================
   WHATSAPP BAND + FLOAT
   ========================================================= */
.wa-band { background: var(--deep-olive); color: var(--soft-white); position: relative; overflow: hidden; }
.wa-band__inner { display: grid; gap: 1.6rem; padding-block: clamp(3rem, 7vw, 5rem); position: relative; z-index: 1; }
.wa-band h2 { color: var(--soft-white); max-width: 18ch; }
.wa-band h2 em { color: var(--gold-soft); }
.wa-band p { color: rgba(252,250,246,.86); max-width: 46ch; margin: 0; }
.wa-band .eyebrow { color: #E6D7BC; } /* 5.1:1 on deep olive */
.wa-band .eyebrow::before { background: var(--gold-soft); }
@media (min-width: 900px) { .wa-band__inner { grid-template-columns: 1.2fr auto; align-items: center; } }

.wa-float {
  position: fixed; right: max(1rem, env(safe-area-inset-right)); bottom: calc(1rem + env(safe-area-inset-bottom)); z-index: 95;
  display: inline-flex; align-items: center; gap: .55rem; height: 54px; padding: 0 1.2rem 0 1rem;
  border-radius: 27px; background: var(--deep-olive); color: var(--soft-white);
  box-shadow: 0 16px 30px -14px rgba(46,38,30,.55); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  transition: transform .35s var(--ease), background .3s, bottom .35s var(--ease);
}
.wa-float:hover { background: var(--olive-ink); transform: translateY(-2px); }
.wa-float svg { width: 24px; height: 24px; }
.wa-float__label { display: none; }
@media (min-width: 640px) { .wa-float__label { display: inline; } }
@media (max-width: 639px) { .wa-float { width: 54px; padding: 0; justify-content: center; } }
body.has-buy-bar .wa-float { bottom: calc(5.4rem + env(safe-area-inset-bottom)); }
@media (min-width: 900px) { body.has-buy-bar .wa-float { bottom: calc(1rem + env(safe-area-inset-bottom)); } }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: calc(1.2rem + env(safe-area-inset-bottom)); z-index: 250;
  transform: translate(-50%, 140%); display: flex; align-items: center; gap: .9rem;
  padding: .85rem 1rem .85rem 1.2rem; border-radius: var(--radius); background: var(--espresso); color: var(--soft-white);
  box-shadow: 0 20px 40px -20px rgba(46,38,30,.6); font-size: .9rem; max-width: calc(100vw - 2rem);
  transition: transform .4s var(--ease);
}
.toast.is-visible { transform: translate(-50%, 0); }
.toast button { background: none; border: 0; color: var(--gold-soft); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; padding: .4rem; white-space: nowrap; }

/* =========================================================
   GIFTING
   ========================================================= */
.occasion-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
@media (min-width: 700px) { .occasion-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .occasion-grid { grid-template-columns: repeat(4, 1fr); } }
.occasion { height: 100%; display: flex; align-items: center; gap: .8rem; padding: .95rem 1rem; background: var(--soft-white); border: 1px solid var(--line-soft); border-radius: var(--radius); font-size: .95rem; color: var(--espresso); line-height: 1.3; }
.occasion svg { width: 22px; height: 22px; flex: none; color: var(--deep-olive); }
.gift-grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
@media (min-width: 900px) { .gift-grid { grid-template-columns: repeat(3, 1fr); } }

/* =========================================================
   SOCIAL
   ========================================================= */
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
@media (min-width: 900px) { .social-grid { grid-template-columns: repeat(4, 1fr); gap: .9rem; } }
.social-tile { position: relative; display: block; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: var(--sand); }
.social-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.social-tile:hover img { transform: scale(1.06); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .85fr 1.15fr; align-items: start; } }
.contact-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line-soft); }
.contact-item { display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: center; padding: 1.2rem 0; border-bottom: 1px solid var(--line-soft); scroll-margin-top: calc(var(--nav-h) + 1rem); }
.contact-item svg { width: 26px; height: 26px; color: var(--deep-olive); }
.contact-item .k { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); }
.contact-item .v { font-family: var(--serif); font-size: 1.3rem; color: var(--espresso); line-height: 1.3; word-break: break-word; }
.contact-item a.v:hover { color: var(--gold-ink); }
.contact-item p { margin: .2rem 0 0; font-size: .88rem; color: var(--stone); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-group + .faq-group { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.faq-group > h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 1rem; }

/* =========================================================
   ABOUT / VALUES
   ========================================================= */
.values { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; background: var(--line-soft); border-block: 1px solid var(--line-soft); }
@media (min-width: 640px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .values { grid-template-columns: repeat(4, 1fr); } }
.value { background: var(--paper); padding: 2rem 1.5rem; text-align: center; }
.section--alt .value { background: var(--paper-2); }
.value svg { width: 34px; height: 34px; margin: 0 auto 1rem; color: var(--sage); }
.value h3 { font-family: var(--sans); font-size: .74rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--espresso); margin-bottom: .5rem; }
.value p { margin: 0; font-size: .92rem; color: var(--stone); }

.statement { font-family: var(--serif); font-size: clamp(1.8rem, 4.2vw, 3rem); line-height: 1.2; color: var(--espresso); max-width: 24ch; margin: 0 auto; text-align: center; }
.statement em { color: var(--gold-ink); }

.offer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.offer-row { display: grid; gap: 1rem; padding: clamp(2rem, 5vw, 3rem) 0; border-top: 1px solid var(--line-soft); scroll-margin-top: calc(var(--nav-h) + 1rem); }
.offer-row:last-child { border-bottom: 1px solid var(--line-soft); }
.offer-row__num { font-family: var(--serif); font-size: 2.4rem; line-height: 1; color: var(--gold-ink); }
.offer-row h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: .8rem; }
.offer-row p { color: var(--cocoa); max-width: 60ch; }
.offer-row ul { padding-left: 1.2rem; display: grid; gap: .35rem; margin-bottom: 1.2rem; color: var(--cocoa); }
.offer-row li::marker { color: var(--gold); }
.offer-row .notice { margin: 1rem 0 1.4rem; max-width: 64ch; }
.offer-row .chip-row { margin-bottom: 1.4rem; }
@media (min-width: 900px) { .offer-row { grid-template-columns: 7rem 1fr; gap: 2rem; } }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--paper-2); padding: clamp(2.8rem, 6vw, 4rem) 0 calc(5rem + env(safe-area-inset-bottom)); }
@media (min-width: 640px) { .site-footer { padding-bottom: 2rem; } }
.footer-main { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; text-align: center; padding-bottom: 2rem; border-bottom: 1px solid var(--line-soft); }
@media (min-width: 900px) { .footer-main { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-logo img { height: 52px; width: auto; transition: opacity .35s var(--ease); }
.footer-logo:hover img { opacity: .75; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem clamp(1.4rem, 3vw, 2.4rem); }
.footer-links a { position: relative; padding: .4rem 0; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cocoa); transition: color .35s var(--ease); }
.footer-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: .15rem; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.footer-links a:hover { color: var(--espresso); }
.footer-links a:hover::after { transform: scaleX(1); }
.socials { display: flex; gap: .6rem; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--cocoa); transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease); }
.socials a:hover { background: var(--espresso); color: var(--soft-white); border-color: var(--espresso); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: .5rem; padding-top: 1.4rem; text-align: center; font-size: .78rem; color: var(--stone); }
.footer-bottom p { margin: 0; }
.footer-disclaimer { max-width: 70ch; font-size: .72rem; line-height: 1.6; }

/* =========================================================
   MISC
   ========================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
::selection { background: var(--gold); color: #fff; }

.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.notfound h1 { margin: 1rem auto; }

.stack-sm > * + * { margin-top: .6rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.two-col { display: grid; gap: clamp(1.5rem, 4vw, 3.5rem); }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; align-items: center; } }
.rounded-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--sand); }
.rounded-media img { width: 100%; height: 100%; object-fit: cover; }
.arch-media { border-radius: 220px 220px var(--radius) var(--radius); overflow: hidden; aspect-ratio: 3 / 4; box-shadow: var(--shadow); background: var(--sand); max-width: 520px; }
.arch-media img { width: 100%; height: 100%; object-fit: cover; }

@media print {
  .site-header, .announce, .wa-float, .buy-bar, .drawer, .scrim, .toast { display: none !important; }
}

/* ---------- Checkout details (bag) ---------- */
.bag-form { display: grid; gap: .7rem; }
.bag-form__title { font-family: var(--sans); font-size: .78rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--espresso); margin: .2rem 0 0; }
.field__opt { text-transform: none; letter-spacing: 0; color: var(--stone); font-size: .78rem; }
.field__error { margin: 0; font-size: .8rem; line-height: 1.45; color: #8E3B30; }
.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: #A0463A; }
.textarea--sm { min-height: 64px; }
.bag-errors { border: 1px solid rgba(160, 70, 58, .45); background: #F8ECE7; border-radius: var(--radius); padding: .7rem .9rem; font-size: .84rem; color: #6E2E25; }
.bag-errors p { margin: 0 0 .3rem; font-weight: 500; }
.bag-errors ul { margin: 0; padding-left: 1.1rem; }
.bag-errors a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.link-btn { background: none; border: 0; padding: 0; font: inherit; color: var(--deep-olive); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.link-btn:hover { color: var(--olive-ink); }

/* ---------- Order confirmation (/order/) ---------- */
.order-page h1 em { font-style: italic; }
.order-ref { display: grid; gap: .25rem; border: 1px solid var(--line); border-left: 3px solid var(--gold); background: var(--soft-white); border-radius: var(--radius); padding: 1rem 1.2rem; margin-top: .6rem; }
.order-ref__label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }
.order-ref__value { font-family: var(--sans); font-size: 1.5rem; font-weight: 500; letter-spacing: .06em; color: var(--espresso); }
.order-ref__when { font-size: .85rem; color: var(--stone); }
.order-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--soft-white); padding: clamp(1.1rem, 3vw, 1.8rem); margin-top: 1rem; }
.order-card h2 { font-size: 1.5rem; margin: 0 0 .8rem; }
.order-card h3 { font-family: var(--sans); font-size: .78rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--espresso); margin: 1.2rem 0 .5rem; }
.order-lines { list-style: none; margin: 0; padding: 0; }
.order-lines li { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--line-soft); }
.order-line__price { white-space: nowrap; color: var(--stone); }
.order-total { margin: .8rem 0 0; font-weight: 500; color: var(--espresso); }
.order-customer { display: grid; grid-template-columns: max-content 1fr; gap: .35rem 1rem; margin: 0; }
.order-customer dt { color: var(--stone); font-size: .9rem; }
.order-customer dd { margin: 0; overflow-wrap: anywhere; }
.order-help { margin-top: 1.2rem; }
.order-help h2 { font-size: 1.35rem; margin: 0 0 .4rem; }
.order-missing { margin-top: 1rem; }
.order-steps { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: 1rem; }
.order-step { display: grid; grid-template-columns: 2.4rem 1fr; gap: .9rem; align-items: start; }
.order-step__n { display: grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-ink); font-family: var(--serif); font-size: 1.2rem; }
.order-step h3 { font-size: 1.25rem; margin: .15rem 0 .2rem; }
.order-step p { margin: 0; color: var(--cocoa); }
@media (max-width: 480px) { .order-customer { grid-template-columns: 1fr; } .order-customer dd { margin-bottom: .4rem; } }
.bag-checkout { margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft); }
.drawer__foot .bag-total { margin-bottom: .8rem; }
.drawer__foot .bag-actions .btn--ghost { min-height: 42px; }
body.is-locked .wa-float { opacity: 0; visibility: hidden; pointer-events: none; }
body.is-locked .toast { visibility: hidden; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: .3rem 1.2rem; }
.footer-legal a { color: var(--stone); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; padding: .25rem 0; }
.footer-legal a:hover { color: var(--espresso); text-decoration-color: currentColor; }
.prose ol { padding-left: 1.3rem; display: grid; gap: .6rem; }
.prose ol li::marker { color: var(--gold-ink); }

/* ---------- Shop by category ---------- */
.cat-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
@media (min-width: 900px) { .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; } }
.cat-tile { display: grid; gap: .35rem; text-decoration: none; color: inherit; }
.cat-tile__media { display: grid; place-items: center; aspect-ratio: 1; background: var(--soft-white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .35s var(--ease), transform .35s var(--ease); }
.cat-tile__media img { width: 78%; height: 78%; object-fit: contain; }
.cat-tile:hover .cat-tile__media { border-color: var(--gold); transform: translateY(-2px); }
.cat-tile__name { font-family: var(--serif); font-size: 1.35rem; color: var(--espresso); line-height: 1.2; }
.cat-tile__count { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); }
.cat-tile:focus-visible { outline: 2px solid var(--deep-olive); outline-offset: 4px; border-radius: var(--radius-lg); }
.field__hint { margin: 0; font-size: .8rem; line-height: 1.45; color: var(--gold-ink); }
