:root {
  --green-950: #0d3d18;
  --green-900: #145a24;
  --green-800: #1b7130;
  --green-700: #2a8f3f;
  --red-950: #6f111b;
  --red-700: #c53b32;
  --yellow-400: #ffd739;
  --yellow-300: #ffe57a;
  --paper: #f6f8f2;
  --ink: #142117;
  --muted: #476050;
  --white: #ffffff;
  --line: #d4dfcf;
  --water-700: #0e6476;
  --water-500: #39a1b8;
  --shadow: 0 12px 32px rgba(15, 61, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Lora", Georgia, serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -10%, rgba(255, 231, 122, 0.7), transparent 42%),
    radial-gradient(circle at 94% 4%, rgba(57, 161, 184, 0.18), transparent 30%),
    linear-gradient(180deg, #fdfdf8 0%, var(--paper) 78%);
}

a {
  color: inherit;
}

.announcement-strip {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, var(--red-950) 0%, var(--red-700) 100%);
  color: #fff7f7;
  border-bottom: 3px solid rgba(255, 235, 235, 0.26);
  box-shadow: 0 14px 32px rgba(111, 17, 27, 0.28);
}

.strip-shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.strip-copy strong,
.strip-link {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.strip-copy strong {
  display: block;
  font-size: 1.06rem;
}

.strip-copy span {
  display: block;
  margin-top: 2px;
  font-size: 0.95rem;
  color: #ffeef0;
}

.strip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  border-radius: 999px;
  padding: 11px 16px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

.strip-link:hover {
  background: rgba(255, 255, 255, 0.26);
}

.site-shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 22px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.brand {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  text-transform: uppercase;
  color: var(--green-950);
}

.brand-subtitle {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-900);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--green-950);
  text-decoration: none;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  background: var(--yellow-300);
}

.nav-link.primary {
  background: var(--yellow-400);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
  background: linear-gradient(130deg, var(--green-900) 0%, var(--green-800) 50%, var(--water-700) 100%);
  border-radius: 22px;
  color: var(--white);
  padding: clamp(22px, 5vw, 44px);
  box-shadow: var(--shadow);
  animation: rise 0.7s ease both;
}

.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -90px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: rgba(255, 231, 122, 0.24);
  pointer-events: none;
}

.hero-copy,
.hero-aside {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  color: #eef8e8;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.85rem;
}

.hero h1,
.legal-sheet h2,
.section h2,
.cta-band h2,
.hero-panel h2 {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 10px 0 10px;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.hero p {
  margin: 0;
  max-width: 72ch;
  color: #f3f8ee;
  font-size: clamp(1rem, 2vw, 1.08rem);
}

.hero p + p {
  margin-top: 10px;
}

.hero-points {
  margin-top: 18px;
}

.hero-cta-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 15px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.btn-main {
  background: var(--yellow-400);
  color: var(--green-950);
}

.btn-main:hover {
  background: #ffe15a;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-aside {
  display: grid;
  gap: 12px;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 15px;
  backdrop-filter: blur(6px);
}

.hero-panel h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffffff;
}

.hero-panel p {
  margin-top: 9px;
  font-size: 0.98rem;
}

.hero-panel ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.hero-panel li {
  margin: 6px 0;
  color: #eff9ea;
}

.hero-panel a {
  color: #ffffff;
}

.section {
  margin-top: 22px;
  animation: rise 0.75s ease both;
}

.section h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--green-950);
}

.section-intro {
  margin: 0;
  color: var(--muted);
  max-width: 74ch;
}

.path-grid {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ticket-grid {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 15px;
  box-shadow: 0 7px 18px rgba(11, 53, 19, 0.08);
}

.step-card {
  border-top: 5px solid var(--green-700);
}

.step-card.urgent {
  border-top-color: var(--red-700);
}

.step-badge {
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #8bb896;
  border-radius: 999px;
  padding: 5px 10px;
  background: #f3fbe9;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1f5a2b;
}

.card h3 {
  margin: 0;
  color: var(--green-900);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.card p {
  margin: 8px 0 0;
  color: #294331;
}

.card ul {
  margin: 9px 0 0;
  padding-left: 18px;
  color: #294331;
}

.card li {
  margin: 5px 0;
}

.schedule-band {
  margin-top: 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, #fffde9 0%, #eef9f8 100%);
  padding: 15px;
}

.schedule-band h2 {
  margin: 0 0 8px;
}

.schedule-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid #afc7b2;
  border-radius: 999px;
  padding: 7px 11px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1c4326;
  background: #fbfff6;
}

.inline-actions {
  margin-top: 13px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 9px;
  padding: 8px 11px;
  border: 1px solid var(--green-900);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.9rem;
  color: var(--green-950);
  font-weight: 700;
  background: #ecf5e9;
}

.inline-link:hover {
  background: var(--yellow-300);
}

.inline-link.main {
  background: var(--yellow-400);
}

.cta-band {
  margin-top: 24px;
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(115deg, #163f20 0%, #2d8b42 55%, #16748b 100%);
  color: #f7fff3;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0;
  color: #ffffff;
}

.cta-band p {
  margin: 8px 0 0;
  color: #ebf9e6;
}

.site-footer,
.site-note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer a,
.site-note a {
  color: var(--green-900);
}

.legal-page .site-shell {
  padding-bottom: 64px;
}

.legal-hero {
  grid-template-columns: 1fr;
}

.legal-sheet {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  box-shadow: 0 7px 18px rgba(11, 53, 19, 0.08);
}

.legal-section + .legal-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  color: var(--green-950);
}

.legal-section p {
  margin: 8px 0 0;
  color: #294331;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(430px, calc(100vw - 24px));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 38px rgba(10, 44, 16, 0.18);
}

.cookie-copy {
  display: grid;
  gap: 4px;
  color: #294331;
}

.cookie-copy strong,
.cookie-button {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cookie-button {
  border: 0;
  border-radius: 11px;
  padding: 10px 14px;
  background: var(--yellow-400);
  color: var(--green-950);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-button:hover {
  background: #ffe15a;
}

.flow-hero {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
}

.flow-section {
  margin-top: 24px;
}

.flow-layout {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
}

.flow-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 7px 18px rgba(11, 53, 19, 0.08);
}

.flow-card {
  padding: 18px;
}

.review-card {
  padding: 16px;
  height: fit-content;
  position: sticky;
  top: 88px;
}

.stepper {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #b8cab9;
  border-radius: 999px;
  padding: 8px 12px;
  background: #f6faf3;
  color: var(--muted);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.step-pill.is-active {
  color: var(--green-950);
  background: var(--yellow-300);
  border-color: var(--green-700);
}

.flow-banner {
  margin-bottom: 14px;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.96rem;
}

.flow-banner.success {
  background: #ecf9ef;
  border: 1px solid #9fd0ac;
  color: #16552a;
}

.flow-banner.warning {
  background: #fff8e3;
  border: 1px solid #e0c26f;
  color: #6b4a00;
}

.field-grid {
  display: grid;
  gap: 12px;
}

.field-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--green-900);
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid #b8c8b2;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
}

.checkbox-field {
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.checkbox-field input {
  margin-top: 5px;
}

.checkbox-field span {
  font-family: "Lora", Georgia, serif;
  font-size: 0.96rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #294331;
}

.checkbox-field a {
  color: var(--green-900);
}

.participants-head {
  margin-top: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.participants-head h3 {
  margin: 0;
  color: var(--green-900);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.participant-list {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.participant-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdf9;
  padding: 14px;
}

.participant-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.participant-remove {
  border: 0;
  background: transparent;
  color: var(--red-700);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.participant-remove:hover {
  text-decoration: underline;
}

.step-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-ghost-dark {
  color: var(--green-950);
  border-color: #9fbaa4;
  background: #eff6eb;
}

.btn-ghost-dark:hover {
  background: var(--yellow-300);
}

.status-text {
  min-height: 1.2em;
  margin-top: 12px;
  color: var(--muted);
}

.status-text.error {
  color: #b01f29;
}

.status-text.loading {
  color: var(--water-700);
}

.donation-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(95deg, #fffef0 0%, #f3fbf6 80%);
  padding: 15px;
}

.money-input {
  display: flex;
  align-items: center;
  border: 1px solid #b8c8b2;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.money-input span {
  padding: 0 12px;
  color: var(--green-900);
}

.money-input input {
  border: 0;
  border-radius: 0;
}

.review-card h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--green-950);
}

.review-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.review-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: #294331;
}

.review-row strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1rem;
  color: var(--green-950);
  white-space: nowrap;
}

.review-total {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--green-950);
}

.review-total strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
}

.muted-note {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.path-grid .card:nth-child(2) {
  animation-delay: 0.06s;
}

.path-grid .card:nth-child(3) {
  animation-delay: 0.12s;
}

.path-grid .card,
.ticket-grid .card,
.hero-panel,
.legal-sheet,
.cta-band,
.schedule-band {
  animation: rise 0.8s ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .path-grid,
  .ticket-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .flow-layout {
    grid-template-columns: 1fr;
  }

  .review-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .strip-shell {
    width: min(1120px, 95vw);
    flex-direction: column;
    align-items: flex-start;
  }

  .strip-link {
    min-width: 0;
  }

  .site-shell {
    width: min(1120px, 95vw);
    padding: 14px 0 32px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    width: 100%;
  }

  .path-grid,
  .ticket-grid,
  .field-grid.two-up,
  .field-grid.three-up {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .participants-head,
  .review-row,
  .review-total {
    align-items: flex-start;
    flex-direction: column;
  }
}
