@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #13231c;
  --ink-soft: #456056;
  --forest: #0f4d35;
  --forest-2: #196b49;
  --lime: #98d54a;
  --lime-bright: #c7f36d;
  --cream: #f7f4ea;
  --cream-2: #ece8d8;
  --white: #ffffff;
  --orange: #f0a04b;
  --border: rgba(19, 35, 28, 0.12);
  --shadow-sm: 0 10px 30px rgba(20, 48, 37, 0.08);
  --shadow-md: 0 24px 70px rgba(13, 63, 43, 0.14);
  --shadow-lg: 0 40px 100px rgba(10, 46, 32, 0.22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--lime-bright); color: var(--ink); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.cursor-glow {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  background: radial-gradient(circle, rgba(152,213,74,.18), transparent 68%);
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
}

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 110px 0; }
.section--tight { padding: 76px 0; }
.section--white { background: var(--white); }
.section--dark { background: var(--ink); color: var(--white); }
.section--green { background: var(--forest); color: var(--white); }
.section--cream { background: var(--cream); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 800;
  color: var(--forest-2);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 4px;
  background: var(--lime);
}
.section--dark .eyebrow,
.section--green .eyebrow { color: var(--lime-bright); }

h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Manrope', 'DM Sans', sans-serif;
  letter-spacing: -.04em;
  line-height: 1.08;
}
h1 { font-size: clamp(3.2rem, 7vw, 7.35rem); }
h2 { font-size: clamp(2.35rem, 5vw, 4.8rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
p { margin: 0; color: var(--ink-soft); }
.section--dark p,
.section--green p { color: rgba(255,255,255,.72); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 680px; }
.text-gradient {
  color: transparent;
  background: linear-gradient(112deg, var(--forest) 15%, var(--forest-2) 52%, #7fb93f 92%);
  -webkit-background-clip: text;
  background-clip: text;
}
.section--dark .text-gradient,
.section--green .text-gradient {
  background-image: linear-gradient(112deg, var(--white), var(--lime-bright));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s ease, color .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.34), transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); }
.btn--primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 14px 30px rgba(15,77,53,.22);
}
.btn--primary:hover { background: #0a3d2a; box-shadow: 0 18px 38px rgba(15,77,53,.3); }
.btn--lime { color: var(--ink); background: var(--lime-bright); box-shadow: 0 14px 30px rgba(152,213,74,.24); }
.btn--lime:hover { background: #d7ff88; }
.btn--ghost { border-color: var(--border); background: rgba(255,255,255,.52); backdrop-filter: blur(12px); }
.btn--ghost:hover { border-color: rgba(15,77,53,.36); background: var(--white); }
.btn--white { color: var(--forest); background: var(--white); }
.btn--dark-outline { color: var(--white); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); }
.btn--icon { width: 52px; padding: 0; }
.btn svg { width: 18px; height: 18px; }

/* Header */
.topbar {
  min-height: 38px;
  color: var(--white);
  background: var(--forest);
  font-size: .82rem;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 80;
}
.topbar__inner {
  width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar__message { display: flex; align-items: center; gap: 9px; font-weight: 700; }
.topbar__links { display: flex; gap: 18px; color: rgba(255,255,255,.72); }
.topbar a:hover { color: var(--lime-bright); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(247,244,234,.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(150%);
  transition: box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.site-header.scrolled { background: rgba(247,244,234,.94); border-color: var(--border); box-shadow: 0 10px 40px rgba(19,35,28,.06); }
.nav {
  width: var(--container);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 165px; }
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand__wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand__wordmark strong { font-family: 'Manrope'; font-size: 1.08rem; letter-spacing: .08em; }
.brand__wordmark span { margin-top: 5px; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--forest-2); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  color: #31473e;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.nav__links a:hover,
.nav__links a.active { color: var(--forest); background: rgba(152,213,74,.16); }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.66);
  border: 1px solid var(--border);
  transition: .3s var(--ease);
}
.nav__icon:hover { transform: translateY(-3px); background: var(--white); box-shadow: var(--shadow-sm); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 3px;
  transition: .3s ease;
}
.menu-toggle.active span { opacity: 0; }
.menu-toggle.active::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 126px 14px 14px;
  z-index: 65;
  padding: 24px;
  border-radius: 28px;
  background: rgba(19,35,28,.97);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-16px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: .35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.active { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.mobile-menu a { display: flex; align-items: center; justify-content: space-between; padding: 18px 4px; border-bottom: 1px solid rgba(255,255,255,.1); font-family: 'Manrope'; font-size: 1.35rem; font-weight: 700; }
.mobile-menu__footer { margin-top: 22px; display: grid; gap: 10px; }

/* Hero */
.hero {
  min-height: calc(100vh - 126px);
  display: grid;
  align-items: center;
  padding: 72px 0 96px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 780px;
  height: 780px;
  right: -300px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(199,243,109,.54), rgba(152,213,74,.12) 52%, transparent 72%);
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  left: -130px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(15,77,53,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(15,77,53,.025), 0 0 0 112px rgba(15,77,53,.02);
  z-index: -2;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.hero__copy { position: relative; z-index: 2; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px 8px 8px;
  margin-bottom: 24px;
  border-radius: 999px;
  border: 1px solid rgba(15,77,53,.13);
  background: rgba(255,255,255,.58);
  box-shadow: 0 8px 28px rgba(19,35,28,.05);
  backdrop-filter: blur(12px);
  font-size: .84rem;
  font-weight: 800;
}
.hero__badge i { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--lime-bright); font-style: normal; }
.hero h1 { max-width: 850px; }
.hero__copy .lead { margin-top: 26px; max-width: 620px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero__proof { display: flex; align-items: center; gap: 18px; margin-top: 38px; }
.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border-radius: 50%;
  border: 3px solid var(--cream);
  background: linear-gradient(145deg,#d8efb7,#8fc869);
  color: var(--forest);
  font-size: .75rem;
  font-weight: 800;
}
.hero__proof strong { display: block; font-size: .94rem; }
.hero__proof small { color: var(--ink-soft); }
.hero__visual { position: relative; min-height: 630px; }
.hero__image-main {
  position: absolute;
  inset: 34px 28px 72px 28px;
  overflow: hidden;
  border-radius: 46% 54% 42% 58% / 54% 43% 57% 46%;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}
.hero__image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(10,42,29,.48));
}
.hero__image-main img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.2s var(--ease); }
.hero__image-main:hover img { transform: scale(1.1); }
.hero__orbit {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(15,77,53,.18);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}
.hero__orbit::before,
.hero__orbit::after { content: ''; position: absolute; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 8px rgba(152,213,74,.12); }
.hero__orbit::before { width: 13px; height: 13px; top: 12%; left: 18%; }
.hero__orbit::after { width: 9px; height: 9px; right: 7%; bottom: 25%; }
.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.8);
  box-shadow: 0 18px 50px rgba(19,35,28,.14);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  animation: float 6s var(--ease) infinite;
}
.floating-card--rating { left: -5px; bottom: 98px; padding: 16px 18px; }
.floating-card--rating .stars { color: #eca74b; letter-spacing: 2px; }
.floating-card--rating strong { display: block; font-size: .9rem; margin-top: 3px; }
.floating-card--product { right: -2px; top: 75px; width: 168px; padding: 12px; animation-delay: -2.3s; }
.floating-card--product img { width: 100%; height: 130px; object-fit: contain; border-radius: 14px; background: #fff; }
.floating-card--product strong { display: block; font-size: .82rem; margin-top: 8px; }
.floating-card--product span { color: var(--forest-2); font-weight: 800; font-size: .8rem; }
.hero__leaf { position: absolute; z-index: 5; width: 105px; left: -32px; top: 58px; filter: drop-shadow(0 22px 22px rgba(23,77,45,.2)); transform: rotate(-18deg); animation: leaf 6s ease-in-out infinite; }
.hero__caption { position: absolute; z-index: 3; bottom: 94px; right: 78px; color: var(--white); max-width: 230px; }
.hero__caption strong { display: block; font-family: 'Manrope'; font-size: 1.05rem; }
.hero__caption span { font-size: .82rem; opacity: .78; }

@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
@keyframes leaf { 0%,100% { transform: rotate(-18deg) translateY(0); } 50% { transform: rotate(-10deg) translateY(-13px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.25); opacity: .4; } }

/* Ticker */
.ticker { overflow: hidden; border-block: 1px solid var(--border); background: rgba(255,255,255,.58); }
.ticker__track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.ticker__group { display: flex; align-items: center; }
.ticker__item { display: inline-flex; align-items: center; gap: 16px; padding: 18px 32px; white-space: nowrap; font-size: .83rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ticker__item::after { content: '✦'; color: var(--lime); font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Common layouts */
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading__copy { max-width: 760px; }
.section-heading h2 { margin-top: 14px; }
.section-heading p { margin-top: 18px; max-width: 610px; }
.link-arrow { display: inline-flex; align-items: center; gap: 9px; color: var(--forest); font-weight: 800; white-space: nowrap; }
.link-arrow span { transition: transform .25s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

.categories-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 220px; gap: 18px; }
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  transform: translateZ(0);
}
.category-card:nth-child(1) { grid-column: span 6; grid-row: span 2; }
.category-card:nth-child(2),
.category-card:nth-child(3),
.category-card:nth-child(4),
.category-card:nth-child(5) { grid-column: span 3; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s ease; }
.category-card::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 34%, rgba(7,35,23,.78)); }
.category-card::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(125deg, rgba(152,213,74,.22), transparent 45%); opacity: 0; transition: opacity .4s ease; }
.category-card:hover img { transform: scale(1.08); }
.category-card:hover::after { opacity: 1; }
.category-card__content { position: absolute; inset: auto 0 0; z-index: 2; padding: 24px; color: var(--white); display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.category-card__content small { display: block; opacity: .75; margin-bottom: 5px; }
.category-card__content h3 { font-size: 1.4rem; }
.category-card__arrow { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(10px); transition: .35s var(--ease); }
.category-card:hover .category-card__arrow { transform: rotate(-35deg); background: var(--lime-bright); color: var(--ink); }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 14px;
  border-radius: 25px;
  background: var(--white);
  border: 1px solid rgba(19,35,28,.08);
  box-shadow: 0 14px 42px rgba(19,35,28,.05);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
  transform-style: preserve-3d;
}
.product-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-md); border-color: rgba(152,213,74,.46); }
.product-card__media { position: relative; height: 260px; display: grid; place-items: center; overflow: hidden; border-radius: 19px; background: linear-gradient(145deg,#fafbf7,#edf3e5); }
.product-card__media::after { content: ''; position: absolute; width: 150px; height: 150px; border-radius: 50%; background: rgba(152,213,74,.13); filter: blur(1px); }
.product-card__media img { position: relative; z-index: 1; width: 78%; height: 82%; object-fit: contain; transition: transform .55s var(--ease); filter: drop-shadow(0 18px 15px rgba(19,35,28,.11)); }
.product-card:hover .product-card__media img { transform: scale(1.06) rotate(1deg); }
.product-card__badge { position: absolute; top: 13px; left: 13px; z-index: 2; padding: 6px 10px; border-radius: 999px; background: var(--forest); color: var(--white); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.product-card__fav { position: absolute; right: 12px; top: 12px; z-index: 3; width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.82); color: var(--ink); transition: .3s ease; }
.product-card__fav:hover { color: #be4b57; transform: scale(1.08); }
.product-card__body { padding: 18px 5px 5px; display: flex; flex: 1; flex-direction: column; }
.product-card__brand { color: var(--forest-2); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.product-card h3 { margin-top: 7px; font-size: 1.05rem; letter-spacing: -.02em; line-height: 1.35; }
.product-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; }
.product-card__price { font-family: 'Manrope'; font-weight: 800; font-size: 1.05rem; }
.product-card__cart { width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--white); background: var(--forest); transition: .3s var(--ease); }
.product-card__cart:hover { transform: rotate(-8deg) scale(1.08); background: var(--forest-2); }

.story-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 84px; align-items: center; }
.story-visual { position: relative; min-height: 620px; }
.story-visual__main { position: absolute; inset: 0 12% 8% 0; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow-lg); }
.story-visual__main img { width: 100%; height: 100%; object-fit: cover; }
.story-visual__small { position: absolute; width: 48%; height: 44%; right: 0; bottom: 0; overflow: hidden; border: 9px solid var(--cream); border-radius: 28px; box-shadow: var(--shadow-md); }
.story-visual__small img { width: 100%; height: 100%; object-fit: cover; }
.story-visual__stamp { position: absolute; right: 4%; top: 4%; width: 132px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--forest); box-shadow: var(--shadow-md); animation: spin 18s linear infinite; }
.story-visual__stamp span { position: absolute; font-size: .62rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 800; }
.story-visual__stamp b { font-size: 2rem; animation: spin 18s linear infinite reverse; }
.story-copy h2 { margin-top: 16px; }
.story-copy .lead { margin-top: 24px; }
.check-list { display: grid; gap: 15px; margin: 28px 0 34px; }
.check-list li { list-style: none; display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); }
.check-list li::before { content: '✓'; width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--forest); background: rgba(152,213,74,.22); font-weight: 900; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.stat { padding: 20px; border-radius: 20px; background: rgba(255,255,255,.65); border: 1px solid var(--border); }
.stat strong { display: block; color: var(--forest); font-family: 'Manrope'; font-size: 2rem; line-height: 1; }
.stat span { display: block; margin-top: 8px; color: var(--ink-soft); font-size: .78rem; font-weight: 700; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 510px; overflow: hidden; border-radius: 32px; color: var(--white); box-shadow: var(--shadow-md); }
.service-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 1s var(--ease); }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,25,17,.04), rgba(5,25,17,.9)); }
.service-card:hover img { transform: scale(1.07); }
.service-card__content { position: absolute; z-index: 2; inset: auto 0 0; padding: 34px; }
.service-card__icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 18px; color: var(--ink); background: var(--lime-bright); }
.service-card h3 { font-size: clamp(1.8rem,3vw,2.7rem); }
.service-card p { margin-top: 14px; color: rgba(255,255,255,.72); }
.service-card .link-arrow { margin-top: 22px; color: var(--white); }

.testimonial-shell { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .7s var(--ease); }
.testimonial { min-width: 100%; display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: center; padding: 12px 0; }
.testimonial__mark { font-family: Georgia, serif; font-size: clamp(8rem,18vw,16rem); line-height: .6; color: var(--lime); opacity: .55; }
.testimonial blockquote { margin: 0; font-family: 'Manrope'; font-weight: 600; font-size: clamp(1.6rem,3.3vw,3rem); letter-spacing: -.035em; line-height: 1.35; }
.testimonial cite { display: block; margin-top: 28px; font-style: normal; }
.testimonial cite strong { display: block; }
.testimonial cite span { color: rgba(255,255,255,.58); font-size: .9rem; }
.slider-controls { display: flex; gap: 10px; margin-top: 38px; }
.slider-btn { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.06); transition: .3s ease; }
.slider-btn:hover { background: var(--lime-bright); color: var(--ink); }

.cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 40px; padding: 64px; border-radius: 36px; color: var(--white); background: var(--forest); box-shadow: var(--shadow-lg); }
.cta-card::before { content: ''; position: absolute; width: 420px; height: 420px; right: -90px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(199,243,109,.55), transparent 65%); }
.cta-card::after { content: ''; position: absolute; width: 230px; height: 230px; right: 11%; bottom: -165px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 40px rgba(255,255,255,.04), 0 0 0 80px rgba(255,255,255,.025); }
.cta-card__copy { position: relative; z-index: 2; }
.cta-card h2 { font-size: clamp(2.4rem,5vw,4.6rem); }
.cta-card p { margin-top: 18px; max-width: 630px; }
.cta-card__actions { position: relative; z-index: 2; display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px; }

/* Interior pages */
.page-hero { position: relative; overflow: hidden; padding: 94px 0 76px; }
.page-hero::after { content: ''; position: absolute; width: 500px; height: 500px; right: -120px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(152,213,74,.36), transparent 67%); }
.page-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.page-hero h1 { margin-top: 14px; font-size: clamp(3.3rem,7vw,6.8rem); }
.page-hero p { margin-top: 22px; font-size: 1.15rem; max-width: 650px; }
.page-hero__aside { padding: 26px; border: 1px solid var(--border); border-radius: 26px; background: rgba(255,255,255,.52); backdrop-filter: blur(10px); }
.page-hero__aside strong { display: block; font-family: 'Manrope'; font-size: 1.25rem; }
.page-hero__aside span { display: block; margin-top: 8px; color: var(--ink-soft); }
.breadcrumbs { display: flex; gap: 8px; align-items: center; color: var(--ink-soft); font-size: .84rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--forest); }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { padding: 30px; border: 1px solid var(--border); border-radius: 26px; background: rgba(255,255,255,.68); transition: .35s var(--ease); }
.value-card:hover { transform: translateY(-8px); background: var(--white); box-shadow: var(--shadow-md); }
.value-card__icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: rgba(152,213,74,.22); color: var(--forest); }
.value-card h3 { margin-top: 26px; }
.value-card p { margin-top: 12px; }

.owner-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 0; overflow: hidden; border-radius: 34px; background: var(--ink); color: var(--white); box-shadow: var(--shadow-lg); }
.owner-card__media { min-height: 600px; }
.owner-card__media img { width: 100%; height: 100%; object-fit: cover; }
.owner-card__copy { padding: 64px; display: flex; flex-direction: column; justify-content: center; }
.owner-card__copy h2 { margin-top: 14px; }
.owner-card__copy p { margin-top: 24px; }
.owner-card__credentials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.pill { padding: 8px 12px; border-radius: 999px; color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); font-size: .8rem; font-weight: 700; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.timeline::before { content: ''; position: absolute; left: 6%; right: 6%; top: 20px; height: 1px; background: linear-gradient(90deg, transparent, var(--lime), transparent); }
.timeline-item { position: relative; padding-top: 58px; }
.timeline-item::before { content: ''; position: absolute; top: 12px; left: 0; width: 17px; height: 17px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 8px rgba(152,213,74,.14); }
.timeline-item strong { font-family: 'Manrope'; color: var(--forest); font-size: 1.1rem; }
.timeline-item h3 { margin-top: 10px; font-size: 1.25rem; }
.timeline-item p { margin-top: 10px; font-size: .92rem; }

.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.service-detail + .service-detail { margin-top: 110px; }
.service-detail:nth-child(even) .service-detail__media { order: 2; }
.service-detail__media { position: relative; height: 560px; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow-lg); }
.service-detail__media img { width: 100%; height: 100%; object-fit: cover; }
.service-detail__badge { position: absolute; left: 22px; bottom: 22px; padding: 12px 17px; border-radius: 999px; color: var(--ink); background: var(--lime-bright); font-weight: 800; }
.service-detail__copy h2 { margin-top: 14px; }
.service-detail__copy p { margin-top: 20px; }
.detail-list { display: grid; gap: 12px; margin: 28px 0 34px; padding: 0; }
.detail-list li { list-style: none; display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.detail-list li span { color: var(--ink-soft); }
.detail-list li strong { text-align: right; }
.notice { margin-top: 28px; padding: 18px 20px; border-radius: 18px; background: rgba(240,160,75,.12); border: 1px solid rgba(240,160,75,.22); color: #704616; font-size: .88rem; }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.search-box { position: relative; flex: 1; max-width: 470px; }
.search-box input { width: 100%; height: 54px; padding: 0 52px 0 18px; border: 1px solid var(--border); border-radius: 999px; outline: 0; background: var(--white); transition: .3s ease; }
.search-box input:focus { border-color: var(--lime); box-shadow: 0 0 0 4px rgba(152,213,74,.13); }
.search-box span { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill { padding: 10px 15px; border: 1px solid var(--border); border-radius: 999px; background: transparent; color: var(--ink); font-weight: 700; transition: .25s ease; }
.filter-pill.active, .filter-pill:hover { background: var(--forest); border-color: var(--forest); color: var(--white); }
.shop-categories { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-bottom: 58px; }
.shop-category { position: relative; min-height: 155px; overflow: hidden; border-radius: 22px; color: var(--white); }
.shop-category img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.shop-category::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(7,35,23,.8)); }
.shop-category strong { position: absolute; z-index: 2; left: 16px; bottom: 15px; }
.shop-category:hover img { transform: scale(1.08); }
.empty-state { display: none; text-align: center; padding: 50px; border: 1px dashed var(--border); border-radius: 24px; color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 38px; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--border); border-radius: 22px; background: rgba(255,255,255,.65); }
.contact-card__icon { width: 46px; height: 46px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 14px; color: var(--forest); background: rgba(152,213,74,.2); }
.contact-card strong { display: block; }
.contact-card p, .contact-card a { display: block; margin-top: 5px; color: var(--ink-soft); }
.contact-card a:hover { color: var(--forest); }
.contact-form { padding: 36px; border-radius: 30px; background: var(--white); box-shadow: var(--shadow-md); }
.contact-form h2 { font-size: 2.4rem; }
.contact-form > p { margin-top: 12px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--border); border-radius: 15px; background: #fbfcf8; outline: 0; padding: 14px 15px; transition: .3s ease; }
.field input, .field select { height: 52px; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--lime); box-shadow: 0 0 0 4px rgba(152,213,74,.13); background: var(--white); }
.map-card { margin-top: 42px; min-height: 430px; position: relative; overflow: hidden; border-radius: 32px; background: url('assets/images/storefront.jpg') center/cover; box-shadow: var(--shadow-lg); }
.map-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,39,26,.85), rgba(8,39,26,.25)); }
.map-card__content { position: absolute; z-index: 2; left: 44px; top: 50%; transform: translateY(-50%); max-width: 390px; color: var(--white); }
.map-card__content p { margin-top: 16px; color: rgba(255,255,255,.72); }
.map-card__content .btn { margin-top: 24px; }

.faq { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: transparent; text-align: left; font-family: 'Manrope'; font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.faq-question span:last-child { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(152,213,74,.18); transition: transform .3s ease; }
.faq-item.active .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-answer p { padding: 0 0 24px; }

/* Footer */
.site-footer { padding: 78px 0 26px; color: var(--white); background: #0c2118; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr 1fr; gap: 50px; }
.footer-brand img { width: 104px; height: 104px; object-fit: contain; filter: invert(1) brightness(4); opacity: .95; }
.footer-brand p { margin-top: 18px; max-width: 340px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; background: rgba(255,255,255,.05); transition: .3s ease; }
.footer-social a:hover { color: var(--ink); background: var(--lime-bright); transform: translateY(-3px); }
.footer-col h4 { font-size: 1rem; letter-spacing: 0; }
.footer-links { display: grid; gap: 11px; margin-top: 20px; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.62); font-size: .9rem; }
.footer-links a:hover { color: var(--lime-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .8rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; align-items: center; gap: 10px; padding: 8px 15px 8px 8px; border-radius: 999px; color: var(--white); background: #1da851; box-shadow: 0 16px 45px rgba(16,129,61,.35); transition: .35s var(--ease); }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.02); }
.whatsapp-float i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); font-style: normal; }
.whatsapp-float span { font-size: .82rem; font-weight: 800; }
.scroll-progress { position: fixed; left: 0; top: 0; z-index: 100; width: 100%; height: 3px; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--lime), var(--forest)); }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 100; padding: 13px 18px; border-radius: 999px; color: var(--white); background: var(--ink); box-shadow: var(--shadow-md); transform: translate(-50%, 25px); opacity: 0; pointer-events: none; transition: .35s var(--ease); }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.back-to-top { position: fixed; left: 22px; bottom: 22px; z-index: 58; width: 45px; height: 45px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--white); background: var(--ink); opacity: 0; pointer-events: none; transform: translateY(12px); transition: .3s ease; }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal='left'] { transform: translateX(-35px); }
[data-reveal='right'] { transform: translateX(35px); }
[data-reveal].revealed { opacity: 1; transform: translate(0,0); }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.stagger.revealed > * { opacity: 1; transform: none; }
.stagger.revealed > *:nth-child(2) { transition-delay: .08s; }
.stagger.revealed > *:nth-child(3) { transition-delay: .16s; }
.stagger.revealed > *:nth-child(4) { transition-delay: .24s; }
.stagger.revealed > *:nth-child(5) { transition-delay: .32s; }
.stagger.revealed > *:nth-child(6) { transition-delay: .4s; }

@media (max-width: 1100px) {
  .nav__links { display: none; }
  .menu-toggle, .mobile-menu { display: block; }
  .nav__actions .btn { display: none; }
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero__visual { min-height: 560px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / -1; }
  .shop-categories { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 28px, 720px); }
  .topbar__links { display: none; }
  .topbar__inner { justify-content: center; }
  .nav { height: 76px; }
  .brand img { width: 52px; height: 52px; }
  .mobile-menu { inset: 114px 12px 12px; }
  .section { padding: 82px 0; }
  .section--tight { padding: 60px 0; }
  .hero { min-height: auto; padding: 58px 0 80px; }
  .hero__grid, .page-hero__grid, .story-grid, .service-detail, .contact-grid { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; }
  .hero__copy .lead { margin-inline: auto; }
  .hero__actions, .hero__proof { justify-content: center; }
  .hero__visual { min-height: 530px; max-width: 610px; width: 100%; margin: 14px auto 0; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .categories-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 210px; }
  .category-card:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .category-card:nth-child(1) { grid-column: 1 / -1; grid-row: span 2; }
  .story-visual { min-height: 560px; }
  .services-grid, .values-grid { grid-template-columns: 1fr; }
  .testimonial { grid-template-columns: 1fr; gap: 20px; }
  .testimonial__mark { height: 90px; }
  .cta-card { grid-template-columns: 1fr; padding: 44px 32px; }
  .cta-card__actions { justify-content: flex-start; }
  .owner-card { grid-template-columns: 1fr; }
  .owner-card__media { min-height: 470px; }
  .owner-card__copy { padding: 42px 30px; }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .timeline::before { display: none; }
  .service-detail:nth-child(even) .service-detail__media { order: 0; }
  .service-detail__media { height: 470px; }
  .shop-toolbar { align-items: stretch; flex-direction: column; }
  .search-box { max-width: none; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .page-hero__aside { display: none; }
}

@media (max-width: 560px) {
  .topbar { min-height: 34px; }
  .topbar__message { font-size: .72rem; }
  .brand__wordmark { display: none; }
  .nav { height: 70px; }
  .nav__actions { margin-left: auto; }
  .nav__icon { display: none; }
  .mobile-menu { inset: 104px 10px 10px; }
  h1 { font-size: clamp(2.75rem, 15vw, 4.35rem); }
  h2 { font-size: clamp(2.15rem, 12vw, 3.35rem); }
  .hero__visual { min-height: 430px; }
  .hero__image-main { inset: 30px 20px 48px; }
  .hero__orbit { inset: 4px; }
  .floating-card--rating { left: 0; bottom: 52px; }
  .floating-card--product { right: 0; top: 38px; width: 135px; }
  .floating-card--product img { height: 95px; }
  .hero__leaf { width: 72px; left: -8px; }
  .hero__caption { right: 46px; bottom: 70px; max-width: 180px; }
  .categories-grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .category-card:nth-child(n) { grid-column: 1; grid-row: span 1; }
  .category-card:nth-child(1) { grid-row: span 1; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card__media { height: 280px; }
  .story-visual { min-height: 450px; }
  .story-visual__main { inset: 0 8% 10% 0; }
  .story-visual__small { border-width: 6px; }
  .story-visual__stamp { width: 98px; }
  .stats { grid-template-columns: 1fr; }
  .service-card { min-height: 440px; }
  .cta-card { padding: 38px 24px; }
  .timeline { grid-template-columns: 1fr; }
  .shop-categories { grid-template-columns: repeat(2,1fr); }
  .shop-category { min-height: 130px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .contact-form { padding: 28px 20px; }
  .map-card__content { left: 24px; right: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 13px; bottom: 13px; padding-right: 8px; }
  .whatsapp-float span { display: none; }
  .back-to-top { left: 13px; bottom: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal], .stagger > * { opacity: 1 !important; transform: none !important; }
  .cursor-glow { display: none; }
}
