:root {
  color-scheme: dark;
  --ink: #050505;
  --paper: #f4f0e8;
  --muted: #b8b2aa;
  --line: rgba(255, 255, 255, 0.18);
  --accent: #ff4f87;
  --accent-2: #ff6a3d;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 79, 135, 0.18), transparent 32rem),
    radial-gradient(circle at 8% 70%, rgba(255, 106, 61, 0.1), transparent 28rem);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
}

.site-header__inner,
.section,
.site-footer__inner {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand img {
  width: 26px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  font-size: 1rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
}

.site-nav a {
  color: #d8d3cc;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.hero {
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
  padding-block: clamp(72px, 11vw, 150px);
}

.hero--compact {
  min-height: auto;
  padding-bottom: clamp(64px, 9vw, 120px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 9vw, 8.6rem);
}

.hero--compact h1 {
  font-size: clamp(3.2rem, 8vw, 7.2rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5.5vw, 5.8rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2.4vw, 2.25rem);
}

.lead {
  max-width: 760px;
  color: #d6d0c8;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.hero__mark {
  width: auto;
  height: clamp(260px, 34vw, 480px);
  max-width: min(260px, 58vw);
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 24px 80px rgba(255, 79, 135, 0.2));
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.button--primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #050505;
}

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

.trust-bar {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.trust-bar__inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #ddd7cf;
  font-size: 0.9rem;
}

.trust-bar strong {
  color: #fff;
}

.section {
  padding-block: clamp(76px, 11vw, 150px);
}

.section--paper {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
  color: #111;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-heading p:last-child {
  max-width: 680px;
  color: #aaa39a;
}

.section--paper .section-heading p:last-child,
.section--paper .muted {
  color: #625d57;
}

.event-grid,
.activity-grid,
.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  min-height: 440px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #171717;
  color: #fff;
  text-decoration: none;
}

.event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.event-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.92));
  content: "";
}

.event-card:hover img,
.event-card:focus-visible img {
  transform: scale(1.035);
}

.event-card__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 26px;
}

.event-card__status {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 9px;
  background: var(--accent);
  color: #050505;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.event-card h3 {
  margin-bottom: 8px;
}

.event-card p {
  margin: 0;
  color: #d7d2cc;
}

.activity-card,
.detail-card,
.contact-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.section--paper .activity-card,
.section--paper .detail-card {
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.45);
}

.activity-card__number {
  display: block;
  margin-bottom: 40px;
  color: var(--accent);
  font-weight: 850;
}

.activity-card p,
.detail-card p,
.contact-card p {
  margin-bottom: 0;
  color: #aaa39a;
}

.section--paper .activity-card p,
.section--paper .detail-card p {
  color: #625d57;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 9vw, 130px);
}

.split__copy {
  max-width: 720px;
  font-size: 1.05rem;
}

.split__copy p {
  color: #c5bfb7;
}

.section--paper .split__copy p {
  color: #4f4a45;
}

.legal-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-facts div {
  display: grid;
  grid-template-columns: minmax(140px, 0.55fr) minmax(0, 1.45fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.legal-facts dt {
  color: #8f8982;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-facts dd {
  margin: 0;
  font-weight: 700;
}

.prose {
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: clamp(64px, 9vw, 120px);
}

.prose h2 {
  margin-top: 64px;
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.prose h3 {
  margin-top: 38px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.prose p,
.prose li {
  color: #c6c0b8;
}

.prose li + li {
  margin-top: 8px;
}

.prose a {
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.prose__meta {
  padding: 18px 0;
  border-block: 1px solid var(--line);
  color: #8f8982;
  font-size: 0.85rem;
}

.language-note {
  margin-top: 58px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #000;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  padding-block: 42px;
}

.site-footer__statement {
  max-width: 720px;
  margin-bottom: 10px;
  font-weight: 800;
}

.site-footer__copyright {
  margin: 0;
  color: #858079;
  font-size: 0.84rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer__links a {
  color: #c6c0b8;
  font-size: 0.82rem;
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #fff;
}

@media (max-width: 900px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero__mark {
    width: auto;
    height: 250px;
    max-width: 180px;
    justify-self: start;
  }

  .event-grid,
  .activity-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header__inner {
    min-height: 70px;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 7px 16px;
  }

  .site-nav a {
    font-size: 0.7rem;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .trust-bar__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px;
  }

  .event-grid,
  .activity-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: 390px;
  }

  .legal-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
