:root {
  color-scheme: light;
  --ink: #0d0e15;
  --muted: #586272;
  --paper: #f9fafe;
  --surface: #ffffff;
  --teal: #25b7c6;
  --teal-dark: #0d0e15;
  --coral: #1e75bb;
  --gold: #25b7c6;
  --blue: #1e75bb;
  --gradient: linear-gradient(135deg, #25b7c6 0%, #1e75bb 100%);
  --line: rgba(13, 14, 21, 0.12);
  --shadow: 0 18px 48px rgba(13, 14, 21, 0.16);
  --radius: 8px;
  --header-height: 72px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 50;
  transform: translateY(calc(-100% - 28px));
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 1px 24px rgba(23, 26, 33, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.site-header.is-scrolled .brand-mark,
.site-header.is-open .brand-mark {
  box-shadow: none;
}

.brand-text {
  overflow: hidden;
  max-width: min(46vw, 360px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle svg,
.button svg,
.icon-box svg,
.event-points svg,
.contact-links svg,
.site-footer svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(620px, 84svh, 820px);
  align-items: center;
  padding: calc(var(--header-height) + 54px) clamp(18px, 6vw, 80px) 96px;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(13, 14, 21, 0.92) 0%, rgba(13, 14, 21, 0.7) 47%, rgba(30, 117, 187, 0.22) 100%),
    url("./assets/hero-in-peace-event-stock-pexels.jpg")
      center 52% / cover no-repeat;
  transform: scale(1.04);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.2rem, 8.4vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 14px 34px rgba(30, 117, 187, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #1fa8b6 0%, #1769aa 100%);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.button-wide {
  width: 100%;
}

.hero-stats {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  width: min(640px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(14, 20, 20, 0.42);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-stats div {
  padding: 18px;
}

.hero-stats div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero-stat-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-stats .hero-season-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-top: 0;
  color: #fff;
  box-shadow: none;
}

.hero-stats .hero-season-icon svg {
  width: 18px;
  height: 18px;
}

.section {
  padding: clamp(72px, 10vw, 124px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.split,
.contact-layout,
.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  line-height: 1.75;
}

.large-text {
  margin: 0;
  font-size: clamp(1.08rem, 2.2vw, 1.44rem);
}

.intro-band {
  background: var(--surface);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-card,
.ticket-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(23, 26, 33, 0.06);
}

.value-card {
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(37, 183, 198, 0.12);
  color: var(--teal);
}

.value-card h3,
.action-item h3 {
  margin: 0;
  font-size: 1.24rem;
}

.value-card p,
.action-item p {
  margin: 10px 0 0;
}

.actions-band {
  background:
    linear-gradient(180deg, rgba(37, 183, 198, 0.1), rgba(37, 183, 198, 0)),
    var(--paper);
}

.action-list {
  display: grid;
  gap: 14px;
}

.action-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding: clamp(22px, 4vw, 34px) 0;
}

.action-item:last-child {
  border-bottom: 1px solid var(--line);
}

.action-number {
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 900;
}

.action-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.season-icon {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
}

.season-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.4;
}

.season-sun {
  background: rgba(37, 183, 198, 0.14);
  color: #25b7c6;
  box-shadow: 0 12px 28px rgba(37, 183, 198, 0.18);
  animation: sun-float 4.6s ease-in-out infinite;
}

.season-sun svg {
  animation: sun-spin 10s linear infinite;
}

.season-snow {
  background: rgba(30, 117, 187, 0.14);
  color: #1e75bb;
  box-shadow: 0 12px 28px rgba(30, 117, 187, 0.16);
  animation: snow-drift 5.4s ease-in-out infinite;
}

.season-snow svg {
  animation: snow-spin 8s linear infinite;
}

.season-family {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.source-note {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: 0.9rem;
}

.source-note a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.ticket-band {
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 183, 198, 0.28), transparent 34%),
    linear-gradient(135deg, #0d0e15 0%, #113d65 52%, #1e75bb 100%);
  color: #fff;
}

.ticket-band .section-kicker,
.ticket-band p {
  color: rgba(255, 255, 255, 0.72);
}

.event-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.event-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.ticket-panel {
  overflow: hidden;
  color: var(--ink);
}

.ticket-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

.ticket-panel-header p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.ticket-panel-header span {
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  padding: 7px 10px;
  font-size: 0.8rem;
  font-weight: 900;
}

.helloasso-embed {
  display: none;
  padding: 0;
}

.helloasso-embed.is-visible {
  display: block;
}

.helloasso-embed iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
}

.ticket-panel .button {
  border-radius: 0;
  min-height: 64px;
}

.contact-band {
  background: var(--surface);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 12px;
  color: var(--teal-dark);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition:
    border 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 183, 198, 0.16);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
  padding: 24px clamp(18px, 5vw, 72px);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 1;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes sun-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.06);
  }
}

@keyframes sun-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes snow-drift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(-5px, 5px);
  }
  66% {
    transform: translate(5px, -4px);
  }
}

@keyframes snow-spin {
  to {
    transform: rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 880px) {
  .site-header {
    min-height: 64px;
    padding: 10px 18px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 18px;
  }

  .site-nav a + a {
    border-top: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding: 104px 18px 164px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .hero-stats {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: repeat(3, 1fr);
    width: auto;
  }

  .hero-stats div {
    padding: 14px 10px;
  }

  .hero-stats span {
    font-size: 0.78rem;
  }

  .hero-stats .hero-season-icon {
    width: 30px;
    height: 30px;
  }

  .split,
  .contact-layout,
  .event-layout,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
.brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 86svh;
    padding-bottom: 176px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

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

  .hero-stats div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .section {
    padding: 64px 18px;
  }

  .action-item {
    grid-template-columns: 1fr;
  }

  .action-title {
    align-items: flex-start;
  }

  .helloasso-embed iframe {
    min-height: 680px;
  }
}
