:root {
  /* V9 — Olive Botanical palette selected for Dana Kasian */
  --primary:#2F4F34; --primary-hover:#27412B; --secondary:#385E3C; --accent:#A6C693; --accent-soft:#EAF2E4;
  --background:#F5F7F3; --surface:#FFFFFF; --surface-alt:#EEF3EB; --text-primary:#203829; --text-secondary:#5C6C60;
  --border-color:#D7E0D3; --focus-color:#8FB77F; --focus-ring-on-light:color-mix(in srgb,var(--focus-color) 35%,var(--text-primary) 65%); --focus-ring-on-dark:color-mix(in srgb,var(--focus-color) 35%,#fff 65%); --top-strip-bg:#2F4F34; --top-strip-text:#FFFFFF;
  --header-bg:#F7F9F5; --header-text:#203829; --header-hover:#385E3C; --header-active-line:#6F944E;
  --hero-bg:#F0F5ED; --hero-accent:#A6C693; --hero-card-bg:#FFFFFF; --hero-card-text:#203829;
  --button-primary-bg:#2F4F34; --button-primary-text:#FFFFFF; --button-primary-hover:#385E3C; --button-secondary-text:#2F4F34;
  --product-card-bg:#FFFFFF; --product-card-border:#D7E0D3; --product-media-bg:#EAF2E4; --product-badge-bg:#DDE9D4; --product-badge-text:#2F4F34;
  --stats-bg:#FFFFFF; --research-bg:#FFFFFF; --research-hover:#EAF2E4; --cta-bg:#2F4F34; --cta-text:#FFFFFF;
  --footer-bg:#243E29; --footer-text:#F5F7F3; --footer-muted:#BFCBBC; --footer-link-hover:#C9DDAE;
  /* compatibility tokens used by the existing component system */
  --ink:var(--text-primary); --ink-soft:var(--text-secondary); --forest:var(--primary); --forest-2:var(--secondary); --leaf:var(--secondary);
  --lime:var(--accent); --cream:var(--background); --paper:var(--surface); --sand:var(--surface-alt);
  --line:color-mix(in srgb,var(--border-color) 72%,transparent); --line-strong:color-mix(in srgb,var(--border-color) 88%,var(--text-primary) 12%);
  --white:#ffffff; --danger:#9f2f34; --success:#2F6A45;
  --shadow-sm:0 10px 30px color-mix(in srgb,var(--primary) 10%,transparent); --shadow-lg:0 28px 80px color-mix(in srgb,var(--primary) 15%,transparent);
  --radius-sm:14px; --radius-md:22px; --radius-lg:34px; --container:min(1180px,calc(100vw - 40px)); --header-h:76px; --ease:cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(166,198,147,.24), transparent 28rem),
    var(--cream);
  font-family: 'Vazir', Tahoma, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.dialog-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }
::selection { background: var(--lime); color: var(--forest); }
:focus-visible { outline: 3px solid var(--focus-ring-on-light); outline-offset: 3px; }
.cta-panel :focus-visible, .site-footer :focus-visible, .tone-deep :focus-visible { outline-color: var(--focus-ring-on-dark); }

.skip-link {
  position: fixed; z-index: 999; inset-inline-start: 16px; top: 10px;
  transform: translateY(-150%); background: var(--white); padding: 10px 14px;
  border-radius: 10px; box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

/* Initial application bootstrap: visible before API data arrives and reused on retry. */
.app-bootstrap {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}
.app-bootstrap__card {
  width: min(520px, 100%);
  padding: clamp(30px, 5vw, 48px);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.62);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.app-bootstrap__brand {
  width: 58px;
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--lime);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}
.app-bootstrap__brand span { font-size: .9rem; font-weight: 900; letter-spacing: .08em; }
.app-bootstrap__eyebrow { margin: 0 0 10px; color: var(--forest-2); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.app-bootstrap__title { margin: 0; font-size: clamp(1.55rem, 4vw, 2.25rem); line-height: 1.35; }
.app-bootstrap__text { max-width: 40ch; margin: 14px auto 0; color: var(--ink-soft); line-height: 1.9; }
.app-bootstrap__loader {
  width: 34px;
  height: 34px;
  margin: 24px auto 0;
  display: block;
  border: 3px solid rgba(47,79,52,.14);
  border-top-color: var(--leaf);
  border-radius: 50%;
  animation: app-bootstrap-spin .8s linear infinite;
}
.app-bootstrap--error .app-bootstrap__card { border-color: color-mix(in srgb, var(--danger) 24%, var(--line)); }
.app-bootstrap--error .app-bootstrap__brand { background: color-mix(in srgb, var(--forest) 88%, var(--danger)); }
.app-bootstrap__retry { margin-top: 24px; }
.app-bootstrap__copy--en { display: none; }
html[lang="en"] .app-bootstrap__copy--fa { display: none; }
html[lang="en"] .app-bootstrap__copy--en { display: block; }
@keyframes app-bootstrap-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .app-bootstrap__loader { animation: none; border-top-color: var(--leaf); } }

.container { width: var(--container); margin-inline: auto; }
.muted { color: var(--ink-soft); }
.kicker {
  display: inline-flex; align-items: center; gap: 8px; color: var(--forest-2);
  font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
html[dir="rtl"] .kicker { letter-spacing: 0; }
.kicker::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.h1, .h2, .h3, h1, h2, h3 { margin: 0; letter-spacing: -.035em; line-height: 1.06; }
html[dir="rtl"] .h1, html[dir="rtl"] .h2, html[dir="rtl"] .h3,
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { letter-spacing: -.015em; }
.h1 { font-size: clamp(2.7rem, 7vw, 6.7rem); max-width: 10ch; }
.h2 { font-size: clamp(2rem, 4vw, 4rem); max-width: 13ch; }
.h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); }
.lead { font-size: clamp(1.02rem, 1.7vw, 1.25rem); line-height: 1.9; color: var(--ink-soft); max-width: 62ch; }
html[lang="en"] .lead { line-height: 1.72; }

.top-strip {
  background: var(--forest); color: rgba(255,255,255,.92); min-height: 34px;
  display: flex; align-items: center; font-size: .78rem;
}
.top-strip .container { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.top-strip__item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.top-strip__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(166,198,147,.12); }

.site-header {
  position: sticky; top: 0; z-index: 60; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--cream) 84%, transparent); border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(47,79,52,.05); }
.header-row { min-height: var(--header-h); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark {
  width: 42px; aspect-ratio: 1; border-radius: 14px; background: var(--forest); color: var(--lime);
  display: grid; place-items: center; position: relative; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.brand-mark::after { content: ""; position: absolute; width: 25px; height: 11px; border-radius: 100% 0 100% 0; background: var(--lime); transform: rotate(-27deg) translate(7px,-6px); opacity: .92; }
.brand-mark span { font-weight: 900; font-size: .92rem; position: relative; z-index: 1; transform: translate(-3px,3px); }
html[dir="rtl"] .brand-mark span { transform: translate(3px,3px); }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: .9rem; letter-spacing: .14em; }
html[dir="rtl"] .brand-copy strong { letter-spacing: 0; }
.brand-copy small { font-size: .7rem; color: var(--ink-soft); }
.nav { display: flex; justify-content: center; align-items: center; gap: 6px; }
.nav-link { padding: 10px 12px; border-radius: 999px; font-size: .9rem; color: var(--ink-soft); transition: .2s ease; }
.nav-link:hover, .nav-link.is-active { color: var(--forest); background: rgba(255,255,255,.62); }
.header-actions { display: flex; gap: 8px; align-items: center; }
.icon-btn, .lang-btn, .pill-btn {
  border: 1px solid var(--line); background: rgba(255,255,255,.52); color: var(--forest); min-height: 42px;
  border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .2s var(--ease), background .2s ease, border-color .2s ease;
}
.icon-btn { width: 42px; padding: 0; }
.lang-btn { padding: 0 14px; font-size: .8rem; font-weight: 800; }
.icon-btn:hover, .lang-btn:hover, .pill-btn:hover { transform: translateY(-1px); background: var(--white); border-color: var(--line-strong); }
.menu-btn { display: none; }

.btn {
  min-height: 52px; padding: 0 20px; border-radius: 999px; border: 1px solid var(--forest);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; font-size: .92rem;
  transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--forest); color: var(--white); box-shadow: 0 12px 28px rgba(47,79,52,.18); }
.btn--primary:hover { background: #123226; box-shadow: 0 18px 34px rgba(47,79,52,.22); }
.btn--secondary { background: transparent; color: var(--forest); }
.btn--soft { border-color: transparent; background: rgba(255,255,255,.7); color: var(--forest); }
.btn svg, .icon-btn svg { width: 18px; height: 18px; flex: none; }

.hero { padding: clamp(54px, 8vw, 108px) 0 72px; overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(380px,.95fr); gap: clamp(44px, 8vw, 100px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero .kicker { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--leaf); }
.hero .lead { margin: 24px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-trust { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 20px; color: var(--ink-soft); font-size: .83rem; }
.trust-chip { display: inline-flex; gap: 9px; align-items: center; }
.trust-chip i { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--white); color: var(--leaf); font-style: normal; font-weight: 900; box-shadow: var(--shadow-sm); }
.hero-stage { min-height: 570px; position: relative; display: grid; place-items: center; isolation: isolate; }
.hero-orbit { position: absolute; inset: 8% 5%; border: 1px solid rgba(56,94,60,.18); border-radius: 50%; transform: rotate(-8deg); }
.hero-orbit::before, .hero-orbit::after { content:""; position:absolute; border-radius:50%; background: var(--leaf); }
.hero-orbit::before { width: 10px; height: 10px; top: 11%; left: 18%; box-shadow: 0 0 0 8px rgba(56,94,60,.09); }
.hero-orbit::after { width: 7px; height: 7px; bottom: 16%; right: 13%; box-shadow: 0 0 0 7px rgba(56,94,60,.08); }
.hero-blob { position: absolute; width: min(470px, 84%); aspect-ratio: 1; border-radius: 44% 56% 61% 39% / 44% 38% 62% 56%; background: linear-gradient(145deg, #dfe7bc, #c9d697); filter: drop-shadow(0 30px 50px rgba(73,100,51,.12)); transform: rotate(-9deg); }
.hero-blob::after { content:""; position:absolute; inset:12%; border-radius:inherit; border:1px solid rgba(255,255,255,.55); }
.packshots { position: relative; z-index: 2; width: 78%; height: 76%; display: flex; align-items: end; justify-content: center; gap: 16px; }
.pack { position: relative; box-shadow: 0 28px 50px rgba(32,58,47,.18); transition: transform .4s var(--ease); }
.pack:hover { transform: translateY(-8px) rotate(0deg) !important; }
.pack--tube { width: 108px; height: 280px; border-radius: 17px 17px 24px 24px; background: linear-gradient(90deg,#f8f5e9,#ffffff 48%,#e7e1d4); transform: rotate(-6deg) translateY(-8px); }
.pack--bottle { width: 130px; height: 250px; border-radius: 28px 28px 20px 20px; background: linear-gradient(90deg,#644a26,#886533 50%,#5b421f); transform: translateY(8px); }
.pack--bottle::before { content:""; position:absolute; width:55%; height:52px; left:22.5%; top:-40px; border-radius:10px 10px 5px 5px; background:#e8e4d7; box-shadow: inset 0 -8px 0 rgba(0,0,0,.04); }
.pack--box { width: 140px; height: 310px; border-radius: 13px; background: linear-gradient(90deg,#214938,#2c5f49 52%,#183d2f); transform: rotate(6deg) translateY(-12px); }
.pack-label { position:absolute; inset-inline:12px; top:36%; padding:16px 10px; border-radius:10px; background:rgba(255,253,248,.94); text-align:center; color:var(--forest); }
.pack-label small { display:block; font-size:.58rem; letter-spacing:.12em; opacity:.72; }
.pack-label strong { display:block; font-size:.95rem; margin-top:5px; }
.pack--box .pack-label { background: var(--lime); }
.micro-card { position:absolute; z-index:4; background:rgba(255,255,255,.78); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.7); box-shadow:var(--shadow-sm); border-radius:18px; padding:12px 14px; display:flex; gap:10px; align-items:center; max-width:180px; font-size:.75rem; line-height:1.45; }
.micro-card i { width:34px; height:34px; border-radius:12px; background:var(--forest); color:var(--lime); display:grid; place-items:center; font-style:normal; font-weight:900; flex:none; }
.micro-card--a { top:14%; inset-inline-start:0; }
.micro-card--b { bottom:11%; inset-inline-end:-2%; }

.stats { padding: 0 0 78px; }
.stats-card { background: rgba(255,255,255,.6); border:1px solid var(--line); border-radius:var(--radius-lg); display:grid; grid-template-columns:repeat(4,1fr); box-shadow:var(--shadow-sm); overflow:hidden; }
.stat { padding:28px; min-height:132px; display:flex; flex-direction:column; justify-content:space-between; gap:18px; }
.stat + .stat { border-inline-start:1px solid var(--line); }
.stat strong { font-size:clamp(1.5rem,3vw,2.5rem); letter-spacing:-.04em; }
.stat span { color:var(--ink-soft); font-size:.82rem; line-height:1.6; }

.section { padding: clamp(70px, 9vw, 118px) 0; }
.section--paper { background: var(--paper); border-top:1px solid rgba(32,56,41,.06); border-bottom:1px solid rgba(32,56,41,.06); }
.section-head { display:flex; justify-content:space-between; gap:40px; align-items:end; margin-bottom:42px; }
.section-head__copy { display:grid; gap:13px; }
.section-head .lead { margin:0; max-width:52ch; }

.product-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.product-grid--featured { display:flex; flex-wrap:wrap; justify-content:center; }
.product-grid--featured > .product-card { flex:0 1 calc((100% - 32px) / 3); }
.product-card { background:var(--paper); border:1px solid var(--line); border-radius:26px; overflow:hidden; display:flex; flex-direction:column; min-width:0; transition:transform .25s var(--ease), box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:rgba(32,56,41,.2); }
.product-visual { margin:8px; min-height:240px; border-radius:20px; display:grid; place-items:center; position:relative; overflow:hidden; isolation:isolate; }
.product-visual::before { content:""; position:absolute; width:150px; height:150px; border-radius:50%; background:rgba(255,255,255,.23); filter:blur(1px); top:20px; inset-inline-end:-34px; }
.product-visual::after { content:""; position:absolute; width:95px; height:95px; border:1px solid rgba(255,255,255,.42); border-radius:50%; bottom:-25px; inset-inline-start:-20px; }
.tone-deep { background:linear-gradient(145deg,#163a2c,#2d6048); color:var(--lime); }
.tone-olive { background:linear-gradient(145deg,#c9d39b,#9eb171); color:var(--forest); }
.tone-amber { background:linear-gradient(145deg,#ceb576,#9d7540); color:#fff7df; }
.tone-sand { background:linear-gradient(145deg,#e4d9c3,#cbb99b); color:var(--forest); }
.product-monogram { position:relative; z-index:2; width:118px; height:162px; border-radius:12px 12px 19px 19px; background:rgba(255,255,255,.91); color:var(--forest); display:grid; place-items:center; box-shadow:0 20px 38px rgba(30,46,36,.16); transform:rotate(-2deg); }
.product-monogram::after { content:"OLIVE / BOTANICAL"; position:absolute; bottom:22px; font-size:.48rem; letter-spacing:.13em; opacity:.6; }
.product-monogram span { font-size:1.9rem; font-weight:900; letter-spacing:-.05em; }
.product-tag { position:absolute; z-index:3; top:14px; inset-inline-start:14px; border:1px solid rgba(255,255,255,.42); background:rgba(255,255,255,.18); backdrop-filter:blur(10px); border-radius:999px; padding:7px 9px; font-size:.66rem; font-weight:800; }
.product-body { padding:18px 20px 21px; display:flex; flex-direction:column; flex:1; }
.product-body__top { display:flex; justify-content:space-between; gap:10px; align-items:start; }
.product-brand { font-size:.68rem; text-transform:uppercase; letter-spacing:.12em; color:var(--leaf); font-weight:900; }
html[dir="rtl"] .product-brand { letter-spacing:0; }
.product-title { font-size:1.13rem; margin:7px 0 10px; letter-spacing:-.02em; }
.product-summary { color:var(--ink-soft); font-size:.82rem; line-height:1.75; margin:0 0 18px; }
.product-card__footer { margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:10px; border-top:1px solid var(--line); padding-top:15px; }
.text-link { border:0; background:transparent; color:var(--forest); font-weight:850; padding:0; display:inline-flex; align-items:center; gap:7px; }
.text-link svg { width:16px; height:16px; transition:transform .2s ease; }
.text-link:hover svg { transform:translateX(3px); }
html[dir="rtl"] .text-link svg, html[dir="rtl"] .btn svg, html[dir="rtl"] .search-result > svg { transform:rotate(180deg); }
html[dir="rtl"] .text-link:hover svg { transform:rotate(180deg) translateX(3px); }

.pill-row { display:flex; gap:8px; flex-wrap:wrap; }
.info-pill { padding:7px 9px; background:rgba(47,79,52,.055); border-radius:999px; color:var(--ink-soft); font-size:.7rem; }

.pillars { display:grid; grid-template-columns:1.1fr .9fr; gap:18px; }
.pillar-main { background:var(--forest); color:white; border-radius:var(--radius-lg); padding:clamp(28px,5vw,60px); min-height:520px; display:flex; flex-direction:column; justify-content:space-between; position:relative; overflow:hidden; }
.pillar-main::before { content:""; position:absolute; width:480px; height:480px; border-radius:48% 52% 45% 55%; border:1px solid rgba(166,198,147,.18); inset-inline-end:-150px; top:-100px; transform:rotate(15deg); }
.pillar-main::after { content:""; position:absolute; width:230px; height:90px; border-radius:100% 0 100% 0; background:rgba(166,198,147,.12); inset-inline-end:30px; bottom:38px; transform:rotate(-25deg); }
.pillar-main .kicker { color:var(--lime); }
.pillar-main .h2 { max-width:11ch; position:relative; z-index:1; }
.pillar-main p { max-width:52ch; color:rgba(255,255,255,.7); line-height:1.9; position:relative; z-index:1; }
.pillar-side { display:grid; grid-template-rows:1fr 1fr; gap:18px; }
.pillar-card { border:1px solid var(--line); border-radius:var(--radius-lg); background:rgba(255,255,255,.58); padding:clamp(26px,4vw,42px); display:flex; flex-direction:column; justify-content:space-between; min-height:250px; }
.pillar-icon { width:48px; height:48px; border-radius:16px; background:var(--lime); color:var(--forest); display:grid; place-items:center; font-weight:900; }
.pillar-card p { margin:16px 0 0; color:var(--ink-soft); line-height:1.85; font-size:.9rem; }

.research-track { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:40px; }
.research-card { min-height:280px; border-radius:26px; border:1px solid var(--line); padding:26px; background:var(--paper); display:flex; flex-direction:column; justify-content:space-between; position:relative; overflow:hidden; }
.research-card::after { content:""; position:absolute; width:150px; height:150px; border-radius:50%; border:1px solid var(--line); inset-inline-end:-55px; top:-45px; }
.research-card__num { font-size:.72rem; color:var(--leaf); font-weight:900; }
.research-card h3 { margin-top:auto; margin-bottom:10px; }
.research-card p { color:var(--ink-soft); font-size:.84rem; line-height:1.75; margin:0; }

.story-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:clamp(40px,8vw,100px); align-items:center; }
.story-art { min-height:540px; border-radius:var(--radius-lg); background:linear-gradient(160deg,#d7dfb5,#ede5d4 68%); position:relative; overflow:hidden; border:1px solid var(--line); }
.story-art__ring { position:absolute; width:340px; height:340px; border:1px solid rgba(47,79,52,.2); border-radius:50%; left:50%; top:50%; transform:translate(-50%,-50%); }
.story-art__ring::before, .story-art__ring::after { content:""; position:absolute; border-radius:50%; border:1px solid rgba(47,79,52,.16); }
.story-art__ring::before { inset:28px; }
.story-art__ring::after { inset:70px; }
.story-art__leaf { position:absolute; width:210px; height:90px; border-radius:100% 0 100% 0; background:var(--forest); left:50%; top:50%; transform:translate(-50%,-50%) rotate(-24deg); box-shadow:70px 80px 0 rgba(56,94,60,.46), -70px -88px 0 rgba(255,255,255,.45); }
.story-art__badge { position:absolute; inset-inline-start:24px; bottom:24px; background:rgba(255,255,255,.78); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.8); padding:16px 18px; border-radius:18px; max-width:230px; box-shadow:var(--shadow-sm); }
.story-art__badge strong { display:block; font-size:1.15rem; }
.story-art__badge span { display:block; color:var(--ink-soft); font-size:.75rem; margin-top:4px; line-height:1.5; }
.story-copy .lead { margin:22px 0; }
.timeline { margin-top:30px; border-top:1px solid var(--line); }
.timeline-item { display:grid; grid-template-columns:92px 1fr; gap:18px; padding:18px 0; border-bottom:1px solid var(--line); }
.timeline-item strong { color:var(--leaf); }
.timeline-item p { margin:0; color:var(--ink-soft); font-size:.88rem; line-height:1.75; }

.cta-panel { background:var(--forest); color:white; border-radius:var(--radius-lg); padding:clamp(34px,6vw,72px); display:grid; grid-template-columns:1.2fr .8fr; gap:40px; align-items:end; position:relative; overflow:hidden; }
.cta-panel::after { content:""; position:absolute; width:300px; height:300px; border-radius:50%; border:1px solid rgba(255,255,255,.1); inset-inline-end:-120px; top:-150px; }
.cta-panel .kicker { color:var(--lime); }
.cta-panel p { color:rgba(255,255,255,.72); line-height:1.8; max-width:55ch; }
.cta-panel .btn--soft { background:var(--lime); color:var(--forest); }
.cta-actions { display:flex; justify-content:flex-end; gap:10px; flex-wrap:wrap; position:relative; z-index:2; }

.page-hero { padding:68px 0 46px; }
.page-hero__row { display:flex; justify-content:space-between; gap:40px; align-items:end; }
.page-hero .lead { margin:18px 0 0; }
.breadcrumbs { display:flex; gap:8px; align-items:center; color:var(--ink-soft); font-size:.76rem; margin-bottom:20px; flex-wrap:wrap; }
.breadcrumbs span { opacity:.55; }

.catalog-toolbar { display:flex; justify-content:space-between; gap:14px; align-items:center; margin-bottom:24px; flex-wrap:wrap; }
.filters { display:flex; gap:8px; flex-wrap:wrap; }
.filter-btn { border:1px solid var(--line); background:rgba(255,255,255,.5); color:var(--ink-soft); padding:9px 13px; border-radius:999px; font-size:.78rem; font-weight:800; }
.filter-btn.is-active { background:var(--forest); color:white; border-color:var(--forest); }
.catalog-count { color:var(--ink-soft); font-size:.8rem; }
.catalog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; padding-bottom:100px; }
.catalog-grid .product-visual { min-height:280px; }

.detail-page { padding-bottom:100px; }
.detail-grid { display:grid; grid-template-columns:minmax(380px,.92fr) minmax(0,1.08fr); gap:clamp(44px,7vw,90px); align-items:start; }
.detail-visual { min-height:620px; border-radius:var(--radius-lg); position:sticky; top:calc(var(--header-h) + 28px); display:grid; place-items:center; overflow:hidden; }
.detail-visual .product-monogram { width:180px; height:320px; border-radius:18px 18px 30px 30px; }
.detail-visual .product-monogram span { font-size:3rem; }
.detail-content { padding-top:18px; }
.detail-content .product-brand { margin-bottom:12px; }
.detail-content h1 { font-size:clamp(2.4rem,5vw,4.8rem); max-width:10ch; }
.detail-summary { font-size:1.02rem; color:var(--ink-soft); line-height:1.85; margin:22px 0 26px; max-width:60ch; }
.detail-actions { display:flex; gap:10px; flex-wrap:wrap; padding-bottom:28px; border-bottom:1px solid var(--line); }
.detail-section { padding:28px 0; border-bottom:1px solid var(--line); }
.detail-section h2 { font-size:1.25rem; margin-bottom:16px; }
.detail-table { display:grid; gap:0; border:1px solid var(--line); border-radius:18px; overflow:hidden; }
.detail-row { display:grid; grid-template-columns:minmax(120px,.36fr) 1fr; gap:20px; padding:14px 16px; background:rgba(255,255,255,.48); }
.detail-row + .detail-row { border-top:1px solid var(--line); }
.detail-row strong { font-size:.78rem; color:var(--ink-soft); }
.detail-row span { font-size:.86rem; line-height:1.6; }
.notice { border-radius:18px; padding:16px 18px; background:#f0eadc; border:1px solid #ded2b7; color:#675b43; font-size:.8rem; line-height:1.75; }
.faq { display:grid; gap:8px; }
.faq-item { border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.48); overflow:hidden; }
.faq-question { width:100%; border:0; background:transparent; padding:16px 18px; display:flex; justify-content:space-between; gap:20px; align-items:center; text-align:start; color:var(--ink); font-weight:850; }
.faq-answer { display:none; padding:0 18px 17px; color:var(--ink-soft); font-size:.84rem; line-height:1.75; }
.faq-item.is-open .faq-answer { display:block; }

.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.about-card { padding:clamp(28px,4vw,48px); border:1px solid var(--line); border-radius:var(--radius-lg); background:rgba(255,255,255,.58); min-height:330px; display:flex; flex-direction:column; justify-content:space-between; }
.about-card--dark { background:var(--forest); color:white; }
.about-card p { color:var(--ink-soft); line-height:1.85; }
.about-card--dark p { color:rgba(255,255,255,.72); }
.about-list { display:grid; gap:10px; margin-top:20px; }
.about-list div { display:flex; gap:10px; align-items:flex-start; }
.about-list i { width:22px; height:22px; flex:none; border-radius:50%; background:var(--lime); color:var(--forest); display:grid; place-items:center; font-style:normal; font-size:.72rem; font-weight:900; }

.contact-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:18px; padding-bottom:100px; }
.contact-panel { border-radius:var(--radius-lg); border:1px solid var(--line); background:rgba(255,255,255,.58); padding:clamp(26px,4vw,42px); }
.contact-panel--dark { background:var(--forest); color:white; }
.contact-panel--dark .muted { color:rgba(255,255,255,.65); }
.contact-list { display:grid; gap:18px; margin-top:30px; }
.contact-item { display:grid; grid-template-columns:42px 1fr; gap:12px; align-items:start; }
.contact-item__icon { width:42px; height:42px; border-radius:14px; background:rgba(166,198,147,.13); color:var(--lime); display:grid; place-items:center; font-weight:900; }
.contact-item small { display:block; color:rgba(255,255,255,.58); margin-bottom:4px; }
.contact-item a, .contact-item span { font-size:.9rem; line-height:1.6; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:26px; }
.field { display:grid; gap:7px; }
.field--full { grid-column:1 / -1; }
.field label { font-size:.75rem; color:var(--ink-soft); font-weight:800; }
.field input, .field textarea, .field select { width:100%; border:1px solid var(--line); background:var(--paper); color:var(--ink); border-radius:14px; padding:13px 14px; outline:none; transition:border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:rgba(56,94,60,.7); box-shadow:0 0 0 4px rgba(56,94,60,.1); }
.field textarea { min-height:140px; resize:vertical; }
.form-note { color:var(--ink-soft); font-size:.72rem; line-height:1.6; margin:12px 0 18px; }
.form-status { min-height:22px; margin-top:12px; font-size:.78rem; }
.form-status.success { color:var(--success); }
.form-status.error { color:var(--danger); }

.site-footer { background:#10281f; color:rgba(255,255,255,.82); padding:64px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.2fr .8fr .8fr 1fr; gap:50px; }
.site-footer .brand-copy small { color:rgba(255,255,255,.5); }
.site-footer .brand-copy strong { color:white; }
.footer-about { margin:18px 0 0; color:rgba(255,255,255,.55); line-height:1.8; font-size:.82rem; max-width:36ch; }
.footer-col h3 { font-size:.78rem; color:white; letter-spacing:.08em; text-transform:uppercase; margin-bottom:18px; }
html[dir="rtl"] .footer-col h3 { letter-spacing:0; }
.footer-links { display:grid; gap:10px; }
.footer-links a { font-size:.8rem; color:rgba(255,255,255,.58); transition:color .2s; }
.footer-links a:hover { color:var(--lime); }
.footer-bottom { margin-top:52px; padding-top:20px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap:20px; color:rgba(255,255,255,.42); font-size:.72rem; }

.search-overlay, .mobile-drawer { position:fixed; inset:0; z-index:100; visibility:hidden; opacity:0; pointer-events:none; transition:.22s ease; }
.search-overlay.is-open, .mobile-drawer.is-open { visibility:visible; opacity:1; pointer-events:auto; }
.overlay-backdrop { position:absolute; inset:0; background:rgba(9,26,19,.62); backdrop-filter:blur(8px); }
.search-panel { position:relative; z-index:2; width:min(760px,calc(100% - 28px)); margin:8vh auto 0; background:var(--paper); border-radius:28px; box-shadow:0 40px 100px rgba(0,0,0,.28); overflow:hidden; transform:translateY(10px) scale(.99); transition:.25s var(--ease); }
.search-overlay.is-open .search-panel { transform:none; }
.search-head { display:flex; gap:10px; padding:16px; border-bottom:1px solid var(--line); }
.search-input-wrap { flex:1; display:flex; align-items:center; gap:10px; background:var(--cream); border:1px solid var(--line); border-radius:999px; padding:0 14px; transition:border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.search-input-wrap:focus-within { border-color:var(--primary); box-shadow:0 0 0 3px color-mix(in srgb,var(--primary) 24%,transparent); background:var(--surface); }
.search-input-wrap input { border:0; background:transparent; outline:0; width:100%; min-height:46px; color:var(--ink); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.search-results { padding:10px; max-height:56vh; overflow:auto; }
.search-result { width:100%; border:0; background:transparent; display:grid; grid-template-columns:54px 1fr auto; gap:12px; align-items:center; padding:10px; border-radius:16px; text-align:start; color:var(--ink); }
.search-result:hover { background:var(--cream); }
.search-result__thumb { width:54px; height:54px; border-radius:14px; display:grid; place-items:center; color:white; font-weight:900; }
.search-result strong { display:block; font-size:.86rem; }
.search-result small { display:block; color:var(--ink-soft); margin-top:3px; }
.search-empty { padding:32px; text-align:center; color:var(--ink-soft); }

.drawer-sheet { position:absolute; z-index:2; top:0; bottom:0; inset-inline-end:0; width:min(380px,90vw); background:var(--paper); padding:18px; transform:translateX(105%); transition:.28s var(--ease); display:flex; flex-direction:column; }
html[dir="rtl"] .drawer-sheet { transform:translateX(-105%); }
.mobile-drawer.is-open .drawer-sheet { transform:none; }
.drawer-head { display:flex; justify-content:space-between; align-items:center; padding-bottom:18px; border-bottom:1px solid var(--line); }
.drawer-nav { display:grid; gap:4px; padding:20px 0; }
.drawer-nav a { padding:14px 12px; border-radius:14px; font-size:1rem; font-weight:800; }
.drawer-nav a:hover { background:var(--cream); }
.drawer-meta { margin-top:auto; padding-top:18px; border-top:1px solid var(--line); color:var(--ink-soft); font-size:.78rem; line-height:1.8; }

.toast { position:fixed; z-index:120; bottom:22px; inset-inline-end:22px; width:min(360px,calc(100vw - 44px)); padding:14px 16px; background:var(--forest); color:white; border-radius:16px; box-shadow:var(--shadow-lg); transform:translateY(20px); opacity:0; pointer-events:none; transition:.25s var(--ease); font-size:.82rem; line-height:1.55; }
.toast.is-visible { transform:none; opacity:1; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity:1; transform:none; }
.page-enter { animation:pageIn .38s var(--ease) both; }
@keyframes pageIn { from { opacity:0; transform:translateY(7px); } to { opacity:1; transform:none; } }

@media (max-width: 1040px) {
  .nav { display:none; }
  .menu-btn { display:inline-flex; }
  .header-row { grid-template-columns:auto 1fr auto; }
  .header-row .brand { grid-column:1; }
  .header-actions { grid-column:3; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy { max-width:760px; }
  .hero-stage { min-height:500px; width:min(700px,100%); margin-inline:auto; }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .product-grid--featured > .product-card { flex-basis:calc((100% - 16px) / 2); }
  .pillars, .story-grid, .contact-grid { grid-template-columns:1fr; }
  .story-art { order:2; min-height:430px; }
  .cta-panel { grid-template-columns:1fr; }
  .cta-actions { justify-content:flex-start; }
  .catalog-grid { grid-template-columns:repeat(2,1fr); }
  .detail-grid { grid-template-columns:1fr; }
  .detail-visual { position:relative; top:0; min-height:500px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); --header-h: 68px; }
  .top-strip__item:last-child { display:none; }
  .brand-copy small { display:none; }
  .brand-copy strong { font-size:.78rem; }
  .brand-mark { width:38px; border-radius:12px; }
  .lang-btn { padding:0 11px; }
  .header-actions { gap:6px; }
  .hero { padding-top:44px; }
  .hero-grid { gap:28px; }
  .hero-stage { min-height:400px; }
  .packshots { width:84%; gap:10px; }
  .pack--tube { width:80px; height:220px; }
  .pack--bottle { width:96px; height:190px; }
  .pack--bottle::before { height:40px; top:-31px; }
  .pack--box { width:105px; height:245px; }
  .pack-label { inset-inline:8px; padding:10px 6px; }
  .micro-card { max-width:150px; font-size:.68rem; }
  .micro-card--a { top:6%; }
  .micro-card--b { bottom:2%; }
  .stats-card { grid-template-columns:1fr 1fr; }
  .stat:nth-child(3) { border-inline-start:0; border-top:1px solid var(--line); }
  .stat:nth-child(4) { border-top:1px solid var(--line); }
  .stat { padding:20px; min-height:116px; }
  .section-head, .page-hero__row { align-items:start; flex-direction:column; }
  .product-grid, .catalog-grid, .research-track, .about-grid { grid-template-columns:1fr; }
  .product-grid--featured > .product-card { flex-basis:100%; }
  .product-visual { min-height:300px; }
  .pillar-main { min-height:440px; }
  .form-grid { grid-template-columns:1fr; }
  .field--full { grid-column:auto; }
  .detail-visual { min-height:410px; }
  .detail-visual .product-monogram { width:145px; height:260px; }
  .detail-row { grid-template-columns:1fr; gap:5px; }
  .footer-grid { grid-template-columns:1fr; gap:34px; }
  .footer-bottom { flex-direction:column; }
}

@media (max-width: 430px) {
  .brand-copy strong { display:none; }
  .hero-trust { display:grid; gap:10px; }
  .hero-stage { min-height:350px; }
  .pack--tube { width:68px; height:190px; }
  .pack--bottle { width:82px; height:168px; }
  .pack--box { width:90px; height:215px; }
  .micro-card { display:none; }
  .stats-card { grid-template-columns:1fr; }
  .stat + .stat, .stat:nth-child(3), .stat:nth-child(4) { border-inline-start:0; border-top:1px solid var(--line); }
  .hero-actions .btn, .detail-actions .btn, .cta-actions .btn { width:100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .reveal { opacity:1; transform:none; }
}

/* ===== 2026 visual refinement — calmer type scale + richer depth ===== */
body {
  font-family: 'Vazir', Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 7% 3%, rgba(166,198,147,.34), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(56,94,60,.10), transparent 30rem),
    linear-gradient(180deg, #f5f2e9 0%, var(--cream) 48%, #f0eee4 100%);
}
.h1 { font-size: clamp(2.2rem, 4.6vw, 4.65rem); max-width: 16ch; line-height: 1.17; }
.h2 { font-size: clamp(1.8rem, 3.25vw, 3.1rem); max-width: 22ch; line-height: 1.24; }
.h3 { font-size: clamp(1.15rem, 1.7vw, 1.55rem); line-height: 1.35; }
html[dir="rtl"] .h1, html[dir="rtl"] .h2, html[dir="rtl"] .h3,
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { line-height: 1.4; letter-spacing: 0; }
.hero { padding-top: clamp(46px, 6vw, 78px); }
.hero-grid { gap: clamp(38px, 6vw, 78px); }
.hero-copy::before {
  content:""; position:absolute; inset-inline-start:-40px; top:-20px; width:120px; height:120px;
  border:1px solid rgba(56,94,60,.14); border-radius:50%; z-index:-1;
}
.hero-stage {
  min-height: 540px; border-radius: 48px;
  background: linear-gradient(145deg, rgba(255,255,255,.48), rgba(255,255,255,.12));
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 30px 90px rgba(47,79,52,.10), inset 0 1px 0 rgba(255,255,255,.85);
}
.hero-stage::before {
  content:""; position:absolute; inset:20px; border-radius:38px; pointer-events:none;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.65), transparent 22%),
              linear-gradient(120deg, transparent 60%, rgba(166,198,147,.10));
}
.hero-blob { background: linear-gradient(145deg, #e5ebc6, #c6d08d 58%, #adbc73); }
.pack { filter: saturate(.92); }
.pack--tube { box-shadow:0 30px 55px rgba(31,63,49,.19), inset -10px 0 20px rgba(0,0,0,.025); }
.pack--bottle { box-shadow:0 30px 55px rgba(57,42,21,.22); }
.pack--box { box-shadow:0 30px 55px rgba(47,79,52,.23), inset -14px 0 22px rgba(0,0,0,.08); }
.stats-card { box-shadow:0 18px 55px rgba(47,79,52,.075); background:rgba(255,255,255,.73); }
.stat { position:relative; overflow:hidden; }
.stat::after { content:""; position:absolute; width:56px; height:56px; border-radius:50%; background:rgba(166,198,147,.22); inset-inline-end:-18px; top:-16px; }
.section { position:relative; }
.section--paper { background:linear-gradient(180deg, rgba(255,253,248,.94), rgba(255,253,248,.82)); }
.product-card {
  background:rgba(255,255,255,.76); border-color:rgba(32,56,41,.11);
  box-shadow:0 12px 38px rgba(32,56,41,.045); transition:transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.product-card:hover { transform:translateY(-6px); box-shadow:0 24px 54px rgba(32,56,41,.11); border-color:rgba(56,94,60,.28); }
.product-visual, .detail-visual { overflow:hidden; isolation:isolate; }
.product-visual::before, .detail-visual::before {
  content:""; position:absolute; width:58%; aspect-ratio:1; border-radius:50%; inset-inline-end:-18%; bottom:-25%;
  background:rgba(255,255,255,.22); z-index:-1;
}
.product-real-image { width:76%; height:76%; object-fit:contain; position:relative; z-index:2; filter:drop-shadow(0 24px 28px rgba(47,79,52,.17)); transition:transform .35s var(--ease); }
.product-card:hover .product-real-image { transform:translateY(-5px) scale(1.025); }
.detail-visual .product-real-image { width:82%; height:82%; }
.pillar-main, .pillar-card, .research-card, .about-card, .contact-panel, .cta-panel {
  box-shadow:0 16px 45px rgba(32,56,41,.055);
}
.pillar-card, .research-card, .about-card { transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.pillar-card:hover, .research-card:hover, .about-card:hover { transform:translateY(-4px); box-shadow:0 24px 52px rgba(32,56,41,.095); border-color:rgba(56,94,60,.25); }
.page-hero { position:relative; overflow:hidden; }
.page-hero::after {
  content:""; position:absolute; width:360px; height:360px; border-radius:50%; top:-210px; inset-inline-end:4%;
  border:1px solid rgba(56,94,60,.15); box-shadow:0 0 0 45px rgba(56,94,60,.025),0 0 0 90px rgba(56,94,60,.018); pointer-events:none;
}
.btn { box-shadow:none; }
.btn--secondary { background:rgba(255,255,255,.48); backdrop-filter:blur(8px); }
.site-footer { background:linear-gradient(155deg,#0e261c,#153529 55%,#193d2e); padding-bottom:18px; }
.footer-signature {
  margin-top:22px; padding-top:17px; border-top:1px solid rgba(255,255,255,.08); display:flex; justify-content:center; align-items:center; gap:8px;
  color:rgba(255,255,255,.38); font-size:.68rem; letter-spacing:.02em;
}
.footer-signature strong { color:var(--lime); font-size:.76rem; letter-spacing:.05em; }

@media (max-width:1040px) {
  .h1 { max-width:18ch; }
  .hero-stage { min-height:480px; }
}
@media (max-width:720px) {
  .h1 { font-size:clamp(2rem,9.5vw,3.05rem); max-width:18ch; }
  .h2 { font-size:clamp(1.65rem,7.6vw,2.35rem); max-width:24ch; }
  .hero-stage { border-radius:32px; min-height:390px; }
  .hero-copy::before { display:none; }
  .footer-signature { flex-wrap:wrap; }
}

/* CMS-managed public content */
.cms-public{min-height:70vh}.cms-content-container{max-width:920px}.cms-featured{width:100%;max-height:540px;object-fit:cover;border-radius:28px;margin-bottom:38px;box-shadow:0 20px 55px rgba(47,79,52,.11)}.cms-blocks{display:grid;gap:22px}.cms-heading{margin:18px 0 0;line-height:1.45;max-width:900px}.cms-paragraph{margin:0;line-height:2;color:var(--ink-soft);max-width:850px}.cms-list{display:grid;gap:8px;line-height:1.9;color:var(--ink-soft)}.cms-quote{margin:12px 0;border-inline-start:4px solid var(--leaf);background:rgba(56,94,60,.08);padding:22px 26px;border-radius:0 18px 18px 0}.cms-quote p{margin:0;font-size:1.08rem;line-height:1.9;color:var(--ink)}.cms-quote cite{display:block;margin-top:9px;color:var(--ink-soft);font-size:.74rem}.cms-action{margin:8px 0}.cms-link a{color:var(--forest);font-weight:800;text-decoration:underline;text-underline-offset:4px}.cms-media{margin:12px 0}.cms-media img,.cms-media video{width:100%;max-height:600px;object-fit:cover;border-radius:24px;background:#ebe8de}.cms-media figcaption{font-size:.7rem;color:var(--ink-soft);margin-top:8px;text-align:center}.cms-file{padding:15px 18px;border:1px solid var(--line);border-radius:14px;background:var(--paper)}.cms-file a{font-weight:800;color:var(--forest)}.cms-code{direction:ltr;text-align:left;background:#10281f;color:#e7eec8;padding:20px;border-radius:18px;overflow:auto;font-size:.82rem;line-height:1.7}.cms-table-wrap{overflow:auto;border:1px solid var(--line);border-radius:18px}.cms-table{width:100%;border-collapse:collapse;min-width:520px}.cms-table th,.cms-table td{padding:12px 14px;border-bottom:1px solid var(--line);border-inline-end:1px solid var(--line);text-align:start}.cms-table th{background:rgba(56,94,60,.08);color:var(--forest)}.cms-callout{border:1px solid rgba(56,94,60,.24);background:linear-gradient(145deg,rgba(166,198,147,.23),rgba(255,255,255,.4));border-radius:20px;padding:22px}.cms-callout strong{font-size:1.02rem}.cms-callout p{margin:7px 0 0;color:var(--ink-soft);line-height:1.9}.cms-divider{border:0;border-top:1px solid var(--line);width:100%}.cms-columns{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.cms-columns>div{border:1px solid var(--line);border-radius:18px;padding:20px;line-height:1.9;color:var(--ink-soft);background:rgba(255,255,255,.4)}.cms-meta{margin-top:18px;color:var(--ink-soft);font-size:.75rem}.cms-system-section{padding-top:12px}.cms-system-section .cms-blocks{border-top:1px solid var(--line);padding-top:38px}
@media(max-width:700px){.cms-featured{border-radius:20px;margin-bottom:26px}.cms-columns{grid-template-columns:1fr}.cms-quote{padding:18px}.cms-blocks{gap:18px}}

/* CMS navigation, blog & interaction */
.nav-item{position:relative;display:flex;align-items:center}.nav-caret{font-size:.72em;margin-inline-start:4px;opacity:.65}.nav-submenu{position:absolute;top:calc(100% + 12px);inset-inline-start:0;min-width:210px;padding:8px;background:rgba(255,253,248,.98);border:1px solid var(--line);border-radius:16px;box-shadow:0 22px 55px rgba(20,50,38,.14);opacity:0;visibility:hidden;transform:translateY(7px);transition:.18s;display:grid;gap:3px;z-index:40}.nav-submenu:before{content:"";position:absolute;left:0;right:0;top:-14px;height:14px}.nav-item:hover .nav-submenu,.nav-item:focus-within .nav-submenu{opacity:1;visibility:visible;transform:none}.nav-submenu a{padding:9px 11px;border-radius:10px;color:var(--ink);font-size:.78rem}.nav-submenu a:hover,.nav-submenu a.is-active{background:rgba(56,94,60,.09);color:var(--forest)}.nav-item.is-active>.nav-link{color:var(--forest)}
.cms-post-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.cms-empty-state{grid-column:1/-1;min-height:220px;display:grid;place-items:center;padding:48px 24px;text-align:center;color:var(--ink-soft);border:1px dashed var(--line);border-radius:24px;background:linear-gradient(145deg,rgba(166,198,147,.12),rgba(255,255,255,.5));font-weight:700;line-height:1.9}.cms-post-card{background:rgba(255,255,255,.55);border:1px solid var(--line);border-radius:24px;overflow:hidden;transition:.2s}.cms-post-card:hover{transform:translateY(-4px);box-shadow:0 20px 50px rgba(47,79,52,.08)}.cms-post-card>img,.cms-post-placeholder{width:100%;aspect-ratio:1.55;object-fit:cover;background:linear-gradient(145deg,#dfe7bc,#eef0dd);display:grid;place-items:center;color:var(--forest);font-weight:900;font-size:1.5rem}.cms-post-card>div{padding:20px}.cms-post-card h2{font-size:1.15rem;line-height:1.55;margin:10px 0 8px}.cms-post-card p{color:var(--ink-soft);line-height:1.8;font-size:.82rem;min-height:52px}.cms-share-btn{margin-top:18px;border:1px solid var(--line);background:rgba(255,255,255,.5);color:var(--forest);border-radius:999px;padding:8px 13px;font:inherit;font-size:.75rem;font-weight:800;cursor:pointer}.cms-inline-form{border:1px solid var(--line);background:linear-gradient(145deg,rgba(166,198,147,.15),rgba(255,255,255,.5));padding:24px;border-radius:22px}.cms-inline-form h3{margin:0 0 14px}.cms-inline-form form{display:grid;gap:10px}.cms-form-row{display:grid;grid-template-columns:1fr 1fr;gap:10px}.cms-field{display:grid;gap:7px}.cms-field label{font-size:.75rem;color:var(--ink-soft);font-weight:800}.cms-inline-form input,.cms-inline-form textarea,.cms-comment-form input,.cms-comment-form textarea{width:100%;border:1px solid var(--line);background:rgba(255,255,255,.75);border-radius:12px;padding:11px 12px;font:inherit;outline:0;transition:border-color .2s,box-shadow .2s}.cms-field input:focus,.cms-field textarea:focus{border-color:var(--forest);box-shadow:0 0 0 3px rgba(47,79,52,.12)}.cms-field input:focus-visible,.cms-field textarea:focus-visible{outline:3px solid var(--forest);outline-offset:2px}.cms-inline-form textarea,.cms-comment-form textarea{min-height:120px;resize:vertical}.cms-inline-form [data-cms-form-status],.cms-comment-form [data-comment-status]{display:block;min-height:1.5em;font-size:.7rem;line-height:1.5;color:var(--leaf)}.cms-comments-section{padding-top:20px;border-top:1px solid var(--line)}#cmsComments>h2,.cms-comment-form h2{font-size:1.25rem;margin:0 0 16px}.cms-comments-list{display:grid;gap:10px;margin-bottom:30px}.cms-comments-list>article{border:1px solid var(--line);border-radius:18px;padding:18px;background:rgba(255,255,255,.45)}.cms-comments-list strong{font-size:.82rem}.cms-comments-list time{font-size:.65rem;color:var(--ink-soft);margin-inline-start:10px}.cms-comments-list p{color:var(--ink-soft);line-height:1.9;margin:9px 0 0}.cms-comment-reply{margin-top:12px;padding:12px 14px;border-inline-start:3px solid var(--leaf);background:rgba(56,94,60,.07);border-radius:0 12px 12px 0}.cms-comment-reply p{margin-top:5px}.cms-no-comments{color:var(--ink-soft);margin-bottom:28px}.cms-comment-form{display:grid;gap:11px;border:1px solid var(--line);border-radius:20px;padding:22px;background:rgba(255,255,255,.38)}
@media(max-width:900px){.cms-post-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:700px){.cms-post-grid{grid-template-columns:1fr}.cms-form-row{grid-template-columns:1fr}.nav-submenu{display:none}}

/* ===== Product photography & gallery — supplied store assets ===== */
.product-visual.has-product-image {
  aspect-ratio: 4 / 5;
  min-height: 0;
  background: #eef2dc;
}
.product-visual.has-product-image::before,
.product-visual.has-product-image::after,
.detail-visual.has-product-image::before,
.detail-visual.has-product-image::after { display:none; }
.product-visual.has-product-image .product-real-image,
.detail-visual.has-product-image .product-real-image {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:none;
  transform:none;
  transition:transform .35s var(--ease), filter .35s ease;
}
.product-card:hover .product-visual.has-product-image .product-real-image {
  transform:scale(1.018);
  filter:saturate(1.02) contrast(1.01);
}
.product-visual.has-product-image .product-tag,
.detail-visual.has-product-image .product-tag {
  color:var(--forest);
  background:rgba(255,255,255,.78);
  border-color:rgba(255,255,255,.82);
  box-shadow:0 8px 20px rgba(32,56,41,.08);
}
.detail-media {
  position:sticky;
  top:calc(var(--header-h) + 28px);
  min-width:0;
}
.detail-media .detail-visual {
  position:relative;
  top:0;
}
.detail-media .detail-visual.has-product-image {
  min-height:0;
  aspect-ratio:4 / 5;
  background:#eef2dc;
}
.product-detail-picture {
  display:block;
  width:100%;
  height:100%;
}
.product-detail-picture .product-real-image {
  display:block;
  width:100%;
  height:100%;
}
.detail-thumbs {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:9px;
  margin-top:10px;
}
.detail-thumb {
  appearance:none;
  border:2px solid transparent;
  background:var(--paper);
  padding:4px;
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 7px 20px rgba(32,56,41,.05);
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.detail-thumb:hover { transform:translateY(-2px); box-shadow:0 10px 24px rgba(32,56,41,.09); }
.detail-thumb.is-active { border-color:var(--leaf); }
.detail-thumb img { width:100%; aspect-ratio:4 / 5; object-fit:cover; border-radius:9px; display:block; }
.search-result__thumb { overflow:hidden; }
.search-result__thumb img { width:100%; height:100%; object-fit:cover; display:block; }

@media (max-width:1040px){
  .detail-media { position:relative; top:0; }
}
@media (max-width:720px){
  .detail-thumbs { grid-template-columns:repeat(3,minmax(0,1fr)); }
}

/* ===== V6 product taxonomy, mega menu & product media ===== */
.nav-item--mega { position:static; }
.nav-item--mega .nav-link { position:relative; }
.nav-mega {
  position:absolute;
  top:calc(100% + 10px);
  inset-inline:18px;
  margin-inline:auto;
  width:min(980px,calc(100vw - 48px));
  padding:18px;
  border:1px solid var(--line);
  border-radius:24px;
  background:rgba(255,253,248,.985);
  box-shadow:0 30px 70px rgba(20,50,38,.16);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.2s var(--ease);
  z-index:55;
}
.nav-mega::before { content:""; position:absolute; inset-inline:0; top:-14px; height:14px; }
.nav-item--mega:hover .nav-mega,.nav-item--mega:focus-within .nav-mega { opacity:1; visibility:visible; transform:none; }
.nav-mega__head { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:2px 4px 15px; border-bottom:1px solid var(--line); }
.nav-mega__head strong { font-size:.95rem; }
.nav-mega__head>a { color:var(--leaf); font-size:.74rem; font-weight:900; }
.nav-mega__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; padding-top:14px; }
.nav-mega__grid section { padding:12px; border-radius:16px; background:rgba(56,94,60,.045); }
.nav-mega__category { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:8px 6px 12px; color:var(--forest); font-size:.82rem; font-weight:950; border-bottom:1px solid rgba(47,79,52,.08); }
.nav-mega__category span { min-width:25px; height:25px; display:grid; place-items:center; border-radius:999px; background:var(--lime); font-size:.65rem; }
.nav-mega__grid section>div { display:grid; gap:2px; padding-top:7px; }
.nav-mega__grid section>div>a { padding:7px 6px; border-radius:9px; color:var(--ink-soft); font-size:.72rem; line-height:1.5; }
.nav-mega__grid section>div>a:hover,.nav-mega__grid section>div>a.is-active { color:var(--forest); background:rgba(166,198,147,.28); }

.drawer-product-groups { margin:-4px 0 10px; padding:10px; border:1px solid var(--line); border-radius:16px; background:rgba(56,94,60,.05); }
.drawer-product-groups section+section { border-top:1px solid var(--line); padding-top:8px; margin-top:8px; }
.drawer-nav .drawer-category { padding:8px 9px; color:var(--forest); font-size:.82rem; }
.drawer-nav .drawer-product-link { padding:6px 18px; color:var(--ink-soft); font-size:.74rem; font-weight:650; }

.product-category-overview { padding:4px 0 28px; }
.product-category-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.product-category-card { text-align:start; border:1px solid var(--line); background:linear-gradient(145deg,rgba(255,255,255,.66),rgba(166,198,147,.12)); border-radius:22px; padding:22px; color:var(--ink); cursor:pointer; display:grid; gap:8px; min-height:150px; transition:.22s var(--ease); }
.product-category-card:hover,.product-category-card.is-active { transform:translateY(-3px); border-color:rgba(56,94,60,.52); box-shadow:0 18px 42px rgba(47,79,52,.08); }
.product-category-card.is-active { background:linear-gradient(145deg,var(--forest),#28543f); color:white; }
.product-category-card>span { width:34px; height:34px; display:grid; place-items:center; border-radius:12px; background:var(--lime); color:var(--forest); font-size:.72rem; font-weight:950; }
.product-category-card strong { margin-top:auto; font-size:1.05rem; }
.product-category-card small { opacity:.68; }

.product-long-copy { color:var(--ink-soft); line-height:2; font-size:.9rem; }
.product-long-copy p { margin:0 0 18px; }
.product-long-copy p:last-child { margin-bottom:0; }
.detail-section-head { display:flex; justify-content:space-between; align-items:end; gap:18px; margin-bottom:16px; }
.detail-section-head h2 { margin:5px 0 0; }
.product-video-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.product-video-card { margin:0; border:1px solid var(--line); border-radius:18px; overflow:hidden; background:#0f211a; }
.product-video-card video { width:100%; display:block; aspect-ratio:16/9; background:#0f211a; }
.product-video-link { min-height:180px; border:1px solid var(--line); border-radius:18px; background:linear-gradient(145deg,rgba(166,198,147,.22),rgba(255,255,255,.55)); padding:22px; display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end; gap:5px; color:var(--forest); }
.product-video-link>span { width:44px; height:44px; display:grid; place-items:center; border-radius:50%; background:var(--forest); color:var(--lime); margin-bottom:auto; }
.product-video-link strong { font-size:.9rem; }
.product-video-link small { color:var(--ink-soft); }

@media(max-width:1040px){
  .nav-mega{display:none}
}
@media(max-width:720px){
  .product-category-cards{grid-template-columns:1fr}
  .product-category-card{min-height:112px;padding:18px}
  .product-video-grid{grid-template-columns:1fr}
}
/* Preserve full supplied product posters instead of cropping their packaging/text. */
.product-visual.has-product-image .product-real-image,
.detail-visual.has-product-image .product-real-image { object-fit:contain; background:#f6f7ee; }
.detail-thumb img { object-fit:contain; background:#f6f7ee; }

/* ===== V8 lightweight interaction layer =====
   Uses the existing Dana Kasian tokens only; no animation library or new visual palette. */
:root { --interaction-ease: cubic-bezier(.16,1,.3,1); }

/* 1) Hero product micro-slider — absolutely positioned so Hero layout never shifts. */
.hero-product-slider {
  position:absolute;
  z-index:8;
  inset-inline-start:4%;
  bottom:18px;
  width:min(330px,72%);
  min-height:112px;
  padding:13px 14px 11px;
  border:1px solid color-mix(in srgb,var(--line-strong) 58%,rgba(255,255,255,.62));
  border-radius:var(--radius-md);
  background:color-mix(in srgb,var(--paper) 76%,transparent);
  box-shadow:var(--shadow-sm);
  -webkit-backdrop-filter:blur(12px) saturate(1.08);
  backdrop-filter:blur(12px) saturate(1.08);
  contain:layout paint;
}
.hero-product-slider__slides { position:relative; min-height:55px; }
.hero-slider-autoplay {
  position:absolute;
  z-index:4;
  top:10px;
  inset-inline-end:10px;
  width:28px;
  height:28px;
  padding:0;
  border:1px solid var(--line);
  border-radius:50%;
  background:color-mix(in srgb,var(--hero-card-bg) 82%,transparent);
  color:var(--primary);
  display:grid;
  place-items:center;
  transition:transform .24s var(--interaction-ease),background .24s ease,color .24s ease,border-color .24s ease;
}
.hero-slider-autoplay__icon { display:grid; place-items:center; width:14px; height:14px; }
.hero-slider-autoplay__icon[hidden] { display:none; }
.hero-slider-autoplay svg { width:14px; height:14px; }
.hero-info-slide {
  padding-inline-end:34px;
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  gap:10px;
  align-items:start;
  opacity:0;
  transform:translate3d(0,14px,0);
  filter:blur(4px);
  pointer-events:none;
  transition:opacity 580ms var(--interaction-ease),transform 580ms var(--interaction-ease),filter 580ms var(--interaction-ease);
}
.hero-info-slide.is-active { opacity:1; transform:translate3d(0,0,0); filter:blur(0); pointer-events:auto; }
.hero-info-slide__number {
  color:var(--leaf);
  font-size:.68rem;
  font-weight:950;
  letter-spacing:.08em;
  padding-top:2px;
}
.hero-info-slide__copy { min-width:0; display:grid; gap:3px; }
.hero-info-slide__copy strong { font-size:.82rem; line-height:1.45; color:var(--forest); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.hero-info-slide__copy span { color:var(--ink-soft); font-size:.66rem; line-height:1.55; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.hero-product-slider__divider { height:1px; background:var(--line); margin:7px 0 8px; }
.hero-product-slider__controls { direction:ltr; display:grid; grid-template-columns:32px 1fr 32px; align-items:center; gap:8px; }
.hero-slider-arrow {
  width:32px;
  height:32px;
  padding:0;
  border:1px solid var(--line);
  border-radius:50%;
  background:rgba(255,255,255,.48);
  color:var(--forest);
  display:grid;
  place-items:center;
  transition:transform .28s var(--interaction-ease),background .28s ease,color .28s ease,border-color .28s ease;
}
.hero-slider-arrow svg { width:14px; height:14px; }
.hero-slider-arrow--prev svg { transform:rotate(180deg); }
.hero-slider-dots { display:flex; justify-content:center; align-items:center; gap:0; min-width:0; }
.hero-slider-dot {
  width:24px;
  height:24px;
  flex:0 0 24px;
  padding:0;
  border:0;
  border-radius:999px;
  background:transparent;
  display:grid;
  place-items:center;
}
.hero-slider-dot::before {
  content:"";
  width:6px;
  height:6px;
  border-radius:999px;
  background:color-mix(in srgb,var(--ink-soft) 35%,transparent);
  transition:width .34s var(--interaction-ease),background .34s ease,transform .34s var(--interaction-ease);
}
.hero-slider-dot.is-active::before { width:22px; background:var(--leaf); }
@media (hover:hover) and (pointer:fine) {
  .hero-slider-arrow:hover,.hero-slider-autoplay:hover { transform:scale(1.08); background:var(--forest); color:var(--lime); border-color:var(--forest); }
  .hero-slider-dot:hover::before { transform:scale(1.25); background:var(--forest-2); }
}

/* 2) Main navigation underline: purely decorative, no height/layout changes. */
.nav-link { position:relative; transform:translateY(0); transition:color 430ms var(--interaction-ease),background-color 430ms var(--interaction-ease),transform 430ms var(--interaction-ease); }
.nav-link::after {
  content:"";
  position:absolute;
  inset-inline-start:12px;
  inset-inline-end:12px;
  bottom:5px;
  height:1.5px;
  border-radius:999px;
  background:var(--leaf);
  transform:scaleX(0);
  transform-origin:right center;
  transition:transform 430ms var(--interaction-ease);
  pointer-events:none;
}
html[dir="ltr"] .nav-link::after { transform-origin:left center; }
html[dir="rtl"] .nav-link::after { transform-origin:right center; }
.nav-link:hover,.nav-link.is-active,.nav-item.is-active>.nav-link { transform:translateY(-2px); color:var(--forest); }
.nav-link:hover::after,.nav-link.is-active::after,.nav-item.is-active>.nav-link::after { transform:scaleX(1); }

/* 3) Company stats emphasis. Only enabled on hover-capable pointers. */
.stat { position:relative; isolation:isolate; overflow:hidden; }
.stat::before {
  content:"";
  position:absolute;
  z-index:-1;
  width:130px;
  height:72px;
  inset-inline-start:14px;
  top:10px;
  border-radius:50%;
  background:radial-gradient(circle,color-mix(in srgb,var(--lime) 48%,transparent),transparent 70%);
  opacity:0;
  transform:scale(.72);
  transition:opacity 420ms var(--interaction-ease),transform 420ms var(--interaction-ease);
}
.stat strong { display:inline-block; transform-origin:center bottom; transition:transform 420ms var(--interaction-ease),color 420ms ease,text-shadow 420ms ease; }
@media (hover:hover) and (pointer:fine) {
  .stat:hover::before { opacity:.8; transform:scale(1); }
  .stat:hover strong { transform:translateY(-4px) scale(1.05); color:var(--forest-2); text-shadow:0 8px 22px color-mix(in srgb,var(--leaf) 26%,transparent); }
}

/* 4) Research & Development: staggered reveal + quiet scientific hover language. */
.rd-motion-section .rd-motion-head .kicker,
.rd-motion-section .rd-motion-head .h2,
.rd-motion-section .rd-motion-head .lead,
.rd-motion-section .rd-motion-row {
  opacity:0;
  filter:blur(4px);
  transition:opacity 700ms var(--interaction-ease),transform 700ms var(--interaction-ease),filter 700ms var(--interaction-ease);
}
.rd-motion-section .rd-motion-head .kicker,
.rd-motion-section .rd-motion-head .h2,
.rd-motion-section .rd-motion-head .lead { transform:translateY(18px); }
.rd-motion-section .rd-motion-head .h2 { transition-delay:70ms; }
.rd-motion-section .rd-motion-head .lead { transition-delay:160ms; }
html[dir="rtl"] .rd-motion-section .rd-motion-row { transform:translateX(20px); }
html[dir="ltr"] .rd-motion-section .rd-motion-row { transform:translateX(-20px); }
.rd-motion-section .rd-motion-row { transition-delay:calc(230ms + (var(--rd-index,0) * 90ms)); }
.rd-motion-section.is-inview .rd-motion-head .kicker,
.rd-motion-section.is-inview .rd-motion-head .h2,
.rd-motion-section.is-inview .rd-motion-head .lead,
.rd-motion-section.is-inview .rd-motion-row { opacity:1; filter:blur(0); transform:none; }
.rd-motion-inline .rd-motion-row { transition-delay:calc(80ms + (var(--rd-index,0) * 90ms)); }
.research-card { isolation:isolate; }
.research-card::before {
  content:"";
  position:absolute;
  z-index:-1;
  inset:0;
  background:linear-gradient(110deg,color-mix(in srgb,var(--lime) 32%,transparent),color-mix(in srgb,var(--leaf) 7%,transparent) 58%,transparent);
  transform:scaleX(0);
  transform-origin:inline-start center;
  transition:transform 600ms var(--interaction-ease);
}
html[dir="rtl"] .research-card::before { transform-origin:right center; }
html[dir="ltr"] .research-card::before { transform-origin:left center; }
.research-card__top { display:flex; align-items:center; justify-content:space-between; gap:14px; position:relative; z-index:2; }
.research-card__content { position:relative; z-index:2; transition:transform 520ms var(--interaction-ease); }
.research-card__leaf {
  position:relative;
  width:25px;
  height:13px;
  border-radius:100% 0 100% 0;
  background:color-mix(in srgb,var(--leaf) 72%,var(--lime));
  opacity:.72;
  transform:rotate(-28deg) scale(.92);
  transform-origin:70% 70%;
  transition:transform 600ms var(--interaction-ease),opacity 450ms ease,background 450ms ease;
}
.research-card__leaf::after { content:""; position:absolute; width:13px; height:1px; background:var(--forest-2); inset-inline-end:-7px; bottom:0; transform:rotate(27deg); transform-origin:left center; opacity:.6; }
.research-card h3 { transition:color 450ms ease,font-weight 450ms ease; }
@media (hover:hover) and (pointer:fine) {
  .research-card:hover::before { transform:scaleX(1); }
  html[dir="rtl"] .research-card:hover .research-card__content { transform:translateX(-5px); }
  html[dir="ltr"] .research-card:hover .research-card__content { transform:translateX(5px); }
  .research-card:hover h3 { color:var(--forest-2); font-weight:950; }
  .research-card:hover .research-card__leaf { transform:rotate(8deg) scale(1.1); opacity:1; background:var(--leaf); }
}

/* 5) Product card depth: rAF-driven variables, no dependency, desktop pointer only. */
.product-card[data-product-tilt] {
  --tilt-x:0deg;
  --tilt-y:0deg;
  --shine-x:50%;
  --shine-y:35%;
  --media-x:0px;
  --media-y:0px;
  position:relative;
  transform:perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0,0,0);
  transform-style:preserve-3d;
  transition:transform 420ms var(--interaction-ease),box-shadow 320ms ease,border-color 320ms ease;
}
.product-card[data-product-tilt]::before {
  content:"";
  position:absolute;
  z-index:7;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:radial-gradient(circle at var(--shine-x) var(--shine-y),rgba(255,255,255,.26),transparent 34%);
  opacity:0;
  transition:opacity 260ms ease;
}
.product-card[data-product-tilt].is-tilting { box-shadow:0 30px 68px rgba(32,56,41,.15); border-color:color-mix(in srgb,var(--leaf) 36%,var(--line)); transition:box-shadow 260ms ease,border-color 260ms ease; }
.product-card[data-product-tilt].is-tilting::before { opacity:1; }
.product-card[data-product-tilt] .product-visual { transform:translateZ(10px); }
.product-card[data-product-tilt] .product-monogram { transform:translate3d(var(--media-x),var(--media-y),26px) rotate(-2deg); transition:transform 160ms linear; }
.product-card[data-product-tilt] .product-visual.has-product-image .product-real-image { transform:translate3d(var(--media-x),var(--media-y),20px) scale(1.018); transition:transform 180ms linear,filter .35s ease; }
.product-card[data-product-tilt] .product-visual::before,.product-card[data-product-tilt] .product-visual::after { transition:transform 520ms var(--interaction-ease),opacity 420ms ease; }
.product-card[data-product-tilt].is-tilting .product-visual::before { transform:rotate(11deg) scale(1.07); }
.product-card[data-product-tilt].is-tilting .product-visual::after { transform:rotate(-9deg) scale(1.1); }

.product-card__footer { position:relative; isolation:isolate; overflow:hidden; border-radius:14px; cursor:pointer; background:color-mix(in srgb,var(--accent-soft) 32%,var(--surface)); border:1px solid color-mix(in srgb,var(--product-card-border) 82%,var(--accent-soft)); }
.product-card__footer::before {
  content:"";
  position:absolute;
  z-index:-1;
  inset:0;
  background:color-mix(in srgb,var(--accent) 22%,var(--surface));
  border-radius:inherit;
  opacity:0;
  transition:opacity 320ms var(--interaction-ease),transform 320ms var(--interaction-ease);
}
.product-card__footer .text-link {
  position:relative;
  width:100%;
  min-height:48px;
  padding-inline:48px;
  justify-content:center;
  text-align:center;
  color:var(--forest);
  transition:color 320ms ease,transform 320ms var(--interaction-ease);
}
.product-card__footer .text-link__label {
  display:block;
  width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  text-align:center;
}
.product-card__footer .text-link svg {
  position:absolute;
  inset-inline-start:16px;
  top:50%;
  width:16px;
  height:16px;
  transform:translateY(-50%);
  transition:transform 320ms var(--interaction-ease),opacity 240ms ease;
}
html[dir="rtl"] .product-card__footer .text-link svg { transform:translateY(-50%) rotate(180deg); }
@media (hover:hover) and (pointer:fine) {
  .product-card__footer:hover::before,.product-card__footer:focus-within::before { opacity:1; }
  .product-card__footer:hover .text-link,.product-card__footer:focus-within .text-link { color:var(--primary); transform:translateY(-1px); }
  html[dir="ltr"] .product-card__footer:hover .text-link svg,html[dir="ltr"] .product-card__footer:focus-within .text-link svg { transform:translate(4px,-50%); }
  html[dir="rtl"] .product-card__footer:hover .text-link svg,html[dir="rtl"] .product-card__footer:focus-within .text-link svg { transform:translate(-4px,-50%) rotate(180deg); }
}

/* Tablet / phone: no pointer tracking, smaller glass card, touch-safe controls. */
@media (max-width:720px) {
  .hero-product-slider { inset-inline-start:12px; bottom:8px; width:min(330px,calc(100% - 24px)); min-height:104px; padding:11px 12px 9px; border-radius:18px; -webkit-backdrop-filter:blur(9px); backdrop-filter:blur(9px); }
  .hero-product-slider__slides { min-height:52px; }
  .hero-info-slide { grid-template-columns:30px minmax(0,1fr); gap:8px; }
  .hero-info-slide__copy strong { font-size:.76rem; }
  .hero-info-slide__copy span { font-size:.62rem; }
  .hero-slider-autoplay { top:8px; inset-inline-end:8px; }
  .hero-slider-arrow { width:30px; height:30px; }
}
@media (max-width:430px) {
  .hero-product-slider { inset-inline:8px; width:auto; bottom:6px; }
  .hero-info-slide__copy span { max-width:100%; }
  .hero-info-slide { padding-inline-end:32px; }
  .hero-product-slider__controls { grid-template-columns:28px minmax(0,1fr) 28px; gap:4px; }
  .hero-slider-arrow { width:28px; height:28px; }
}
@media (hover:none), (pointer:coarse) {
  .product-card[data-product-tilt],.product-card[data-product-tilt]:hover { transform:none; box-shadow:var(--shadow-sm); }
  .product-card[data-product-tilt]::before { display:none; }
  .product-card[data-product-tilt] .product-visual.has-product-image .product-real-image { transform:none; }
  .product-card__footer:active::before { opacity:1; }
  .product-card__footer:active .text-link { color:var(--primary); }
  .stat:active strong { transform:translateY(-2px) scale(1.02); color:var(--forest-2); }
}

@media (prefers-reduced-motion:reduce) {
  .hero-info-slide,.rd-motion-section .rd-motion-head .kicker,.rd-motion-section .rd-motion-head .h2,.rd-motion-section .rd-motion-head .lead,.rd-motion-section .rd-motion-row { opacity:1; transform:none; filter:none; }
  .hero-info-slide:not(.is-active) { opacity:0; }
  .product-card[data-product-tilt],.product-card[data-product-tilt]:hover { transform:none !important; }
  .research-card::before,.product-card__footer::before { transition:none; }
}
/* V8 stacking-context safety for animated fills. */
.research-card::before { z-index:0; }
.research-card::after { z-index:1; pointer-events:none; }
.research-card__top,.research-card__content { z-index:2; }
.product-card__footer::before { z-index:0; }
.product-card__footer .text-link { position:relative; z-index:1; }


/* ===== V9 — configurable Olive Botanical color layer (layout untouched) ===== */
html,body{background-color:var(--background)}
body{color:var(--text-primary);background:radial-gradient(circle at 10% 0%,color-mix(in srgb,var(--accent) 28%,transparent),transparent 28rem),var(--background)}
::selection{background:var(--accent);color:var(--primary)}
.top-strip{background:var(--top-strip-bg);color:var(--top-strip-text)}
.site-header{background:color-mix(in srgb,var(--header-bg) 88%,transparent)}
.site-header .brand-copy strong,.site-header .brand-copy small,.nav-link{color:var(--header-text)}
.site-header .brand-mark{background:var(--primary);color:var(--accent)} .site-header .brand-mark::after{background:var(--accent)}
.nav-link:hover,.nav-link.is-active,.nav-item.is-active>.nav-link{color:var(--header-hover)} .nav-link::after{background:var(--header-active-line)!important}
.btn--primary{background:var(--button-primary-bg);color:var(--button-primary-text);box-shadow:0 12px 28px color-mix(in srgb,var(--button-primary-bg) 22%,transparent)}
.btn--primary:hover{background:var(--button-primary-hover);box-shadow:0 18px 34px color-mix(in srgb,var(--button-primary-hover) 25%,transparent)}
.btn--secondary{color:var(--button-secondary-text)}
.hero{background:linear-gradient(145deg,color-mix(in srgb,var(--hero-bg) 97%,var(--surface)),var(--background))}
.hero h1,.hero .lead{color:var(--hero-card-text)} .hero h1 em{color:var(--secondary)}
.hero-blob{background:linear-gradient(145deg,color-mix(in srgb,var(--hero-accent) 72%,var(--surface)),var(--hero-accent));filter:drop-shadow(0 30px 50px color-mix(in srgb,var(--secondary) 18%,transparent))}
.hero-orbit{border-color:color-mix(in srgb,var(--hero-accent) 38%,transparent)} .hero-orbit::before,.hero-orbit::after{background:var(--secondary)}
.micro-card,.hero-product-slider{background:color-mix(in srgb,var(--hero-card-bg) 82%,transparent);color:var(--hero-card-text)} .micro-card i{background:var(--primary);color:var(--accent)}
.hero-slider-arrow{background:color-mix(in srgb,var(--hero-card-bg) 72%,transparent);color:var(--primary)} .hero-slider-dot.is-active::before{background:var(--secondary)}
.stats-card{background:color-mix(in srgb,var(--stats-bg) 88%,transparent);border-color:var(--border-color)} .stat::after{background:color-mix(in srgb,var(--accent) 28%,transparent)}
.section--paper{background:var(--surface-alt)}
.product-card{background:var(--product-card-bg);border-color:var(--product-card-border)} .product-card:hover{border-color:color-mix(in srgb,var(--secondary) 46%,var(--product-card-border))}
.product-visual.has-product-image,.detail-visual.has-product-image,.detail-thumb img{background:var(--product-media-bg)}
.tone-deep{background:linear-gradient(145deg,var(--primary),var(--secondary));color:var(--accent)} .tone-olive{background:linear-gradient(145deg,var(--accent-soft),var(--accent));color:var(--primary)} .tone-amber{background:linear-gradient(145deg,color-mix(in srgb,var(--accent) 70%,var(--surface)),var(--secondary));color:var(--surface)} .tone-sand{background:linear-gradient(145deg,var(--surface-alt),var(--accent-soft));color:var(--primary)}
.product-tag{background:color-mix(in srgb,var(--product-badge-bg) 92%,transparent);color:var(--product-badge-text);border-color:color-mix(in srgb,var(--product-badge-text) 14%,transparent)}
.product-card__footer::before{background:color-mix(in srgb,var(--accent) 22%,var(--surface))} .product-card__footer:hover .text-link,.product-card__footer:focus-within .text-link{color:var(--primary)}
.product-category-card{background:linear-gradient(145deg,color-mix(in srgb,var(--surface) 86%,transparent),color-mix(in srgb,var(--accent-soft) 68%,transparent))}
.product-category-card.is-active{background:linear-gradient(145deg,var(--primary),var(--secondary));color:var(--surface)}
.nav-mega,.search-panel{background:var(--surface)} .nav-mega__grid section,.drawer-product-groups{background:color-mix(in srgb,var(--accent-soft) 62%,transparent)} .nav-mega__category span{background:var(--accent);color:var(--primary)} .nav-mega__grid section>div>a:hover,.nav-mega__grid section>div>a.is-active,.search-input-wrap,.search-result:hover{background:var(--surface-alt)}
.pillar-main,.contact-panel--dark{background:var(--primary);color:var(--cta-text)} .pillar-icon{background:var(--accent);color:var(--primary)}
.research-card{background:var(--research-bg)} .research-card::before{background:linear-gradient(90deg,color-mix(in srgb,var(--research-hover) 92%,transparent),transparent)} html[dir=rtl] .research-card::before{background:linear-gradient(270deg,color-mix(in srgb,var(--research-hover) 92%,transparent),transparent)}
.cta-panel{background:var(--cta-bg);color:var(--cta-text)} .cta-panel .btn--soft{background:var(--accent);color:var(--primary)}
.page-hero{background:linear-gradient(180deg,color-mix(in srgb,var(--hero-bg) 72%,transparent),transparent)} .contact-panel:not(.contact-panel--dark){background:color-mix(in srgb,var(--surface) 90%,transparent)}
.site-footer{background:linear-gradient(155deg,var(--footer-bg),color-mix(in srgb,var(--footer-bg) 84%,var(--secondary)) 55%,var(--primary));color:var(--footer-text)}
.site-footer .brand-copy strong,.footer-col h3{color:var(--footer-text)} .site-footer .brand-copy small,.footer-about,.footer-links a,.footer-bottom{color:var(--footer-muted)} .footer-links a:hover,.footer-signature strong{color:var(--footer-link-hover)}


/* ===== V10 — responsive navigation polish, centered stats & page tuning ===== */
.menu-toggle-icon{width:18px;height:15px;display:flex;flex-direction:column;justify-content:space-between;position:relative;pointer-events:none}
.menu-toggle-icon i{display:block;width:18px;height:1.7px;border-radius:999px;background:currentColor;transform-origin:center;transition:transform 390ms cubic-bezier(.16,1,.3,1),opacity 260ms ease,width 390ms cubic-bezier(.16,1,.3,1)}
.menu-toggle-icon.is-open i:nth-child(1){transform:translateY(6.65px) rotate(45deg)}
.menu-toggle-icon.is-open i:nth-child(2){opacity:0;transform:scaleX(.25)}
.menu-toggle-icon.is-open i:nth-child(3){transform:translateY(-6.65px) rotate(-45deg)}
.menu-btn.is-open,.drawer-close-btn{background:color-mix(in srgb,var(--accent-soft) 72%,var(--surface));border-color:color-mix(in srgb,var(--secondary) 28%,var(--border-color));color:var(--primary)}
.drawer-sheet{width:min(420px,calc(100vw - 18px));padding:18px 20px 16px;overflow:hidden;max-width:100%;}
.drawer-head{flex:0 0 auto;min-height:58px;gap:12px}.drawer-head .brand{min-width:0}.drawer-head .brand-copy{min-width:0}.drawer-head .brand-copy strong{white-space:nowrap}
.drawer-nav{flex:1 1 auto;min-height:0;overflow-y:auto;overscroll-behavior:contain;scrollbar-width:thin;padding:18px 2px 14px;align-content:start}
.drawer-nav>a{min-height:48px;display:flex;align-items:center;padding:12px 14px}
.drawer-product-groups{margin:0 0 8px;padding:12px;border-radius:18px;overflow:hidden}
.drawer-product-groups section{display:grid;grid-template-columns:minmax(112px,.8fr) minmax(0,1.2fr);column-gap:12px;row-gap:2px;align-items:start}
.drawer-product-groups section+section{padding-top:10px;margin-top:10px}
.drawer-nav .drawer-category{grid-row:1/span 20;padding:7px 8px!important;line-height:1.55;align-self:start}
.drawer-nav .drawer-product-link{padding:6px 4px!important;line-height:1.6;min-width:0;overflow-wrap:anywhere}
.drawer-meta{flex:0 0 auto;margin-top:10px;padding-top:12px;line-height:1.7}
.mobile-drawer>.overlay-backdrop{background:color-mix(in srgb,var(--primary) 70%,transparent);backdrop-filter:blur(7px);-webkit-backdrop-filter:blur(7px)}

.stats-card{text-align:var(--stats-align,center)}
.stat{align-items:var(--stats-align,center);text-align:var(--stats-align,center);justify-content:center;padding-top:var(--stats-pt,28px);padding-bottom:var(--stats-pb,28px);gap:14px}
.stat strong{font-size:var(--stats-value-size,clamp(1.5rem,3vw,2.5rem));position:relative;z-index:1;width:max-content;margin-inline:auto}
.stat span{font-size:var(--stats-label-size,.82rem);width:100%;text-align:inherit}
.stat::before{display:none!important}.stat::after{display:none!important}
.stat strong::before{content:"";position:absolute;z-index:-1;left:50%;top:52%;width:2.15em;height:1.35em;border-radius:999px;background:radial-gradient(ellipse,color-mix(in srgb,var(--accent) 58%,transparent),color-mix(in srgb,var(--accent) 12%,transparent) 58%,transparent 75%);opacity:0;transform:translate(-50%,-50%) scale(.72);transition:opacity 420ms var(--interaction-ease),transform 420ms var(--interaction-ease)}
@media(hover:hover) and (pointer:fine){.stat:hover strong::before{opacity:.92;transform:translate(-50%,-50%) scale(1)}}

.tunable-section.tune-align-center{text-align:center}.tunable-section.tune-align-end{text-align:end}.tunable-section.tune-align-start{text-align:start}
.tunable-section.tune-align-center .section-head,.tunable-section.tune-align-center .hero-actions,.tunable-section.tune-align-center .hero-trust{justify-content:center}
.tunable-section.tune-align-center .section-head{align-items:center}.tunable-section.tune-align-center .section-head__copy{align-items:center;margin-inline:auto}.tunable-section.tune-align-center .lead{margin-inline:auto}
.tunable-section.has-tune-title :is(.h1,.h2,.h3){font-size:var(--tune-title)!important}.tunable-section.has-tune-text .lead{font-size:var(--tune-text)!important}
.tunable-section.has-tune-padding{padding-top:var(--tune-pt,inherit)!important;padding-bottom:var(--tune-pb,inherit)!important}

@media(max-width:520px){
 .drawer-sheet{width:calc(100vw - 10px);padding:14px 14px 12px}.drawer-head{padding-bottom:12px}.drawer-head .brand-mark{width:42px}.drawer-head .brand-copy strong{font-size:.78rem}
 .drawer-product-groups{padding:9px}.drawer-product-groups section{grid-template-columns:1fr;gap:3px}.drawer-nav .drawer-category{grid-row:auto;padding:7px 6px!important}.drawer-nav .drawer-product-link{padding:5px 10px!important}
 .stat{min-height:112px}.stat strong{margin-inline:auto}.stats-card{text-align:center!important}.stat{align-items:center!important;text-align:center!important}
}
@media(prefers-reduced-motion:reduce){.menu-toggle-icon i{transition:none!important}}

/* ===== V11 — mobile accordion navigation ===== */
.drawer-nav{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:16px 2px 14px;
  align-content:initial;
}
.drawer-main-link,
.drawer-main-trigger{
  width:100%;
  min-height:50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  margin:0;
  border:1px solid transparent;
  border-radius:14px;
  background:transparent;
  color:var(--header-text);
  font:inherit;
  font-size:1rem;
  font-weight:850;
  line-height:1.5;
  text-align:start;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.drawer-main-link:hover,
.drawer-main-trigger:hover,
.drawer-main-link:focus-visible,
.drawer-main-trigger:focus-visible,
.drawer-main-link.is-active,
.drawer-main-trigger.is-active,
.drawer-accordion.is-open>.drawer-main-trigger{
  background:color-mix(in srgb,var(--accent-soft) 48%,var(--surface));
  border-color:color-mix(in srgb,var(--secondary) 14%,var(--border-color));
  color:var(--primary);
}
.drawer-chevron{
  width:9px;
  height:9px;
  flex:0 0 9px;
  border-inline-end:1.7px solid currentColor;
  border-bottom:1.7px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
  transform-origin:center;
  opacity:.72;
  transition:transform 340ms cubic-bezier(.16,1,.3,1),opacity 220ms ease;
}
.drawer-accordion.is-open>.drawer-main-trigger .drawer-chevron,
.drawer-category-group.is-open>.drawer-category-trigger .drawer-chevron{
  transform:rotate(225deg) translate(-1px,-1px);
  opacity:1;
}
.drawer-accordion__panel,
.drawer-subpanel{
  display:grid;
  grid-template-rows:0fr;
  opacity:0;
  visibility:hidden;
  transition:grid-template-rows 380ms cubic-bezier(.16,1,.3,1),opacity 260ms ease,visibility 0s linear 380ms;
}
.drawer-accordion.is-open>.drawer-accordion__panel,
.drawer-category-group.is-open>.drawer-subpanel{
  grid-template-rows:1fr;
  opacity:1;
  visibility:visible;
  transition:grid-template-rows 420ms cubic-bezier(.16,1,.3,1),opacity 300ms ease,visibility 0s;
}
.drawer-accordion__panel-inner,
.drawer-subpanel__inner{
  min-height:0;
  overflow:hidden;
}
.drawer-product-groups{
  margin:4px 0 8px;
  padding:8px;
  border:1px solid color-mix(in srgb,var(--secondary) 13%,var(--border-color));
  border-radius:18px;
  background:color-mix(in srgb,var(--accent-soft) 42%,var(--surface));
  overflow:hidden;
}
.drawer-view-all{
  min-height:42px;
  display:flex!important;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:9px 11px!important;
  margin-bottom:3px;
  border-radius:11px!important;
  color:var(--primary)!important;
  font-size:.82rem!important;
  font-weight:900!important;
}
.drawer-view-all span{font-size:1rem;transition:transform 260ms var(--ease)}
html[dir="rtl"] .drawer-view-all span{transform:scaleX(-1)}
.drawer-view-all:hover{background:color-mix(in srgb,var(--accent) 22%,transparent)!important}
.drawer-category-group{
  border-top:1px solid color-mix(in srgb,var(--secondary) 11%,var(--border-color));
}
.drawer-category-trigger{
  width:100%;
  min-height:45px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 11px;
  border:0;
  border-radius:11px;
  background:transparent;
  color:var(--primary);
  font:inherit;
  font-size:.84rem;
  font-weight:900;
  line-height:1.55;
  text-align:start;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.drawer-category-trigger:hover,
.drawer-category-trigger:focus-visible,
.drawer-category-group.is-open>.drawer-category-trigger{
  background:color-mix(in srgb,var(--accent) 18%,transparent);
}
.drawer-subpanel__inner{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:0 5px 7px;
}
.drawer-nav .drawer-product-link{
  min-height:40px;
  display:flex;
  align-items:center;
  padding:8px 14px!important;
  border-radius:10px;
  color:var(--ink-soft);
  font-size:.78rem;
  font-weight:700;
  line-height:1.65;
  overflow-wrap:anywhere;
}
html[dir="rtl"] .drawer-nav .drawer-product-link{padding-right:20px!important;padding-left:12px!important}
html[dir="ltr"] .drawer-nav .drawer-product-link{padding-left:20px!important;padding-right:12px!important}
.drawer-nav .drawer-product-link::before{
  content:"";
  width:5px;
  height:5px;
  margin-inline-end:9px;
  flex:0 0 5px;
  border-radius:50%;
  background:color-mix(in srgb,var(--secondary) 65%,var(--accent));
}
.drawer-nav .drawer-product-link:hover,
.drawer-nav .drawer-product-link:focus-visible,
.drawer-nav .drawer-product-link.is-active,
.drawer-view-all.is-active{
  background:var(--surface);
  color:var(--primary);
}
.drawer-category-all{
  align-self:flex-start;
  min-height:36px!important;
  display:inline-flex!important;
  align-items:center;
  padding:6px 10px!important;
  margin-top:3px;
  border-radius:9px!important;
  color:var(--secondary)!important;
  font-size:.69rem!important;
  font-weight:850!important;
}
.drawer-category-all:hover{background:color-mix(in srgb,var(--accent) 14%,transparent)!important}
.drawer-nav :is(button,a):focus-visible{outline:3px solid var(--focus-ring-on-light);outline-offset:2px}

@media(max-width:520px){
  .drawer-nav{gap:4px;padding:13px 0 10px}
  .drawer-main-link,.drawer-main-trigger{min-height:48px;padding:11px 12px;font-size:.96rem}
  .drawer-product-groups{padding:7px;border-radius:16px}
  .drawer-category-trigger{min-height:43px;padding:9px 10px}
  .drawer-nav .drawer-product-link{min-height:38px;font-size:.76rem}
}
@media(prefers-reduced-motion:reduce){
  .drawer-chevron,.drawer-accordion__panel,.drawer-subpanel{transition:none!important}
}
.drawer-generic-submenu{margin:4px 0 8px;padding:7px;border:1px solid color-mix(in srgb,var(--secondary) 13%,var(--border-color));border-radius:16px;background:color-mix(in srgb,var(--accent-soft) 34%,var(--surface));display:flex;flex-direction:column;gap:2px}

/* ===== V12 — anchored hamburger morph: same control, same coordinates ===== */
.menu-btn-anchor{
  display:none;
  width:42px;
  height:42px;
  flex:0 0 42px;
  position:relative;
}
@media(max-width:1040px){
  .menu-btn-anchor{display:inline-flex;align-items:center;justify-content:center}
}

/* The icon uses absolute lines around one fixed center so morphing never changes its footprint. */
.menu-toggle-icon{
  width:18px;
  height:18px;
  display:block;
  position:relative;
  pointer-events:none;
}
.menu-toggle-icon i{
  position:absolute;
  inset-inline-start:0;
  top:50%;
  width:18px;
  height:1.8px;
  margin-top:-.9px;
  border-radius:999px;
  background:currentColor;
  transform-origin:50% 50%;
  will-change:transform,opacity;
  transition:
    transform 280ms cubic-bezier(.2,.8,.2,1),
    opacity 160ms ease;
}
.menu-toggle-icon i:nth-child(1){transform:translate3d(0,-6px,0) rotate(0deg)}
.menu-toggle-icon i:nth-child(2){transform:translate3d(0,0,0) scaleX(1);opacity:1}
.menu-toggle-icon i:nth-child(3){transform:translate3d(0,6px,0) rotate(0deg)}
.menu-toggle-icon.is-open i:nth-child(1){transform:translate3d(0,0,0) rotate(45deg)}
.menu-toggle-icon.is-open i:nth-child(2){transform:translate3d(0,0,0) scaleX(.15);opacity:0}
.menu-toggle-icon.is-open i:nth-child(3){transform:translate3d(0,0,0) rotate(-45deg)}

/* While open the very same DOM button is temporarily promoted to the viewport.
   The empty anchor preserves the original header layout and exact position. */
.menu-btn.is-pinned{
  display:inline-flex!important;
  position:fixed!important;
  top:var(--menu-pin-top)!important;
  left:var(--menu-pin-left)!important;
  width:var(--menu-pin-width,42px)!important;
  height:var(--menu-pin-height,42px)!important;
  min-height:var(--menu-pin-height,42px)!important;
  z-index:140!important;
  margin:0!important;
  transform:none!important;
  box-sizing:border-box;
  touch-action:manipulation;
}
.menu-btn.is-open,
.menu-btn.is-pinned:hover,
.menu-btn.is-pinned:active{
  transform:none!important;
}
.menu-btn{
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease!important;
}

/* Drawer motion is deliberately a little slower than the icon morph so the X is established first. */
.mobile-drawer{
  transition:opacity 220ms ease,visibility 0s linear 320ms!important;
}
.mobile-drawer.is-open{
  transition:opacity 220ms ease,visibility 0s linear 0s!important;
}
.drawer-sheet{
  padding-top:var(--drawer-control-top,18px)!important;
  transition:transform 320ms cubic-bezier(.22,1,.36,1)!important;
  will-change:transform;
}
.drawer-head{
  min-height:42px;
  padding-bottom:18px;
  align-items:center;
}
.mobile-drawer>.overlay-backdrop{
  transition:opacity 220ms ease!important;
}

@media(max-width:520px){
  .drawer-sheet{padding-top:var(--drawer-control-top,14px)!important}
}

@media(prefers-reduced-motion:reduce){
  .menu-toggle-icon i,
  .mobile-drawer,
  .drawer-sheet,
  .mobile-drawer>.overlay-backdrop{
    transition:none!important;
  }
}
body.menu-open{padding-right:var(--overlay-scrollbar-gap,0px)}

/* Public form submit state: disabled buttons must look busy, not clickable. */
.btn:disabled,
.btn[aria-busy="true"] {
  cursor: progress;
  opacity: .68;
  transform: none;
  box-shadow: none;
}
.btn:disabled:hover,
.btn[aria-busy="true"]:hover {
  transform: none;
  box-shadow: none;
}
.btn--primary:disabled,
.btn--primary:disabled:hover,
.btn--primary[aria-busy="true"],
.btn--primary[aria-busy="true"]:hover {
  background: var(--button-primary-bg);
  color: var(--button-primary-text);
}
.btn[aria-busy="true"]::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: none;
  border: 2px solid currentColor;
  border-inline-end-color: transparent;
  border-radius: 50%;
  animation: submit-spin .7s linear infinite;
}
@keyframes submit-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .btn[aria-busy="true"]::before { animation: none; }
}


/* Admin -> Public functional integrations */
.home-journal{background:var(--surface-alt)}
.home-journal-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;margin-top:28px}
.home-journal-card{display:grid;grid-template-rows:auto 1fr;overflow:hidden;border:1px solid var(--border-color);border-radius:24px;background:var(--surface);box-shadow:0 16px 45px color-mix(in srgb,var(--text-primary) 7%,transparent)}
.home-journal-card__media{display:block;aspect-ratio:16/9;overflow:hidden;background:var(--product-media-bg)}
.home-journal-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .28s ease}
.home-journal-card:hover .home-journal-card__media img{transform:scale(1.025)}
.home-journal-card>div{padding:22px}.home-journal-card h3{margin:9px 0 8px;font-size:1.18rem}.home-journal-card p{margin:0 0 16px;color:var(--text-secondary);line-height:1.85}

.cms-category-nav{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 26px}
.cms-category-chip{display:inline-flex;align-items:center;min-height:42px;padding:8px 15px;border:1px solid var(--border-color);border-radius:999px;background:var(--surface);color:var(--text-secondary);font-weight:700;text-decoration:none;transition:background .18s ease,border-color .18s ease,color .18s ease}
.cms-category-chip:hover,.cms-category-chip.is-active{border-color:var(--primary);background:var(--accent-soft);color:var(--primary-hover)}
.cms-category-image{display:block;width:min(100%,720px);max-height:360px;object-fit:cover;margin:26px 0 0;border-radius:24px;border:1px solid var(--border-color)}
.cms-system-featured{display:block;width:min(100%,980px);max-height:520px;object-fit:cover;margin:0 auto 32px;border-radius:28px;border:1px solid var(--border-color)}

.product-commerce{display:grid;gap:22px}
.product-price{display:flex;align-items:baseline;gap:14px;flex-wrap:wrap}.product-price strong{font-size:clamp(1.6rem,3vw,2.35rem);color:var(--primary)}.product-price del{color:var(--text-secondary);font-size:1.05rem}
.product-public-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.product-public-facts>div{display:grid;gap:6px;padding:16px;border:1px solid var(--border-color);border-radius:16px;background:var(--surface-alt)}.product-public-facts span{font-size:.82rem;color:var(--text-secondary)}
.product-variants,.product-shipping,.product-regulatory{padding-top:6px}.product-variants h3,.product-shipping h3,.product-regulatory h3{margin:0 0 12px;font-size:1.05rem}.product-variant-row{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:5px 18px;padding:13px 0;border-bottom:1px solid var(--border-color)}.product-variant-row small{grid-column:1/-1;color:var(--text-secondary)}
.product-shipping p{margin:0;color:var(--text-secondary);line-height:1.9}

.footer-socials{display:flex;flex-wrap:wrap;gap:9px;margin-top:18px}.footer-socials a{display:inline-flex;align-items:center;min-height:38px;padding:7px 11px;border:1px solid color-mix(in srgb,var(--footer-text) 26%,transparent);border-radius:999px;color:var(--footer-text);text-decoration:none}.footer-socials a:hover{border-color:var(--footer-link-hover);color:var(--footer-link-hover)}
.footer-managed-link--1{padding-inline-start:12px}.footer-managed-link--2{padding-inline-start:22px}.footer-managed-link--3{padding-inline-start:32px}
.nav-submenu__indent{padding-inline-start:calc(12px + (var(--menu-depth,0) * 12px))}

.cms-template-lead-gen .page-hero .container{max-width:840px;text-align:center}.cms-template-lead-gen .cms-content-container{max-width:840px;margin-inline:auto;padding:clamp(22px,4vw,42px);border:1px solid var(--border-color);border-radius:28px;background:var(--surface);box-shadow:0 20px 55px color-mix(in srgb,var(--text-primary) 7%,transparent)}
.cms-template-product-focus .cms-content-container{max-width:1120px}.cms-template-product-focus .cms-featured{width:100%;max-height:620px;object-fit:contain;background:var(--product-media-bg);border-radius:24px;padding:clamp(12px,2vw,24px)}
.cms-template-campaign .page-hero{background:linear-gradient(135deg,var(--hero-bg),var(--accent-soft))}

.text-link:hover,.brand:hover .brand-title{color:var(--primary-hover)}

@media(max-width:900px){.home-journal-grid{grid-template-columns:1fr 1fr}.product-public-facts{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.home-journal-grid{grid-template-columns:1fr}.product-public-facts{grid-template-columns:1fr}.product-variant-row{grid-template-columns:1fr}.product-variant-row small{grid-column:auto}}
.cms-tag-nav{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin:-10px 0 26px;color:var(--text-secondary);font-size:.9rem}.cms-tag-chip,.cms-card-tags a{display:inline-flex;align-items:center;padding:5px 10px;border-radius:999px;background:var(--surface-alt);color:var(--text-secondary);text-decoration:none}.cms-tag-chip:hover,.cms-tag-chip.is-active,.cms-card-tags a:hover{background:var(--accent-soft);color:var(--primary-hover)}.cms-filter-summary{margin:0 0 22px;color:var(--text-secondary)}.cms-card-tags{display:flex;flex-wrap:wrap;gap:6px;margin:0 0 14px}.cms-pagination{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:16px;margin-top:30px}.cms-pagination>*:last-child{justify-self:end}@media(max-width:620px){.cms-pagination{grid-template-columns:1fr;text-align:center}.cms-pagination>*{justify-self:center!important}}
