@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
:root {
  --clr-primary: #5A7C52;
  --clr-primary-dark: #3D5438;
  --clr-primary-light: #8FAF85;
  --clr-accent: #B8956A;
  --clr-accent-light: #D4BB97;
  --clr-bg: #F9F8F4;
  --clr-bg-alt: #EFECE4;
  --clr-dark: #2D2D2D;
  --clr-text: #3A3A3A;
  --clr-text-light: #7A7A7A;
  --clr-white: #FFFFFF;
  --clr-border: #DDD9CE;
  --font-heading: 'Fraunces', serif;
  --font-body: 'Space Grotesk', sans-serif;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --transition: 0.3s ease;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 15px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--clr-accent);
}
ul {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--clr-dark);
  line-height: 1.3;
  font-weight: 600;
}
h1 { font-size: 2.1rem; }
h2 { font-size: 1.55rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
p { margin-bottom: 0.8rem; }
p:last-child { margin-bottom: 0; }
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.btn-primary:hover {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
}
.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.btn-accent {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.btn-accent:hover {
  background: #a07d55;
  color: var(--clr-white);
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-accent);
  margin-bottom: 0.4rem;
}
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--clr-accent);
  margin-top: 0.5rem;
}
.text-center { text-align: center; }
.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(249,248,244,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), box-shadow var(--transition);
  border-bottom: 1px solid var(--clr-border);
}
.site-header.header--hidden {
  transform: translateY(-100%);
}
.site-header.header--scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0 0.2rem;
  position: relative;
}
.brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-dark);
  letter-spacing: -0.5px;
  transition: font-size var(--transition);
}
.brand i {
  color: var(--clr-primary);
  margin-right: 0.3rem;
  font-size: 1rem;
}
.header-nav {
  display: flex;
  justify-content: center;
  padding-bottom: 0.45rem;
}
.header-nav ul {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.header-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-text);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.15rem 0;
  position: relative;
  transition: color var(--transition);
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--transition);
  border-radius: 1px;
}
.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}
.header-nav a:hover {
  color: var(--clr-dark);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--clr-dark);
  cursor: pointer;
  padding: 0.3rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  transition: color var(--transition);
}
.menu-toggle:hover {
  color: var(--clr-primary);
}
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.visible {
  display: block;
  opacity: 1;
}
main {
  padding-top: 90px;
}
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
}
.hero-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 3rem 0;
  color: var(--clr-white);
}
.hero-content h1 {
  color: var(--clr-white);
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.hero-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.hero-content .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.section {
  padding: 3.5rem 0;
}
.section-alt {
  background: var(--clr-bg-alt);
}
.section-dark {
  background: var(--clr-primary-dark);
  color: rgba(255,255,255,0.9);
}
.section-dark h2,
.section-dark h3 {
  color: var(--clr-white);
}
.section-dark .section-label {
  color: var(--clr-accent-light);
}
.section-dark .section-title::after {
  background: var(--clr-accent-light);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.intro-text p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
}
.intro-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.category-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--clr-border);
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.category-card i {
  font-size: 2rem;
  color: var(--clr-primary);
  margin-bottom: 0.8rem;
  display: block;
}
.category-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.category-card p {
  font-size: 0.82rem;
  color: var(--clr-text-light);
  margin-bottom: 0.8rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.trust-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.trust-card i {
  font-size: 1.5rem;
  color: var(--clr-accent-light);
  margin-bottom: 0.6rem;
  display: block;
}
.trust-card h3 {
  font-size: 1rem;
  color: var(--clr-white);
  margin-bottom: 0.3rem;
}
.trust-card p {
  font-size: 0.8rem;
  opacity: 0.8;
}
.testimonials-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--clr-primary-light);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
  opacity: 0.4;
}
.testimonial-card p {
  font-size: 0.82rem;
  color: var(--clr-text-light);
  font-style: italic;
  padding-top: 1.2rem;
}
.testimonial-author {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-dark);
}
.testimonial-stars {
  color: var(--clr-accent);
  font-size: 0.7rem;
  margin-top: 0.2rem;
}
.cta-section {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 100%);
  color: var(--clr-white);
}
.cta-section h2 {
  color: var(--clr-white);
  margin-bottom: 0.6rem;
}
.cta-section p {
  opacity: 0.85;
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto 1.2rem;
}
.page-header {
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
  padding: 2.5rem 0;
  text-align: center;
  color: var(--clr-white);
}
.page-header h1 {
  color: var(--clr-white);
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.page-header p {
  opacity: 0.85;
  font-size: 0.88rem;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
  opacity: 0.7;
}
.breadcrumb a {
  color: var(--clr-white);
  opacity: 0.8;
}
.breadcrumb a:hover {
  opacity: 1;
}
.breadcrumb span {
  color: var(--clr-white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.product-card {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.product-card .product-icon {
  font-size: 2.2rem;
  color: var(--clr-primary);
  margin-bottom: 0.8rem;
}
.product-card h3 {
  font-size: 1rem;
}
.product-card .product-desc {
  font-size: 0.8rem;
  color: var(--clr-text-light);
  margin: 0.4rem 0 0.6rem;
}
.product-card .product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 0.8rem;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.tip-card {
  display: flex;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--clr-white);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}
.tip-card i {
  font-size: 1.2rem;
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.tip-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.tip-card p {
  font-size: 0.78rem;
  color: var(--clr-text-light);
}
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.feature-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.feature-item i {
  font-size: 1.1rem;
  color: var(--clr-accent-light);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.feature-item h3 {
  font-size: 0.9rem;
  color: var(--clr-white);
  margin-bottom: 0.15rem;
}
.feature-item p {
  font-size: 0.78rem;
  opacity: 0.8;
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.about-story-text p {
  font-size: 0.88rem;
  color: var(--clr-text-light);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--clr-white);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow);
}
.value-card i {
  font-size: 1.5rem;
  color: var(--clr-primary);
  margin-bottom: 0.6rem;
  display: block;
}
.value-card h3 { font-size: 1rem; }
.value-card p {
  font-size: 0.8rem;
  color: var(--clr-text-light);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat-item {
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-accent-light);
  display: block;
}
.stat-item .stat-label {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--clr-white);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
}
.contact-card-item i {
  font-size: 1.1rem;
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-card-item h3 {
  font-size: 0.88rem;
  margin-bottom: 0.1rem;
}
.contact-card-item p {
  font-size: 0.82rem;
  color: var(--clr-text-light);
}
.contact-form-wrap {
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--clr-border);
}
.contact-form-wrap h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.form-group {
  margin-bottom: 1rem;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--clr-text);
  margin-bottom: 0.25rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.6rem 0.8rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius);
  background: var(--clr-bg);
  color: var(--clr-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(90,124,82,0.12);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--clr-text-light);
  margin-bottom: 1rem;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 0.15rem;
  accent-color: var(--clr-primary);
  flex-shrink: 0;
}
.form-error {
  display: none;
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.2rem;
}
.form-error.visible {
  display: block;
}
.map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}
.utility-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}
.utility-page i {
  font-size: 3rem;
  color: var(--clr-primary-light);
  margin-bottom: 1rem;
}
.utility-page h1 {
  margin-bottom: 0.5rem;
}
.utility-page p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  max-width: 450px;
  margin-bottom: 1.5rem;
}
.policy-content {
  padding: 2.5rem 0;
}
.policy-content h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}
.policy-content h3 {
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}
.policy-content p {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  margin-bottom: 0.7rem;
}
.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
}
.policy-content li {
  font-size: 0.85rem;
  color: var(--clr-text-light);
  margin-bottom: 0.3rem;
}
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,0.6);
  padding: 1.2rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy {
  font-size: 0.72rem;
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--clr-accent-light);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--clr-dark);
  color: rgba(255,255,255,0.85);
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  max-width: 600px;
  margin: 0;
  line-height: 1.5;
}
.cookie-banner a {
  color: var(--clr-accent-light);
  text-decoration: underline;
}
.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept {
  background: var(--clr-primary);
  color: var(--clr-white);
}
.cookie-accept:hover {
  background: var(--clr-primary-dark);
}
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3);
}
.cookie-decline:hover {
  background: rgba(255,255,255,0.08);
}
.subpage-hero {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
}
.subpage-hero .hero-img-wrap {
  opacity: 0.15;
}
.subpage-hero .hero-content {
  text-align: center;
  margin: 0 auto;
  padding: 2rem 0;
}
.subpage-hero .hero-content h1 {
  font-size: 2rem;
}
.faq-list {
  max-width: 700px;
  margin: 1.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--clr-border);
  padding: 0.8rem 0;
}
.faq-item h3 {
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
  color: var(--clr-dark);
}
.faq-item p {
  font-size: 0.82rem;
  color: var(--clr-text-light);
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.expertise-card {
  padding: 1.2rem;
  background: var(--clr-white);
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.expertise-card i {
  font-size: 1.3rem;
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.expertise-card h3 { font-size: 0.95rem; }
.expertise-card p {
  font-size: 0.8rem;
  color: var(--clr-text-light);
}
.banner-strip {
  background: var(--clr-accent);
  color: var(--clr-white);
  text-align: center;
  padding: 1.2rem 1rem;
}
.banner-strip h2 {
  color: var(--clr-white);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.banner-strip p {
  font-size: 0.82rem;
  opacity: 0.85;
}
.page-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.page-intro p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
}
@media (max-width: 992px) {
  .trust-grid,
  .testimonials-wrap,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 768px) {
  html { font-size: 14px; }
  main { padding-top: 55px; }
  .site-header {
    background: rgba(249,248,244,0.97);
  }
  .header-top {
    padding: 0.5rem 0;
    justify-content: space-between;
  }
  .brand { font-size: 1.1rem; }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 72%;
    max-width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--clr-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    box-shadow: -6px 0 24px rgba(0,0,0,0.12);
    padding: 2rem 0;
  }
  .header-nav.nav--open {
    right: 0;
  }
  .header-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
  }
  .header-nav a {
    font-size: 0.95rem;
  }
  .menu-toggle {
    display: block;
  }
  .hero { min-height: 320px; }
  .hero-content h1 { font-size: 1.8rem; }
  .intro-grid,
  .about-story,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .categories-grid,
  .trust-grid,
  .testimonials-wrap,
  .products-grid,
  .tips-grid,
  .features-list,
  .values-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .cta-section { padding: 2rem 1rem; }
  .section { padding: 2.5rem 0; }
  .subpage-hero { min-height: 180px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  .hero-content h1 { font-size: 1.5rem; }
  .container { padding: 0 0.8rem; }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
}
@media (max-width: 320px) {
  html { font-size: 13px; }
  .container { padding: 0 0.6rem; }
  .brand { font-size: 0.95rem; }
  .hero { min-height: 260px; }
  .hero-content h1 { font-size: 1.35rem; }
}
