:root {
  --primary: #309F96;
  --primary-dark: #247a73;
  --primary-light: #e8f7f5;
  --accent: #1a5c54;
  --text: #1a2e2b;
  --text-muted: #3d5a55;
  --bg-light: #f4faf8;
  --bg-dark: #1a3d38;
  --bg-alt: #d4ede9;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26, 61, 56, 0.12);
  --radius: 12px;
  --max-width: 1200px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 10000;
}

.skip-link:focus {
  left: 0;
}

.disclaimer-bar {
  background: var(--bg-dark);
  color: var(--white);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  text-align: center;
  line-height: 1.4;
}

.trust-panel {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.trust-panel h3 {
  margin-top: 0;
}

.trust-panel ul {
  list-style: none;
  margin: 0.75rem 0 0;
}

.trust-panel li {
  padding: 0.35rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.trust-panel li i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.footer-legal {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-legal a {
  color: var(--white);
}

.collection-notice {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text);
}

.site-footer [data-open-cookie-settings] {
  color: var(--white);
  text-decoration: underline;
  cursor: pointer;
}

.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--primary);
  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 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  height: 42px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}

.hero-collage {
  position: relative;
  min-height: 420px;
  background: var(--bg-dark);
  overflow: hidden;
  padding: 3rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero-text {
  color: var(--white);
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.hero-fragments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.hero-fragments img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: 140px;
  border: 3px solid var(--primary);
}

.hero-fragments img:first-child {
  grid-column: 1 / -1;
  height: 180px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white) !important;
  text-decoration: none !important;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white) !important;
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-dark) !important;
}

section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
  color: var(--text);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section-dark a {
  color: var(--primary-light);
}

.section-light {
  background: var(--white);
}

.section-primary {
  background: var(--primary);
  color: var(--white);
}

.section-primary h2,
.section-primary h3 {
  color: var(--white);
}

.section-primary a {
  color: var(--white);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin: 1.25rem 0 0.75rem;
}

.section-dark h2,
.section-dark h3 {
  color: var(--primary-light);
}

.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 70ch;
}

.section-dark .lead {
  color: rgba(255, 255, 255, 0.9);
}

.content-grid {
  display: grid;
  gap: 2rem;
}

.content-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.content-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--primary-light);
  color: var(--white);
}

.card h3 {
  margin-top: 0;
}

.icon-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.icon-heading i {
  font-size: 1.75rem;
  color: var(--primary);
  flex-shrink: 0;
}

.section-dark .icon-heading i,
.section-primary .icon-heading i {
  color: var(--white);
}

.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);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.styled-list {
  list-style: none;
  margin: 1rem 0;
}

.styled-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(48, 159, 150, 0.2);
}

.styled-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
}

.numbered-steps li {
  counter-increment: step;
  padding: 1rem 1rem 1rem 3.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-primary .numbered-steps li {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.section-dark .numbered-steps li {
  color: var(--text);
  background: var(--white);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.timeline {
  border-left: 3px solid var(--primary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.timeline-item {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.faq-list details {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0;
  border: 1px solid var(--bg-alt);
}

.section-dark .faq-list details {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-list summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--accent);
  list-style: none;
}

.section-dark .faq-list summary {
  color: var(--primary-light);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--bg-alt);
}

.faq-list p {
  padding: 1rem 1.25rem;
  color: var(--text-muted);
}

.section-dark .faq-list p {
  color: rgba(255, 255, 255, 0.85);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.events-table th,
.events-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--bg-alt);
}

.events-table th {
  background: var(--primary);
  color: var(--white);
}

.events-table td {
  color: var(--text);
}

.events-table td a {
  color: var(--primary-dark);
  font-weight: 600;
}

.events-table td a:hover {
  color: var(--accent);
}

.events-table tr:nth-child(even) {
  background: var(--primary-light);
}

.section-dark .events-table td a {
  color: var(--primary-dark);
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: var(--primary);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.quote-block {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--primary-light);
  font-style: italic;
  color: var(--text);
}

.checklist {
  list-style: none;
}

.checklist li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
}

.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.site-footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3 {
  color: var(--primary-light);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.site-footer ul {
  list-style: none;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
  opacity: 0.9;
}

.site-footer a:hover {
  color: var(--primary-light);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.85;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--bg-alt);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
  background: var(--white);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
}

.contact-info-list i {
  font-size: 1.5rem;
  color: var(--primary);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content ul,
.policy-content ol {
  margin: 1rem 0 1rem 1.5rem;
}

.success-box {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.success-box i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--white);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1 1 280px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-buttons .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary-light);
  color: var(--white) !important;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-panel {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-panel h3 {
  margin-top: 0;
}

.cookie-modal-panel .btn-secondary {
  color: var(--primary-dark) !important;
  border-color: var(--primary);
}

.cookie-modal-panel .btn-secondary:hover {
  background: var(--primary-light);
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bg-alt);
}

.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: #ccc;
  border-radius: 26px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 2.5rem 0;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.breadcrumb a {
  color: var(--primary-light);
}

.inner-hero-img {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.inner-hero-img--full {
  max-height: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: var(--bg-alt);
}

.interactive-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
  border: 2px solid var(--bg-alt);
}

.section-dark .interactive-panel {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-dark .interactive-panel label,
.section-dark .interactive-panel legend {
  color: var(--white);
}

.interactive-fieldset {
  border: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.interactive-fieldset legend {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.choice-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 0.75rem;
  background: var(--bg-light);
  border: 2px solid var(--bg-alt);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  text-align: center;
}

.choice-btn i {
  font-size: 1.75rem;
  color: var(--primary);
}

.choice-btn:hover,
.choice-btn:focus-visible {
  border-color: var(--primary);
  outline: none;
}

.choice-btn.is-selected {
  background: var(--primary-light);
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(48, 159, 150, 0.25);
}

.section-dark .choice-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.section-dark .choice-btn i {
  color: var(--primary-light);
}

.section-dark .choice-btn.is-selected {
  background: rgba(48, 159, 150, 0.35);
  border-color: var(--primary-light);
}

.range-row {
  margin-bottom: 1.25rem;
}

.range-row label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
  gap: 0.5rem;
}

.range-value {
  color: var(--primary-dark);
  font-weight: 700;
  min-width: 2.5rem;
  text-align: right;
}

.section-dark .range-value {
  color: var(--primary-light);
}

.range-row input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}

.interactive-result {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: var(--primary-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  display: none;
  color: var(--text);
}

.interactive-result.is-visible {
  display: block;
  animation: fadeSlideIn 0.4s ease;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.interactive-result h3 {
  margin-top: 0;
  color: var(--accent);
}

.interactive-result ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.interactive-result li {
  margin-bottom: 0.35rem;
}

.section-dark .interactive-result {
  background: var(--white);
  color: var(--text);
}

.section-dark .interactive-result h3 {
  color: var(--accent);
}

.interactive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.interactive-actions .btn {
  border: none;
  cursor: pointer;
}

.moment-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (max-width: 480px) {
  .moment-picker {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .media-block,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .media-block.reverse {
    direction: ltr;
  }

  .hero-fragments {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--primary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--bg-alt);
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .events-table {
    font-size: 0.85rem;
  }

  .events-table th,
  .events-table td {
    padding: 0.5rem;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 0.9375rem;
  }

  .header-inner {
    padding: 0.5rem 0.75rem;
  }

  .logo-link img {
    height: 36px;
  }

  .container {
    padding: 0 0.75rem;
  }

  section {
    padding: 2rem 0;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}
