@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Quicksand:wght@300;400;500;600&display=swap');

:root {
  --color-cream: #f9f6f1;
  --color-sand: #e8d5c4;
  --color-terracotta: #c4a77d;
  --color-olive: #8b9a7d;
  --color-forest: #5a6b52;
  --color-brown: #8b7355;
  --color-dark: #3d3a36;
  --color-white: #ffffff;
  --color-overlay: rgba(61, 58, 54, 0.85);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Quicksand', sans-serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  --radius-full: 50%;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition-fast: 0.2s ease;
  --transition-med: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.4rem); }

p {
  margin-bottom: var(--space-md);
}

.container {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition-med);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-olive), var(--color-forest));
  color: var(--color-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-forest);
  border: 1px solid var(--color-forest);
}

.btn-secondary:hover {
  background: var(--color-forest);
  color: var(--color-white);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  background-color: #f9f6f1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--color-forest);
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-olive);
  transition: var(--transition-med);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 200;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition-med);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xxl) var(--space-lg);
  padding-top: 5rem;
  transition: transform var(--transition-med);
  transform: translateY(-100%);
  z-index: 150;
  overflow-y: auto;
}

.nav-mobile.active {
  transform: translateY(0);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  display: block;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-sand);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-med);
  z-index: 140;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url(../visuals/bg-image-1.webp) center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90, 107, 82, 0.55) 0%, rgba(61, 58, 54, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 35rem;
  padding: var(--space-xxl) 0;
  background-color: rgba(249, 246, 241, 0.8);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-olive);
  margin-bottom: var(--space-md);
}

.hero h1 {
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.hero h1 em {
  font-style: italic;
  color: var(--color-forest);
}

.hero p {
  color: var(--color-brown);
  margin-bottom: var(--space-lg);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.petal-shape {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0.1;
  background: var(--color-olive);
}

.petal-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  transform: rotate(25deg);
}

.petal-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 15%;
  transform: rotate(-15deg);
  background: var(--color-terracotta);
}

.petal-3 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  left: 5%;
  transform: rotate(45deg);
}

.section {
  padding: var(--space-xxl) 0;
}

.section-wave {
  position: relative;
}

.section-wave::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--color-cream);
  clip-path: ellipse(60% 100% at 50% 0%);
}

.section-alt {
  background: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-brown);
}

.organic-grid {
  display: grid;
  gap: var(--space-lg);
}

.organic-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-med);
}

.organic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.organic-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.organic-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.organic-card:hover .organic-card-img img {
  transform: scale(1.05);
}

.organic-card-body {
  padding: var(--space-md);
}

.organic-card-body h3 {
  margin-bottom: var(--space-xs);
}

.organic-card-body p {
  font-size: 0.85rem;
  color: var(--color-brown);
  margin-bottom: var(--space-sm);
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-forest);
}

.flow-section {
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-sand) 100%);
  position: relative;
}

.flow-grid {
  display: grid;
  gap: var(--space-lg);
}

.flow-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.flow-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-olive), var(--color-forest));
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: 1.2rem;
}

.flow-content h4 {
  margin-bottom: var(--space-xs);
}

.flow-content p {
  font-size: 0.85rem;
  color: var(--color-brown);
  margin-bottom: 0;
}

.mosaic-section {
  position: relative;
  overflow: hidden;
}

.mosaic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, var(--color-sand) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, var(--color-olive) 0%, transparent 25%);
  opacity: 0.15;
}

.mosaic-content {
  position: relative;
  z-index: 2;
}

.mosaic-flex {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mosaic-text {
  flex: 1;
}

.mosaic-text h2 {
  margin-bottom: var(--space-md);
}

.mosaic-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mosaic-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
}

.mosaic-list i {
  color: var(--color-olive);
}

.testimonial-section {
  background: var(--color-forest);
  color: var(--color-white);
  position: relative;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q35 15 45 15 Q35 20 35 30 Q30 20 25 30 Q25 20 15 15 Q25 15 30 5' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.testimonial-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  font-size: 0.85rem;
  opacity: 0.8;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-cream) 100%);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: var(--space-sm);
}

.cta-section p {
  color: var(--color-brown);
  margin-bottom: var(--space-lg);
}

.contact-section {
  background: var(--color-white);
}

.contact-wrapper {
  display: grid;
  gap: var(--space-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-card {
  background: linear-gradient(135deg, var(--color-cream), var(--color-sand));
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.contact-card h3 {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-card i {
  color: var(--color-olive);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.85rem;
}

.contact-item i {
  color: var(--color-forest);
  margin-top: 3px;
}

.contact-form-wrapper {
  background: var(--color-cream);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-sand);
}

.contact-form-wrapper h3 {
  margin-bottom: var(--space-md);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-olive);
  box-shadow: 0 0 0 3px rgba(139, 154, 125, 0.2);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.8rem;
  cursor: pointer;
}

.form-checkbox input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--color-forest);
}

.form-checkbox a {
  color: var(--color-forest);
  text-decoration: underline;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-md);
  min-height: 250px;
  aspect-ratio: 16 / 9;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: none;
}

.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-lg) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
}

.footer-links a {
  font-size: 0.75rem;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-sand);
}

.footer-copy {
  font-size: 0.7rem;
  opacity: 0.6;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: var(--space-md);
  z-index: 1000;
  transform: translateY(100%);
  transition: var(--transition-med);
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
}

.cookie-text {
  font-size: 0.8rem;
}

.cookie-text a {
  color: var(--color-forest);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: var(--space-sm);
}

.page-header {
  padding: calc(var(--space-xxl) + 4rem) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 50%, var(--color-cream) 100%);
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--color-white);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: var(--color-brown);
  max-width: 35rem;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.8rem;
}

.breadcrumb a {
  color: var(--color-olive);
}

.breadcrumb span {
  color: var(--color-brown);
}

.content-section {
  padding: var(--space-xl) 0;
}

.content-prose {
  max-width: 45rem;
  margin: 0 auto;
}

.content-prose h2 {
  margin: var(--space-lg) 0 var(--space-md);
  font-size: 1.5rem;
}

.content-prose h3 {
  margin: var(--space-md) 0 var(--space-sm);
  font-size: 1.2rem;
}

.content-prose ul,
.content-prose ol {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.content-prose li {
  margin-bottom: var(--space-xs);
  list-style: disc;
}

.content-prose ol li {
  list-style: decimal;
}

.thank-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-cream), var(--color-sand));
}

.thank-content {
  max-width: 30rem;
  padding: var(--space-xl);
}

.thank-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--color-olive), var(--color-forest));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
}

.thank-content h1 {
  margin-bottom: var(--space-md);
}

.thank-content p {
  color: var(--color-brown);
  margin-bottom: var(--space-lg);
}

.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-cream), var(--color-sand));
}

.error-content {
  max-width: 30rem;
  padding: var(--space-xl);
}

.error-code {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 600;
  color: var(--color-olive);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-content h1 {
  margin-bottom: var(--space-md);
}

.error-content p {
  color: var(--color-brown);
  margin-bottom: var(--space-lg);
}

.products-grid {
  display: grid;
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-med);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-card-upgrade {
  border: 1px solid rgba(90, 107, 82, 0.12);
  display: flex;
  flex-direction: column;
}

.product-card-upgrade:hover {
  border-color: rgba(90, 107, 82, 0.25);
}

.product-visual {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-visual i {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
  transition: var(--transition-med);
}

.product-card-upgrade:hover .product-visual i {
  transform: scale(1.1);
}

.product-visual-romance {
  background: linear-gradient(145deg, #e8b4bc 0%, #c995a0 50%, #a67f8a 100%);
}

.product-visual-meadow {
  background: linear-gradient(145deg, #7dae7d 0%, #5a8f5a 50%, #4a7c4a 100%);
}

.product-visual-sunset {
  background: linear-gradient(145deg, #e8a87c 0%, #d4895c 50%, #b86b3a 100%);
}

.product-visual .product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
}

.product-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--color-forest);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.product-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-upgrade .product-body {
  padding: var(--space-lg);
}

.product-body h3 {
  margin-bottom: var(--space-xs);
}

.product-body p {
  font-size: 0.85rem;
  color: var(--color-brown);
  margin-bottom: var(--space-sm);
  flex: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-forest);
}

.about-hero {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  gap: var(--space-md);
}

.value-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-med);
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--color-sand), var(--color-terracotta));
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-white);
}

.value-card h4 {
  margin-bottom: var(--space-xs);
}

.value-card p {
  font-size: 0.85rem;
  color: var(--color-brown);
  margin-bottom: 0;
}

.timeline {
  position: relative;
  padding-left: var(--space-lg);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--color-sand);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-lg) - 5px);
  top: 0;
  width: 12px;
  height: 12px;
  background: var(--color-olive);
  border-radius: var(--radius-full);
}

.timeline-item h4 {
  margin-bottom: var(--space-xs);
}

.timeline-item p {
  font-size: 0.85rem;
  color: var(--color-brown);
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.stat-card {
  background: var(--color-forest);
  color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
}

@media (max-width: 480px) {
  .map-wrapper {
    width: 100%;
    max-width: 280px;
  }
}

@media (min-width: 480px) {
  .organic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  
  .burger {
    display: none;
  }
  
  .organic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mosaic-flex {
    flex-direction: row;
    align-items: center;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .cookie-inner {
    flex-direction: row;
    text-align: left;
  }
  
  .about-hero {
    grid-template-columns: 1fr 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .flow-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .hero-content {
    padding: var(--space-xl) 0;
  }
  
  .hero-btns {
    flex-direction: column;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
