/* =================================================================
   Зелена Поляна — Eco Organic Food Store Template (Bilingual UA/EN)
   Style: Natural minimalism · kraft paper texture · muted green & beige
   ================================================================= */

:root {
  --cream: #f7f1e3;
  --cream-light: #fbf6ea;
  --cream-deep: #ede4cf;
  --kraft: #e8dcc4;
  --kraft-deep: #d4c4a3;
  --green: #7a8c5c;
  --green-deep: #5a6b3f;
  --green-darkest: #3d4a28;
  --beige: #c9b896;
  --terracotta: #b87a5a;
  --brown: #6b4f3a;
  --brown-dark: #3d2d20;
  --text: #3d2d20;
  --text-soft: #6b4f3a;
  --text-muted: #9a8068;
  --text-faint: #b5a489;
  --line: #d4c4a3;
  --line-soft: #e0d3b8;
  --shadow: 0 4px 16px rgba(61, 45, 32, 0.08);
  --shadow-deep: 0 12px 32px rgba(61, 45, 32, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* ============ PAPER TEXTURE ============ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(122, 140, 92, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 184, 150, 0.12) 0%, transparent 50%),
    var(--cream);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.32 0 0 0 0 0.18 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

.script { font-family: 'Caveat', cursive; }
.serif { font-family: 'Cormorant Garamond', serif; }
.display { font-family: 'DM Serif Display', serif; }

/* ============ TOP STRIP ============ */
.top-strip {
  background: var(--green-darkest);
  color: var(--cream-light);
  padding: 10px 0;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.5px;
  font-family: 'Cormorant Garamond', serif;
}

.top-strip span { color: #c4d4a4; margin: 0 14px; }
.top-strip .leaf { color: #a4c47a; }

/* ============ HEADER ============ */
header {
  background: rgba(247, 241, 227, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.header-left, .header-right { display: flex; align-items: center; gap: 24px; }
.header-right { justify-content: flex-end; }

.header-link {
  font-family: 'Inter', sans-serif;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.header-link:hover { color: var(--green-deep); }

.lang-toggle {
  display: flex;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
  padding: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 5px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 100px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.lang-btn.active {
  background: var(--green);
  color: var(--cream-light);
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--green-deep);
  color: var(--cream-light);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.cart-btn:hover {
  background: var(--green-darkest);
  transform: translateY(-1px);
}

.cart-count {
  background: var(--terracotta);
  color: var(--cream-light);
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.logo {
  text-align: center;
  text-decoration: none;
  color: var(--text);
}

.logo-leaf {
  font-size: 28px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.logo-name {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: var(--green-deep);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============ NAVIGATION ============ */
.nav-bar {
  background: var(--cream-light);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  gap: 36px;
}

.nav-inner a {
  font-family: 'Inter', sans-serif;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 0;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-inner a:hover, .nav-inner a.active { color: var(--green-deep); }

.nav-inner a.active::after, .nav-inner a:hover::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.nav-inner a .en {
  display: inline-block;
  color: var(--text-faint);
  font-size: 10px;
  margin-left: 4px;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: none;
}

/* ============ HERO ============ */
.hero {
  max-width: 1320px;
  margin: 56px auto;
  padding: 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { position: relative; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--terracotta);
}

.hero-eyebrow .line {
  width: 50px;
  height: 1px;
  background: var(--terracotta);
}

.hero-title {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 84px;
  line-height: 0.95;
  color: var(--green-darkest);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title .accent { color: var(--terracotta); }

.hero-title .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 0.5px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 24px;
  max-width: 480px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
}

.hero-desc .en {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-style: italic;
  font-size: 14px;
}

.hero-meta {
  display: flex;
  gap: 32px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.meta-item .label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.meta-item .value {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.hero-cta { display: flex; gap: 14px; margin-bottom: 28px; }

.btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--green);
  color: var(--cream-light);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 107, 63, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}

.btn-ghost:hover {
  background: var(--green-deep);
  color: var(--cream-light);
}

.hero-trust {
  display: flex;
  gap: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
}

.hero-trust .check { color: var(--green); margin-right: 6px; font-weight: 700; }

/* ============ HERO IMAGE ============ */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}

.hero-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.hero-img-wrap:hover img { transform: scale(1.04); }

.hero-badge {
  position: absolute;
  background: var(--cream-light);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-deep);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge.b1 {
  top: 30px;
  left: -30px;
}

.hero-badge.b2 {
  bottom: 40px;
  right: -30px;
}

.badge-icon {
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--cream-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.badge-text .title {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 20px;
  color: var(--green-darkest);
  line-height: 1;
}

.badge-text .sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* ============ SECTION HEAD ============ */
.section-head {
  max-width: 1320px;
  margin: 100px auto 48px;
  padding: 0 40px;
  text-align: center;
}

.section-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 60px;
  line-height: 1;
  color: var(--green-darkest);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title .accent { color: var(--terracotta); }

.section-title .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.section-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-desc .en {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 6px;
}

/* ============ CATEGORIES ============ */
.categories {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cat-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: var(--shadow-deep);
}

.cat-emoji {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1;
}

.cat-name {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 22px;
  color: var(--green-darkest);
  line-height: 1;
  margin-bottom: 4px;
}

.cat-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cat-count {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.5px;
}

/* ============ FEATURED PRODUCTS ============ */
.products {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
  position: relative;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
  border-color: var(--green);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green);
  color: var(--cream-light);
  padding: 5px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
  z-index: 2;
}

.product-badge.organic { background: var(--green); }
.product-badge.local { background: var(--terracotta); }
.product-badge.sale { background: #c44a3a; }

.product-image-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product:hover .product-image-wrap img { transform: scale(1.06); }

.product-body { padding: 20px; }

.product-cat {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}

.product-name {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
  color: var(--green-darkest);
  margin-bottom: 4px;
}

.product-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 14px;
}

.product-meta .origin {
  color: var(--green-deep);
  font-weight: 500;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-block { display: flex; flex-direction: column; }

.price-old {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-faint);
  text-decoration: line-through;
}

.price-new {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 28px;
  color: var(--green-deep);
  line-height: 1;
}

.price-new .unit {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}

.add-btn {
  background: var(--green);
  color: var(--cream-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-btn:hover {
  background: var(--green-deep);
  transform: scale(1.1) rotate(90deg);
}

/* ============ STORY SPLIT ============ */
.story {
  background: var(--cream-deep);
  margin: 100px 0;
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.story::before, .story::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--green-deep) 0, var(--green-deep) 24px, var(--kraft) 24px, var(--kraft) 28px);
  opacity: 0.4;
}

.story::before { top: 0; }
.story::after { bottom: 0; }

.story-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-image {
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  position: relative;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--cream-light);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 18px;
  color: var(--green-deep);
  box-shadow: var(--shadow);
}

.story-content .section-eyebrow { text-align: left; }

.story-content h3 {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--green-darkest);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.story-content h3 .accent { color: var(--terracotta); }

.story-content .h3-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.story-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 16px;
  font-weight: 500;
}

.story-content p.en {
  color: var(--text-muted);
  font-style: italic;
  font-size: 14px;
}

.story-quote {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
  color: var(--green-deep);
  padding: 20px 24px;
  border-left: 3px solid var(--terracotta);
  background: rgba(247, 241, 227, 0.6);
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}

.story-stats {
  display: flex;
  gap: 32px;
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ============ VALUES ============ */
.values {
  max-width: 1320px;
  margin: 100px auto;
  padding: 0 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: var(--shadow-deep);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1;
}

.value-title {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 28px;
  color: var(--green-darkest);
  margin-bottom: 4px;
  line-height: 1;
}

.value-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.value-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ============ WOOD BAR ============ */
.wood-bar {
  background:
    linear-gradient(180deg, #8a6a4a 0%, #6b4f3a 50%, #4a3624 100%);
  padding: 32px 0;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.wood-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 40px, rgba(0,0,0,0.15) 40px, rgba(0,0,0,0.15) 41px),
    repeating-linear-gradient(180deg, transparent 0, transparent 5px, rgba(0,0,0,0.08) 5px, rgba(0,0,0,0.08) 6px);
}

.wood-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.wood-stat {
  text-align: center;
  color: var(--cream-light);
}

.wood-stat .num {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: #d4e3b8;
  margin-bottom: 6px;
}

.wood-stat .lbl {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: #e0d3b8;
}

/* ============ NEWSLETTER ============ */
.newsletter {
  max-width: 1320px;
  margin: 100px auto;
  padding: 0 40px;
}

.newsletter-frame {
  background:
    linear-gradient(135deg, var(--cream-light), var(--kraft));
  border: 1px solid var(--line);
  padding: 64px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.newsletter-frame::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: var(--green);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}

.newsletter-frame::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: var(--terracotta);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.newsletter-content { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }

.newsletter h3 {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--green-darkest);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.newsletter h3 .accent { color: var(--terracotta); }

.newsletter .h3-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.newsletter p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  background: var(--cream-light);
  padding: 6px;
  border-radius: 100px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
}

.newsletter-form input::placeholder { color: var(--text-faint); }

.newsletter-form button {
  background: var(--green);
  color: var(--cream-light);
  border: none;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--green-deep);
}

.newsletter-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--green-darkest);
  color: var(--cream);
  padding: 64px 0 28px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(196, 212, 164, 0.2);
}

.footer-brand .logo-name { color: #d4e3b8; }
.footer-brand .logo-sub { color: #b5c89a; }
.footer-brand .logo-leaf { color: #a4c47a; }

.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #c9d4b8;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 22px;
  color: #d4e3b8;
  margin-bottom: 16px;
  line-height: 1;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: #c9d4b8;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: #a4c47a; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: #a8b89a;
}

.footer-bottom .socials { display: flex; gap: 20px; }
.footer-bottom .socials a {
  color: #c9d4b8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom .socials a:hover { color: #a4c47a; }

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeIn 0.8s ease backwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }
.hero-content > *:nth-child(6) { animation-delay: 0.6s; }
.hero-content > *:nth-child(7) { animation-delay: 0.7s; }

.product { animation: fadeIn 0.6s ease backwards; }
.products .product:nth-child(1) { animation-delay: 0.05s; }
.products .product:nth-child(2) { animation-delay: 0.1s; }
.products .product:nth-child(3) { animation-delay: 0.15s; }
.products .product:nth-child(4) { animation-delay: 0.2s; }
.products .product:nth-child(5) { animation-delay: 0.25s; }
.products .product:nth-child(6) { animation-delay: 0.3s; }
.products .product:nth-child(7) { animation-delay: 0.35s; }
.products .product:nth-child(8) { animation-delay: 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .header-left { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-title { font-size: 64px; }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-strip { font-size: 11px; padding: 8px 16px; }
  .top-strip span { display: none; }
  .header-inner { padding: 0 20px; gap: 12px; }
  .header-right { gap: 10px; }
  .logo-name { font-size: 26px; }
  .logo-sub { font-size: 9px; }
  .nav-inner { gap: 18px; padding: 0 20px; overflow-x: auto; }
  .nav-inner a { font-size: 11px; letter-spacing: 0.5px; }
  .hero { padding: 0 20px; margin: 32px auto; }
  .hero-title { font-size: 48px; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .hero-cta { flex-direction: column; }
  .section-head { padding: 0 20px; margin: 60px auto 32px; }
  .section-title { font-size: 42px; }
  .categories { grid-template-columns: repeat(2, 1fr); padding: 0 20px 32px; }
  .products { grid-template-columns: 1fr; padding: 0 20px 40px; }
  .story { padding: 60px 0; }
  .story-inner { padding: 0 20px; }
  .story-content h3 { font-size: 40px; }
  .values { padding: 0 20px; }
  .wood-bar-inner { grid-template-columns: repeat(2, 1fr); padding: 0 20px; gap: 24px; }
  .newsletter { padding: 0 20px; }
  .newsletter-frame { padding: 40px 24px; }
  .newsletter h3 { font-size: 36px; }
  .newsletter-form { flex-direction: column; }
  .footer-inner { padding: 0 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
