:root {
  --accent: #cfd700;
  --accent-dark: #8f9400;
  --dark: #2c2f36;
  --dark-soft: #eef1e8;
  --light: #fdfcf9;
  --light-alt: #f5f4ef;
  --surface: #ffffff;
  --surface-muted: #eef0ea;
  --text-dark: #2c2f36;
  --text-light: #fdfcf9;
  --text-muted: #646860;
  --border: rgba(207, 215, 0, 0.45);
  --border-soft: rgba(44, 47, 54, 0.1);
  --shadow: 0 8px 32px rgba(44, 47, 54, 0.08);
  --radius: 4px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--surface);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--light-alt);
  color: var(--text-dark);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
}

.disclaimer-bar p {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.88;
}

.disclaimer-bar p + p {
  margin-top: 0.35rem;
}

.disclaimer-bar a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.disclaimer-bar a:hover {
  color: var(--text-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 16px rgba(44, 47, 54, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
}

.logo-link:hover {
  color: var(--accent);
}

.logo-link img {
  width: 44px;
  height: 44px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--accent);
  font-size: 1.75rem;
  line-height: 1;
}

.section {
  padding: 4.5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}

.hero-collage,
.site-header,
.disclaimer-bar,
.cookie-banner,
.success-page,
.policy-content {
  content-visibility: visible;
}

.section-dark {
  background: var(--surface-muted);
  color: var(--text-dark);
}

.section-dark a {
  color: var(--accent-dark);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-dark);
}

.section-accent {
  background: #cfd700;
  color: #1a1d24;
}

.section-accent h2,
.section-accent h3 {
  color: #1a1d24;
}

.section-light-alt {
  background: var(--light-alt);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-dark .section-label {
  color: var(--accent);
}

.section-accent .section-label {
  color: #252932;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header p.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 680px;
}

.section-dark .section-header p.lead {
  color: var(--text-muted);
}

.z-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.z-layout.reverse {
  direction: rtl;
}

.z-layout.reverse > * {
  direction: ltr;
}

.z-content p {
  margin-bottom: 1rem;
}

.z-content p:last-child {
  margin-bottom: 0;
}

.z-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.z-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.z-image--height {
  height: 100%;
  align-self: stretch;
  display: flex;
}

.z-image--height img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
}

.z-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  z-index: 1;
}

.hero-collage {
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--light);
  color: var(--text-dark);
  overflow: hidden;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem 3rem 3rem;
  z-index: 2;
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-text p {
  font-size: 1.15rem;
  margin: 1.5rem 0 2rem;
  max-width: 480px;
  color: var(--text-muted);
}

.hero-collage-images {
  position: relative;
  min-height: 400px;
}

.hero-fragment {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}

.hero-fragment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fragment.f1 {
  top: 8%;
  left: 5%;
  width: 55%;
  height: 45%;
  transform: rotate(-2deg);
}

.hero-fragment.f2 {
  top: 35%;
  right: 8%;
  width: 48%;
  height: 38%;
  transform: rotate(3deg);
}

.hero-fragment.f3 {
  bottom: 8%;
  left: 20%;
  width: 42%;
  height: 35%;
  transform: rotate(-1deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--accent-dark);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--dark);
}

.btn-dark {
  background: var(--text-dark);
  color: var(--text-light);
  border-color: var(--text-dark);
}

.btn-dark:hover {
  background: #3d4149;
  color: var(--accent);
}

.icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.icon-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-list .bx {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-dark .icon-list .bx {
  color: var(--accent);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.section-dark .card {
  background: var(--surface);
  border-color: var(--border-soft);
  color: var(--text-dark);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card .bx {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.numbered-list {
  counter-reset: item;
  list-style: none;
}

.numbered-list li {
  counter-increment: item;
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.numbered-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.numbered-list li::before {
  content: counter(item, decimal-leading-zero);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.feature-sidebar {
  background: var(--surface);
  color: var(--text-dark);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.feature-sidebar h3 {
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  background: rgba(207, 215, 0, 0.08);
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
}

.section-dark .quote-block {
  background: rgba(207, 215, 0, 0.12);
  color: var(--text-dark);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-5px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.section-dark .faq-item {
  border-color: var(--border-soft);
}

.faq-question {
  width: 100%;
  background: var(--light-alt);
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.section-dark .faq-question {
  background: var(--surface);
  color: var(--text-dark);
}

.faq-question .bx {
  color: var(--accent);
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.faq-item.open .faq-question .bx {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
  background: var(--light);
}

.section-dark .faq-answer {
  background: var(--light-alt);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 1.25rem 1.5rem;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
}

.events-table th,
.events-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.events-table th {
  background: var(--light-alt);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
}

.events-table tr:nth-child(even) td {
  background: rgba(207, 215, 0, 0.06);
}

.section-dark .events-table tr:nth-child(even) td {
  background: rgba(207, 215, 0, 0.04);
}

.health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.health-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}

.section-dark .health-item {
  background: var(--surface);
}

.health-item .bx {
  font-size: 1.75rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item .bx {
  font-size: 1.5rem;
  color: var(--accent);
}

.contact-form {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius);
  color: var(--text-dark);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--light);
  color: var(--text-dark);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
  accent-color: var(--accent);
}

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--light-alt);
  color: var(--text-dark);
  padding: 3rem 0 1.5rem;
  border-top: 3px solid var(--accent);
}

.footer-business {
  grid-column: 1 / -1;
  padding: 1.5rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-business a {
  color: var(--text-dark);
}

.footer-business a:hover {
  color: var(--accent-dark);
}

.footer-compliance-text {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.compliance-notice {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.section-dark .compliance-notice {
  background: var(--surface);
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-grid a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-grid > div > p {
  margin-top: 1rem;
  color: var(--text-muted) !important;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface);
  color: var(--text-dark);
  padding: 1.5rem;
  box-shadow: 0 -4px 24px rgba(44, 47, 54, 0.12);
  border-top: 3px solid var(--accent);
  transform: translateY(100%);
  transition: transform 0.4s 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: 1.25rem;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--accent-dark);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-settings-panel {
  display: none;
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
  gap: 1rem;
}

.cookie-category label {
  font-size: 0.85rem;
  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;
  cursor: pointer;
  inset: 0;
  background: var(--light-alt);
  border-radius: 26px;
  transition: var(--transition);
  border: 1px solid var(--border-soft);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--surface);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(44, 47, 54, 0.15);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
  background: var(--dark);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.policy-content h1 {
  margin-bottom: 1rem;
}

.policy-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-content code {
  font-size: 0.9em;
  background: var(--light-alt);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.success-box {
  max-width: 560px;
}

.success-box .bx {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.type-grid-seven {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.type-card {
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.type-card:nth-child(odd) {
  background: var(--surface);
  color: var(--text-dark);
  border: 1px solid var(--border-soft);
}

.type-card:nth-child(even) {
  background: var(--accent);
  color: var(--dark);
}

.type-card .type-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
}

.stagger-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stagger-blocks .block-a {
  margin-top: 3rem;
}

.stagger-blocks .block-b {
  margin-top: 0;
}

.inline-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  min-width: 140px;
  flex: 1;
}

.stat-item .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 992px) {
  .hero-collage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding: 3rem 1.25rem;
    order: 1;
  }

  .hero-collage-images {
    min-height: 320px;
    order: 0;
  }

  .z-layout,
  .contact-section,
  .split-feature,
  .stagger-blocks {
    grid-template-columns: 1fr;
  }

  .z-layout.reverse {
    direction: ltr;
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stagger-blocks .block-a {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 8px 24px rgba(44, 47, 54, 0.08);
  }

  .main-nav.open {
    max-height: 400px;
    padding: 1rem;
  }

  .main-nav a {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-soft);
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    padding: 3rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .events-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .hero-fragment.f1 {
    width: 65%;
    height: 40%;
  }

  .hero-fragment.f2 {
    width: 55%;
    height: 35%;
  }

  .hero-fragment.f3 {
    width: 50%;
    height: 30%;
  }

  .inline-stats {
    flex-direction: column;
  }

  .map-wrap iframe {
    height: 280px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .header-inner {
    padding: 0 0.75rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .hero-text {
    padding: 2rem 0.75rem;
  }

  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
