:root {
  --primary: #2D5016;
  --primary-light: #3E6B22;
  --primary-dark: #1E3610;
  --secondary: #7A5C34;
  --secondary-pale: #F2EAD8;
  --accent: #C16A3A;
  --accent-sage: #8A9E72;
  --dark: #3A3A3A;
  --mid: #5C5C4A;
  --light: #F5F0E8;
  --white: #FDFAF4;
  --border: #DDD5C4;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --shadow-sm: 0 1px 3px rgba(58,42,18,.07);
  --shadow-md: 0 4px 12px rgba(58,42,18,.10);
  --shadow-lg: 0 12px 32px rgba(58,42,18,.13);
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  --nav-h: 72px;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
}

*,*::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);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; transition: color var(--dur-fast); }
a:hover { color: var(--accent); }

h1,h2,h3,h4,h5 { font-family: var(--font-heading); color: var(--primary-dark); line-height: 1.2; font-weight: 700; }

h1 { font-size: clamp(2.25rem, 2rem + 3vw, 4rem); }
h2 { font-size: clamp(1.75rem, 1.4rem + 2vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 1rem + .5vw, 1.375rem); font-weight: 600; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; }

.section-pad { padding: 4.5rem 0; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.eyebrow::before,.eyebrow::after { content: ''; width: 24px; height: 1px; background: var(--secondary); flex-shrink: 0; }

.section-title { margin-bottom: .75rem; }
.section-lead { max-width: 680px; color: var(--mid); margin-bottom: 2.5rem; font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-light); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-warm { background: var(--accent); color: #fff; }
.btn-warm:hover { background: #a85a30; color: #fff; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.btn-sm { padding: .5rem 1.25rem; font-size: .82rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(253,250,244,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow var(--dur-base);
  display: flex;
  align-items: center;
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
}
.nav-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo:hover { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  position: relative;
  padding: .25rem 0;
  transition: color var(--dur-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--dur-base) var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: .5rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  position: absolute;
  left: 7px;
  transition: all var(--dur-base) var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 17px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 2rem 1.25rem;
  flex-direction: column;
  gap: .5rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .btn { margin-top: 1rem; text-align: center; }

.hero {
  min-height: 50vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-pale) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { padding: 2.5rem 0; }
.hero-eyebrow {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-proof-item {
  display: flex;
  flex-direction: column;
}
.hero-proof-item strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary-dark);
  line-height: 1.2;
}
.hero-proof-item span {
  font-size: .78rem;
  color: var(--mid);
  letter-spacing: .03em;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.hero-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
}

.trust-bar {
  background: var(--primary);
  color: #fff;
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  white-space: nowrap;
}
.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; opacity: .85; }

.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.bg-pale { background: var(--secondary-pale); }
.bg-dark { background: var(--primary-dark); color: #fff; }
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark .eyebrow { color: var(--accent-sage); }
.bg-dark .eyebrow::before, .bg-dark .eyebrow::after { background: var(--accent-sage); }
.bg-dark .section-lead { color: rgba(255,255,255,.7); }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .5rem 1.25rem;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  background: transparent;
  color: var(--mid);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.card-product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.card-product:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-product.hidden { display: none; }

.card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f6f2;
}
.card-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: .75rem; }
.card-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(45,80,22,.88);
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: var(--radius-pill);
}

.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card-eyebrow {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: .35rem;
}
.card-body h3 { margin-bottom: .6rem; line-height: 1.35; }
.card-desc {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.card-desc.clamped {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-readmore {
  background: none;
  border: none;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: .75rem;
  text-align: left;
  transition: color var(--dur-fast);
}
.card-readmore:hover { color: var(--accent); }

.card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .75rem;
}
.card-spec {
  font-size: .7rem;
  padding: .2rem .55rem;
  background: var(--light);
  color: var(--mid);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.card-stock {
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.card-stock::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.card-footer { padding: 0 1.25rem 1.25rem; margin-top: auto; }
.card-footer .btn { width: 100%; }

.view-all-wrap { text-align: center; margin-top: 2.5rem; }
.view-all-wrap .btn { min-width: 280px; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.benefit-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--dur-base);
}
.benefit-card:hover { box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.benefit-icon svg { width: 24px; height: 24px; color: var(--secondary); }
.benefit-card h3 { margin-bottom: .6rem; }
.benefit-card p { font-size: .9rem; color: var(--mid); }

.who-for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.who-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
}
.who-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.who-card-icon svg { width: 26px; height: 26px; color: #fff; }
.who-card h3 { margin-bottom: .6rem; }
.who-card p { font-size: .9rem; color: var(--mid); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-text p { margin-bottom: 1rem; color: var(--mid); }
.about-text .btn { margin-top: .5rem; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-dark);
  line-height: 1.1;
}
.stat-item span { font-size: .82rem; color: var(--mid); }

.expert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.expert-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.2);
  margin: 0 auto;
}
.expert-avatar img { width: 100%; height: 100%; object-fit: cover; }
.expert-content blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}
.expert-name { font-weight: 700; font-size: 1rem; }
.expert-title { font-size: .88rem; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.expert-tips { list-style: none; }
.expert-tips li {
  padding: .75rem 0;
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-left: 1.5rem;
  position: relative;
}
.expert-tips li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 1.1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.review-stars { display: flex; gap: .15rem; margin-bottom: .75rem; }
.review-stars svg { width: 16px; height: 16px; color: var(--accent); fill: var(--accent); }
.review-text { font-size: .9rem; color: var(--mid); line-height: 1.75; margin-bottom: 1.25rem; }
.review-author { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.review-author-name { font-weight: 700; font-size: .88rem; color: var(--dark); }
.review-author-loc { font-size: .8rem; color: var(--mid); }
.review-product-tag {
  font-size: .72rem;
  padding: .25rem .6rem;
  background: var(--secondary-pale);
  color: var(--secondary);
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.review-verified {
  font-size: .72rem;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; max-height: 85vh; cursor: default; }
.lightbox-inner img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  margin-top: .75rem;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: opacity var(--dur-fast);
}
.lightbox-close:hover { opacity: 1; }

.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: color var(--dur-fast);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-icon::before,.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--dark);
  border-radius: 1px;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-icon::after { width: 2px; height: 14px; top: 5px; left: 11px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 600px; }

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .nav-logo:hover { color: var(--accent-sage); }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.footer-contact-item {
  font-size: .88rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: .2rem; opacity: .5; }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: #fff; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a { color: rgba(255,255,255,.7); font-size: .88rem; transition: color var(--dur-fast); }
.footer-col ul a:hover { color: #fff; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast);
}
.footer-social a:hover { background: rgba(255,255,255,.18); }
.footer-social svg { width: 16px; height: 16px; color: rgba(255,255,255,.7); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }
.footer-disclaimer { color: rgba(255,255,255,.35); font-size: .75rem; text-align: center; width: 100%; margin-top: .5rem; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--dark);
  color: rgba(255,255,255,.85);
  padding: .75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-size: .82rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,.15);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--accent-sage); text-decoration: underline; }
.cookie-btns { display: flex; gap: .5rem; }
.cookie-btns button {
  padding: .4rem 1rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--dur-fast);
}
#cookie-accept { background: var(--primary); color: #fff; }
#cookie-accept:hover { background: var(--primary-light); }
#cookie-decline { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); }
#cookie-decline:hover { background: rgba(255,255,255,.2); }

.page-inner { padding-top: calc(var(--nav-h) + 2rem); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.back-link:hover { color: var(--primary); }
.page-title { margin-bottom: 2rem; }
.page-lead { color: var(--mid); margin-bottom: 2.5rem; max-width: 640px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .35rem;
}
.form-group input,.form-group textarea,.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--dur-fast);
}
.form-group input:focus,.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.visible { display: block; }
.form-success h3 { color: var(--primary); margin-bottom: .75rem; }

.contact-info-block { padding: 2rem; background: var(--light); border-radius: var(--radius-lg); }
.contact-info-block h3 { margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.25rem;
  font-size: .9rem;
}
.contact-info-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); margin-top: .15rem; }
.contact-info-item strong { display: block; margin-bottom: .15rem; color: var(--dark); }

.about-story { margin-bottom: 3rem; }
.about-story p { margin-bottom: 1rem; color: var(--mid); line-height: 1.8; }
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}
.about-story-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.value-card h3 { margin-bottom: .75rem; }
.value-card p { font-size: .9rem; color: var(--mid); }

.terms-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.35rem; }
.terms-content p { margin-bottom: 1rem; color: var(--mid); line-height: 1.8; }
.terms-content ul { margin: 1rem 0; padding-left: 1.5rem; color: var(--mid); }
.terms-content li { margin-bottom: .5rem; }
.terms-date { font-size: .88rem; color: var(--mid); margin-bottom: 2rem; }

.not-for-block {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--secondary);
}
.not-for-block p { font-size: .88rem; color: var(--mid); }
.not-for-block strong { color: var(--dark); }

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 480px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .who-for-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .expert-grid { grid-template-columns: auto 1fr; }
  .expert-avatar { margin: 0; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-menu { display: none !important; }
}

@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .who-for-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}
