@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary: #ecc8c9;
  --primary-dark: #d4a8a9;
  --primary-light: #f5e4e5;
  --accent: #5c3d3e;
  --accent-light: #7a5556;
  --text: #2c2424;
  --text-light: #4a3f3f;
  --white: #ffffff;
  --bg-alt: #f9f0f0;
  --bg-dark: #3d2b2c;
  --shadow: 0 2px 8px rgba(60, 43, 44, 0.12);
  --shadow-lg: 0 8px 24px rgba(60, 43, 44, 0.18);
  --radius: 8px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', 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(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-light);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.disclaimer-bar {
  background: var(--bg-dark);
  color: var(--primary-light);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.editorial-notice {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--primary-dark);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 0 0 28px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.editorial-notice strong {
  color: var(--accent);
}

.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link img {
  width: 48px;
  height: 48px;
}

.nav-desktop {
  display: flex;
  gap: 24px;
}

.nav-desktop a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent);
  border-bottom-color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--accent);
  font-size: 1.6rem;
}

.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--primary);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.nav-mobile.open {
  display: block;
  max-height: 500px;
  padding: 12px 0;
}

.nav-mobile a {
  display: block;
  padding: 12px 24px;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--primary-light);
}

.nav-mobile a:hover {
  background: var(--primary-light);
  color: var(--accent);
}

.hero {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(92, 61, 62, 0.08) 0%, transparent 55%),
    linear-gradient(145deg, #faf2f2 0%, var(--primary-light) 35%, var(--primary) 70%, #e8b8b9 100%);
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-blob--1 {
  width: 320px;
  height: 320px;
  top: -100px;
  right: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(236, 200, 201, 0.2) 70%);
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-blob--2 {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: 5%;
  background: radial-gradient(circle, rgba(92, 61, 62, 0.07) 0%, transparent 70%);
  animation: heroFloat 10s ease-in-out infinite reverse;
}

.hero-blob--3 {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 45%;
  background: rgba(255, 255, 255, 0.35);
  animation: heroFloat 6s ease-in-out infinite 1s;
}

.hero-ring {
  position: absolute;
  width: 140px;
  height: 140px;
  top: 20%;
  right: 38%;
  border: 2px dashed rgba(92, 61, 62, 0.15);
  border-radius: 50%;
  animation: heroSpin 30s linear infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}

@keyframes heroSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero .container,
.hero-grid {
  position: relative;
  z-index: 1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(92, 61, 62, 0.12);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(92, 61, 62, 0.08);
}

.hero-badge i {
  font-size: 1rem;
  color: var(--accent);
}

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
}

.hero-content h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 4px;
  margin-top: 14px;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 3px solid var(--accent);
  border-radius: 20px;
  opacity: 0.25;
  z-index: 0;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 16px;
  opacity: 0.12;
  z-index: 0;
}

.hero-image-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(92, 61, 62, 0.2);
  z-index: 1;
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}

.hero-image:hover .hero-image-inner {
  transform: rotate(0deg) scale(1.02);
}

.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-primary {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 85%, rgba(236, 200, 201, 0.9) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.8) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(212, 168, 169, 0.3) 0%, transparent 60%),
    linear-gradient(160deg, #fdf6f6 0%, var(--primary-light) 30%, var(--primary) 100%);
}

.section-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(92, 61, 62, 0.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.section-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,40 Q300,80 600,40 T1200,40 L1200,80 L0,80 Z' fill='%23ffffff' fill-opacity='0.25'/%3E%3Cpath d='M0,50 Q400,10 800,50 T1200,50 L1200,80 L0,80 Z' fill='%23ffffff' fill-opacity='0.15'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: 100% 80px;
  pointer-events: none;
}

.section-primary .container {
  position: relative;
  z-index: 1;
}

.section-primary .card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.section-primary .quote-block {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--primary-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p,
.section-dark li {
  color: var(--primary-light);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-subtitle {
  color: var(--primary);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
}

.card-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-dark .card-icon {
  color: var(--primary);
}

.card h3 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.feelgood-list {
  max-width: 640px;
  margin: 0 auto;
}

.feelgood-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.4s ease, transform var(--transition), box-shadow 0.4s ease;
  user-select: none;
}

.feelgood-item.checked {
  background: var(--primary-light);
  box-shadow: 0 2px 12px rgba(92, 61, 62, 0.1);
}

.feelgood-item:hover {
  transform: translateX(4px);
}

.feelgood-checkbox {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.feelgood-checkbox i {
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}

.feelgood-item.checked .feelgood-checkbox {
  background: var(--accent);
  border-color: var(--accent);
}

.feelgood-item.checked .feelgood-checkbox i {
  opacity: 1;
}

.feelgood-text {
  font-size: 1.05rem;
  color: var(--text);
  transition: color 0.4s ease, text-decoration-color 0.4s ease;
}

.feelgood-item.checked .feelgood-text {
  color: var(--accent-light);
  text-decoration: line-through;
  text-decoration-color: var(--primary-dark);
}

.info-list {
  padding-left: 0;
}

.info-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-light);
}

.info-list li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.1rem;
}

.numbered-steps {
  counter-reset: step;
}

.numbered-steps li {
  counter-increment: step;
  padding: 16px 16px 16px 56px;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  color: var(--text-light);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.highlight-box {
  background: var(--primary);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
}

.highlight-box p {
  color: var(--text);
  font-weight: 500;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
  color: var(--text-light);
}

.faq-item.open .faq-answer {
  padding: 0 24px 18px;
  max-height: 500px;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.events-table th,
.events-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--primary-light);
}

.events-table th {
  background: var(--accent);
  color: var(--white);
  font-weight: 500;
}

.events-table td {
  color: var(--text-light);
}

.events-table tr:last-child td {
  border-bottom: none;
}

.events-table tr:hover td {
  background: var(--primary-light);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.safety-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.safety-item i {
  font-size: 1.6rem;
  color: var(--accent);
  min-width: 28px;
}

.safety-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-check input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.form-check label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-info-block {
  padding: 28px;
  background: var(--primary-light);
  border-radius: var(--radius);
}

.contact-info-block h3 {
  color: var(--accent);
  margin-bottom: 16px;
}

.contact-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.contact-info-item i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 3px;
}

.contact-info-item span,
.contact-info-item a {
  color: var(--text-light);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.site-footer {
  background: var(--bg-dark);
  color: var(--primary-light);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-grid h4 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--primary-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(236, 200, 201, 0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--primary);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--primary-light);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-cookie-reject {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-cookie-reject:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.cookie-settings-panel {
  display: none;
  width: 100%;
  padding-top: 16px;
  border-top: 1px solid rgba(236, 200, 201, 0.2);
  margin-top: 12px;
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(236, 200, 201, 0.15);
}

.cookie-category label {
  font-size: 0.9rem;
}

.cookie-category small {
  display: block;
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 2px;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #666;
  border-radius: 26px;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}

.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;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.policy-content h1 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 24px;
}

.policy-content h2 {
  font-size: 1.4rem;
  color: var(--accent);
  margin: 28px 0 12px;
}

.policy-content p,
.policy-content li {
  color: var(--text-light);
  margin-bottom: 12px;
}

.policy-content ul {
  padding-left: 24px;
  list-style: disc;
}

.policy-content ul li {
  list-style: disc;
}

.success-page {
  text-align: center;
  padding: 100px 20px;
  background: var(--primary-light);
  min-height: 60vh;
}

.success-page i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.success-page h1 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.success-page p {
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.stat-row {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-item strong {
  display: block;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero .container,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 50px 0 60px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-image {
    margin-top: 10px;
  }

  .hero-image-inner {
    transform: rotate(0deg);
  }

  .hero-ring {
    display: none;
  }

  .hero-blob--1 {
    width: 200px;
    height: 200px;
  }

  .hero-image img {
    height: 260px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero {
    padding: 36px 0 44px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content h1::after {
    width: 48px;
    height: 3px;
    margin-top: 10px;
  }

  .hero-image::before {
    inset: -8px -8px 8px 8px;
  }

  .hero-blob--3 {
    display: none;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .header-inner {
    padding: 10px 14px;
  }

  .section-image img {
    height: 200px;
  }

  .events-table th,
  .events-table td {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .logo-link img {
    width: 36px;
    height: 36px;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
