/* ==========================================================================
   CLEVA — Brand stylesheet
   Palette: Green #15AF4C (primary) · Orange #F68A1F (accent) · Beige #EEE6DA
   Font: Montserrat
   ========================================================================== */

@font-face { font-family: "Montserrat"; font-weight: 400; font-display: swap; src: url("../fonts/Montserrat-Regular.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 500; font-display: swap; src: url("../fonts/Montserrat-Medium.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 600; font-display: swap; src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 700; font-display: swap; src: url("../fonts/Montserrat-Bold.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 800; font-display: swap; src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 900; font-display: swap; src: url("../fonts/Montserrat-Black.woff2") format("woff2"); }

:root {
  --green: #15AF4C;
  --green-dark: #07763C;
  --orange: #F68A1F;
  --beige: #EEE6DA;
  --mint: #E8F4EB;
  --mint-light: #F1F8EE;
  --cream: #FFF1D3;
  --ink: #1A1A1A;
  --muted: #5F6B63;
  --line: #E3E7E3;
  --white: #FFFFFF;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
  --container: 1240px;
  --topbar-h: 40px;
  --header-h: 80px;
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 16px; top: -48px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: var(--radius-sm); z-index: 200; }
.skip-link:focus { top: 8px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.section--mint { background: var(--mint-light); }
.section--beige { background: var(--beige); }
.section--green { background: var(--green); color: #fff; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.section--green .eyebrow, .footer .eyebrow { color: var(--cream); }
.h1 { font-size: clamp(34px, 4.4vw, 52px); line-height: 1.08; font-weight: 900; letter-spacing: -0.01em; }
.h2 { font-size: clamp(28px, 3.2vw, 38px); line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
.h3 { font-size: 20px; line-height: 1.3; font-weight: 700; }
.lead { font-size: 17px; color: var(--muted); }
.section--green .lead { color: rgba(255, 255, 255, 0.85); }
.text-link { font-weight: 700; color: var(--green-dark); display: inline-flex; align-items: center; gap: 6px; }
.text-link svg { width: 16px; height: 16px; transition: transform 0.2s; }
.text-link:hover svg { transform: translateX(3px); }
.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 26px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15px; line-height: 1; white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  border: 1.5px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); }
.btn--accent { background: var(--orange); color: var(--ink); }
.btn--accent:hover { background: #e07a12; box-shadow: 0 8px 20px rgba(246, 138, 31, 0.3); }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--light { border-color: #fff; color: #fff; background: transparent; }
.btn--light:hover { background: #fff; color: var(--green-dark); }
.btn--block { width: 100%; }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 14px; }

/* ---------- Shop menu (platform chooser) ---------- */
.shop-menu { position: relative; display: inline-block; }
.shop-menu--block { display: block; width: 100%; }
.shop-menu--block .shop-menu__btn { width: 100%; }
.shop-menu__chev { width: 16px !important; height: 16px !important; margin-left: -2px; transition: transform 0.2s; }
.shop-menu__btn[aria-expanded="true"] .shop-menu__chev { transform: rotate(180deg); }
.shop-menu__panel { position: absolute; top: calc(100% + 8px); right: 0; min-width: 260px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 40px rgba(26,26,26,0.14); padding: 6px; z-index: 120; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.18s, transform 0.18s, visibility 0.18s; text-align: left; }
.shop-menu--block .shop-menu__panel { left: 0; right: 0; }
.shop-menu.is-open .shop-menu__panel { opacity: 1; visibility: visible; transform: none; }
.shop-menu__panel a { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: var(--radius-sm); color: var(--ink); font-weight: 700; font-size: 14px; line-height: 1.25; white-space: nowrap; }
.shop-menu__panel a:hover, .shop-menu__panel a:focus-visible { background: var(--mint); color: var(--green-dark); }
.shop-menu__panel small { display: block; font-weight: 500; font-size: 12px; color: var(--muted); margin-top: 2px; }
.shop-menu__dot { flex: none; width: 34px; height: 34px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; color: #fff; }
.shop-menu__dot--shopee { background: #EE4D2D; }
.shop-menu__dot--shopee::before { content: "S"; }
.shop-menu__dot--lazada { background: #0F146D; }
.shop-menu__dot--lazada::before { content: "L"; }
.shop-menu__dot--tiktok { background: #1A1A1A; }
.shop-menu__dot--tiktok::before { content: "T"; }
.header__actions .shop-menu__panel { right: 0; }
.nav-drawer .shop-menu { margin-top: 24px; }
.nav-drawer .shop-menu__panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 8px 0 0; }
.nav-drawer .shop-menu__chev { display: none; }
.pd__buy .shop-menu { margin-left: auto; }

/* ---------- Top bar ---------- */
.topbar { background: var(--green); color: #fff; height: var(--topbar-h); font-size: 13px; font-weight: 500; }
.topbar .container { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.topbar__social { display: flex; gap: 6px; }
.topbar__social a { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s; }
.topbar__social a:hover { background: rgba(255, 255, 255, 0.15); }
.topbar__social svg { width: 16px; height: 16px; fill: #fff; }
.topbar__msg { display: flex; align-items: center; gap: 8px; text-align: center; min-width: 0; }
.topbar__msg .icon { width: 18px; height: 18px; }
.topbar__msg span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__right { display: flex; justify-content: flex-end; }
.topbar__right a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; }
.topbar__right a:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow 0.25s; }
.header.is-scrolled { box-shadow: 0 6px 24px rgba(26, 26, 26, 0.08); }
.header__inner { height: var(--header-h); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 42px; width: auto; }
.nav { display: flex; gap: 6px; }
.nav a { position: relative; display: inline-block; padding: 10px 16px; font-weight: 600; font-size: 15px; color: var(--ink); border-radius: var(--radius-sm); transition: color 0.2s; }
.nav a::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--green-dark); }
.header__actions { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.icon-btn { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; color: var(--ink); transition: background 0.2s; }
.icon-btn:hover { background: var(--mint); }
.nav-toggle { display: none; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile drawer */
.nav-drawer { display: none; }

/* ---------- Product hero ---------- */
.product-hero { padding: 40px 0 72px; }
.product-hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.gallery { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 16px; }
.gallery__thumbs { display: flex; flex-direction: column; gap: 10px; }
.gallery__thumbs button { border: 2px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; padding: 0; transition: border-color 0.2s; aspect-ratio: 1; }
.gallery__thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs button[aria-selected="true"], .gallery__thumbs button:hover { border-color: var(--ink); }
.gallery__main { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--beige); aspect-ratio: 1; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.25s; }
.gallery__badge { position: absolute; top: 16px; left: 16px; background: var(--orange); color: var(--ink); font-weight: 800; font-size: 13px; padding: 6px 12px; border-radius: 999px; letter-spacing: 0.02em; }

.buy-panel { display: flex; flex-direction: column; gap: 22px; }
.buy-panel__vendor { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--muted); }
.buy-panel h1 { font-size: clamp(26px, 2.6vw, 34px); line-height: 1.2; font-weight: 800; }
.price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.price-row__label { font-size: 13px; color: var(--muted); font-weight: 600; }
.price { font-size: 30px; font-weight: 900; color: var(--green-dark); letter-spacing: -0.01em; }
.price--old { font-size: 18px; font-weight: 600; color: var(--muted); text-decoration: line-through; }
.price-badge { background: var(--cream); color: #9a4f00; font-weight: 800; font-size: 13px; padding: 4px 10px; border-radius: 999px; }
.meta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 14px; color: var(--muted); font-weight: 500; }
.meta-row .stars { color: var(--orange); letter-spacing: 1px; font-size: 15px; }
.meta-row b { color: var(--ink); }
.genuine { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--green-dark); background: var(--mint); padding: 8px 12px; border-radius: var(--radius-sm); width: fit-content; }
.genuine .icon { width: 18px; height: 18px; }
.trust-list { display: grid; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-list li { display: flex; gap: 12px; align-items: flex-start; }
.trust-list .icon { color: var(--green); margin-top: 2px; }
.trust-list strong { display: block; font-size: 14px; font-weight: 700; }
.trust-list span { font-size: 13px; color: var(--muted); }
.option-group__label { font-size: 13px; font-weight: 700; margin-bottom: 10px; display: flex; gap: 6px; }
.option-group__label span { color: var(--muted); font-weight: 600; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { border: 1.5px solid var(--line); border-radius: 999px; padding: 10px 18px; font-size: 14px; font-weight: 600; background: #fff; transition: border-color 0.2s, background 0.2s; }
.pill:hover { border-color: var(--ink); }
.pill[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.pill small { display: block; font-weight: 500; font-size: 12px; opacity: 0.75; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius-sm); height: 48px; }
.qty button { width: 46px; height: 100%; font-size: 20px; font-weight: 500; }
.qty input { width: 52px; height: 100%; text-align: center; border: 0; border-left: 1.5px solid var(--line); border-right: 1.5px solid var(--line); font-weight: 700; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.buy-panel__actions { display: grid; gap: 12px; }
.buy-panel__note { font-size: 13px; color: var(--muted); }
.share-row { display: flex; align-items: center; gap: 16px; font-size: 14px; font-weight: 600; }
.share-row a { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
.share-row a:hover { color: var(--ink); }

/* ---------- Reviews ---------- */
.reviews__controls { display: flex; gap: 8px; }
.ctrl { width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.ctrl:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.reviews__track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 4px; }
.reviews__track::-webkit-scrollbar { display: none; }
.review { scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.review__media { aspect-ratio: 4 / 3; background: var(--beige); }
.review__media img { width: 100%; height: 100%; object-fit: cover; }
.review__body { padding: 22px 22px 26px; display: grid; gap: 10px; }
.review .stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; }
.review__author { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; }
.verified { display: inline-flex; align-items: center; gap: 4px; color: var(--green-dark); font-size: 12px; font-weight: 600; background: var(--mint); padding: 2px 8px; border-radius: 999px; }
.verified .icon { width: 12px; height: 12px; }
.review p { font-size: 14px; color: var(--muted); }

/* ---------- Why CLEVA ---------- */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.25s, box-shadow 0.25s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-card__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--mint); display: inline-flex; align-items: center; justify-content: center; color: var(--green-dark); margin-bottom: 20px; }
.why-card__icon .icon { width: 26px; height: 26px; }
.why-card h3 { margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-weight: 700; font-size: 17px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { width: 20px; height: 20px; color: var(--green); transition: transform 0.25s; }
.faq details[open] summary .icon { transform: rotate(45deg); }
.faq__body { padding: 0 0 24px; color: var(--muted); max-width: 720px; }

/* ---------- Story band ---------- */
.story .container { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr); gap: 56px; align-items: center; }
.story .h2 { color: #fff; margin-bottom: 26px; }
.story p { color: rgba(255, 255, 255, 0.9); margin-bottom: 16px; }
.story p:last-child { margin-bottom: 0; }

/* ---------- Feature blocks ---------- */
.feature { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; }
.feature--reverse .feature__media { order: 2; }
.feature__media { border-radius: var(--radius-lg); overflow: hidden; background: var(--beige); box-shadow: var(--shadow); }
.feature__media img, .feature__media video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.feature__copy .h2 { margin-bottom: 20px; }
.feature__copy p { color: var(--muted); margin-bottom: 26px; }
.feature__stats { display: flex; gap: 32px; margin-bottom: 28px; }
.feature__stats b { display: block; font-size: 28px; font-weight: 900; color: var(--green-dark); line-height: 1.1; }
.feature__stats span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ---------- Before / After ---------- */
.compare .section-head { margin-bottom: 28px; }
.ba { position: relative; max-width: 460px; margin: 0 auto; aspect-ratio: 416 / 600; border-radius: var(--radius-lg); overflow: hidden; user-select: none; background: #fff; box-shadow: var(--shadow); }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 3; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); z-index: 2; pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,0.08); }
.ba__handle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 46px; height: 46px; border-radius: 50%; background: var(--green); transform: translate(-50%, -50%); box-shadow: 0 6px 16px rgba(0,0,0,0.25); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l-5 6 5 6M15 6l5 6-5 6'/%3E%3C/svg%3E"); background-size: 22px; background-repeat: no-repeat; background-position: center; }
.ba__label { position: absolute; top: 16px; z-index: 2; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: rgba(26,26,26,0.75); color: #fff; }
.ba__label--before { left: 16px; }
.ba__label--after { right: 16px; background: var(--green); }

/* ---------- Blog ---------- */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform 0.25s, box-shadow 0.25s; }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post__media { aspect-ratio: 3 / 2; background: var(--beige); overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post:hover .post__media img { transform: scale(1.04); }
.post__body { padding: 24px; display: grid; gap: 12px; }
.post__meta { display: flex; gap: 14px; font-size: 12px; color: var(--muted); font-weight: 600; }
.post__meta span { display: inline-flex; align-items: center; gap: 6px; }
.post__meta .icon { width: 14px; height: 14px; }
.post h3 { font-size: 19px; }
.post p { font-size: 14px; color: var(--muted); }

/* ---------- Feature strip ---------- */
.strip { border-top: 1px solid var(--line); padding: 40px 0; }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.strip__item { display: flex; gap: 14px; align-items: flex-start; }
.strip__item .icon { color: var(--green); width: 28px; height: 28px; }
.strip__item strong { display: block; font-size: 15px; }
.strip__item span { font-size: 13px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--green-dark); color: #fff; }
.footer__main { padding: 64px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.5fr; gap: 40px; }
.footer__brand img { height: 40px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: rgba(255, 255, 255, 0.78); font-size: 14px; max-width: 320px; }
.footer h4 { font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: rgba(255, 255, 255, 0.82); font-size: 14px; transition: color 0.2s; }
.footer__links a:hover { color: #fff; text-decoration: underline; }
.newsletter p { color: rgba(255, 255, 255, 0.78); font-size: 14px; margin-bottom: 16px; }
.newsletter form { display: flex; border: 1.5px solid rgba(255, 255, 255, 0.5); border-radius: 999px; padding: 4px 4px 4px 18px; align-items: center; }
.newsletter input { flex: 1; background: transparent; border: 0; color: #fff; min-width: 0; outline: none; }
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.6); }
.newsletter button { width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--green-dark); display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s; }
.newsletter button:hover { background: var(--orange); color: var(--ink); }
.newsletter__msg { font-size: 13px; margin-top: 10px; color: var(--cream); min-height: 18px; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.3); transition: background 0.2s; }
.footer__social a:hover { background: rgba(255, 255, 255, 0.12); }
.footer__social svg { width: 16px; height: 16px; fill: #fff; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.15); padding: 20px 0; font-size: 13px; color: rgba(255, 255, 255, 0.7); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--beige); padding: 72px 0; }
.page-hero .h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 680px; }
.page-hero--split .container { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.page-hero__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.page-hero__media img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }

/* ---------- Products page ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pcard__media { position: relative; aspect-ratio: 1; background: var(--mint-light); overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.pcard:hover .pcard__media img { transform: scale(1.04); }
.pcard__tag { position: absolute; top: 14px; left: 14px; background: var(--orange); color: var(--ink); font-size: 12px; font-weight: 800; padding: 5px 10px; border-radius: 999px; }
.pcard__body { padding: 22px 22px 24px; display: grid; gap: 10px; flex: 1; }
.pcard__cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); }
.pcard h3 { font-size: 18px; }
.pcard p { font-size: 14px; color: var(--muted); }
.pcard__price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 6px; }
.pcard__price b { font-size: 20px; font-weight: 800; color: var(--green-dark); }
.pcard__price s { color: var(--muted); font-size: 14px; }
.pcard__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.pd { padding: 80px 0; scroll-margin-top: calc(var(--header-h) + 16px); }
.pd:nth-of-type(even) { background: var(--mint-light); }
.pd__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.pd--reverse .pd__media { order: 2; }
.pd__media { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; position: sticky; top: calc(var(--header-h) + 24px); min-width: 0; }
.pd__media > img { border-radius: var(--radius-lg); aspect-ratio: 1; object-fit: cover; width: 100%; height: auto; box-shadow: var(--shadow); background: #fff; }
.pd__media-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
.pd__media-row img { border-radius: var(--radius); aspect-ratio: 1; object-fit: cover; width: 100%; height: auto; background: #fff; }
.feature__media, .page-hero__media, .pcard__media, .review__media, .post__media { min-width: 0; }
.feature__media img, .feature__media video, .page-hero__media img { height: auto; }
.pd__copy .h2 { margin: 6px 0 14px; }
.pd__copy > p { color: var(--muted); margin-bottom: 24px; }
.spec { display: grid; grid-template-columns: 140px 1fr; row-gap: 10px; column-gap: 16px; font-size: 14px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.spec dt { font-weight: 700; color: var(--ink); }
.spec dd { margin: 0; color: var(--muted); }
.checks { display: grid; gap: 10px; margin-bottom: 26px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.checks .icon { color: var(--green); width: 20px; height: 20px; margin-top: 2px; }
.steps { counter-reset: step; display: grid; gap: 14px; margin-bottom: 28px; }
.steps li { display: flex; gap: 14px; align-items: flex-start; font-size: 14.5px; color: var(--muted); }
.steps li::before { counter-increment: step; content: counter(step); flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; margin-top: -2px; }
.steps li b { color: var(--ink); }
.pd__buy { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.pd__buy .price { font-size: 26px; }
.pd__buy .price--old { font-size: 15px; }
.pd__buy .btn { margin-left: auto; }
.pd__sub { font-size: 13px; color: var(--muted); width: 100%; }

/* ---------- About page ---------- */
.stack-title { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; font-weight: 900; letter-spacing: -0.015em; }
.stack-title em { font-style: normal; color: var(--green); }
.about-hero p { color: var(--muted); margin-bottom: 16px; }
.timeline { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 0 16px; scrollbar-width: thin; scrollbar-color: var(--green) transparent; }
.timeline__item { scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px 30px; position: relative; overflow: hidden; }
.timeline__item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--green); }
.timeline__year { font-size: 40px; font-weight: 900; color: var(--green-dark); line-height: 1; margin-bottom: 14px; }
.timeline__item h3 { font-size: 17px; margin-bottom: 8px; }
.timeline__item p { font-size: 14px; color: var(--muted); }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value { background: #fff; border-radius: var(--radius-lg); padding: 28px 24px; border: 1px solid var(--line); }
.value__num { font-size: 13px; font-weight: 800; color: var(--orange); letter-spacing: 0.1em; margin-bottom: 14px; }
.value h3 { margin-bottom: 8px; font-size: 18px; }
.value p { font-size: 14px; color: var(--muted); }
.philosophy .container { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.3fr); gap: 56px; align-items: start; }
.philosophy .stack-title { color: var(--ink); }
.philosophy__block { padding: 22px 0; border-top: 1px solid rgba(26,26,26,0.12); }
.philosophy__block:last-child { border-bottom: 1px solid rgba(26,26,26,0.12); }
.philosophy__block h3 { margin-bottom: 8px; color: var(--green-dark); }
.philosophy__block p { color: var(--muted); }
.stories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.story-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); }
.story-card img { aspect-ratio: 1; width: 100%; object-fit: cover; }
.story-card__body { padding: 20px 20px 22px; }
.story-card__name { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 6px; display: block; }
.story-card h3 { font-size: 16px; margin-bottom: 8px; }
.story-card p { font-size: 13.5px; color: var(--muted); }
.quote { max-width: 900px; margin: 0 auto; text-align: center; }
.quote blockquote { margin: 0 0 22px; font-size: clamp(20px, 2.4vw, 28px); font-weight: 600; line-height: 1.45; color: #fff; }
.quote cite { font-style: normal; font-size: 14px; font-weight: 700; color: var(--cream); letter-spacing: 0.06em; text-transform: uppercase; }
.partners { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.partner { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border: 1.5px solid var(--line); border-radius: 999px; font-weight: 700; background: #fff; transition: border-color 0.2s, transform 0.2s; }
.partner:hover { border-color: var(--green); transform: translateY(-2px); }
.partner .icon { color: var(--green); width: 20px; height: 20px; }

/* ---------- Contact page ---------- */
.contact { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr); gap: 56px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px 14px; background: #fff; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(21, 175, 76, 0.15); }
.field textarea { min-height: 150px; resize: vertical; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #d64545; }
.field__error { font-size: 12px; color: #d64545; min-height: 14px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }
.form-success { display: none; background: var(--mint); border: 1px solid rgba(21,175,76,0.3); color: var(--green-dark); padding: 16px 18px; border-radius: var(--radius); font-weight: 600; margin-top: 18px; align-items: flex-start; gap: 10px; }
.form-success.is-visible { display: flex; }
.info-block { padding: 26px 0; border-top: 1px solid var(--line); }
.info-block:first-child { border-top: 0; padding-top: 0; }
.info-block h3 { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.info-block p, .info-block a { font-size: 16px; font-weight: 600; color: var(--ink); }
.info-block a:hover { color: var(--green-dark); text-decoration: underline; }
.info-block small { display: block; color: var(--muted); font-weight: 500; font-size: 14px; margin-top: 4px; }
.info-block .footer__social { margin-top: 12px; }
.info-block .footer__social a { border-color: var(--line); }
.info-block .footer__social svg { fill: var(--ink); }
.map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(0.9); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green); color: #fff; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 56px; padding-bottom: 56px; }
.cta-band .h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); }
.cta-band .btn--accent { flex: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .section { padding: 64px 0; }
  .product-hero__grid { gap: 40px; }
  .why__grid, .posts, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .values, .stories { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .reviews__track { grid-auto-columns: calc((100% - 24px) / 2); }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .feature { gap: 40px; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .topbar .container { grid-template-columns: 1fr auto; }
  .topbar__social { display: none; }
  .header__inner { grid-template-columns: auto 1fr auto; }
  .nav { display: none; }
  .header__actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-drawer { display: block; position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); background: #fff; z-index: 150; transform: translateX(100%); transition: transform 0.3s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.12); padding: 24px; overflow-y: auto; }
  .nav-drawer.is-open { transform: none; }
  .nav-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
  .nav-drawer__head img { height: 36px; }
  .nav-drawer nav a { display: block; padding: 16px 0; font-size: 18px; font-weight: 700; border-bottom: 1px solid var(--line); }
  .nav-drawer nav a[aria-current="page"] { color: var(--green-dark); }
  .nav-drawer .btn { margin-top: 24px; }
  .nav-drawer__contact { margin-top: 28px; font-size: 14px; color: var(--muted); display: grid; gap: 8px; }
  .nav-drawer__contact a { color: var(--ink); font-weight: 600; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(26,26,26,0.45); z-index: 140; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
  .product-hero { padding-top: 24px; }
  .product-hero__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__thumbs { order: 2; flex-direction: row; overflow-x: auto; }
  .gallery__thumbs button { flex: 0 0 72px; }
  .story .container, .feature, .philosophy .container, .contact, .page-hero--split .container, .pd__grid { grid-template-columns: 1fr; }
  .feature--reverse .feature__media, .pd--reverse .pd__media { order: 0; }
  .pd__media { position: static; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head--center { align-items: center; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }
  .why__grid, .posts, .product-grid, .values, .stories, .strip__grid, .footer__main, .form-grid, .pcard__actions { grid-template-columns: 1fr; }
  .reviews__track { grid-auto-columns: 86%; }
  .footer__main { gap: 32px; padding-top: 48px; }
  .form-card { padding: 24px 18px; }
  .buy-panel__actions { grid-template-columns: 1fr; }
  .pd__buy .btn { margin-left: 0; width: 100%; }
  .spec { grid-template-columns: 1fr; row-gap: 4px; }
  .spec dt { margin-top: 8px; }
  .feature__stats { gap: 20px; flex-wrap: wrap; }
  .topbar__right { display: none; }
  .page-hero .h1 br, .feature__copy .h2 br { display: none; }
  .topbar .container { grid-template-columns: 1fr; justify-items: center; }
  .map iframe { height: 320px; }
}
