/* ============================================================
   ANGRAU FOODS — Premium Corporate Design System
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --green: #1F5A3A;
  --green-2: #2E7D4F;
  --green-dark: #143F2A;
  --green-deep: #0D2B1D;
  --brown: #8A5A32;
  --brown-dark: #5E3A1E;
  --gold: #C89A2D;
  --gold-2: #E8B84B;
  --bg: #FAF8F4;
  --bg-soft: #F5F2EB;
  --bg-tint: #EFE8DA;
  --ink: #2E2E2E;
  --ink-soft: #5B5B5B;
  --ink-faint: #8A8A8A;
  --line: #E5DECC;
  --line-2: #D8CFB9;
  --success: #4CAF50;
  --white: #FFFFFF;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(20, 35, 28, 0.06);
  --shadow: 0 12px 34px rgba(20, 35, 28, 0.10);
  --shadow-lg: 0 30px 70px rgba(20, 35, 28, 0.16);
  --shadow-green: 0 14px 40px rgba(31, 90, 58, 0.28);

  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --nav-h: 78px;
  --maxw: 1240px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
}

[data-theme="dark"] {
  --bg: #101814;
  --bg-soft: #16221C;
  --bg-tint: #1C2A23;
  --ink: #F2EFE9;
  --ink-soft: #C4C0B6;
  --ink-faint: #8B877D;
  --line: #2A3A31;
  --line-2: #33463B;
  --white: #16221C;
  --green-dark: #0F2E1F;
  --green-deep: #0A2218;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.35);
  --shadow: 0 12px 34px rgba(0,0,0,0.45);
  --shadow-lg: 0 30px 70px rgba(0,0,0,0.55);
  --shadow-green: 0 14px 40px rgba(0,0,0,0.5);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  transition: background .45s var(--ease), color .45s var(--ease);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: var(--ink); }
::selection { background: var(--gold); color: var(--green-deep); }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.16; font-weight: 600; letter-spacing: -0.01em; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 8px; border: 2px solid var(--bg-soft); }
::-webkit-scrollbar-thumb:hover { background: var(--green-2); }

/* ---------- Layout ---------- */
.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
.section-tint { background: var(--bg-tint); }
.section-dark { background: var(--green-deep); color: var(--white); }

.grid { display: grid; gap: 28px; }

/* ---------- Section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-2);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow.center::after { content: ""; width: 30px; height: 2px; background: var(--gold); border-radius: 2px; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 14px 0 16px; }
.section-head .lede { color: var(--ink-soft); font-size: 1.08rem; }

[data-theme="dark"] .section-dark { background: var(--green-dark); }
[data-theme="dark"] .section-soft .eyebrow, [data-theme="dark"] .eyebrow { color: #7FBF9A; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--radius-full);
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  border: 2px solid transparent; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }
.btn-primary:hover { background: var(--green-2); transform: translateY(-3px); box-shadow: 0 20px 50px rgba(31,90,58,.38); }
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-3px); box-shadow: 0 18px 44px rgba(200,154,45,.4); }
.btn-outline { border-color: var(--line-2); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--green); color: var(--green-2); background: rgba(31,90,58,.06); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--green-dark); box-shadow: var(--shadow); }
.btn-white:hover { background: var(--bg-tint); transform: translateY(-3px); }
.btn-ghost-white { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-3px); }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Loading screen ---------- */
#loader {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 92px; height: 92px; animation: logoPulse 1.6s var(--ease) infinite; }
.loader-bar { width: 180px; height: 4px; background: var(--line); border-radius: 4px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, var(--green), var(--gold)); border-radius: 4px; animation: loadSlide 1.1s ease-in-out infinite; }
.loader-brand { font-family: var(--font-head); letter-spacing: .32em; font-size: 1.05rem; color: var(--green); }
@keyframes logoPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes loadSlide { 0% { transform: translateX(-120%); } 100% { transform: translateX(420%); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.topbar {
  background: var(--green-deep); color: rgba(255,255,255,.85);
  font-size: .78rem; letter-spacing: .04em;
  overflow: hidden; position: relative;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 38px; }
.topbar .tb-left { display: flex; gap: 26px; align-items: center; }
.topbar a:hover { color: var(--gold-2); }
.topbar .tb-right { display: flex; gap: 20px; align-items: center; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo { width: 46px; height: 46px; }
.brand-name { font-family: var(--font-head); font-size: 1.28rem; font-weight: 700; letter-spacing: .02em; color: var(--ink); line-height: 1.05; }
.brand-name span { color: var(--green-2); }
.brand-sub { display: block; font-family: var(--font-body); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link { position: relative; padding: 10px 13px; font-size: .94rem; font-weight: 500; color: var(--ink-soft); border-radius: 10px; transition: color .25s var(--ease), background .25s var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--green-2); background: rgba(31,90,58,.08); }
[data-theme="dark"] .nav-link:hover, [data-theme="dark"] .nav-link.active { color: #7FBF9A; background: rgba(46,125,79,.16); }

.has-drop { display: inline-flex; align-items: center; gap: 5px; }
.has-drop .caret { width: 12px; height: 12px; transition: transform .3s var(--ease); }
.nav-drop { position: relative; }
.nav-drop:hover .caret { transform: rotate(180deg); }
.megamenu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(12px);
  width: min(760px, 92vw); background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 26px; display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 26px; opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.nav-drop:hover .megamenu, .nav-drop:focus-within .megamenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mm-group { }
.mm-group h5 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; font-weight: 700; }
.mm-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 14px; }
.mm-link { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; font-size: .9rem; font-weight: 500; color: var(--ink-soft); transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.mm-link:hover { background: rgba(31,90,58,.08); color: var(--green-2); transform: translateX(4px); }
.mm-link .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.mm-feature { background: linear-gradient(160deg, var(--green), var(--green-deep)); border-radius: 14px; padding: 22px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; gap: 18px; }
.mm-feature h4 { font-size: 1.15rem; }
.mm-feature p { font-size: .85rem; color: rgba(255,255,255,.82); }
.mm-feature img { border-radius: 10px; }
.mm-cta { color: var(--gold-2); font-weight: 600; font-size: .86rem; display: inline-flex; align-items: center; gap: 6px; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.icon-btn:hover { transform: translateY(-2px); border-color: var(--gold); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn .count-badge {
  position: absolute; top: -5px; right: -5px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--gold); color: var(--green-deep); border-radius: 999px;
  font-size: .68rem; font-weight: 800; display: grid; place-items: center;
  border: 2px solid var(--bg);
}
.mode-toggle { display: grid; place-items: center; }
.mode-toggle .sun, .mode-toggle .moon { grid-area: 1/1; transition: transform .5s var(--ease), opacity .5s var(--ease); }
.mode-toggle .sun { opacity: 0; transform: rotate(90deg) scale(.5); }
[data-theme="dark"] .mode-toggle .sun { opacity: 1; transform: none; }
[data-theme="dark"] .mode-toggle .moon { opacity: 0; transform: rotate(-90deg) scale(.5); }

.hamburger { display: none; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 950;
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  padding: 24px; padding-top: 26px;
  transform: translateX(100%); transition: transform .45s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mm-close { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft); display: grid; place-items: center; border: 1px solid var(--line); }
.mm-close svg { width: 20px; height: 20px; }
.mm-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mm-item { border-bottom: 1px solid var(--line); }
.mm-item > a { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; font-weight: 600; font-size: 1.05rem; }
.mm-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 12px; padding: 6px 8px 16px; }
.mm-sub a { padding: 8px 6px; font-size: .92rem; color: var(--ink-soft); font-weight: 500; border-radius: 8px; }
.mm-sub a:hover { color: var(--green-2); background: rgba(31,90,58,.06); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding: 60px 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(9,27,19,.9) 0%, rgba(9,27,19,.68) 46%, rgba(9,27,19,.25) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero-copy { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px); padding: 9px 18px; border-radius: 999px;
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-2);
  margin-bottom: 26px;
}
.hero-badge .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(76,175,80,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(76,175,80,.55); } 70% { box-shadow: 0 0 0 10px rgba(76,175,80,0); } 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0); } }

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.3rem); color: #fff; margin-bottom: 22px; font-weight: 600;
}
.hero h1 .accent { font-style: italic; color: var(--gold-2); }
.hero-lede { font-size: 1.15rem; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 36px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; margin-top: 48px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item b { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold-2); }
.trust-item span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); }

.hero-media { position: relative; }
.hero-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.18); box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}
.hero-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-float {
  position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; animation: floaty 5s ease-in-out infinite;
}
.hero-float .f-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.hero-float b { font-size: .92rem; display: block; color: var(--ink); }
.hero-float span { font-size: .76rem; color: var(--ink-soft); }
.float-1 { top: 8%; left: -34px; animation-delay: 0s; }
.float-2 { bottom: 12%; right: -26px; animation-delay: 1.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.mouse::after { content: ""; position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--gold-2); border-radius: 4px; transform: translateX(-50%); animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0% { opacity: 1; top: 8px; } 100% { opacity: 0; top: 24px; } }

/* ---------- Trust bar / marquee ---------- */
.trustbar { background: var(--green-deep); color: rgba(255,255,255,.85); padding: 20px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); }
.marquee { display: flex; gap: 60px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; gap: 60px; font-size: .9rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
.marquee .sep { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(.92); }
.stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .15s; }
.stagger > *:nth-child(3) { transition-delay: .25s; }
.stagger > *:nth-child(4) { transition-delay: .35s; }
.stagger > *:nth-child(5) { transition-delay: .45s; }
.stagger > *:nth-child(6) { transition-delay: .55s; }
.stagger > *:nth-child(7) { transition-delay: .65s; }
.stagger > *:nth-child(8) { transition-delay: .75s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-media .exp-badge {
  position: absolute; bottom: -24px; left: 24px;
  background: var(--green); color: #fff; border-radius: var(--radius);
  padding: 20px 26px; box-shadow: var(--shadow-green); display: flex; gap: 16px; align-items: center;
}
.exp-badge b { font-family: var(--font-head); font-size: 2.2rem; color: var(--gold-2); }
.exp-badge span { font-size: .8rem; line-height: 1.4; opacity: .9; }
.split-body h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin: 14px 0 18px; }
.split-body p { color: var(--ink-soft); margin-bottom: 14px; }
.check-list { display: grid; gap: 12px; margin: 22px 0 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.check-list .ck { width: 24px; height: 24px; border-radius: 50%; background: rgba(76,175,80,.16); color: var(--success); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.check-list .ck svg { width: 13px; height: 13px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; text-align: center; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--gold); }
.stat-icon { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 16px; display: grid; place-items: center; color: #fff; }
.stat-icon svg { width: 26px; height: 26px; }
.stat-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--green-2); line-height: 1; }
.stat-num .suffix { font-size: 1.4rem; }
.stat-label { margin-top: 10px; font-size: .86rem; color: var(--ink-soft); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.pcard {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.pcard:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(200,154,45,.6); }
.pcard-media { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pcard:hover .pcard-media img { transform: scale(1.08); }
.pcard-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold); color: var(--green-deep); font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.pcard-wish {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  display: grid; place-items: center; color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.pcard-wish:hover { transform: scale(1.15); color: #C0392B; }
.pcard-wish svg { width: 18px; height: 18px; }
.pcard-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pcard-cat { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green-2); }
.pcard-title { font-size: 1.22rem; font-weight: 600; line-height: 1.25; }
.pcard-desc { font-size: .88rem; color: var(--ink-soft); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 4px; }
.pcard-price { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.pcard-price small { font-size: .72rem; color: var(--ink-faint); font-weight: 600; display: block; }
.pcard-actions { display: flex; gap: 8px; }
.pcard-add { width: 44px; height: 44px; border-radius: 14px; background: var(--green); color: #fff; display: grid; place-items: center; transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease); box-shadow: var(--shadow-green); }
.pcard-add:hover { background: var(--green-2); transform: translateY(-3px) scale(1.05); }
.pcard-add svg { width: 19px; height: 19px; }
.pcard-add.added { background: var(--success); }
.pcard-more { width: 44px; height: 44px; border-radius: 14px; border: 1.5px solid var(--line-2); color: var(--ink); display: grid; place-items: center; transition: all .3s var(--ease); }
.pcard-more:hover { border-color: var(--gold); color: var(--green-2); transform: translateY(-3px); }
.pcard-more svg { width: 19px; height: 19px; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 24px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.why-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--green), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; color: #fff; }
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.why-card p { font-size: .88rem; color: var(--ink-soft); }

/* ---------- Process ---------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.step-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1.6px var(--gold); line-height: 1; }
.step-card h3 { font-size: 1.1rem; margin: 12px 0 8px; }
.step-card p { font-size: .86rem; color: var(--ink-soft); }
.step-arrow { position: absolute; top: 50%; right: -18px; transform: translateY(-50%); z-index: 2; color: var(--gold); background: var(--bg); border-radius: 50%; width: 36px; height: 36px; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.step-arrow svg { width: 16px; height: 16px; }

/* Vertical process (page) */
.process-timeline { position: relative; max-width: 760px; margin: 0 auto; }
.process-timeline::before { content: ""; position: absolute; left: 34px; top: 0; bottom: 0; width: 3px; background: linear-gradient(var(--green), var(--gold)); border-radius: 3px; }
.pt-step { position: relative; display: flex; gap: 28px; padding: 26px 0; }
.pt-dot { width: 68px; height: 68px; border-radius: 50%; background: var(--white); border: 3px solid var(--green); display: grid; place-items: center; color: var(--green-2); flex-shrink: 0; box-shadow: var(--shadow-sm); z-index: 1; }
.pt-dot svg { width: 28px; height: 28px; }
.pt-body { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; flex: 1; box-shadow: var(--shadow-sm); }
.pt-body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.pt-body p { color: var(--ink-soft); font-size: .92rem; }
.pt-body .pt-tag { display: inline-block; margin-top: 10px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-2); background: rgba(46,125,79,.1); padding: 5px 12px; border-radius: 999px; }

/* ---------- Impact ---------- */
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.impact-card { position: relative; background: var(--white); border-radius: var(--radius-lg); padding: 36px 30px; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); border: 1px solid var(--line); }
.impact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.impact-card .bg-shape { position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(200,154,45,.18), transparent 70%); }
.impact-num { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--gold); letter-spacing: .2em; }
.impact-card h3 { font-size: 1.35rem; margin: 10px 0 10px; }
.impact-card p { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Testimonials ---------- */
.t-slider { position: relative; max-width: 820px; margin: 0 auto; }
.t-track { display: flex; transition: transform .6s var(--ease); }
.t-slide { flex: 0 0 100%; padding: 0 10px; }
.t-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; text-align: center; box-shadow: var(--shadow-sm);
}
.t-card .quote { width: 46px; height: 46px; margin: 0 auto 16px; color: var(--gold); }
.t-card .quote svg { width: 100%; height: 100%; }
.t-text { font-size: 1.1rem; font-style: italic; color: var(--ink-soft); line-height: 1.7; margin-bottom: 24px; font-family: var(--font-head); }
.t-person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-avatar { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(140deg, var(--green), var(--green-deep)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; }
.t-meta { text-align: left; }
.t-meta b { display: block; }
.t-meta span { font-size: .82rem; color: var(--ink-faint); }
.t-stars { color: var(--gold); font-size: .9rem; letter-spacing: 3px; margin-bottom: 8px; }
.t-nav { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.t-btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; color: var(--ink); transition: all .3s var(--ease); background: var(--white); }
.t-btn:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-2px); }
.t-btn svg { width: 18px; height: 18px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 18px; }
.gitem { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gitem.wide { grid-column: span 2; grid-row: span 2; }
.gitem.tall { grid-row: span 2; }
.gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gitem:hover img { transform: scale(1.08); }
.gitem-cap { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,27,19,.82), transparent 55%); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity .4s var(--ease); }
.gitem:hover .gitem-cap { opacity: 1; }
.gitem-cap b { color: #fff; font-size: 1rem; }
.gitem-cap span { color: var(--gold-2); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1500; background: rgba(8,20,15,.92); backdrop-filter: blur(10px); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; padding: 40px; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 86vw; max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lb-close { position: absolute; top: 26px; right: 26px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; font-size: 1.4rem; transition: background .3s var(--ease); }
.lb-close:hover { background: rgba(255,255,255,.25); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 22px 26px; font-weight: 600; font-size: 1.02rem; }
.faq-q .fx { width: 34px; height: 34px; border-radius: 50%; background: rgba(31,90,58,.08); color: var(--green-2); display: grid; place-items: center; flex-shrink: 0; transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease); }
.faq-item.open .fx { transform: rotate(135deg); background: var(--green); color: #fff; }
.faq-q .fx svg { width: 16px; height: 16px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--ink-soft); font-size: .94rem; }

/* ---------- CTA banner ---------- */
.cta-band { background: linear-gradient(120deg, var(--green-dark), var(--green), var(--green-deep)); border-radius: var(--radius-lg); padding: 64px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -80px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(200,154,45,.3), transparent 70%); }
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 520px; }
.cta-band .btn { flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(255,255,255,.8); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 60px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: .92rem; margin: 18px 0 24px; color: rgba(255,255,255,.66); max-width: 320px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: #fff; transition: all .3s var(--ease); }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--green-deep); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-col h5 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: .92rem; color: rgba(255,255,255,.68); transition: color .25s var(--ease), padding-left .25s var(--ease); }
.footer-col a:hover { color: var(--gold-2); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: rgba(255,255,255,.68); }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.news-form { display: flex; margin-top: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 5px; }
.news-form input { flex: 1; background: transparent; border: none; padding: 10px 14px; color: #fff; min-width: 0; }
.news-form input::placeholder { color: rgba(255,255,255,.5); }
.news-form button { background: var(--gold); color: var(--green-deep); font-weight: 700; padding: 10px 18px; border-radius: 9px; transition: background .3s var(--ease); font-size: .9rem; }
.news-form button:hover { background: var(--gold-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom .uni { display: flex; align-items: center; gap: 8px; }
.footer-bottom .uni svg { width: 16px; height: 16px; color: var(--gold); }

/* ---------- Floating CTA ---------- */
.float-cta { position: fixed; right: 24px; bottom: 24px; z-index: 800; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.fbtn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); transition: transform .35s var(--ease); position: relative; }
.fbtn:hover { transform: scale(1.12) translateY(-3px); }
.fbtn svg { width: 24px; height: 24px; }
.fbtn-cart { background: var(--gold); color: var(--green-deep); }
.fbtn-cart .count-badge { position: absolute; top: -2px; right: -2px; min-width: 22px; height: 22px; background: var(--green); color: #fff; border: 2px solid var(--bg); border-radius: 999px; font-size: .7rem; font-weight: 800; display: grid; place-items: center; padding: 0 5px; }
.fbtn-wa { background: #25D366; }
.fbtn-top { background: var(--green); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s, transform .35s var(--ease); }
.fbtn-top.show { opacity: 1; visibility: visible; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 1400; display: grid; place-items: center; padding: 24px; background: rgba(8,20,15,.6); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; }
.modal.open { opacity: 1; visibility: visible; }
.modal-card { background: var(--bg); border-radius: var(--radius-lg); max-width: 940px; width: 100%; max-height: 90vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow-lg); transform: translateY(30px) scale(.97); transition: transform .45s var(--ease-bounce); }
.modal.open .modal-card { transform: none; }
.modal-media { position: relative; min-height: 420px; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.modal-body { padding: 40px; }
.modal-body .cat { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--green-2); }
.modal-body h3 { font-size: 1.9rem; margin: 8px 0 12px; }
.modal-desc { color: var(--ink-soft); margin-bottom: 18px; }
.modal-price { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--green-2); margin-bottom: 20px; }
.modal-sec { margin-bottom: 16px; }
.modal-sec h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; font-weight: 700; }
.benefit-list { display: grid; gap: 8px; }
.benefit-list li { display: flex; gap: 10px; align-items: center; font-size: .9rem; }
.benefit-list .ck { width: 20px; height: 20px; border-radius: 50%; background: rgba(76,175,80,.16); color: var(--success); display: grid; place-items: center; flex-shrink: 0; }
.benefit-list .ck svg { width: 11px; height: 11px; }
.ing-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ing-tags span { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .82rem; }
.modal-qty { display: flex; align-items: center; gap: 16px; margin: 20px 0; }
.qty-btn { width: 40px; height: 40px; border-radius: 12px; border: 1.5px solid var(--line-2); display: grid; place-items: center; font-size: 1.2rem; transition: all .3s var(--ease); background: var(--white); }
.qty-btn:hover { border-color: var(--green); color: var(--green-2); }
.modal-qty .q { font-weight: 700; min-width: 30px; text-align: center; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: var(--shadow); z-index: 3; color: var(--ink); transition: transform .3s var(--ease); }
.modal-close:hover { transform: rotate(90deg) scale(1.1); }
.modal-close svg { width: 18px; height: 18px; }

/* ---------- Cart drawer ---------- */
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 94vw); background: var(--bg); z-index: 1600; transform: translateX(105%); transition: transform .5s var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 1.3rem; }
.drawer-close { width: 40px; height: 40px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--line); display: grid; place-items: center; transition: transform .3s var(--ease); }
.drawer-close:hover { transform: rotate(90deg); }
.drawer-close svg { width: 18px; height: 18px; }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { text-align: center; color: var(--ink-faint); padding: 60px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cart-empty svg { width: 64px; height: 64px; opacity: .5; }
.cart-item { display: flex; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; }
.cart-item img { width: 76px; height: 76px; border-radius: 12px; object-fit: cover; }
.ci-info { flex: 1; min-width: 0; }
.ci-info b { display: block; font-size: .94rem; }
.ci-info small { color: var(--ink-faint); font-size: .8rem; }
.ci-price { color: var(--green-2); font-weight: 700; font-size: .9rem; margin-top: 4px; }
.ci-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.ci-qty { display: flex; align-items: center; gap: 10px; }
.ci-qty button { width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--line-2); display: grid; place-items: center; font-size: .9rem; background: var(--bg-soft); transition: all .25s var(--ease); }
.ci-qty button:hover { border-color: var(--green); color: var(--green-2); }
.ci-qty span { font-weight: 700; min-width: 20px; text-align: center; font-size: .9rem; }
.ci-remove { color: #C0392B; font-size: .78rem; font-weight: 600; }
.ci-remove:hover { text-decoration: underline; }
.drawer-foot { border-top: 1px solid var(--line); padding: 22px 24px; }
.subtotal { display: flex; justify-content: space-between; font-size: 1.05rem; margin-bottom: 16px; }
.subtotal b { font-family: var(--font-head); font-size: 1.4rem; color: var(--green-2); }
.checkout-note { font-size: .76rem; color: var(--ink-faint); text-align: center; margin-top: 12px; }
.drawer-backdrop { position: fixed; inset: 0; z-index: 1550; background: rgba(8,20,15,.55); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; }
.drawer-backdrop.show { opacity: 1; visibility: visible; }

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 1800; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast {
  background: var(--green-deep); color: #fff; padding: 14px 24px; border-radius: 999px;
  box-shadow: var(--shadow-lg); font-size: .9rem; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(20px) scale(.95); transition: all .4s var(--ease-bounce);
}
.toast.show { opacity: 1; transform: none; }
.toast svg { width: 20px; height: 20px; color: var(--gold-2); }

/* ---------- Page hero (inner) ---------- */
.page-hero { background: linear-gradient(120deg, var(--green-dark), var(--green), var(--green-deep)); color: #fff; padding: 84px 0 70px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -120px; right: -80px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(200,154,45,.28), transparent 70%); }
.page-hero::after { content: ""; position: absolute; bottom: -140px; left: -60px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); color: #fff; margin: 14px 0 16px; }
.page-hero .lede { color: rgba(255,255,255,.82); max-width: 620px; font-size: 1.06rem; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold-2); }
.breadcrumb .sep { opacity: .5; }

/* ---------- Tabs / filters ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.chip { padding: 11px 22px; border-radius: 999px; border: 1.5px solid var(--line-2); font-weight: 600; font-size: .88rem; color: var(--ink-soft); background: var(--white); transition: all .3s var(--ease); }
.chip:hover { border-color: var(--green); color: var(--green-2); transform: translateY(-2px); }
.chip.active { background: var(--green); border-color: var(--green); color: #fff; box-shadow: var(--shadow-green); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.post-media { aspect-ratio: 16/10; overflow: hidden; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.07); }
.post-body { padding: 26px; }
.post-meta { display: flex; align-items: center; gap: 14px; font-size: .76rem; color: var(--ink-faint); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.post-meta .cat { color: var(--green-2); }
.post-body h3 { font-size: 1.2rem; line-height: 1.35; margin-bottom: 10px; }
.post-body h3 a:hover { color: var(--green-2); }
.post-body p { font-size: .9rem; color: var(--ink-soft); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 700; font-size: .9rem; color: var(--green-2); }
.post-link:hover { color: var(--gold); }
.post-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.post-link:hover svg { transform: translateX(4px); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 30px; }
.info-cards { display: grid; gap: 16px; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; display: flex; gap: 16px; align-items: flex-start; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info-card .ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: .9rem; color: var(--ink-soft); display: block; }
.info-card a:hover { color: var(--green-2); }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line-2); border-radius: 12px; background: var(--bg); color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(31,90,58,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--ink-faint); margin-top: 10px; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 380px; background: var(--bg-soft); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(.9); }

/* ---------- News / research cards ---------- */
.research-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.res-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.res-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.res-media { aspect-ratio: 16/10; overflow: hidden; }
.res-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.res-card:hover .res-media img { transform: scale(1.07); }
.res-body { padding: 26px; }
.res-tag { font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); background: rgba(200,154,45,.12); padding: 5px 12px; border-radius: 999px; display: inline-block; margin-bottom: 12px; }
.res-body h3 { font-size: 1.22rem; margin-bottom: 8px; }
.res-body p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Values ---------- */
.value-card { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.value-card .vc-icon { width: 66px; height: 66px; margin: 0 auto 20px; border-radius: 20px; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); }
.value-card .vc-icon svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Featured product wide strip ---------- */
.feature-banner { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.feature-banner img { width: 100%; height: 100%; object-fit: cover; }
.feature-banner .fb-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.fb-body .eyebrow { margin-bottom: 12px; }
.fb-body h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 14px; }
.fb-body p { color: var(--ink-soft); margin-bottom: 22px; }

/* ---------- Brand strip ---------- */
.brand-strip { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; }
.brand-strip span { font-family: var(--font-head); font-size: 1.3rem; color: var(--ink-faint); opacity: .7; letter-spacing: .06em; transition: opacity .3s var(--ease); }
.brand-strip span:hover { opacity: 1; color: var(--green-2); }

/* ---------- Backdrop of drawer ---------- */
body.no-scroll { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .nav-link { padding: 10px 9px; font-size: .9rem; }
  .nav-cta { display: none; }
  .nav-actions { gap: 6px; }
}
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .research-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .hamburger { display: grid; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 480px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid, .feature-banner { grid-template-columns: 1fr; }
  .modal-card { grid-template-columns: 1fr; }
  .modal-media { min-height: 300px; position: relative; }
  .modal-media img { position: static; height: 300px; }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .topbar .tb-left { display: none; }
  .topbar-inner { justify-content: center; }
  .product-grid, .why-grid, .impact-grid, .blog-grid, .research-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gitem.wide, .gallery-grid .gitem.tall { grid-column: span 1; grid-row: span 1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .cta-band { padding: 40px 26px; flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { gap: 16px; }
  .float-1 { left: -8px; }
  .float-2 { right: -8px; }
  .form-row { grid-template-columns: 1fr; }
  .modal-body { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { min-height: 78vh; }
}

/* ---------- Misc ---------- */
.lead { font-size: 1.1rem; color: var(--ink-soft); }
.divider { height: 1px; background: var(--line); border: none; margin: 0; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head-row .section-head { margin-bottom: 0; }
