*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #822E46;
  --primary-dark: #5C1F32;
  --primary-light: #A84562;
  --cream: #F5EDE4;
  --cream-dark: #E8D9CC;
  --warm-brown: #5C3A2E;
  --text-dark: #2A1A14;
  --text-light: #F5EDE4;
  --text-muted: #6B4F44;
  --section-alt: #3D1A26;
  --section-warm: #F0E4D8;
  --white: #FFFCF8;
  --shadow: 0 4px 20px rgba(42, 26, 20, 0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  min-width: 320px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.3;
  color: var(--text-dark);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--primary-dark);
  color: var(--text-light);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  line-height: 1.4;
}

.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--cream-dark);
  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: 1140px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 40px;
  width: auto;
  border-radius: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  line-height: 1;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  color: var(--warm-brown);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  min-height: 320px;
}

.hero-content {
  background: var(--primary);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.hero-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  opacity: 0.95;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 360px;
}

.hero-form input[type="email"] {
  padding: 0.85rem 1rem;
  border: 2px solid var(--cream);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--white);
  color: var(--text-dark);
}

.hero-form input[type="email"]:focus {
  outline: 3px solid var(--cream-dark);
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--cream);
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.btn:hover {
  background: var(--cream-dark);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary-dark);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--warm-brown);
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--cream);
  color: var(--text-light);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--primary-dark);
}

section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--section-alt);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

.section-dark p {
  color: var(--cream-dark);
}

.section-warm {
  background: var(--section-warm);
}

.section-primary {
  background: var(--primary);
  color: var(--text-light);
}

.section-primary h2,
.section-primary h3 {
  color: var(--text-light);
}

.section-primary p {
  color: var(--cream);
}

.section-cream {
  background: var(--cream);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
}

.section-dark .section-subtitle {
  color: var(--cream-dark);
}

.section-primary .section-subtitle {
  color: var(--cream);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.section-dark .card {
  background: rgba(255, 252, 248, 0.08);
  border: 1px solid rgba(245, 237, 228, 0.15);
}

.card-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-dark .card-icon {
  color: var(--cream);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.icon-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.icon-list i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.section-dark .icon-list i,
.section-primary .icon-list i {
  color: var(--cream);
}

.numbered-list {
  counter-reset: item;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.numbered-list li {
  counter-increment: item;
  padding-left: 3rem;
  position: relative;
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  padding-left: 1.75rem;
  position: relative;
}

.check-list li::before {
  content: "\eb7b";
  font-family: "remixicon";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

.section-dark .check-list li::before {
  color: var(--cream);
}

.swap-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.swap-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.swap-btn {
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.swap-btn:hover,
.swap-btn.active {
  background: var(--primary);
  color: var(--text-light);
}

.swap-result {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 120px;
}

.swap-result h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.swap-arrow {
  color: var(--primary-light);
  font-weight: 700;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  padding: 1rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "\ea4e";
  font-family: "remixicon";
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\ea78";
}

.faq-item p {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.section-dark .faq-item {
  border-color: rgba(245, 237, 228, 0.2);
}

.section-dark .faq-item summary {
  color: var(--text-light);
}

.section-dark .faq-item p {
  color: var(--cream-dark);
}

.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: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
}

.events-table th {
  background: var(--primary);
  color: var(--text-light);
  font-weight: 600;
}

.events-table tr:last-child td {
  border-bottom: none;
}

.events-table tr:hover td {
  background: 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: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.safety-item h3 {
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.safety-item p {
  color: var(--text-muted);
}

.safety-item i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.section-dark .safety-item {
  background: var(--white);
  border-left-color: var(--primary);
}

.section-dark .safety-item h3 {
  color: var(--primary-dark);
}

.section-dark .safety-item p {
  color: var(--text-muted);
}

.section-primary .safety-item {
  background: rgba(255, 252, 248, 0.14);
  border-left-color: var(--cream);
}

.section-primary .safety-item h3 {
  color: var(--cream);
}

.section-primary .safety-item p {
  color: var(--cream-dark);
}

.section-primary .safety-item i {
  color: var(--cream);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 3px solid var(--primary-light);
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.site-footer {
  background: var(--warm-brown);
  color: var(--cream);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: var(--cream);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.site-footer a {
  color: var(--cream-dark);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 237, 228, 0.2);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--cream-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--primary);
  box-shadow: 0 -4px 20px rgba(42, 26, 20, 0.15);
  z-index: 9999;
  padding: 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-settings-panel {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
  gap: 1rem;
}

.cookie-category label {
  font-weight: 600;
  font-size: 0.9rem;
}

.cookie-category p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.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(--cream-dark);
  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: var(--primary);
  color: var(--text-light);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--text-light);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.95;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.breadcrumb a {
  color: var(--cream);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--primary);
}

.policy-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.success-page {
  text-align: center;
  padding: 5rem 1.25rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-page i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.success-page h1 {
  margin-bottom: 1rem;
}

.success-page p {
  max-width: 500px;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.highlight-box {
  background: var(--white);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.section-dark .highlight-box {
  background: rgba(255, 252, 248, 0.06);
  border-left-color: var(--cream);
}

.quote-block {
  font-style: italic;
  font-size: 1.1rem;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--primary);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  color: var(--warm-brown);
}

.ads-notice {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ads-notice strong {
  display: block;
  color: var(--primary-dark);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.section-dark .ads-notice {
  background: rgba(255, 252, 248, 0.1);
  border-color: var(--cream);
  color: var(--cream-dark);
}

.section-dark .ads-notice strong {
  color: var(--cream);
}

.section-primary .ads-notice {
  background: rgba(255, 252, 248, 0.12);
  border-color: var(--cream);
  color: var(--cream-dark);
}

.section-primary .ads-notice strong {
  color: var(--cream);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
}

.pricing-table th {
  background: var(--primary);
  color: var(--text-light);
  font-weight: 600;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--cream);
}

.timeline-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: var(--primary);
  color: var(--text-light);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.section-dark .tag {
  background: var(--cream);
  color: var(--primary-dark);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
  font-family: Georgia, serif;
}

.stat-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
  }

  .grid-2,
  .grid-3,
  .safety-grid,
  .footer-grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--cream-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.open {
    max-height: 500px;
    box-shadow: var(--shadow);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--cream-dark);
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
  }

  section {
    padding: 3rem 0;
  }

  .events-table {
    display: block;
    overflow-x: auto;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 1rem;
  }

  .swap-buttons {
    flex-direction: column;
  }

  .swap-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    padding: 2rem 1.25rem;
  }

  .card {
    padding: 1.25rem;
  }
}
