/* ==========================================================================
   MHBM Hurbs — public brand site
   --------------------------------------------------------------------------
   Hand-authored, light theme. Palette sampled from the company logo: deep
   forest green (#1f4a33), antique gold (#9a7f3f) and a warm cream paper.

   Used only by resources/views/mhbm/* — it does not touch DashLite, the
   member panel or the storefront. Link it with a filemtime cache-buster
   (AGENTS.md §7); assets are served with a long max-age.
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
  --green-900: #12301f;
  --green-800: #173b27;
  --green-700: #1f4a33;
  --green-600: #2a5d40;
  --green-500: #3c7a52;
  --green-300: #8fb79c;
  --green-100: #e2ede5;
  --green-50:  #f0f6f1;

  --gold-700: #806731;
  --gold-600: #9a7f3f;
  --gold-500: #b39555;
  --gold-300: #d9c391;
  --gold-100: #f4ecd9;

  --cream:    #faf7f0;
  --cream-2:  #f4efe3;
  --paper:    #ffffff;

  --ink:      #17241c;
  --body:     #43514a;
  --muted:    #6b7a71;
  --line:     #e6e0d2;
  --line-soft:#efe9dc;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(23, 36, 28, .05);
  --shadow:    0 10px 30px -18px rgba(23, 36, 28, .28);
  --shadow-lg: 0 28px 60px -32px rgba(23, 36, 28, .38);

  --gutter: 20px;
  --maxw: 1180px;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-disp: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-hi:   'Noto Serif Devanagari', 'Fraunces', Georgia, serif;
}

/* ----------------------------------------------------------------- base -- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4 {
  font-family: var(--font-disp);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.012em;
  margin: 0 0 .5em;
  font-variation-settings: 'SOFT' 0, 'WONK' 0;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.65rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.02rem; letter-spacing: 0; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold-100); color: var(--green-900); }

:focus-visible {
  outline: 2px solid var(--green-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green-700); color: #fff;
  padding: .7rem 1.1rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ------------------------------------------------------------- layout --- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: 820px; }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-tight { padding: clamp(40px, 5vw, 64px) 0; }
.section-paper { background: var(--paper); }
.section-cream { background: var(--cream-2); }
.section-green {
  background: var(--green-800);
  color: rgba(255, 255, 255, .82);
}
.section-green h2, .section-green h3 { color: #fff; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ------------------------------------------------------------ section UI - */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: .745rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 .9rem;
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px;
  background: var(--gold-300); flex: 0 0 auto;
}
.eyebrow-center { justify-content: center; }
.eyebrow-center::after {
  content: ''; width: 26px; height: 1px; background: var(--gold-300);
}

.section-head { max-width: 640px; margin-bottom: clamp(30px, 4vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.04rem; margin: 0; }
.section-head h2 { margin-bottom: .45rem; }

.lede { font-size: 1.08rem; color: var(--body); }

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body);
  font-size: .94rem; font-weight: 600; line-height: 1;
  padding: .92rem 1.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-800); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--green-800); border-color: var(--line); }
.btn-ghost:hover { background: var(--paper); border-color: var(--gold-300); color: var(--green-800); }
.btn-gold { background: var(--gold-600); color: #fff; }
.btn-gold:hover { background: var(--gold-700); color: #fff; transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--green-800); }
.btn-light:hover { background: var(--gold-100); color: var(--green-900); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }
.btn-sm { padding: .62rem 1.1rem; font-size: .85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .9rem; color: var(--green-700);
}
.link-arrow svg { width: 1em; height: 1em; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 247, 240, .88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -20px rgba(23, 36, 28, .5);
}
.header-bar {
  display: flex; align-items: center; gap: 1rem;
  min-height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; flex: 0 0 auto; }
.brand img { height: 50px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-disp); font-weight: 700; font-size: 1.06rem;
  color: var(--green-800); letter-spacing: .01em;
}
.brand-sub {
  font-size: .64rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--gold-600); font-weight: 600;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: .3rem; }
.nav a {
  padding: .55rem .85rem;
  font-size: .925rem; font-weight: 500;
  color: var(--body); border-radius: var(--radius-sm);
  position: relative;
}
.nav a:hover { color: var(--green-800); background: rgba(31, 74, 51, .05); }
.nav a.is-active { color: var(--green-800); font-weight: 600; }
.nav a.is-active::after {
  content: ''; position: absolute; left: .85rem; right: .85rem; bottom: .25rem;
  height: 2px; border-radius: 2px; background: var(--gold-500);
}
.header-actions { display: flex; align-items: center; gap: .55rem; margin-left: .6rem; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 0;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--green-800);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: .6rem var(--gutter) 1.4rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: .82rem .25rem;
  font-size: 1rem; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a.is-active { color: var(--green-700); font-weight: 600; }
.mobile-nav .btn-row { margin-top: 1.1rem; }
.mobile-nav .btn { flex: 1; }

/* ----------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  padding: clamp(46px, 6vw, 88px) 0 clamp(52px, 7vw, 96px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(760px 440px at 82% 8%,  rgba(217, 195, 145, .3), transparent 62%),
    radial-gradient(660px 480px at 4% 92%, rgba(143, 183, 156, .28), transparent 64%);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero h1 { margin-bottom: .55rem; }
.hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--green-600);
}
.hero-hi {
  font-family: var(--font-hi);
  font-size: 1.16rem; color: var(--gold-700);
  margin: 0 0 1.1rem;
}
.hero-lede { font-size: 1.08rem; max-width: 46ch; margin-bottom: 1.7rem; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.4rem;
  margin-top: 2.2rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero-meta div { min-width: 0; }
.hero-meta dt {
  font-size: .72rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: .2rem;
}
.hero-meta dd {
  margin: 0; font-family: var(--font-disp); font-size: 1.22rem;
  font-weight: 600; color: var(--green-800);
}

/* Hero art: a tall botanical plate with a product card lifted over its edge. */
.hero-art { position: relative; }
.hero-plate {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-2);
  aspect-ratio: 5 / 5.4;
}
.hero-plate img { width: 100%; height: 100%; object-fit: cover; }
.hero-plate::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(23, 36, 28, .07);
  border-radius: inherit;
}
.hero-badge {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  padding: .45rem .9rem .45rem .5rem;
  box-shadow: var(--shadow-sm);
  font-size: .76rem; font-weight: 600; color: var(--green-800);
  letter-spacing: .04em;
}
.hero-badge img { height: 28px; width: auto; }

.hero-card {
  position: absolute; right: -14px; bottom: -26px;
  width: min(232px, 62%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .8rem .85rem .95rem;
}
.hero-card .thumb {
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--cream); margin-bottom: .65rem;
  aspect-ratio: 3 / 2.6;
}
.hero-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.hero-card .tag {
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-600); font-weight: 700;
}
.hero-card h3 { font-size: 1.02rem; margin: .16rem 0 .1rem; }
.hero-card span { font-size: .8rem; color: var(--muted); }

/* ------------------------------------------------------- assurance strip - */
.assurance {
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.assurance ul {
  list-style: none; margin: 0; padding: 1.05rem 0;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .7rem clamp(1.1rem, 3vw, 2.6rem);
  justify-content: center;
}
.assurance li {
  display: inline-flex; align-items: center; gap: .48rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.assurance li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-500); flex: 0 0 auto;
}

/* --------------------------------------------------------- product cards - */
.product-grid { display: grid; gap: clamp(16px, 2vw, 24px); grid-template-columns: repeat(5, minmax(0, 1fr)); }
.product-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card-product {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card-product:hover {
  transform: translateY(-4px);
  border-color: var(--gold-300);
  box-shadow: var(--shadow);
}
.card-product .shot {
  background: var(--cream); aspect-ratio: 3 / 4; overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.card-product .shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.card-product:hover .shot img { transform: scale(1.035); }
.card-product .body {
  padding: 1.05rem 1.1rem 1.2rem;
  display: flex; flex-direction: column; flex: 1; gap: .3rem;
}
.card-product .tag {
  font-size: .655rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-600);
}
.card-product h3 { font-size: 1.06rem; margin: 0; }
.card-product .size { font-size: .82rem; color: var(--muted); }
.card-product p { font-size: .875rem; color: var(--muted); margin: .35rem 0 0; }
.card-product .foot {
  margin-top: auto; padding-top: .95rem;
  display: flex; align-items: baseline; justify-content: space-between; gap: .6rem;
}
.card-product .price {
  font-family: var(--font-disp); font-size: 1.05rem; font-weight: 600;
  color: var(--green-800); white-space: nowrap;
}

/* ---------------------------------------------------------- pillar cards - */
.card-pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.7rem;
  height: 100%;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card-pillar:hover { border-color: var(--gold-300); transform: translateY(-3px); box-shadow: var(--shadow); }
.card-pillar .ico {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--green-50); color: var(--green-700);
  border: 1px solid var(--green-100);
  margin-bottom: 1.05rem;
}
.card-pillar .ico svg { width: 22px; height: 22px; }
.card-pillar h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.card-pillar p { font-size: .91rem; color: var(--muted); margin: 0; }

/* ---------------------------------------------------------------- split -- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.split-media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--cream-2);
  aspect-ratio: 4 / 3.4;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split.reverse .split-media { order: 2; }
/* For landscape sources — the default 4/3.4 frame crops them to pieces. */
.split-media--wide { aspect-ratio: 16 / 10; }

.tick-list { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; gap: .6rem; }
.tick-list li {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .96rem; color: var(--body);
}
.tick-list svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: .22rem; color: var(--green-500); }

/* ---------------------------------------------------------------- herbs -- */
.herb-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.herb {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .95rem 1.05rem 1.05rem;
  transition: border-color .18s ease, background .18s ease;
}
.herb:hover { border-color: var(--gold-300); background: #fffdf8; }
.herb strong {
  display: block; font-family: var(--font-disp);
  font-size: 1.02rem; font-weight: 600; color: var(--ink);
}
.herb em {
  display: block; font-size: .78rem; font-style: italic;
  color: var(--gold-600); margin-bottom: .35rem;
}
.herb span { font-size: .845rem; color: var(--muted); line-height: 1.5; }

.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.chip {
  display: inline-flex; align-items: center;
  padding: .42rem .85rem;
  border-radius: var(--radius-pill);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  font-size: .82rem; font-weight: 500; color: var(--green-800);
}

/* ------------------------------------------------------------- CTA band -- */
.cta-band {
  background: var(--green-800);
  color: rgba(255, 255, 255, .8);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 58px) clamp(24px, 4vw, 56px);
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 48px); align-items: center;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; right: -80px; top: -90px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,195,145,.22), transparent 66%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: .4rem; }
.cta-band p { margin: 0; max-width: 54ch; }
.cta-band .btn-row { position: relative; }

/* --------------------------------------------------------------- footer -- */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, .66);
  font-size: .9rem;
  padding: clamp(46px, 6vw, 72px) 0 0;
}
.site-footer a { color: rgba(255, 255, 255, .72); }
.site-footer a:hover { color: var(--gold-300); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(26px, 4vw, 48px);
  padding-bottom: 2.6rem;
}
.footer-brand img { height: 62px; width: auto; margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; margin: 0 0 1rem; }
.footer-title {
  font-family: var(--font-body);
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-300); font-weight: 700; margin: 0 0 1rem;
}
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-contact { display: grid; gap: .8rem; }
.footer-contact div { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; margin-top: .28rem; flex: 0 0 auto; color: var(--gold-300); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.4rem 0 1.8rem;
  display: flex; flex-wrap: wrap; gap: .8rem 1.6rem;
  align-items: center; justify-content: space-between;
  font-size: .82rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.2rem 0;
  font-size: .76rem; line-height: 1.6;
  color: rgba(255, 255, 255, .46);
}

/* -------------------------------------------------------- page furniture - */
.page-head {
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
  padding: clamp(36px, 5vw, 62px) 0;
}
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: .45rem;
  font-size: .82rem; color: var(--muted); margin-bottom: .85rem;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--green-700); }
.crumbs span[aria-current] { color: var(--green-800); font-weight: 500; }
.page-head h1 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: .35rem; }
.page-head p { color: var(--muted); max-width: 60ch; margin: 0; }

/* -------------------------------------------------------------- filters -- */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(24px, 3vw, 36px); }
.filter {
  padding: .55rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: .875rem; font-weight: 500; color: var(--body);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.filter:hover { border-color: var(--gold-300); color: var(--green-800); }
.filter[aria-pressed="true"] {
  background: var(--green-700); border-color: var(--green-700); color: #fff;
}

/* --------------------------------------------------------- product page -- */
.pd {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4.5vw, 62px);
  align-items: start;
}
.pd-media {
  position: sticky; top: 100px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--cream);
  box-shadow: var(--shadow);
}
.pd-media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

.pd h1 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin-bottom: .3rem; }
.pd-tagline { font-family: var(--font-disp); font-size: 1.18rem; color: var(--green-600); font-style: italic; margin: 0 0 1rem; }
.pd-hi { font-family: var(--font-hi); color: var(--gold-700); font-size: 1.04rem; margin: 0 0 1.1rem; }

.pd-price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: .3rem .75rem;
  margin: 0 0 1.2rem;
}
.pd-price .amount {
  font-family: var(--font-disp); font-size: 2rem; font-weight: 600;
  color: var(--green-800); line-height: 1;
}
.pd-price .note { font-size: .84rem; color: var(--muted); }

.pd-meta {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 0 0 1.4rem;
}
.pd-meta span {
  display: inline-flex; align-items: center;
  padding: .38rem .8rem; border-radius: var(--radius-pill);
  background: var(--cream-2); border: 1px solid var(--line);
  font-size: .8rem; color: var(--body); font-weight: 500;
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-top: 1.4rem;
}
.panel h3 {
  font-family: var(--font-body);
  font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-600); font-weight: 700; margin-bottom: .85rem;
}
.panel p:last-child, .panel ul:last-child { margin-bottom: 0; }

.spec-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.spec-table caption {
  text-align: left; font-size: .8rem; color: var(--muted);
  padding-bottom: .7rem;
}
.spec-table th {
  text-align: left; font-weight: 600; color: var(--muted);
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 0 .6rem .55rem 0; border-bottom: 1px solid var(--line);
}
.spec-table th:last-child, .spec-table td:last-child { text-align: right; padding-right: 0; }
.spec-table td {
  padding: .55rem .6rem .55rem 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--body);
}
.spec-table tr:last-child td { border-bottom: 0; }
.spec-table td:first-child { color: var(--ink); font-weight: 500; }
.spec-table td.note {
  color: var(--muted); font-weight: 400; font-style: italic; font-size: .85rem;
  text-align: left; padding-right: .6rem;
}

.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.benefit {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .85rem .95rem; background: var(--cream);
}
.benefit strong { display: block; font-size: .9rem; color: var(--ink); font-weight: 600; }
.benefit span { font-family: var(--font-hi); font-size: .85rem; color: var(--gold-700); }

.notice {
  border-left: 3px solid var(--gold-500);
  background: var(--gold-100);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: .95rem 1.1rem;
  font-size: .85rem; line-height: 1.6; color: var(--gold-700);
  margin-top: 1.4rem;
}
.notice strong { color: var(--green-900); }

/* --------------------------------------------------------- contact page -- */
.contact-grid {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 4vw, 56px); align-items: start;
}
.contact-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.4rem;
  display: flex; gap: .95rem; align-items: flex-start;
  margin-bottom: 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.contact-card:hover { border-color: var(--gold-300); box-shadow: var(--shadow); }
.contact-card .ico {
  width: 40px; height: 40px; border-radius: 11px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: var(--green-50); color: var(--green-700);
  border: 1px solid var(--green-100);
}
.contact-card .ico svg { width: 19px; height: 19px; }
.contact-card h3 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; font-weight: 700; }
.contact-card p { margin: 0; color: var(--ink); font-weight: 500; }
.contact-card a { font-weight: 600; }

/* ----------------------------------------------------------------- form -- */
.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 36px); }
.field { margin-bottom: 1.05rem; }
.field label {
  display: block; font-size: .78rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .45rem;
}
.field .req { color: var(--gold-600); }
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .78rem .95rem;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #a3ada6; }
.field input:focus, .field textarea:focus {
  outline: none; background: var(--paper);
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(60, 122, 82, .12);
}
.field textarea { resize: vertical; min-height: 138px; }
.field .err { display: block; margin-top: .4rem; font-size: .8rem; color: #a6402f; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #c98476; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1rem; }

.alert-ok {
  display: flex; gap: .7rem; align-items: flex-start;
  background: var(--green-50); border: 1px solid var(--green-100);
  color: var(--green-800); border-radius: var(--radius-sm);
  padding: .9rem 1.1rem; margin-bottom: 1.4rem; font-size: .9rem;
}
.alert-ok svg { width: 18px; height: 18px; margin-top: .15rem; flex: 0 0 auto; color: var(--green-600); }

/* ----------------------------------------------------------- about page -- */
.stat-row {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.stat {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.35rem;
}
.stat strong {
  display: block; font-family: var(--font-disp);
  font-size: 1.85rem; font-weight: 600; color: var(--green-700); line-height: 1.1;
}
.stat span { font-size: .84rem; color: var(--muted); }

.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.timeline li { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 1.1rem; }
.timeline .dot {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-50); border: 1px solid var(--green-100);
  color: var(--green-700); font-size: .8rem; font-weight: 700;
  font-family: var(--font-disp);
}
.timeline h3 { font-size: 1.08rem; margin-bottom: .25rem; }
.timeline p { font-size: .93rem; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------ responsive - */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
  .footer-brand { grid-column: 1 / -1; }
  .herb-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .nav, .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-art { max-width: 480px; margin-inline: auto; width: 100%; }
  .pd { grid-template-columns: minmax(0, 1fr); }
  .pd-media { position: static; max-width: 420px; }
  .split { grid-template-columns: minmax(0, 1fr); }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .cta-band { grid-template-columns: minmax(0, 1fr); }
  .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .g-2, .g-3, .g-4 { grid-template-columns: minmax(0, 1fr); }
  .herb-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .hero-card { position: static; width: 100%; margin-top: 14px; display: flex; gap: .9rem; align-items: center; }
  .hero-card .thumb { width: 84px; flex: 0 0 auto; margin: 0; aspect-ratio: 1; }
  .hero-meta { gap: 1.1rem 1.6rem; }
}

@media (max-width: 520px) {
  :root { --gutter: 16px; }
  .brand img { height: 42px; }
  .brand-name { font-size: .95rem; }
  /* The product grid stays 2-up here — five full-width cards is a lot of
     scrolling, and the cards read fine at ~170px. It drops to one below 400px. */
  .herb-grid, .benefit-grid, .stat-row, .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .btn { width: 100%; }
  .btn-row .btn { flex: 1 1 100%; }
  .assurance ul { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .card-product .foot { flex-direction: column; align-items: flex-start; gap: .45rem; }
}

@media (max-width: 400px) {
  .product-grid, .product-grid.cols-3 { grid-template-columns: minmax(0, 1fr); }
}

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

@media print {
  .site-header, .mobile-nav, .cta-band, .site-footer, .btn { display: none !important; }
  body { background: #fff; }
  .panel, .card-product { break-inside: avoid; }
}
