* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5ef;
  --bg-soft: #fffdf8;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --text: #243126;
  --muted: #667264;
  --line: rgba(36, 49, 38, 0.09);
  --primary: #4d8b55;
  --primary-dark: #37653d;
  --accent: #dca56a;
  --accent-soft: #f5e7d8;
  --shadow: 0 20px 60px rgba(42, 60, 40, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1240px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(220, 165, 106, 0.16), transparent 22%),
    radial-gradient(circle at top right, rgba(77, 139, 85, 0.12), transparent 25%),
    linear-gradient(180deg, #faf8f1 0%, #f5f3ec 100%);
  color: var(--text);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(250, 248, 241, 0.76);
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text em {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
}

.main-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  position: relative;
  font-weight: 500;
  color: #334335;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.solid-btn,
.ghost-btn,
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.solid-btn {
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--primary), #6ba174);
  color: white;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(77, 139, 85, 0.26);
}

.ghost-btn {
  padding: 13px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  font-weight: 600;
}

.mini-btn {
  padding: 10px 14px;
  font-size: 0.92rem;
  background: var(--accent-soft);
  color: var(--text);
  font-weight: 700;
}

.solid-btn:hover,
.ghost-btn:hover,
.mini-btn:hover {
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  padding: 0;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  transition: 0.25s ease;
}

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 16px 18px;
  border-top: 1px solid var(--line);
}

.hero {
  padding: 68px 0 30px;
}

.hero-grid,
.story-grid,
.promo-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(220, 165, 106, 0.15);
  color: var(--primary-dark);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.story-copy h2,
.promo-copy h2,
.cta-box h2,
.quick-search h2 {
  margin: 18px 0 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  max-width: 10ch;
}

.hero-copy p,
.story-copy p,
.promo-copy p,
.cta-box p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 60ch;
  margin: 18px 0 0;
}

.hero-actions,
.story-links,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.hero-points li {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.64);
  border: 1px solid var(--line);
  font-weight: 600;
  color: #334335;
}

.hero-visual {
  position: relative;
}

.visual-stack {
  position: relative;
  min-height: 630px;
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.55);
  background: white;
}

.card-lg {
  inset: 24px 70px 110px 0;
}

.card-a {
  width: 220px;
  height: 260px;
  right: 0;
  top: 0;
}

.card-b {
  width: 240px;
  height: 280px;
  right: 24px;
  bottom: 10px;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  font-weight: 700;
}

.badge-top { left: -18px; top: 38px; }
.badge-bottom { right: 18px; bottom: -8px; }

.quick-search {
  padding: 30px 0 32px;
}

.quick-search-box,
.stats-card,
.cta-box,
.benefit-card,
.product-card,
.category-card,
.story-image {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.48);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.quick-search-box,
.cta-box {
  border-radius: 30px;
  padding: 28px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.chip-list a {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-weight: 600;
}

.categories,
.featured-products,
.story-block,
.benefits,
.cta-section {
  padding: 34px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.text-link {
  color: var(--primary-dark);
  font-weight: 700;
}

.category-grid,
.product-grid,
.benefit-grid {
  display: grid;
  gap: 22px;
}

.category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-card,
.product-card {
  border-radius: 28px;
  overflow: hidden;
  transform: translateZ(0);
}

.category-image {
  height: 220px;
  overflow: hidden;
}

.category-copy,
.product-copy {
  padding: 22px;
}

.category-copy h3,
.product-copy h3,
.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}

.category-copy p,
.product-copy p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.promo-band {
  padding: 34px 0;
}

.stats-card {
  border-radius: 30px;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-item {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line);
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.product-image {
  height: 240px;
  overflow: hidden;
}

.product-copy > span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.product-bottom strong {
  font-size: 1.2rem;
}

.story-image {
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
}

.benefit-card {
  border-radius: 26px;
  padding: 26px;
}

.site-footer {
  margin-top: 40px;
  padding: 40px 0 20px;
  background: rgba(37, 55, 39, 0.98);
  color: rgba(255,255,255,0.93);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 24px;
}

.footer-brand p,
.site-footer li,
.footer-bottom p,
.footer-bottom a {
  color: rgba(255,255,255,0.72);
}

.site-footer h4 {
  margin-top: 0;
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

@media (max-width: 1100px) {
  .main-nav,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-grid,
  .story-grid,
  .promo-grid,
  .footer-grid,
  .product-grid,
  .benefit-grid,
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .visual-stack {
    min-height: 540px;
  }

  .card-lg {
    inset: 24px 100px 84px 0;
  }
}

@media (max-width: 820px) {
  .hero,
  .categories,
  .featured-products,
  .story-block,
  .benefits,
  .cta-section,
  .promo-band {
    padding: 28px 0;
  }

  .hero-grid,
  .story-grid,
  .promo-grid,
  .footer-grid,
  .product-grid,
  .benefit-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .stats-card {
    grid-template-columns: 1fr;
  }

  .visual-stack {
    min-height: 500px;
  }

  .card-lg {
    inset: 40px 68px 86px 0;
  }

  .card-a {
    width: 180px;
    height: 210px;
  }

  .card-b {
    width: 180px;
    height: 220px;
  }

  .mobile-panel.is-open {
    display: flex;
  }

  .story-image {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .nav-wrap {
    min-height: 74px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-copy p,
  .story-copy p,
  .promo-copy p,
  .cta-box p {
    font-size: 1rem;
  }

  .quick-search-box,
  .cta-box,
  .stats-card,
  .benefit-card,
  .product-copy,
  .category-copy {
    padding: 20px;
  }

  .visual-stack {
    min-height: 430px;
  }

  .card-lg {
    inset: 34px 36px 70px 0;
  }

  .card-a {
    width: 140px;
    height: 165px;
  }

  .card-b {
    width: 145px;
    height: 180px;
    right: 10px;
  }

  .floating-badge {
    font-size: 0.82rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
}
