/* Thisdomaindontexist123.ddd — Y2K / Frutiger Aero */
:root {
  --primary: #7A942C;
  --primary-dark: #5a7020;
  --primary-light: #9bb84a;
  --accent: #4ecdc4;
  --accent-blue: #6eb5ff;
  --bg-light: #e8f4f8;
  --bg-mint: #d4f0e8;
  --bg-lime: #eef5d6;
  --bg-sky: #cce8ff;
  --bg-white: #ffffff;
  --text-dark: #1a2e1a;
  --text-muted: #3d4f3d;
  --glass: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(122, 148, 44, 0.35);
  --shadow: 0 8px 32px rgba(122, 148, 44, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: linear-gradient(160deg, var(--bg-light) 0%, var(--bg-mint) 40%, var(--bg-lime) 100%);
  line-height: 1.7;
  min-height: 100vh;
  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(--accent);
}

ul, ol {
  padding-left: 1.4rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Disclaimer bar */
.disclaimer-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  line-height: 1.4;
}

.trust-notice {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.trust-notice h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Header */
.site-header {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-link img {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 1.25rem;
  padding: 0;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.menu-toggle:hover {
  background: var(--primary-dark);
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.hero-slides {
  display: flex;
  transition: transform 0.6s ease;
}

.hero-slide {
  min-width: 100%;
  position: relative;
  height: 420px;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 148, 44, 0.85) 0%, rgba(78, 205, 196, 0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 3rem;
}

.hero-overlay h1 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-overlay p {
  color: #fff;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  max-width: 600px;
  margin-bottom: 1.25rem;
}

.hero-btn {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: var(--primary);
}

.hero-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-dot.active {
  background: #fff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--primary-dark);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-arrow:hover {
  background: #fff;
}

.hero-prev { left: 1rem; }
.hero-next { right: 1rem; }

/* Sections */
section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--bg-sky);
}

.section-mint {
  background: var(--bg-mint);
}

.section-lime {
  background: var(--bg-lime);
}

.section-white {
  background: var(--bg-white);
}

.section-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}

.section-primary h2,
.section-primary h3,
.section-primary p,
.section-primary li {
  color: #fff;
}

.section-primary a {
  color: #fff;
  text-decoration: underline;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--primary-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title i {
  color: var(--primary);
  font-size: 1.5rem;
}

.section-primary .section-title {
  color: #fff;
}

.section-primary .section-title i {
  color: #fff;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.section-primary .section-intro {
  color: rgba(255,255,255,0.92);
}

/* Glass cards */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Image + text blocks */
.media-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.media-block.reverse {
  direction: rtl;
}

.media-block.reverse > * {
  direction: ltr;
}

.media-block img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

/* Feature cards */
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.feature-card h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Numbered list styling */
.numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: item;
}

.numbered-list li {
  counter-increment: item;
  padding: 1rem 1rem 1rem 3.5rem;
  margin-bottom: 0.75rem;
  background: var(--glass);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
  position: relative;
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Color guide chips */
.color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.color-chip {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}

.chip-red { background: #c0392b; }
.chip-orange { background: #e67e22; }
.chip-yellow { background: #d4ac0d; color: var(--text-dark); }
.chip-green { background: var(--primary); }
.chip-blue { background: #2980b9; }
.chip-purple { background: #8e44ad; }

/* FAQ accordion */
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 1.25rem;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.25rem 1rem;
}

/* Events calendar */
.events-list {
  list-style: none;
  padding: 0;
}

.event-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--glass);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  border-left: 4px solid var(--accent);
}

.event-date {
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.5rem;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}

.event-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.event-info h4 {
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.event-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Health guidelines */
.guideline-box {
  background: linear-gradient(135deg, rgba(122,148,44,0.12), rgba(78,205,196,0.12));
  border: 2px dashed var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1rem 0;
}

.guideline-box h3 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guideline-box ul {
  color: var(--text-muted);
}

.guideline-box li {
  margin-bottom: 0.4rem;
}

/* Pair cards */
.pair-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--glass);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--glass-border);
}

.pair-icon {
  font-size: 1.75rem;
  color: var(--primary);
  flex-shrink: 0;
}

.pair-card h4 {
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.pair-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat-box {
  text-align: center;
  background: var(--glass);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  border: 1px solid var(--glass-border);
}

.stat-box .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-box .label {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact form */
.contact-form {
  background: var(--glass);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(122,148,44,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122,148,44,0.4);
  color: #fff;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Contact info */
.contact-info-block {
  padding: 1.5rem;
}

.contact-info-block h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.contact-detail i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

.map-wrap iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.map-placeholder {
  background: var(--glass);
  border: 2px dashed var(--glass-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.map-placeholder p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 420px;
}

.legal-footer-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--primary-dark), #3d4a18);
  color: #fff;
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid var(--glass-border);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.cookie-accept {
  background: var(--primary);
  color: #fff;
}

.cookie-reject {
  background: #fff;
  color: var(--text-dark);
  border: 2px solid var(--text-muted);
}

.cookie-settings-btn {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.cookie-category h4 {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cookie-category p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.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.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.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: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Policy pages */
.policy-content {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin: 2rem 0;
}

.policy-content h1 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.policy-content h2 {
  color: var(--primary);
  margin: 1.5rem 0 0.75rem;
  font-size: 1.2rem;
}

.policy-content h3 {
  color: var(--primary-dark);
  margin: 1.25rem 0 0.5rem;
  font-size: 1.05rem;
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin-bottom: 1rem;
}

/* Success page */
.success-box {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--glass);
  border-radius: var(--radius);
  margin: 3rem auto;
  max-width: 600px;
  box-shadow: var(--shadow);
}

.success-box i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.success-box h1 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.success-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 3rem 0;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 700px;
  margin: 0 auto;
}

/* Bubble decorations (Y2K) */
.bubbles {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(122,148,44,0.2));
  opacity: 0.4;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 4rem 1.5rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--glass-border);
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    display: none;
  }

  .nav-overlay.show {
    display: block;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .media-block {
    grid-template-columns: 1fr;
  }

  .media-block.reverse {
    direction: ltr;
  }

  .hero-slide {
    height: 320px;
  }

  .hero-overlay {
    padding: 1.5rem;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .event-item {
    grid-template-columns: 60px 1fr;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .header-inner {
    padding: 0.5rem 0.75rem;
  }

  .logo-text {
    font-size: 0.85rem;
  }

  .logo-link img {
    width: 36px;
    height: 36px;
  }

  .hero-slide {
    height: 280px;
  }

  .hero-overlay h1 {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .disclaimer-bar {
    font-size: 0.7rem;
  }
}
