*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #60a201;
  --primary-dark: #4a7a01;
  --primary-light: #8bc34a;
  --dark: #1a2e0a;
  --dark-alt: #243318;
  --light: #f5f8f0;
  --light-alt: #e8f0dc;
  --white: #ffffff;
  --text: #1a2e0a;
  --text-light: #f5f8f0;
  --text-muted: #4a5c3a;
  --border: #c5d4b0;
  --shadow: rgba(26, 46, 10, 0.12);
  --max-width: 1200px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--dark);
  color: var(--text-light);
  font-size: 0.8125rem;
  text-align: center;
  padding: 0.625rem 1rem;
  line-height: 1.55;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--primary);
  box-shadow: 0 2px 12px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  border-radius: 4px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--primary-dark);
  font-size: 1.5rem;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 46, 10, 0.82), rgba(96, 162, 1, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 720px;
}

.hero-content h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  color: var(--light);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}

.hero-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-form-consent {
  text-align: left;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.hero-consent-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}

.hero-consent-item input {
  margin-top: 0.2rem;
  width: auto;
  flex-shrink: 0;
}

.hero-consent-item a {
  color: var(--primary-light);
  text-decoration: underline;
}

.hero-consent-optional {
  opacity: 0.9;
}

.hero-form-row input[type="email"] {
  flex: 1 1 220px;
  padding: 0.875rem 1rem;
  border: 2px solid var(--white);
  border-radius: 4px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.hero-form-row input[type="email"]:focus {
  outline: 3px solid var(--primary-light);
}

.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-align: center;
}

.btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.cookie-banner .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.cookie-banner .btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.cookie-modal-content .btn-outline {
  color: var(--primary-dark);
  border-color: var(--primary);
}

.cookie-modal-content .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark-alt);
  border-color: var(--dark-alt);
  color: var(--white);
}

section {
  padding: 4rem 0;
}

.section-light {
  background: var(--light);
  color: var(--text);
}

.section-dark {
  background: var(--dark);
  color: var(--text-light);
}

.section-primary {
  background: var(--primary);
  color: var(--white);
}

.section-alt {
  background: var(--light-alt);
  color: var(--text);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.section-header p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

.section-dark .section-header p,
.section-primary .section-header p {
  color: rgba(245, 248, 240, 0.9);
}

.section-dark a {
  color: var(--primary-light);
}

.icon-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.icon-heading i {
  font-size: 1.75rem;
  color: var(--primary);
}

.section-dark .icon-heading i,
.section-primary .icon-heading i {
  color: var(--primary-light);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
  color: #000;
}

.grid-2 p,
.grid-2 li,
.grid-2 span:not(.calorie-badge),
.grid-2 h2,
.grid-2 h3,
.grid-2 strong {
  color: #000;
}

.section-dark .grid-2 {
  color: #000;
}

.section-dark .grid-2 .feature-list,
.section-light .grid-2 .feature-list,
.section-light .grid-2 .split-content,
.section-dark .grid-2 .split-content {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow);
  color: #000;
}

.section-dark .grid-2 .feature-list li,
.section-light .grid-2 .feature-list li {
  color: #000;
  border-bottom-color: var(--border);
}

.section-dark .grid-2 .feature-list li i,
.section-light .grid-2 .feature-list li i {
  color: var(--primary);
}

.section-primary .grid-2 .split-content {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow);
  color: #000;
}

.section-primary .grid-2 .split-content .icon-heading i {
  color: var(--primary);
}

.section-primary .grid-2 .split-content h2,
.section-primary .grid-2 .split-content h3 {
  color: #000;
}

.section-primary .grid-2 .split-content .btn-outline {
  color: var(--primary-dark);
  border-color: var(--primary);
}

.section-primary .grid-2 .split-content .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 4px 16px var(--shadow);
  border-left: 4px solid var(--primary);
}

.section-dark .card {
  background: var(--dark-alt);
  color: var(--text-light);
  border-left-color: var(--primary-light);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.section-dark .card h3 {
  color: var(--primary-light);
}

.card p {
  font-size: 0.975rem;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.section-dark .feature-list li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.feature-list li i {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-dark .feature-list li i,
.section-primary .feature-list li i {
  color: var(--primary-light);
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.numbered-steps li {
  counter-increment: step;
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  color: #000;
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

.info-table th,
.info-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.info-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.info-table tr:nth-child(even) {
  background: rgba(96, 162, 1, 0.08);
}

.section-dark .info-table th {
  background: var(--primary-dark);
}

.section-dark .info-table td {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.section-dark .info-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

.image-block {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px var(--shadow);
}

.image-block img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.image-caption {
  background: var(--dark);
  color: var(--text-light);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.faq-list details {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px var(--shadow);
  overflow: hidden;
}

.section-dark .faq-list details {
  background: var(--dark-alt);
}

.faq-list summary {
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  list-style: none;
}

.section-dark .faq-list summary {
  color: var(--text-light);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  color: var(--primary);
  transition: transform 0.2s;
}

.faq-list details[open] summary i {
  transform: rotate(90deg);
}

.faq-list details p {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.975rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.event-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  border-top: 4px solid var(--primary);
  box-shadow: 0 4px 12px var(--shadow);
}

.section-dark .event-card {
  background: var(--dark-alt);
}

.event-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.event-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.9375rem;
}

.highlight-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.highlight-box h3 {
  margin-bottom: 0.75rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: var(--primary);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.section-dark .tag {
  background: var(--primary-dark);
}

.recipe-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}

.recipe-card-header {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.recipe-card-body {
  padding: 1.25rem;
}

.recipe-card-body ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}

.calorie-badge {
  background: var(--dark);
  color: var(--white);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.grid-2 .calorie-badge {
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  font-size: 0.9375rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 1rem;
  color: var(--text);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.checkbox-group input {
  margin-top: 0.25rem;
  width: auto;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h3 {
  color: var(--primary-light);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-grid a {
  color: var(--light);
  font-size: 0.9375rem;
  display: block;
  padding: 0.25rem 0;
}

.footer-grid a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(245, 248, 240, 0.75);
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--primary-dark);
}

.policy-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 0.75rem;
  font-size: 0.975rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.success-page i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.success-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.success-page p {
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--text-light);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px var(--shadow);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1 1 320px;
  font-size: 0.875rem;
}

.cookie-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.cookie-text p {
  margin: 0;
  line-height: 1.55;
}

.cookie-text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  flex: 0 1 360px;
  min-width: 260px;
}

.cookie-buttons .btn {
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
}

.btn-cookie-equal {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--white);
  font-weight: 600;
}

.btn-cookie-equal:hover {
  background: var(--light);
  color: var(--dark);
  border-color: var(--light);
}

.btn-cookie-manage {
  grid-column: 1 / -1;
  background: transparent;
  color: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.btn-cookie-manage:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: var(--primary-light);
}

.btn-cookie-equal-dark {
  background: var(--light-alt);
  color: var(--dark);
  border: 2px solid var(--border);
  font-weight: 600;
}

.btn-cookie-equal-dark:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cookie-modal-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}

.cookie-settings-link {
  cursor: pointer;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 10, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  color: var(--text);
  border-radius: 8px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.cookie-modal-content h2 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-category h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.cookie-category p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.2s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cookie-modal-actions #cookie-save-settings {
  grid-column: 1 / -1;
}

.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 46, 10, 0.85), rgba(96, 162, 1, 0.5));
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  text-align: left;
  padding: 3rem 1.25rem;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--light);
  font-size: 1.125rem;
  max-width: 600px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
}

.section-dark .stat-item {
  background: var(--dark-alt);
}

.stat-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.section-dark .stat-item strong {
  color: var(--primary-light);
}

.stat-item span {
  font-size: 0.8125rem;
}

.split-content h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: #000;
}

.section-dark .split-content h3 {
  color: var(--primary-light);
}

.grid-2 .highlight-box {
  color: var(--white);
}

.split-content p {
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 8px 24px var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .grid-2,
  .grid-3,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3rem 0;
  }

  .hero-form-row {
    flex-direction: column;
  }

  .hero-form input[type="email"],
  .hero-form .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }

  .logo-link img {
    height: 32px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    grid-template-columns: 1fr;
    min-width: 100%;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .cookie-modal-actions {
    grid-template-columns: 1fr;
  }

  .map-wrapper iframe {
    height: 280px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .hero-content {
    padding: 1.5rem 0.75rem;
  }

  .card {
    padding: 1.25rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
}
