:root {
  --accent: #CED4EE;
  --accent-dark: #a8b3d9;
  --bg-dark: #12151f;
  --bg-darker: #0d1018;
  --bg-light: #f4f6fc;
  --text-dark: #12151f;
  --text-light: #f8f9fc;
  --text-muted: #4a5168;
  --border: rgba(206, 212, 238, 0.35);
  --shadow: 0 24px 60px rgba(18, 21, 31, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg-light);
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p { margin: 0 0 1rem; }

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.disclaimer-bar {
  background: var(--bg-darker);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.55rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.disclaimer-bar p {
  margin: 0;
  opacity: 0.95;
  line-height: 1.5;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.trust-panel {
  background: rgba(206, 212, 238, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
}

.trust-panel h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.section-dark .trust-panel {
  background: rgba(255, 255, 255, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 21, 31, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 56px;
  width: 56px;
  display: block;
}

.site-footer .footer-logo {
  height: 64px;
  width: 64px;
  margin-bottom: 1rem;
  display: block;
}

.nav-desktop {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  color: var(--text-light);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a:focus,
.nav-desktop a[aria-current="page"] {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: var(--bg-dark);
  padding: 2rem 1.5rem;
  z-index: 999;
  overflow-y: auto;
}

.nav-mobile.is-open {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-mobile a {
  color: var(--text-light);
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:hover,
.nav-mobile a:focus {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 16, 24, 0.82), rgba(26, 31, 53, 0.65));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 4rem;
  max-width: 820px;
}

.hero-content h1,
.hero-content p {
  color: var(--text-light);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.95;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), background var(--transition), color var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--accent);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--accent);
  color: var(--text-dark);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.btn-dark:hover,
.btn-dark:focus {
  background: #1f2538;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

.section-dark p,
.section-dark li {
  color: rgba(248, 249, 252, 0.9);
}

.section-accent {
  background: var(--accent);
  color: var(--text-dark);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-muted {
  background: #e8ecf8;
  color: var(--text-dark);
}

.section-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-dark .section-label {
  color: var(--accent);
}

.section-accent .section-label {
  color: var(--text-dark);
  opacity: 0.7;
}

.icon-accent {
  color: var(--accent);
  font-size: 1.5rem;
}

.section-dark .icon-accent {
  color: var(--accent);
}

.section-accent .icon-accent {
  color: var(--bg-dark);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  height: 100%;
}

.section-light .card,
.section-muted .card,
.section-accent .card {
  background: #fff;
  border-color: rgba(18, 21, 31, 0.08);
  box-shadow: var(--shadow);
}

.card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--accent);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(206, 212, 238, 0.12);
  border: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--accent);
}

.timeline {
  list-style: none;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin: 0;
}

.timeline li {
  position: relative;
  padding-bottom: 1.5rem;
  padding-left: 0.5rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}

.check-list i {
  color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.section-accent .check-list i {
  color: var(--bg-dark);
}

.numbered-list {
  counter-reset: item;
  list-style: none;
}

.numbered-list li {
  counter-increment: item;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.section-light .numbered-list li,
.section-muted .numbered-list li {
  background: #fff;
}

.numbered-list li::before {
  content: counter(item, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
  min-width: 2rem;
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  background: rgba(206, 212, 238, 0.15);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
}

.section-light .faq-list details,
.section-muted .faq-list details {
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list .faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: inherit;
  opacity: 0.9;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.events-table th,
.events-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.events-table thead {
  background: var(--bg-dark);
  color: var(--text-light);
}

.events-table tbody tr:nth-child(even) {
  background: rgba(206, 212, 238, 0.2);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.safety-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(18, 21, 31, 0.06);
  border: 1px solid rgba(18, 21, 31, 0.1);
}

.section-dark .safety-item {
  background: rgba(255, 255, 255, 0.05);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(18, 21, 31, 0.2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--text-dark);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--accent);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  display: block;
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.site-footer {
  background: var(--bg-darker);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-business {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0.75rem 0;
  opacity: 0.9;
}

.footer-business a {
  color: var(--accent);
}

.footer-business a:hover,
.footer-business a:focus {
  text-decoration: underline;
}

.footer-legal-note {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.footer-grid a {
  color: rgba(248, 249, 252, 0.85);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-grid a:hover,
.footer-grid a:focus {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.policy-page {
  padding-top: 2rem;
}

.policy-page h1 {
  margin-bottom: 0.5rem;
}

.policy-page .policy-meta {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.policy-page h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.policy-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.policy-page li {
  margin-bottom: 0.5rem;
}

.policy-page code {
  font-size: 0.9em;
  background: rgba(18, 21, 31, 0.08);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.policy-page .events-table {
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.thank-you-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.thank-you-page .icon-wrap {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 2px solid var(--accent);
  padding: 1.25rem;
  transform: translateY(110%);
  transition: transform var(--transition);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 280px;
  font-size: 0.9rem;
}

.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.1rem;
  font-size: 0.85rem;
}

.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(13, 16, 24, 0.7);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-panel {
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(18, 21, 31, 0.1);
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--bg-dark);
}

.cookie-toggle input:disabled {
  opacity: 0.6;
}

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .contact-layout,
  .safety-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 85vh;
  }

  .events-table {
    font-size: 0.85rem;
  }

  .events-table th,
  .events-table td {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: 94%;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .stats-row {
    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;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
