:root {
  --accent: #08c5d1;
  --accent-dark: #069aa3;
  --accent-light: #06b8c4;
  --bg-dark: #ffffff;
  --bg-darker: #f4f9fa;
  --bg-light: #eef6f7;
  --bg-alt: #dceff2;
  --text-primary: #1a2e35;
  --text-secondary: #3d5560;
  --text-muted: #5a727c;
  --text-on-accent: #ffffff;
  --border: rgba(8, 197, 209, 0.35);
  --shadow: 0 8px 32px rgba(26, 46, 53, 0.08);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --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: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-darker);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

li { margin-bottom: 0.5rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-secondary);
}

.transparency-box {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.transparency-box h3 {
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.transparency-item i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.transparency-item h4 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.footer-trust {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-trust p {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.footer-ads-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  box-shadow: 0 1px 12px rgba(26, 46, 53, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 42px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 1.4rem;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  border-radius: 4px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 8s ease, opacity var(--transition);
}

.hero:hover .hero-bg img {
  transform: scale(1.05);
  opacity: 0.65;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(220, 239, 242, 0.82) 55%, rgba(8, 197, 209, 0.12) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 4rem 0;
}

.hero-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  border-left: 3px solid var(--accent);
  padding-left: 0.75rem;
}

.hero h1 span {
  color: var(--accent);
  display: inline-block;
  transition: transform var(--transition), text-shadow var(--transition);
}

.hero:hover h1 span {
  transform: translateX(4px);
  text-shadow: 0 0 24px rgba(8, 197, 209, 0.35);
}

.hero-text {
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-on-accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--text-on-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 197, 209, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: rgba(8, 197, 209, 0.12);
  color: var(--accent-dark);
  transform: translateY(-2px);
}

section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--bg-dark);
}

.section-light {
  background: var(--bg-light);
}

.section-accent {
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg-light) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  margin-bottom: 2.5rem;
  max-width: 680px;
}

.section-header .icon-wrap {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.section-header p.lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.f-shape {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  grid-template-rows: auto 1fr;
  gap: 0 2.25rem;
  position: relative;
  padding: 0 0 0 1.75rem;
  margin-top: 0.5rem;
}

.f-shape::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent) 22%, transparent 22%, transparent 38%, var(--accent-dark) 38%, var(--accent-dark) 42%, transparent 42%, transparent 100%);
  border-radius: 4px;
}

.f-shape-wide {
  grid-column: 1 / -1;
  grid-row: 1;
  padding: 1.25rem 1.5rem 1.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, rgba(8, 197, 209, 0.14) 0%, rgba(8, 197, 209, 0.04) 55%, transparent 100%);
  border-left: 4px solid var(--accent);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.f-shape-wide::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(42%, 320px);
  height: 3px;
  background: var(--accent);
  border-radius: 0 3px 0 0;
}

.f-shape-wide p {
  margin-bottom: 0;
  font-size: 1.08rem;
  max-width: 920px;
}

.f-shape-main {
  grid-column: 1;
  grid-row: 2;
  padding-right: 0.5rem;
}

.f-shape-main > .section-header {
  margin-bottom: 1.5rem;
}

.f-shape-side {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 1.25rem);
  padding: 1.5rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.f-shape-side::before {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--accent);
  margin-bottom: 1.25rem;
  border-radius: 2px;
}

.f-shape-side .split-image {
  margin: -0.5rem -0.5rem 1.25rem;
  border: none;
  border-radius: 2px;
}

.f-shape-side .split-image + .stat-row,
.f-shape-side .split-image + .btn {
  margin-top: 0;
}

.f-shape-side .stat-row {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
  justify-content: space-between;
}

.f-shape-side .card {
  box-shadow: none;
  background: var(--bg-light);
}

.f-shape-side .card + .card {
  margin-top: 1rem;
}

.f-shape--flip {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}

.f-shape--flip::before {
  background: linear-gradient(180deg, var(--accent-dark) 0%, var(--accent-dark) 18%, transparent 18%, transparent 34%, var(--accent) 34%, var(--accent) 38%, transparent 38%, transparent 100%);
}

.f-shape--flip .f-shape-main {
  grid-column: 2;
}

.f-shape--flip .f-shape-side {
  grid-column: 1;
}

.f-shape--flip .f-shape-wide {
  border-left: none;
  border-right: 4px solid var(--accent);
  background: linear-gradient(270deg, rgba(8, 197, 209, 0.14) 0%, rgba(8, 197, 209, 0.04) 55%, transparent 100%);
}

.f-shape--flip .f-shape-wide::after {
  left: auto;
  right: 0;
  border-radius: 3px 0 0 0;
}

.split-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.split-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--transition);
}

.split-image:hover img {
  transform: scale(1.03);
}

.split-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.96));
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: 2px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.card i {
  color: var(--accent);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--text-primary);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.numbered-steps li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
}

.numbered-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--text-on-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  background: rgba(8, 197, 209, 0.1);
  margin: 2rem 0;
}

.quote-block cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: normal;
}

.two-col-text {
  columns: 2;
  column-gap: 2.5rem;
}

.adventure-generator {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.adventure-card {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--bg-light);
  border: 2px solid var(--accent);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.3rem;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.adventure-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.calendar-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.calendar-date {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  padding: 0.5rem;
  background: var(--accent);
  color: var(--text-on-accent);
  border-radius: 2px;
}

.calendar-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.calendar-date .month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq-list details {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.faq-list summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.25rem;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details div {
  padding: 0 1.5rem 1.25rem;
}

.safety-box {
  background: rgba(8, 197, 209, 0.12);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 2px;
}

.safety-box h3 {
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-block i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.map-wrap {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.map-consent {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-light);
  border: 1px dashed var(--border);
  border-radius: 4px;
}

.map-consent p {
  max-width: 520px;
  margin: 0 auto 1.25rem;
  color: var(--text-secondary);
}

.map-wrap.is-hidden {
  display: none;
}

.legal-business-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.9rem;
}

.legal-business-box h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--accent-dark);
}

.footer-links button.cookie-settings-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  color: var(--accent);
}

.policy-content h3 {
  margin-top: 1.5rem;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  border-top: 2px solid var(--accent);
  padding: 1.25rem;
  box-shadow: 0 -4px 24px rgba(26, 46, 53, 0.12);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-decline:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

.cookie-settings-panel {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-toggle-row label {
  color: var(--text-primary);
  font-weight: 600;
}

.cookie-toggle-row span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--bg-alt);
  border-radius: 26px;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
  background: var(--text-on-accent);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  padding: 0.35rem 0.85rem;
  background: rgba(8, 197, 209, 0.14);
  border: 1px solid var(--border);
  color: var(--accent-dark);
  font-size: 0.8rem;
  border-radius: 2px;
}

.stat-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-item .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .f-shape,
  .f-shape--flip {
    grid-template-columns: 1fr;
    padding-left: 1.25rem;
    gap: 1.75rem;
  }

  .f-shape-wide {
    padding: 1rem 1rem 1.25rem;
    margin-bottom: 0.5rem;
  }

  .f-shape-main,
  .f-shape-side,
  .f-shape--flip .f-shape-main,
  .f-shape--flip .f-shape-side {
    grid-column: 1;
    grid-row: auto;
  }

  .f-shape-side {
    position: static;
    top: auto;
  }

  .f-shape-side .split-image {
    margin: 0 0 1rem;
  }

  .two-col-text {
    columns: 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .main-nav.open {
    max-height: 480px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
  }

  .main-nav a {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
  }

  section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: 70vh;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-row {
    gap: 1.5rem;
  }

  .map-wrap iframe {
    height: 280px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .logo-link img {
    height: 34px;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .calendar-item {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
