/* ===== Stokis AFC Indonesia — warm editorial-boutique redesign, light theme only ===== */

:root {
  --ink: #2c1c1f;
  --ink-soft: #6e4c52;
  --ink-faint: #a9868c;
  --paper: #fbf2ec;
  --paper-raised: #fffaf6;
  --line: #ecd9cd;
  --line-strong: #ddbba8;

  --plum: #6d2545;
  --plum-soft: #f3e2e8;
  --terracotta: #c1653a;
  --terracotta-soft: #f6e3d3;
  --gold: #b3823f;
  --gold-soft: #f5ead4;

  /* per-product themes, activated via [data-theme] on .chapter and mirrored to body */
  --subarashi-accent: #9c4a2e;
  --subarashi-glow: #9c4a2e;
  --subarashi-soft: #f7e5da;
  --subarashi-ink: #6b3019;

  --utsukushhii-accent: #7d2942;
  --utsukushhii-glow: #7d2942;
  --utsukushhii-soft: #f6e6ea;
  --utsukushhii-ink: #591d2e;

  --hikari-accent: #a3742c;
  --hikari-glow: #a3742c;
  --hikari-soft: #f7ecda;
  --hikari-ink: #6b4a18;

  --stage-accent: var(--plum);
  --stage-soft: var(--plum-soft);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Consolas, monospace;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 14px -6px rgba(109,37,69,0.2);
  --shadow-lg: 0 34px 64px -30px rgba(44,28,31,0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .6s ease;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; text-wrap: balance; margin: 0; }
a { color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.6rem; }
.eyebrow {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--stage-accent); transition: color .6s ease; margin-bottom: .7rem; display: inline-block;
  padding-left: 1.15rem; position: relative;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%; width: .7rem; height: 1px;
  background: currentColor; transform: translateY(-50%);
}

/* ===== nav ===== */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,242,236,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: border-color .6s ease;
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.site-nav .logo { display: flex; align-items: center; gap: .6rem; }
.site-nav .logo img { height: 26px; width: auto; }
.site-nav ul { list-style: none; display: flex; gap: 1.8rem; margin: 0; padding: 0; }
.site-nav a.nav-link {
  font-size: .85rem; font-weight: 500; text-decoration: none; color: var(--ink-soft);
  position: relative; padding-bottom: 3px;
}
.site-nav a.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; border-radius: 2px;
  background: var(--stage-accent); transition: right .35s ease, background-color .6s ease;
}
.site-nav a.nav-link:hover::after, .site-nav a.nav-link.active::after { right: 0; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.site-nav .cta {
  font-size: .8rem; font-weight: 600; padding: .6rem 1.35rem; border-radius: var(--radius-pill); text-decoration: none;
  background: var(--stage-accent); color: #fff; transition: background-color .6s ease, opacity .25s ease, transform .2s ease;
  letter-spacing: .02em;
}
.site-nav .cta:hover { opacity: .9; transform: translateY(-1px); }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .site-nav .container { position: relative; }
  .nav-links ul {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper-raised);
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    padding: .5rem 1.5rem 1rem;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav-links ul li { width: 100%; }
  .nav-links a.nav-link { display: block; padding: .7rem 0; }
  .nav-toggle { display: block; }
}

/* ===== hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0 6rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 980px; height: 980px; border-radius: 50%;
  background: radial-gradient(circle, var(--plum-soft) 0%, transparent 68%);
  opacity: .8; pointer-events: none; z-index: 0;
}
.hero .container {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2.6rem;
}
.hero .container > div:first-child { max-width: 640px; display: flex; flex-direction: column; align-items: center; }
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem); font-weight: 600; line-height: 1.18;
  margin-bottom: 1.3rem; letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero .lede { font-size: 1.04rem; color: var(--ink-soft); max-width: 46ch; margin: 0 auto 2rem; }
.hero .actions { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; }
.btn {
  font-weight: 600; font-size: .88rem; padding: .9rem 1.7rem; border-radius: var(--radius-pill); text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem; transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  letter-spacing: .01em;
}
.btn-primary { background: var(--stage-accent); color: #fff; border: 1px solid var(--stage-accent); }
.btn-primary:hover { background: transparent; color: var(--stage-accent); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

.hero-stage { position: relative; height: 420px; width: 100%; max-width: 560px; margin: 0 auto; }
.hero-stage .pack {
  position: absolute; width: 40%;
  filter: drop-shadow(0 24px 30px rgba(109,37,69,0.22));
}
.hero-stage .pack.p1 { left: 6%; top: 12%; width: 38%; z-index: 3; }
.hero-stage .pack.p2 { left: 33%; top: 28%; width: 40%; z-index: 2; }
.hero-stage .pack.p3 { left: 58%; top: 8%; width: 38%; z-index: 1; }
@media (max-width: 900px) { .hero-stage { height: 300px; margin-top: .5rem; } }

/* ===== credibility marquee ===== */
.credibility { padding: 2.6rem 0 2.8rem; background: var(--paper-raised); border-block: 1px solid var(--line); }
.credibility-label {
  text-align: center; font-family: var(--serif); font-style: italic; font-size: .92rem; letter-spacing: .01em;
  color: var(--ink-faint); margin-bottom: 1.7rem;
}
.marquee-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee { display: flex; width: max-content; animation: scrollX 34s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }
.marquee .track { display: flex; gap: 1.4rem; padding-right: 1.4rem; align-items: center; }
.marquee img {
  height: 58px; width: auto; object-fit: contain; opacity: .92;
  background: var(--paper-raised); padding: .5rem .9rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: opacity .35s ease, transform .35s ease, border-color .35s ease;
}
.marquee img:hover { opacity: 1; transform: translateY(-3px); border-color: var(--line-strong); }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== product chapters ===== */
.chapter { padding: 7rem 0; transition: background .7s ease; position: relative; border-top: 1px solid var(--line); }
.chapter[data-theme="subarashi"] { background: var(--subarashi-soft); }
.chapter[data-theme="utsukushhii"] { background: var(--utsukushhii-soft); }
.chapter[data-theme="hikari"] { background: var(--hikari-soft); }
.chapter .container { position: relative; z-index: 1; }

.chapter-head { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3.4rem; align-items: center; margin-bottom: 3.4rem; }
@media (max-width: 860px) { .chapter-head { grid-template-columns: 1fr; } }
.chapter[data-theme="subarashi"] .eyebrow, .chapter[data-theme="subarashi"] .chapter-title { color: var(--subarashi-ink); }
.chapter[data-theme="utsukushhii"] .eyebrow, .chapter[data-theme="utsukushhii"] .chapter-title { color: var(--utsukushhii-ink); }
.chapter[data-theme="hikari"] .eyebrow, .chapter[data-theme="hikari"] .chapter-title { color: var(--hikari-ink); }
.chapter-title { font-size: clamp(1.95rem, 3.3vw, 2.6rem); font-weight: 600; margin-bottom: 1.1rem; position: relative; display: inline-block; letter-spacing: -.01em; }
.chapter-title::after {
  content: ""; position: absolute; left: 0; bottom: -.5rem; height: 3px; width: 46px; border-radius: 2px;
  background: currentColor; transition: background-color .6s ease;
}
.chapter-lede { color: var(--ink-soft); font-size: 1rem; max-width: 52ch; margin-bottom: 1.4rem; }
.chapter-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.tag {
  font-family: var(--mono); font-size: .66rem; padding: .35rem .85rem; border-radius: var(--radius-pill);
  background: var(--paper-raised); border: 1px solid var(--line-strong);
}

.chapter-pack { position: relative; text-align: center; }
.chapter-pack::before {
  content: ""; position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%); z-index: 0;
}
.chapter-pack img {
  position: relative; z-index: 1;
  max-height: 320px; margin: 0 auto; filter: drop-shadow(0 24px 30px rgba(44,28,31,0.2));
  transition: transform .35s ease;
}
.chapter-pack:hover img { transform: translateY(-6px); }

.ingredient-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (min-width: 761px) {
  /* center a lone leftover card (e.g. a 4-item list in a 3-column grid) instead of stranding it on the left */
  .ingredient-grid > *:nth-child(3n+1):last-child { grid-column: 2; }
}
@media (max-width: 760px) { .ingredient-grid { grid-template-columns: repeat(2, 1fr); gap: .9rem; } }
@media (max-width: 480px) { .ingredient-grid { grid-template-columns: 1fr; } }
.ing-card {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.ing-card.pre-reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.ing-card.in-view { opacity: 1; transform: translateY(0); }
.ing-card .photo { height: 156px; overflow: hidden; }
.ing-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ing-card:hover .photo img { transform: scale(1.05); }
.ing-card .cap { padding: 1rem 1.1rem 1.2rem; }
.ing-card .cap .name { font-family: var(--serif); font-weight: 600; font-size: .95rem; margin-bottom: .25rem; }
.ing-card .cap .role { font-size: .78rem; color: var(--ink-soft); }

/* ===== price panel (per product, text-based) ===== */
.price-panel {
  margin-top: 3.2rem;
  padding: 2.4rem;
  border-radius: var(--radius);
  background: var(--paper-raised);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.4rem;
}
@media (max-width: 760px) { .price-panel { grid-template-columns: 1fr; padding: 1.8rem; } }
.price-panel-main { display: flex; flex-direction: column; align-items: flex-start; }
.price-eyebrow { font-family: var(--mono); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .4rem; }
.price-figure { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1.05; color: var(--stage-accent); transition: color .6s ease; }
.price-unit { font-size: .86rem; font-weight: 500; color: var(--ink-soft); margin: .45rem 0 1.4rem; }

.benefit-panel { border-left: 1px solid var(--line-strong); padding-left: 2.3rem; }
@media (max-width: 760px) { .benefit-panel { border-left: none; border-top: 1px solid var(--line-strong); padding-left: 0; padding-top: 1.6rem; } }
.benefit-title { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; margin-bottom: 1rem; }
.benefit-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem .9rem; }
@media (max-width: 480px) { .benefit-list { grid-template-columns: 1fr; } }
.benefit-list li { font-size: .86rem; color: var(--ink-soft); padding-left: 1.3rem; position: relative; line-height: 1.45; }
.benefit-list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%;
  background: var(--stage-accent); transition: background-color .6s ease;
}

/* ===== product selector guide ===== */
.selector { padding: 5.5rem 0; background: var(--paper-raised); border-top: 1px solid var(--line); }
.selector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.2rem; }
@media (max-width: 760px) { .selector-grid { grid-template-columns: 1fr; } }
.selector-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: .35rem;
  padding: 1.8rem 1.8rem; background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-decoration: none; color: var(--ink); transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.selector-card:hover { background: var(--paper); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.selector-dot { width: 10px; height: 10px; border-radius: 50%; margin-bottom: .6rem; }
.selector-name { font-family: var(--serif); font-weight: 600; font-size: 1.1rem; }
.selector-focus { font-family: var(--mono); font-size: .64rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-faint); }
.selector-desc { font-size: .84rem; color: var(--ink-soft); margin-top: .35rem; }
.selector-note { margin-top: 1.8rem; font-size: .87rem; color: var(--ink-soft); }
.selector-note a { color: var(--terracotta); font-weight: 600; text-decoration: none; }
.selector-note a:hover { text-decoration: underline; }

/* ===== cara pesan / how to order ===== */
.how-to-order { padding: 5.5rem 0; background: var(--paper); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.4rem; }
@media (max-width: 760px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { position: relative; padding: 1.9rem 1.7rem; background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-num {
  width: 36px; height: 36px; background: var(--terracotta-soft); color: var(--terracotta); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; font-size: 1rem;
  margin-bottom: 1rem;
}
.step-title { font-family: var(--serif); font-weight: 600; font-size: 1rem; margin-bottom: .45rem; }
.step-desc { font-size: .86rem; color: var(--ink-soft); line-height: 1.55; }

/* ===== paket bundling (text-based tier cards) ===== */
.paket { padding: 6.5rem 0; background: var(--paper); }
.paket-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.6rem; }
@media (max-width: 860px) { .paket-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.paket-card {
  border-radius: var(--radius); background: var(--paper-raised); border: 1px solid var(--line-strong);
  text-align: center; padding: 2.5rem 1.7rem 2.2rem; box-shadow: var(--shadow-sm); transition: border-color .3s ease, transform .25s ease;
}
.paket-card:hover { border-color: var(--tier-color, var(--stage-accent)); transform: translateY(-4px); }
.paket-card[data-tier="ruby"] { --tier-color: #8f2f2f; }
.paket-card[data-tier="saphire"] { --tier-color: #6d2545; }
.paket-card[data-tier="diamond"] { --tier-color: #6e4c52; }
.paket-gem {
  width: 32px; height: 32px; margin: 0 auto 1.2rem;
  border: 1.5px solid var(--tier-color, var(--gold));
  border-radius: 8px;
  transform: rotate(45deg);
}
.paket-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--tier-color, var(--ink)); margin-bottom: .65rem; }
.paket-contents { font-size: .87rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 1.1rem; }
.paket-price { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; font-variant-numeric: tabular-nums; margin-bottom: 1.4rem; }
.paket-card .btn { width: 100%; justify-content: center; }

/* ===== neutral section title (non-product sections) ===== */
.chapter-title-neutral { color: var(--ink) !important; }
.chapter-title-neutral::after { background: var(--gold) !important; }

/* ===== nav muted link ===== */
.nav-link-muted { opacity: .7; }

/* ===== government endorsement ===== */
.endorsement { padding: 5.5rem 0 4.5rem; background: var(--paper-raised); border-top: 1px solid var(--line); }
.endorsement .container { margin-bottom: 2.1rem; }
.endorse-scroller {
  display: flex; gap: 1.3rem; overflow-x: auto; padding: 0.4rem 1.6rem 1.1rem;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.endorse-scroller::-webkit-scrollbar { height: 6px; }
.endorse-scroller::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: var(--radius-pill); }
.endorse-card {
  flex: none; width: 244px; scroll-snap-align: start; display: block; text-align: left;
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius); padding: 0; margin: 0;
  font-family: var(--sans); cursor: pointer; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: border-color .25s ease, transform .25s ease;
}
.endorse-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.endorse-thumb { position: relative; display: block; overflow: hidden; aspect-ratio: 4/3; }
.endorse-thumb img { width: 100%; height: 100%; object-fit: cover; }
.endorse-thumb .play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; background: rgba(44,28,31,0.22); transition: background .25s ease;
}
.endorse-card:hover .play-badge { background: rgba(193,101,58,0.62); }
.endorse-name { display: block; font-family: var(--serif); font-weight: 600; font-size: .92rem; margin: .8rem 1rem 0; color: var(--ink); }
.endorse-ctx { display: block; font-size: .77rem; color: var(--ink-faint); margin: .2rem 1rem .9rem; }

/* ===== video modal ===== */
.video-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.video-modal.open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(32,20,22,0.88); }
.video-modal-box { position: relative; z-index: 1; width: min(880px, 100%); }
.video-modal-close {
  position: absolute; top: -2.6rem; right: 0; background: none; border: none; color: #fff;
  font-size: 1.8rem; line-height: 1; cursor: pointer; padding: .3rem .6rem;
}
.video-modal-title { color: #fff; font-family: var(--serif); font-size: 1.05rem; margin-bottom: .7rem; }
.video-modal-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: var(--radius-sm); overflow: hidden; }
.video-modal-frame video, .video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== success stories (real distributor videos) ===== */
.success-stories { padding: 5.5rem 0 4.5rem; background: var(--paper); }
.success-stories .container { margin-bottom: 2.1rem; }

/* ===== about ===== */
.about { padding: 6rem 0; background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.2rem; align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo { position: relative; overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--line-strong); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem 1.1rem;
  background: linear-gradient(0deg, rgba(32,20,22,0.65), transparent); color: #fff; font-size: .78rem;
}
.about-stats { margin-top: 3.4rem; }
.about-stats .stat-row { margin-bottom: 0; }

/* ===== business opportunity ===== */
.opportunity { padding: 4.5rem 0; background: var(--ink); color: #fff; }
.opportunity .container { border-radius: var(--radius); }
.opportunity-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.opportunity .eyebrow { color: var(--gold); }
.opportunity .chapter-title { color: #fff !important; }
.opportunity .chapter-title::after { background: var(--gold) !important; }
.opportunity .chapter-lede { color: #d8c4c9; margin-bottom: 0; }
.opportunity-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.opportunity .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.32); }

/* ===== FAQ accordion ===== */
.faq { padding: 6rem 0; background: var(--paper-raised); border-top: 1px solid var(--line); }
.faq-list {
  margin-top: 2.2rem; display: flex; flex-direction: column; gap: 0; max-width: 740px;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none; cursor: pointer;
  padding: 1.2rem 1.4rem; font-family: var(--sans); font-weight: 500; font-size: .94rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-icon { font-family: var(--mono); font-size: 1rem; color: var(--terracotta); transition: transform .3s ease; flex: none; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-a-inner { overflow: hidden; min-height: 0; }
.faq-a p { margin: 0; padding: 0 1.4rem 1.2rem; color: var(--ink-soft); font-size: .88rem; line-height: 1.6; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ===== sticky WhatsApp button ===== */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 60;
  width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px -8px rgba(44,28,31,0.45);
  opacity: 0; transform: scale(.85); pointer-events: none; transition: opacity .3s ease, transform .3s ease;
}
.wa-float.visible { opacity: 1; transform: scale(1); pointer-events: auto; }
.wa-float:hover { transform: scale(1.06); }
@media (prefers-reduced-motion: reduce) { .wa-float { transition: opacity .2s ease; } }

/* ===== care / CSR ===== */
.care { padding: 6.5rem 0; background: var(--paper); }
.care .chapter-title { color: var(--ink); }
.care .eyebrow { color: var(--terracotta); }
.care-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2.6rem; }
@media (max-width: 860px) { .care-grid { grid-template-columns: repeat(2, 1fr); } }
.care-grid figure { margin: 0; overflow: hidden; position: relative; background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.care-grid img { height: 190px; width: 100%; object-fit: cover; filter: saturate(.9) sepia(.05); display: block; }
.care-grid figcaption { padding: .7rem .8rem; font-size: .75rem; font-weight: 500; color: var(--ink-soft); line-height: 1.35; }

/* ===== awards / stats ===== */
.awards { padding: 6rem 0; background: var(--paper-raised); border-top: 1px solid var(--line); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; margin-bottom: 3.2rem; text-align: center; }
@media (max-width: 760px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat .num { font-family: var(--serif); font-size: clamp(1.3rem, 5.5vw, 2.4rem); font-weight: 600; color: var(--terracotta); font-variant-numeric: tabular-nums; white-space: nowrap; }
.stat .label { font-size: .8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }
.muri-block { margin-bottom: 3.4rem; }
.muri-heading { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin: .3rem 0 1.7rem; color: var(--ink); }
.muri-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 860px) { .muri-grid { grid-template-columns: 1fr; } }
.muri-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm); }
.muri-badge {
  display: inline-block; font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  color: var(--terracotta); background: var(--terracotta-soft); border-radius: var(--radius-pill); padding: .3rem .8rem; margin-bottom: .9rem;
}
.muri-card p { font-size: .88rem; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.press-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; align-items: center; }
@media (max-width: 760px) { .press-grid { grid-template-columns: repeat(3, 1fr); } }
.press-grid img { opacity: .85; filter: grayscale(.4); transition: opacity .3s ease, filter .3s ease; }
.press-grid img:hover { opacity: 1; filter: grayscale(0); }

/* ===== footer ===== */
footer.site-footer { background: var(--ink); color: #ddc9cd; padding: 4rem 0 2.2rem; border-radius: 28px 28px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.6rem; margin-bottom: 2.6rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
footer.site-footer h4 { color: #fff; font-family: var(--serif); font-size: .96rem; margin-bottom: 1rem; font-weight: 600; letter-spacing: .01em; }
footer.site-footer .logo img { height: 24px; margin-bottom: .9rem; filter: brightness(0) invert(1); }
footer.site-footer p { color: #c3a8ae; font-size: .87rem; max-width: 40ch; }
footer.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
footer.site-footer a { text-decoration: none; color: #c3a8ae; font-size: .87rem; }
footer.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #4a2f36; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .78rem; color: #93767c; }

/* reveal-on-scroll generic */
.reveal.pre-reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== breadcrumb (product/about/opportunity subpages) ===== */
.breadcrumb { padding: 1.4rem 0 0; font-size: .84rem; color: var(--ink-faint); }
.breadcrumb a { color: var(--terracotta); font-weight: 600; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== "read more" link from homepage chapter to dedicated product page ===== */
.chapter-more-link { margin-top: .8rem; }
.chapter-more-link a { color: var(--stage-accent, var(--terracotta)); font-weight: 600; text-decoration: none; font-size: .9rem; }
.chapter-more-link a:hover { text-decoration: underline; }

/* ===== simple page intro (subpages without the multi-product hero) ===== */
.page-intro { padding: 3.4rem 0 1.2rem; }
.page-intro .chapter-lede { max-width: 62ch; }
