/* =========================================================
   Array Candle Company
   LAFCO-inspired quiet-luxury design system
   ========================================================= */

:root {
  /* Palette */
  --ivory:   #F7F2EA;
  --cream:   #FCFAF5;
  --sand:    #EAE1D2;
  --line:    #E0D6C6;
  --ink:     #1D1A16;
  --stone:   #6E665A;
  --taupe:   #A99B87;
  --ember:   #B0623B;   /* warm accent, used sparingly */

  /* Type: Roxborough CF as primary (self-hosted + local), Jost for UI chrome */
  --serif: "Roxborough CF", "RoxboroughCF", Georgia, "Times New Roman", serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Roxborough CF", "RoxboroughCF", Georgia, serif;

  /* Layout: wide enough for five product cards across */
  --wrap: 1360px;
  --gutter: clamp(18px, 4vw, 56px);
  --product-gap: clamp(14px, 1.8vw, 28px);
  --product-cols: 5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  color: var(--ink);
  background: var(--ivory);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.display {
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  font-weight: 400;
  font-family: var(--display);
  text-wrap: balance;
}
.collection__head .display,
.collection__head h2,
.page-hero h1,
.lede {
  text-wrap: balance;
}
.card__name {
  text-wrap: pretty;
}
/* UI chrome stays in Jost for legibility at small sizes */
.btn, .eyebrow, .nav a, .icon-btn, .link-underline,
.card__size, .card__price, .announce, .footer h5,
.pdp__specs span:first-child, .pdp__size {
  font-family: var(--sans);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 400;
}
.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  color: var(--stone);
  font-weight: 400;
}

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 11vw, 140px) 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1.2rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.link-underline {
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 3px;
}

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247,242,234,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__bar {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 78px; gap: 16px;
}
.nav { display: flex; gap: 30px; }
.nav a {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--stone); transition: color .2s;
}
.nav a:hover { color: var(--ink); }
.brand {
  text-align: center; font-family: var(--display);
  font-size: 1.7rem; letter-spacing: 0.34em; text-transform: uppercase;
  padding-left: 0.34em; /* optical centering for letter-spacing */
}
.brand small {
  display: block; font-family: var(--sans); font-size: 0.5rem;
  letter-spacing: 0.42em; color: var(--stone); margin-top: 2px;
}
.header__right { display: flex; justify-content: flex-end; gap: 22px; align-items: center; }
.icon-btn {
  background: none; border: none; cursor: pointer; color: var(--ink);
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; gap: 7px;
}
.cart-count {
  display: inline-grid; place-items: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--ink); color: var(--cream);
  border-radius: 999px; font-size: 0.62rem; letter-spacing: 0;
}
.nav-toggle { display: none; }

/* =========================================================
   Announcement bar
   ========================================================= */
.announce {
  background: var(--ink); color: var(--cream);
  text-align: center; font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; padding: 9px 16px;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: min(88vh, 920px);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(29,26,22,0.20) 0%,
    rgba(29,26,22,0.05) 38%,
    rgba(29,26,22,0.58) 100%);
}
.hero__copy {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding: clamp(120px, 22vh, 220px) var(--gutter) clamp(48px, 8vw, 96px);
  display: flex; flex-direction: column; gap: 24px;
  color: var(--cream);
}
@media (min-width: 701px) {
  .hero__copy {
    padding-right: clamp(150px, 20vw, 230px);
  }
}
.hero__copy h1 { text-shadow: 0 2px 30px rgba(29,26,22,0.4); }
.hero__copy .eyebrow { color: rgba(252,250,245,0.88); }
.hero__copy .lede { color: rgba(252,250,245,0.92); max-width: 520px; text-shadow: 0 1px 18px rgba(29,26,22,0.45); }
.hero__copy .btn { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.hero__copy .btn:hover { background: transparent; color: var(--cream); }

.hero__seal {
  position: absolute;
  z-index: 3;
  right: clamp(16px, 3.6vw, 52px);
  bottom: clamp(22px, 5.5vw, 52px);
  width: clamp(108px, 14vw, 158px);
  pointer-events: none;
  transform: rotate(-7deg);
  filter: drop-shadow(0 10px 18px rgba(29,26,22,0.28));
}
.hero__seal svg { display: block; width: 100%; height: auto; }
.hero__seal-type {
  font-family: "Roxborough CF", "RoxboroughCF", Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .hero__seal {
    top: clamp(16px, 4vw, 28px);
    bottom: auto;
    right: 14px;
    width: clamp(92px, 28vw, 118px);
  }
}

/* =========================================================
   Product image tiles (placeholder art)
   Swap `.tile__art` background for a real <img> later.
   ========================================================= */
.tile__art {
  aspect-ratio: 4 / 5; position: relative; overflow: hidden;
  background: linear-gradient(155deg, #EFE7D8 0%, #E3D6C2 55%, #D3C0A4 100%);
  display: grid; place-items: center;
}
.tile__art--2 { background: linear-gradient(155deg, #EDE7DD 0%, #D9CDBB 60%, #C2B49B 100%); }
.tile__art--3 { background: linear-gradient(155deg, #E8E3D6 0%, #CFC4B0 60%, #B7A98F 100%); }
.tile__art--4 { background: linear-gradient(155deg, #F0E9DC 0%, #E0D3BE 60%, #CBB89A 100%); }
.tile__art--5 { background: linear-gradient(155deg, #E6DFCF 0%, #D2C4AC 60%, #B9A98C 100%); }
.tile__art--6 { background: linear-gradient(155deg, #EFE8D9 0%, #DDCFB8 60%, #C6B393 100%); }
.tile__art .vessel {
  width: 46%; aspect-ratio: 3/4; border-radius: 6px 6px 4px 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(29,26,22,0.06));
  box-shadow: inset 0 0 40px rgba(29,26,22,0.10), 0 20px 40px rgba(29,26,22,0.08);
  position: relative;
}
.tile__art .vessel::before {
  content: ""; position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 3px; height: 12%; background: var(--ink); border-radius: 2px;
}
.tile__art .vessel::after {
  content: ""; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 14px; height: 20px; border-radius: 50% 50% 45% 45%;
  background: radial-gradient(circle at 50% 30%, #FFE7B0, #E9A23B 60%, transparent 72%);
  filter: blur(0.3px);
}

/* =========================================================
   Collection sections + product row (max 5 across, always centered)
   ========================================================= */
.collection {
  padding: clamp(56px, 9vw, 110px) 0;
}
.collection + .collection {
  border-top: 1px solid var(--line);
}
.collection__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}
.collection__head .display {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  margin-top: 10px;
}
.collection__head .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin-top: 14px;
  color: var(--stone);
}
.collection--soft {
  background: rgba(252, 250, 245, 0.65);
}

/* Flex row: card width locked to 1/5 so 2 to 5 items sit centered with equal size */
.product-row,
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--product-gap);
  width: 100%;
}
.product-row .card,
.grid .card {
  flex: 0 1 calc((100% - (var(--product-cols) - 1) * var(--product-gap)) / var(--product-cols));
  max-width: calc((100% - (var(--product-cols) - 1) * var(--product-gap)) / var(--product-cols));
  min-width: min(100%, 168px);
}

.card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.card .tile__art {
  margin-bottom: 14px;
  transition: transform .5s ease;
}
.card:hover .tile__art { transform: translateY(-5px); }

.card__meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.card__name {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.card__note {
  color: var(--stone);
  font-size: 0.78rem;
  margin-top: 4px;
  line-height: 1.35;
}
.card__size {
  margin-top: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}
.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}
.card__price {
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.card__add {
  margin-top: 12px;
  width: 100%;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 12px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s, color .25s;
}
.card__add:hover { background: var(--ink); color: var(--cream); }

/* Non-candle placeholder vessels */
.tile__glyph {
  width: 42%;
  display: grid;
  place-items: center;
  position: relative;
}
.tile__glyph--incense {
  width: 28%;
  aspect-ratio: 1 / 1.55;
  background: linear-gradient(180deg, #C4A574 0%, #8B6B45 55%, #5C4630 100%);
  clip-path: polygon(50% 0%, 88% 100%, 12% 100%);
  box-shadow: 0 14px 28px rgba(29, 26, 22, 0.12);
}
.tile__glyph--incense::after {
  content: "";
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(29,26,22,0.35));
  border-radius: 2px;
}
.tile__glyph--diffuser {
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.45), transparent 45%),
    linear-gradient(155deg, #E8DCC8, #B8A48A 70%, #8F7A62);
  box-shadow: 0 16px 32px rgba(29, 26, 22, 0.12), inset 0 0 0 1px rgba(255,255,255,0.25);
  position: relative;
}
.tile__glyph--diffuser::before {
  content: "";
  position: absolute;
  top: -14%;
  left: 50%;
  transform: translateX(-50%);
  width: 18%;
  height: 18%;
  border: 1.5px solid rgba(29,26,22,0.35);
  border-radius: 50%;
  background: rgba(252,250,245,0.5);
}

/* =========================================================
   Split feature (brand story)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; }
.split__art {
  aspect-ratio: 1/1;
  background: url("../images/story.jpg") center/cover no-repeat, #CBB79A;
}
.split__copy { padding: clamp(36px, 6vw, 90px); }
.split--reverse .split__art { order: 2; }

/* =========================================================
   Marquee values
   ========================================================= */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value { background: var(--ivory); padding: clamp(32px, 5vw, 56px); text-align: center; }
.value h4 { font-size: 1.35rem; margin-bottom: 8px; }
.value p { color: var(--stone); font-size: 0.9rem; }

/* =========================================================
   Newsletter
   ========================================================= */
.news { background: var(--ink); color: var(--cream); text-align: center; }
.news .eyebrow { color: var(--taupe); }
.news h2 { color: var(--cream); }
.news form { display: flex; gap: 0; max-width: 460px; margin: 26px auto 0; }
.news input {
  flex: 1; background: transparent; border: 1px solid rgba(252,250,245,0.35);
  border-right: none; color: var(--cream); padding: 15px 18px; font-family: var(--sans);
  font-size: 0.85rem; letter-spacing: 0.04em;
}
.news input::placeholder { color: rgba(252,250,245,0.55); }
.news button {
  background: var(--cream); color: var(--ink); border: 1px solid var(--cream);
  padding: 0 26px; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  cursor: pointer;
}

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--cream); border-top: 1px solid var(--line); }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding: clamp(56px, 8vw, 96px) 0 48px;
}
.footer h5 {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 18px; font-weight: 400;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 0.9rem; color: var(--stone); }
.footer li a:hover { color: var(--ink); }
.footer__brand { font-family: var(--display); font-size: 2rem; letter-spacing: 0.22em;
  text-transform: uppercase; padding-left: 0.22em; max-width: 100%; overflow-wrap: anywhere; }
.footer__brand + p { color: var(--stone); font-size: 0.9rem; max-width: 260px; margin-top: 14px; }
.footer__bottom {
  border-top: 1px solid var(--line); padding: 22px 0; display: flex;
  justify-content: space-between; font-size: 0.75rem; color: var(--stone);
  letter-spacing: 0.04em; flex-wrap: wrap; gap: 10px;
}

/* =========================================================
   Cart drawer
   ========================================================= */
.overlay {
  position: fixed; inset: 0; background: rgba(29,26,22,0.42);
  opacity: 0; visibility: hidden; transition: .3s; z-index: 60;
}
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--cream); z-index: 70; transform: translateX(100%);
  transition: transform .38s cubic-bezier(.22,.61,.36,1);
  display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px var(--gutter); border-bottom: 1px solid var(--line);
}
.drawer__head h3 { font-size: 1.5rem; }
.drawer__items { flex: 1; overflow-y: auto; padding: 10px var(--gutter); }
.drawer__empty { color: var(--stone); text-align: center; padding: 60px 0; font-family: var(--serif); font-size: 1.2rem; }
.line {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.line__art { width: 64px; aspect-ratio: 4/5; border-radius: 3px;
  background: linear-gradient(155deg, #EFE7D8, #D3C0A4); }
.line__name { font-family: var(--display); font-size: 1.1rem; }
.line__meta { color: var(--stone); font-size: 0.8rem; }
.qty { display: inline-flex; align-items: center; gap: 12px; margin-top: 6px; }
.qty button { background: none; border: 1px solid var(--line); width: 24px; height: 24px; cursor: pointer; font-size: 0.9rem; color: var(--ink); }
.line__price { font-size: 0.9rem; white-space: nowrap; }
.line__remove { display: block; margin-top: 6px; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); background: none; border: none; cursor: pointer; text-decoration: underline; }
.drawer__foot { padding: 22px var(--gutter) 30px; border-top: 1px solid var(--line); }
.drawer__total { display: flex; justify-content: space-between; font-size: 1rem; margin-bottom: 6px; }
.drawer__total strong { font-family: var(--serif); font-size: 1.3rem; }
.drawer__note { color: var(--stone); font-size: 0.78rem; margin-bottom: 16px; }
.drawer__foot .btn { width: 100%; text-align: center; }

/* =========================================================
   Product detail page
   ========================================================= */
/* Hide stub HTML (Product / $0 / generic vessel) until the catalog fills in. */
.pdp-wait .pdp-hydrate {
  opacity: 0;
  visibility: hidden;
}
.pdp-ready .pdp-hydrate {
  opacity: 1;
  visibility: visible;
  transition: opacity .2s ease;
}
.pdp-missing .pdp-hydrate { display: none; }
.pdp-missing .pdp-empty { display: block; }
.pdp-empty {
  display: none;
  text-align: center;
  padding: clamp(48px, 10vw, 120px) var(--gutter);
}
.pdp-empty .lede { margin: 16px auto 28px; max-width: 36ch; }

.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.pdp__art .tile__art { aspect-ratio: 1/1; }
.pdp__info { position: sticky; top: 110px; }
.pdp__price { font-family: var(--display); font-size: 1.6rem; margin: 10px 0 18px; }
.pdp__size {
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--taupe); margin: -6px 0 18px;
}
.pdp__desc { color: var(--stone); margin-bottom: 24px; line-height: 1.65; }
.pdp__specs { list-style: none; border-top: 1px solid var(--line); margin-top: 30px; }
.pdp__specs li { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 0.88rem; gap: 16px; }
.pdp__specs span:first-child { color: var(--stone); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem; flex-shrink: 0; }
/* Top / Heart / Base: directly under Add to Cart */
.pdp__notes { margin-top: 28px; }
.pdp__notes + .pdp__specs { margin-top: 0; border-top: none; }
.pdp__notes[hidden] + .pdp__specs { margin-top: 30px; border-top: 1px solid var(--line); }
.pdp__buy { display: flex; gap: 14px; align-items: stretch; }
.pdp__qty { display: inline-flex; align-items: center; border: 1px solid var(--ink); }
.pdp__qty button { background: none; border: none; width: 44px; cursor: pointer; font-size: 1rem; }
.pdp__qty span { width: 34px; text-align: center; }

/* =========================================================
   Page hero (interior pages)
   ========================================================= */
.page-hero { text-align: center; padding: clamp(56px, 9vw, 120px) 0 clamp(30px, 5vw, 60px); }

/* =========================================================
   Trust bar, shipping band, FAQ (SEO / conversion)
   ========================================================= */
.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.trust-bar__item {
  background: var(--cream);
  padding: clamp(18px, 3vw, 28px) 16px;
  text-align: center;
}
.trust-bar__item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.trust-bar__item span {
  font-size: 0.78rem;
  color: var(--stone);
  letter-spacing: 0.02em;
}

.shipping-band { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.shipping-band__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.shipping-band__list {
  list-style: none;
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 8px 0;
}
.shipping-band__list li {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.55;
}
.shipping-band__list li:last-child { border-bottom: none; }
.shipping-band__list strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  color: var(--ink);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.shipping-band__list a { text-decoration: underline; text-underline-offset: 3px; }

.faq { background: var(--ivory); }
.faq__list { max-width: 760px; margin: 0 auto; }

/* =========================================================
   Founder letter
   ========================================================= */
.founder {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.founder__inner {
  max-width: 720px;
  margin: 0 auto;
}
.founder__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.founder__head .display {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 10px;
}
.founder__body p {
  color: var(--stone);
  font-size: clamp(1.02rem, 1.4vw, 1.12rem);
  line-height: 1.75;
  margin: 0 0 1.15em;
}
.founder__body p:last-child { margin-bottom: 0; }
.founder__sign {
  margin-top: 1.6em;
  padding-top: 0;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.founder__name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.founder__title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}
.faq__item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 4px;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  float: right;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--taupe);
  margin-top: 4px;
}
.faq__item[open] summary::after { content: "-"; }
.faq__item p {
  padding: 0 4px 22px;
  color: var(--stone);
  max-width: 62ch;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .shipping-band__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .trust-bar__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  :root { --product-cols: 4; }
}
@media (max-width: 900px) {
  :root { --product-cols: 3; }
  .hero { min-height: 76vh; }
  .hero__copy { padding-top: clamp(90px, 18vh, 160px); }
  .split, .pdp { grid-template-columns: 1fr; }
  .split--reverse .split__art { order: -1; }
  .pdp__info { position: static; }
  .values { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --product-cols: 2; }
  .header__bar { grid-template-columns: auto 1fr auto; }
  .nav { display: none; position: absolute; top: 78px; left: 0; right: 0;
    background: var(--ivory); flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav a { padding: 16px var(--gutter); border-top: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .brand { font-size: 1.35rem; text-align: left; padding-left: 0; }
  .header__right .label-hide { display: none; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding: 40px 28px 28px;
  }
  .footer__grid > :first-child {
    grid-column: 1 / -1;
  }
  .footer__brand {
    font-size: 1.35rem;
    letter-spacing: 0.16em;
    padding-left: 0;
  }
  .footer__brand + p {
    max-width: none;
    margin-top: 10px;
    line-height: 1.5;
  }
  .footer h5 { margin-bottom: 12px; }
  .footer li { margin-bottom: 8px; }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 28px 28px;
  }
  .news form { flex-direction: column; gap: 10px; }
  .news input { border-right: 1px solid rgba(252,250,245,0.35); }
  .news button { padding: 14px; }
}
@media (max-width: 420px) {
  :root { --product-cols: 1; }
  .product-row .card,
  .grid .card { max-width: 320px; }
}

/* SVG candle render placement */
.candle-art{position:absolute;inset:0;display:grid;place-items:center;padding:7%;}
.candle-art svg{width:100%;height:100%;filter:drop-shadow(0 18px 24px rgba(0,0,0,.10));}

/* Collection chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  padding-top: clamp(28px, 4vw, 40px);
}
.chip {
  padding: 12px 20px;
  font-size: 0.66rem;
}

/* Free-shipping meter in the cart */
.ship-meter { margin: 0 0 14px; }
.ship-meter__track {
  height: 3px;
  background: var(--line);
  overflow: hidden;
}
.ship-meter__bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ink);
  transition: width .35s ease;
}
.ship-meter__msg {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--stone);
  letter-spacing: 0.02em;
}

/* Policy pages (shipping, care, returns) */
.policy { padding: clamp(48px, 8vw, 96px) 0 80px; }
.policy__inner { max-width: 680px; }
.policy .display {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 10px 0 16px;
}
.policy .lede { margin-bottom: 36px; }
.policy h2 {
  font-size: 1.45rem;
  margin: 36px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.policy h2:first-of-type { border-top: none; }
.policy p, .policy li {
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 10px;
}
.policy ul, .policy ol { padding-left: 1.2em; margin: 0 0 16px; }
.policy a { text-decoration: underline; text-underline-offset: 3px; }
.policy .btn { text-decoration: none; }
.policy__cta { margin-top: 40px; }
.policy code {
  font-size: 0.85em;
  background: var(--cream);
  padding: 1px 6px;
  border: 1px solid var(--line);
}
