:root {
  --accent: #93aa13;
  --accent-dark: #6f7f0e;
  --ink: #1a1612;
  --ink-soft: #2d281f;
  --paper: #f6f0e4;
  --paper-warm: #ebe3d3;
  --cream: #fffdf6;
  --shadow: rgba(26, 22, 18, 0.18);
  --radius: 6px;
  --font-display: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-body: Georgia, "Times New Roman", Times, serif;
  --max: 1120px;
  --tap: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  left: 0;
}

.site-header {
  background: linear-gradient(180deg, var(--ink-soft) 0%, #1f1a14 100%);
  color: var(--cream);
  border-bottom: 4px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: flex-end;
}

.nav-desktop a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  border-bottom-color: var(--accent);
  color: #f0e6c8;
}

.menu-toggle {
  width: var(--tap);
  height: var(--tap);
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--cream);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.menu-toggle:hover {
  background: rgba(147, 170, 19, 0.15);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 18, 0.92);
  z-index: 1000;
  padding: 4.5rem 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
}

.nav-mobile.is-open {
  transform: translateX(0);
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile a {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(246, 240, 228, 0.12);
}

.nav-mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: var(--tap);
  height: var(--tap);
  border: 2px solid var(--accent);
  background: var(--ink-soft);
  color: var(--cream);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.5rem;
}

.disclaimer-bar {
  background: #3a3228;
  color: #f2e8d4;
  font-size: 0.76rem;
  line-height: 1.55;
  padding: 0.65rem 1rem;
  text-align: center;
  border-bottom: 2px solid var(--accent);
  max-width: 100%;
}

.disclaimer-bar__link {
  color: #fff8e8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.disclaimer-bar__link:hover,
.disclaimer-bar__link:focus-visible {
  color: #fff;
}

.disclaimer-bar strong {
  color: #fff;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  filter: sepia(0.35) contrast(1.05) brightness(0.55);
  transition: transform 0.8s ease, filter 0.6s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.04);
  filter: sepia(0.2) contrast(1.1) brightness(0.62);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 22, 18, 0.88) 0%, rgba(26, 22, 18, 0.45) 55%, rgba(147, 170, 19, 0.18) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1rem 3.5rem;
  display: grid;
  gap: 2rem;
  align-content: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(246, 240, 228, 0.12);
  border: 1px solid rgba(147, 170, 19, 0.5);
  color: #f6f0e4;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-badge i {
  color: var(--accent);
  font-size: 1.1rem;
}

.hero:hover .hero-badge {
  transform: translateY(-2px);
  background: rgba(147, 170, 19, 0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 1rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero-lead {
  color: #e8dcc4;
  font-size: 1.05rem;
  max-width: 36ch;
  margin: 0 0 1.5rem;
}

.hero-deco {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-chip {
  background: rgba(147, 170, 19, 0.25);
  border: 1px solid rgba(147, 170, 19, 0.55);
  color: #fdf6e3;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero:hover .hero-chip {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px var(--shadow);
}

.hero-panel {
  background: rgba(246, 240, 228, 0.08);
  border: 1px solid rgba(246, 240, 228, 0.22);
  border-radius: 12px;
  padding: 1.25rem;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s ease, transform 0.35s ease;
}

.hero:hover .hero-panel {
  border-color: rgba(147, 170, 19, 0.55);
  transform: translateY(-4px);
}

.hero-panel h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin: 0 0 0.75rem;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-form label {
  color: #e8dcc4;
  font-size: 0.9rem;
}

.hero-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  border: 2px solid rgba(246, 240, 228, 0.35);
  background: rgba(26, 22, 18, 0.55);
  color: var(--cream);
  font-size: 1rem;
}

.hero-form input::placeholder {
  color: rgba(246, 240, 228, 0.45);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--tap);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent-dark);
  font-weight: 600;
}

.btn-primary:hover {
  background: #a8c016;
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: rgba(147, 170, 19, 0.2);
  color: var(--cream);
}

.btn-ghost {
  background: var(--paper-warm);
  color: var(--ink);
  border-color: #c9bfa8;
}

.btn-ghost:hover {
  background: var(--cream);
}

.section {
  padding: 2.75rem 1rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-alt {
  background: var(--ink-soft);
  color: var(--cream);
}

.section-alt a {
  color: #d4e06f;
}

.section-alt a:hover {
  color: #fff;
}

.section-tint {
  background: #dfe6b8;
  color: var(--ink);
}

.section-paper {
  background: var(--paper-warm);
  color: var(--ink);
}

.section-accent {
  background: linear-gradient(135deg, #93aa13 0%, #7a8f10 100%);
  color: var(--ink);
}

.section-accent a {
  color: var(--ink-soft);
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin: 0 0 0.35rem;
  color: var(--accent-dark);
}

.section-alt .section-kicker {
  color: #c8d96a;
}

.section-accent .section-kicker {
  color: rgba(26, 22, 18, 0.75);
}

.lead {
  font-size: 1.08rem;
  margin-top: 0;
  max-width: 70ch;
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid #c9bfa8;
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 10px 28px var(--shadow);
}

.section-alt .card {
  background: #2f2920;
  color: var(--cream);
  border-color: rgba(147, 170, 19, 0.35);
}

.card h3 {
  font-family: var(--font-display);
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card h3 i {
  color: var(--accent-dark);
  font-size: 1.35rem;
}

.section-alt .card h3 i {
  color: var(--accent);
}

.pill-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pill-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  background: rgba(147, 170, 19, 0.12);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.pill-list i {
  color: var(--accent-dark);
  margin-top: 0.15rem;
}

.section-alt .pill-list li {
  background: rgba(246, 240, 228, 0.06);
  border-left-color: var(--accent);
}

.section-alt .pill-list i {
  color: var(--accent);
}

.split-feature {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 840px) {
  .split-feature {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
  }

  .split-feature.reverse {
    direction: rtl;
  }

  .split-feature.reverse > * {
    direction: ltr;
  }
}

.figure-frame {
  border: 6px double var(--accent);
  border-radius: 4px;
  padding: 0.35rem;
  background: var(--ink-soft);
}

.figure-frame img {
  border-radius: 2px;
}

.timeline {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  border-left: 3px solid var(--accent);
}

.timeline li {
  position: relative;
  padding: 0 0 1.25rem 1.25rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid rgba(26, 22, 18, 0.15);
  padding: 1rem 0;
}

.section-alt .faq-item {
  border-color: rgba(246, 240, 228, 0.12);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0;
}

.faq-item button i {
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-item.is-open button i {
  transform: rotate(180deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-panel {
  max-height: 800px;
}

.faq-panel-inner {
  padding-top: 0.65rem;
  opacity: 0.95;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.events-table th,
.events-table td {
  padding: 0.65rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(26, 22, 18, 0.12);
}

.section-alt .events-table th,
.section-alt .events-table td {
  border-color: rgba(246, 240, 228, 0.12);
}

.events-table th {
  font-family: var(--font-display);
  color: var(--accent-dark);
}

.section-alt .events-table th {
  color: var(--accent);
}

.note-box {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: rgba(26, 22, 18, 0.06);
  border-radius: var(--radius);
  border: 1px dashed #8a7f68;
}

.section-alt .note-box {
  background: rgba(246, 240, 228, 0.06);
  border-color: rgba(147, 170, 19, 0.4);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.site-footer {
  background: var(--ink);
  color: #d8ccb8;
  padding: 2rem 1rem;
  border-top: 4px solid var(--accent);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.footer-title {
  font-family: var(--font-display);
  color: var(--cream);
  margin: 0 0 0.5rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a {
  color: #d4e06f;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-meta {
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: #231f1a;
  color: var(--cream);
  border-top: 3px solid var(--accent);
  padding: 1rem;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(26, 22, 18, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-dialog {
  background: var(--paper);
  color: var(--ink);
  max-width: 520px;
  width: 100%;
  border-radius: 10px;
  padding: 1.25rem;
  border: 2px solid var(--accent);
  max-height: 90vh;
  overflow-y: auto;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #c9bfa8;
}

.switch {
  position: relative;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #9a907c;
  border-radius: 999px;
  transition: background 0.2s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.switch input:checked + .slider {
  background: var(--accent);
}

.switch input:checked + .slider::before {
  transform: translateX(24px);
}

.switch input:disabled + .slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-stack label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.35rem;
}

.form-stack input,
.form-stack textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 2px solid #b5a88f;
  background: var(--cream);
  color: var(--ink);
  font: inherit;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.map-wrap {
  margin-top: 1.25rem;
  border: 4px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.page-intro {
  border-bottom: 3px solid var(--accent);
}

.page-intro .section-inner {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.page-intro-title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.2;
}

.page-intro .lead {
  margin: 0.65rem 0 0;
  max-width: 70ch;
}

.page-hero {
  padding: 2.25rem 1rem 1.5rem;
  background: var(--ink-soft);
  color: var(--cream);
  border-bottom: 4px solid var(--accent);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 4vw, 2.2rem);
}

.success-panel {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.success-card {
  max-width: 560px;
  background: var(--cream);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 16px 40px var(--shadow);
}

.success-card i {
  font-size: 3rem;
  color: var(--accent-dark);
}

@media (min-width: 900px) {
  .nav-desktop {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none;
  }
}

@media (max-width: 360px) {
  body {
    font-size: 1rem;
  }

  .hero-content {
    padding-top: 2.25rem;
  }

  .cookie-actions .btn {
    flex: 1 1 100%;
  }
}
