@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600;700&family=Poiret+One&display=swap');

:root {
  --green: #007500;
  --green-dark: #004d00;
  --green-light: #00a300;
  --gold: #d4af37;
  --gold-light: #f0d878;
  --cream: #f5f0e1;
  --dark: #1a1a2e;
  --dark-soft: #2d2d44;
  --white: #ffffff;
  --text-light: #f8f8f8;
  --text-dark: #1a1a1a;
  --overlay: rgba(26, 26, 46, 0.72);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  --deco-border: 3px solid var(--gold);
  --transition: 0.3s ease;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: 'Poiret One', cursive;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.deco-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  margin: 1rem 0;
}

.deco-line.center {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
}

.disclaimer-bar {
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  line-height: 1.55;
  border-bottom: 2px solid var(--gold);
}

.footer-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(245, 240, 225, 0.85);
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 0.75rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  border-bottom: 2px solid var(--gold);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
}

.logo-link img {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: 'Poiret One', cursive;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.4rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  line-height: 1;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: calc(var(--header-h) + 28px);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 900px;
}

.hero-content h1 {
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--cream);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(135deg, var(--green) 25%, transparent 25%) -20px 0,
              linear-gradient(225deg, var(--green) 25%, transparent 25%) -20px 0,
              linear-gradient(315deg, var(--green) 25%, transparent 25%),
              linear-gradient(45deg, var(--green) 25%, transparent 25%);
  background-size: 40px 40px;
  background-color: var(--cream);
  opacity: 0.9;
}

section {
  padding: 5rem 0;
  position: relative;
}

.section-dark {
  background: var(--dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--gold-light);
}

.section-dark p,
.section-dark li {
  color: var(--cream);
}

.section-green {
  background: var(--green);
  color: var(--white);
}

.section-green h2,
.section-green h3 {
  color: var(--gold-light);
}

.section-green p,
.section-green li {
  color: var(--white);
}

.section-cream {
  background: var(--cream);
  color: var(--text-dark);
}

.section-gold {
  background: linear-gradient(135deg, #c9a227 0%, var(--gold-light) 50%, #c9a227 100%);
  color: var(--dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 700px;
  margin: 0.5rem auto 0;
  font-size: 1.05rem;
}

.overlap-wrap {
  position: relative;
  margin-top: -3rem;
  z-index: 5;
}

.overlap-card {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: var(--deco-border);
  position: relative;
  margin-bottom: 2rem;
}

.section-dark .overlap-card {
  background: var(--dark-soft);
  border-color: var(--gold);
}

.section-dark .overlap-card h3 {
  color: var(--gold-light);
}

.section-dark .overlap-card p,
.section-dark .overlap-card li {
  color: var(--cream);
}

.deco-corner::before,
.deco-corner::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
}

.deco-corner::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.deco-corner::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.section-dark .grid-2 {
  color: var(--cream);
}

.section-dark .grid-2 h2,
.section-dark .grid-2 h3 {
  color: var(--gold-light);
}

.section-dark .grid-2 p,
.section-dark .grid-2 li,
.section-dark .grid-2 strong {
  color: var(--cream);
}

.section-green .grid-2 {
  color: var(--white);
}

.section-green .grid-2 h2,
.section-green .grid-2 h3 {
  color: var(--gold-light);
}

.section-green .grid-2 p,
.section-green .grid-2 li,
.section-green .grid-2 strong {
  color: var(--white);
}

.section-gold .grid-2 {
  color: var(--dark);
}

.section-gold .grid-2 h2,
.section-gold .grid-2 h3 {
  color: var(--green-dark);
}

.section-gold .grid-2 p,
.section-gold .grid-2 li {
  color: var(--dark);
}

.section-green .overlap-card {
  color: var(--text-dark);
}

.section-green .overlap-card h2,
.section-green .overlap-card h3,
.section-green .overlap-card .grid-2 h2,
.section-green .overlap-card .grid-2 h3 {
  color: var(--green-dark);
}

.section-green .overlap-card p,
.section-green .overlap-card li,
.section-green .overlap-card .grid-2 p,
.section-green .overlap-card .grid-2 li,
.section-green .overlap-card .grid-2 strong {
  color: var(--text-dark);
}

.section-green .overlap-card .info-table td {
  color: var(--text-dark);
}

.section-dark .overlap-card h2,
.section-dark .overlap-card .grid-2 h2 {
  color: var(--gold-light);
}

.section-dark .overlap-card .grid-2 p,
.section-dark .overlap-card .grid-2 li,
.section-dark .overlap-card .grid-2 strong {
  color: var(--cream);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 1.75rem;
  border: 2px solid var(--gold);
  position: relative;
  transition: transform var(--transition);
}

.section-dark .card {
  background: var(--dark-soft);
}

.section-green .card {
  background: var(--green-dark);
  border-color: var(--gold-light);
}

.card:hover {
  transform: translateY(-4px);
}

.card i {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-dark .card i,
.section-green .card i {
  color: var(--gold-light);
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--green-dark);
}

.section-dark .card h3 {
  color: var(--gold-light);
}

.section-green .card h3 {
  color: var(--white);
}

.img-block {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.img-block img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.img-block .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 117, 0, 0.88);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.styled-list {
  list-style: none;
  padding: 0;
}

.styled-list li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.styled-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--green);
}

.section-dark .styled-list li::before,
.section-green .styled-list li::before {
  color: var(--gold-light);
}

.numbered-list {
  counter-reset: item;
  list-style: none;
}

.numbered-list li {
  counter-increment: item;
  padding: 1rem 0 1rem 3.5rem;
  position: relative;
  border-left: 3px solid var(--gold);
  margin-bottom: 1rem;
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0.75rem;
  top: 0.85rem;
  font-family: 'Poiret One', cursive;
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 700;
}

.section-dark .numbered-list li::before {
  color: var(--gold-light);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.info-table th,
.info-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border: 1px solid var(--gold);
}

.info-table th {
  background: var(--green);
  color: var(--white);
  font-weight: 600;
}

.info-table tr:nth-child(even) {
  background: rgba(0, 117, 0, 0.08);
}

.section-dark .info-table tr:nth-child(even) {
  background: rgba(212, 175, 55, 0.1);
}

.section-dark .info-table td {
  color: var(--cream);
}

.section-green .info-table td {
  color: var(--white);
}

.section-green .info-table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.15);
}

.highlight-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 2rem;
  border-left: 5px solid var(--gold);
  margin: 2rem 0;
}

.highlight-box h3 {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.faq-item {
  border: 2px solid var(--gold);
  margin-bottom: 1rem;
  background: var(--white);
}

.section-dark .faq-item {
  background: var(--dark-soft);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-dark .faq-question {
  color: var(--gold-light);
}

.faq-question i {
  color: var(--green);
  transition: transform var(--transition);
}

.section-dark .faq-question i {
  color: var(--gold);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-dark);
}

.section-dark .faq-answer-inner {
  color: var(--cream);
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.event-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 2px solid var(--gold);
  background: var(--white);
  margin-bottom: 1rem;
  align-items: flex-start;
}

.section-dark .event-card {
  background: var(--dark-soft);
}

.event-date {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 0.5rem;
  clip-path: polygon(0 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.event-date .day {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  font-family: 'Poiret One', cursive;
}

.event-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-info h4 {
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.section-dark .event-info h4 {
  color: var(--gold-light);
}

.section-dark .event-info p {
  color: var(--cream);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.safety-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold);
}

.safety-item i {
  font-size: 1.8rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.contact-section .grid-2 {
  gap: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--text-dark);
}

.section-dark .form-group label,
.section-dark .checkbox-group label {
  color: var(--cream);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gold);
  background: var(--white);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input {
  margin-top: 0.3rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.checkbox-group label {
  font-size: 0.9rem;
  font-weight: 400;
}

.map-wrap {
  border: 3px solid var(--gold);
  overflow: hidden;
  margin-top: 1.5rem;
}

.map-wrap iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-grid h3 {
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--cream);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 240, 225, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 3px solid var(--gold);
  padding: 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.visible {
  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;
  color: var(--cream);
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-buttons .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

.btn-reject {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}

.btn-reject:hover {
  background: var(--cream);
  color: var(--dark);
}

.btn-settings {
  background: var(--dark-soft);
  border-color: var(--gold);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: var(--cream);
  max-width: 520px;
  width: 100%;
  padding: 2rem;
  border: 3px solid var(--gold);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  gap: 1rem;
}

.cookie-category p {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-top: 0.25rem;
}

.toggle-switch {
  position: relative;
  width: 50px;
  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 var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--green);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.policy-content {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 4rem;
}

.policy-content h1 {
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.policy-content h2 {
  color: var(--green);
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.policy-content ul,
.policy-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--green-dark);
  margin: 1.5rem 0 0.75rem;
  font-size: 1.15rem;
}

.policy-content .info-table {
  margin: 1rem 0 1.5rem;
}

.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  margin-top: calc(var(--header-h) + 28px);
}

.success-box {
  background: var(--white);
  border: 3px solid var(--gold);
  padding: 3rem 2rem;
  max-width: 600px;
  box-shadow: var(--shadow);
}

.success-box i {
  font-size: 4rem;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.success-box h1 {
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.stat-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  min-width: 140px;
  border: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

.stat-item .num {
  font-family: 'Poiret One', cursive;
  font-size: 2.2rem;
  color: var(--gold-light);
  display: block;
}

.stat-item .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.zigzag-section {
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  padding: 6rem 0;
}

.icon-list {
  list-style: none;
}

.icon-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
}

.icon-list i {
  color: var(--green);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.section-dark .icon-list i,
.section-green .icon-list i {
  color: var(--gold-light);
}

@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) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + 28px);
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    border-bottom: 2px solid var(--gold);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .main-nav.open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .safety-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .overlap-wrap {
    margin-top: -1.5rem;
  }

  .overlap-card {
    padding: 1.5rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: 85vh;
  }

  .img-block img {
    height: 240px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .logo-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .header-inner {
    padding: 0 0.75rem;
  }

  .logo-link img {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 0.7rem;
  }

  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.8rem;
  }

  .overlap-card {
    padding: 1rem;
  }

  .card {
    padding: 1.25rem;
  }

  .event-card {
    flex-direction: column;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .stat-row {
    gap: 0.75rem;
  }

  .stat-item {
    min-width: 100%;
  }
}

.editorial-notice {
  background: var(--white);
  border: 2px solid var(--green);
  border-left: 5px solid var(--gold);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.editorial-notice h3 {
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.editorial-notice p,
.editorial-notice li {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.editorial-notice ul {
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

.hero-notice {
  font-size: 0.82rem;
  color: var(--cream);
  margin-top: 1.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  opacity: 0.95;
}

.compliance-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.compliance-badge span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(0, 117, 0, 0.12);
  border: 1px solid var(--green);
  font-size: 0.8rem;
  color: var(--green-dark);
}

.section-dark .compliance-badge span {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  color: var(--cream);
}

.resource-list {
  list-style: none;
  padding: 0;
}

.resource-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.resource-list a {
  font-weight: 600;
}

.resource-list p {
  font-size: 0.9rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.not-box {
  background: rgba(0, 117, 0, 0.08);
  border: 2px solid var(--green);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.section-dark .not-box {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
}

.section-dark .not-box p,
.section-dark .not-box li {
  color: var(--cream);
}

.not-box li {
  padding: 0.35rem 0;
}
