
:root {
  --red: #a5161c;
  --red-deep: #6f0b10;
  --red-dark: #420609;
  --coral: #e85a4f;
  --cream: #f7f2e9;
  --paper: #fffaf3;
  --ink: #200d0e;
  --muted: #776766;
  --line: rgba(111, 11, 16, .16);
  --white-line: rgba(255,255,255,.22);
  --shadow: 0 24px 70px rgba(79, 9, 12, .14);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
::selection { background: var(--red); color: white; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: 116px 0; }
.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 9999;
  padding: 10px 14px;
  color: white;
  background: var(--red-dark);
  border-radius: 10px;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: white;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.scrolled,
.site-header.inner-header {
  color: var(--ink);
  background: rgba(255,250,243,.97);
  box-shadow: 0 12px 34px rgba(64, 6, 9, .08);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: var(--paper);
}
.site-header.scrolled .brand img,
.site-header.inner-header .brand img { border-color: var(--line); }
.brand-word {
  display: grid;
  line-height: .95;
  text-transform: uppercase;
}
.brand-word strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: .05em;
}
.brand-word span {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .28em;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-size: 13px; font-weight: 800; letter-spacing: .02em; }
.main-nav a:not(.nav-cta) { opacity: .86; }
.main-nav a:not(.nav-cta):hover { opacity: 1; }
.main-nav a[aria-current="page"] { opacity: 1; position: relative; }
.main-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: currentColor; }
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: white !important;
  background: var(--red);
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--red-deep); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .2s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  color: white;
  background: var(--red-dark);
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.02);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(31,4,6,.93) 0%, rgba(64,6,9,.76) 45%, rgba(64,6,9,.18) 76%, rgba(31,4,6,.42) 100%),
    linear-gradient(0deg, rgba(31,4,6,.74) 0%, transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  align-items: end;
  gap: 70px;
  padding-top: 130px;
  padding-bottom: 90px;
}
.hero-copy { max-width: 780px; }
.eyebrow, .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: 11px;
  font-weight: 900;
}
.eyebrow::before, .section-label::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}
.hero h1, .display-title, .section-title, .event-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .89;
}
.hero h1 { margin-top: 24px; font-size: clamp(62px, 7.4vw, 112px); }
.hero h1 em { display: block; color: #ffb6ae; font-weight: 400; }
.hero-copy > p {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 2vw, 22px);
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: white; background: var(--red); }
.button-primary:hover { background: var(--red-deep); }
.button-light { color: var(--red-dark); background: var(--paper); }
.button-ghost { color: white; border: 1px solid rgba(255,255,255,.42); background: rgba(255,255,255,.04); backdrop-filter: blur(10px); }
.button-dark { color: white; background: var(--ink); }

.hero-note {
  justify-self: end;
  width: min(100%, 330px);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  background: rgba(72,7,10,.48);
  box-shadow: 0 24px 70px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
}
.hero-note small { color: rgba(255,255,255,.64); text-transform: uppercase; letter-spacing: .16em; font-weight: 850; }
.hero-note strong {
  display: block;
  margin: 14px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.02;
}
.hero-note p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; }

.intro { background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 76px;
}
.section-label { color: var(--red); }
.section-title { font-size: clamp(46px, 5.5vw, 76px); }
.lead {
  max-width: 880px;
  margin: 34px 0 62px;
  color: #58494a;
  font-size: clamp(20px, 2.5vw, 31px);
  line-height: 1.35;
  letter-spacing: -.025em;
}
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.value-card span { color: var(--red); font-size: 12px; font-weight: 900; }
.value-card h3 { margin: 28px 0 10px; font-size: 20px; }
.value-card p { margin: 0; color: var(--muted); font-size: 15px; }

.brand-strip {
  overflow: hidden;
  color: white;
  background: var(--red);
  border-block: 1px solid rgba(255,255,255,.16);
}
.brand-strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 30px;
  padding: 19px 0;
  animation: marquee 26s linear infinite;
}
.brand-strip span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -.04em;
}
.brand-strip i { font-style: normal; color: #ffb6ae; }
@keyframes marquee { to { transform: translateX(-50%); } }

.editorial { background: var(--cream); }
.editorial-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.editorial-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.editorial-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.editorial-copy .section-label { margin-bottom: 26px; }
.editorial-copy .section-title { font-size: clamp(46px, 5.2vw, 72px); }
.editorial-copy > p { margin: 30px 0 38px; max-width: 570px; color: var(--muted); font-size: 18px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 10px 14px; color: var(--red-deep); border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.42); font-size: 13px; font-weight: 850; }

.community { color: white; background: var(--red-dark); }
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}
.community-copy .section-label { color: #ffaaa2; }
.community-copy .section-title { font-size: clamp(46px, 5.4vw, 76px); }
.community-copy > p { max-width: 540px; margin: 28px 0 36px; color: rgba(255,255,255,.72); font-size: 18px; }
.community-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.community-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.community-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(48,4,7,.55), transparent 50%); }
.community-caption {
  position: absolute;
  z-index: 2;
  inset: auto 24px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 16px;
  background: rgba(55,4,7,.48);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.event-teaser { background: var(--paper); }
.event-teaser-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.event-poster {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--red-dark);
  box-shadow: var(--shadow);
}
.event-poster img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.event-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 10px 14px;
  color: white;
  background: var(--red);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
}
.event-teaser-copy .section-title { font-size: clamp(46px, 5.4vw, 76px); }
.event-teaser-copy > p { max-width: 580px; margin: 28px 0; color: var(--muted); font-size: 18px; }
.event-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0;
}
.event-fact { padding: 18px; border: 1px solid var(--line); border-radius: 18px; }
.event-fact small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 850; }
.event-fact strong { display: block; margin-top: 8px; font-size: 15px; line-height: 1.25; }

.cta {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--red);
}
.cta::before {
  content: "GOOD";
  position: absolute;
  right: -2vw;
  bottom: -11vw;
  color: rgba(255,255,255,.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30vw;
  line-height: .8;
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta .section-title { font-size: clamp(54px, 7vw, 96px); }
.cta p { max-width: 630px; margin: 26px auto 0; color: rgba(255,255,255,.75); font-size: 18px; }
.cta .button-row { justify-content: center; }

.site-footer { color: rgba(255,255,255,.7); background: #210507; }
.footer-grid {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-grid .brand { color: white; }
.footer-grid p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 20px; }
.footer-links { justify-self: end; display: flex; gap: 20px; font-size: 13px; }
.credit { grid-column: 1 / -1; padding-bottom: 24px; text-align: center; font-size: 11px; opacity: .52; }

/* Activities page */
.event-hero {
  min-height: 710px;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--red-dark);
}
.event-hero-media, .event-hero-shade { position: absolute; inset: 0; }
.event-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.event-hero-shade {
  background:
    linear-gradient(90deg, rgba(38,3,6,.91), rgba(57,5,8,.43) 58%, rgba(38,3,6,.18)),
    linear-gradient(0deg, rgba(38,3,6,.82), transparent 55%);
}
.event-hero-content { position: relative; z-index: 2; padding-top: 160px; padding-bottom: 72px; }
.event-hero h1 { max-width: 950px; margin-top: 22px; font-size: clamp(62px, 7.8vw, 112px); }
.event-hero p { max-width: 650px; margin: 26px 0 0; color: rgba(255,255,255,.76); font-size: 19px; }
.event-status {
  display: inline-flex;
  margin-top: 32px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.event-overview { background: var(--paper); }
.event-overview-grid { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 76px; }
.event-overview-copy .section-title { font-size: clamp(44px, 5.3vw, 74px); }
.event-overview-copy > p { max-width: 820px; margin: 30px 0 48px; color: var(--muted); font-size: 20px; }
.event-detail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.event-detail {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}
.event-detail small { color: var(--red); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 900; }
.event-detail strong { display: block; margin-top: 18px; font-family: Georgia, "Times New Roman", serif; font-size: 22px; line-height: 1.15; }

.poster-story { background: var(--cream); }
.poster-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.poster-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--red-dark);
  box-shadow: 0 20px 56px rgba(74,7,10,.12);
}
.poster-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .5s ease; }
.poster-card:hover img { transform: scale(1.035); }
.poster-card::after { content: ""; position: absolute; inset: 48% 0 0; background: linear-gradient(0deg, rgba(36,3,5,.82), transparent); }
.poster-caption {
  position: absolute;
  z-index: 2;
  inset: auto 22px 22px;
  color: white;
}
.poster-caption small { text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 900; opacity: .72; }
.poster-caption h3 { margin: 8px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 30px; line-height: 1; }

.event-summary { color: white; background: var(--red-dark); }
.event-summary-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 76px;
  align-items: center;
}
.event-summary .section-label { color: #ffaaa2; }
.event-summary .section-title { font-size: clamp(46px, 5.4vw, 76px); }
.summary-list { display: grid; gap: 14px; }
.summary-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.17);
}
.summary-item span { color: #ffaaa2; font-size: 12px; font-weight: 900; }
.summary-item h3 { margin: 0 0 6px; font-size: 20px; }
.summary-item p { margin: 0; color: rgba(255,255,255,.64); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 980px) {
  .section { padding: 92px 0; }
  .main-nav { gap: 18px; }
  .hero-content { grid-template-columns: 1fr; align-content: end; gap: 30px; }
  .hero-note { justify-self: start; width: min(100%, 520px); }
  .intro-grid, .event-overview-grid { grid-template-columns: 1fr; gap: 30px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .editorial-grid, .community-grid, .event-teaser-grid, .event-summary-grid { grid-template-columns: 1fr; }
  .editorial-media, .community-media, .event-poster { min-height: 620px; }
  .event-facts { max-width: 680px; }
  .event-detail-grid { grid-template-columns: 1fr 1fr; }
  .poster-story-grid { grid-template-columns: 1fr 1fr; }
  .poster-card:last-child { grid-column: 1 / -1; min-height: 760px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 50px; height: 50px; }
  .brand-word { display: grid; font-size: 11px; line-height: 1.05; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .main-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 22px;
    padding: 90px 24px;
    color: white !important;
    background: rgba(46,3,6,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { font-family: Georgia, "Times New Roman", serif; font-size: 34px; font-weight: 500; }
  .main-nav .nav-cta { font-family: inherit; font-size: 14px; }
  .main-nav a[aria-current="page"]::after { bottom: -5px; }
  .hero { min-height: 760px; height: 100svh; }
  .hero-media img { object-position: 58% 44%; }
  .hero-shade { background: linear-gradient(0deg, rgba(35,3,5,.94) 0%, rgba(54,5,8,.52) 74%, rgba(36,3,6,.35)); }
  .hero-content { padding-top: 110px; padding-bottom: 42px; }
  .hero h1 { font-size: clamp(52px, 15vw, 72px); }
  .hero h1 em { display: inline; }
  .hero-copy > p { font-size: 17px; }
  .hero-note { display: none; }
  .button { width: 100%; min-height: 50px; }
  .intro-grid { gap: 28px; }
  .value-grid { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(42px, 12vw, 60px); }
  .editorial-grid, .community-grid, .event-teaser-grid { gap: 38px; }
  .editorial-media, .community-media, .event-poster { min-height: 520px; border-radius: 26px; }
  .event-facts { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 56px 0 18px; }
  .footer-links { justify-self: center; }
  .event-hero { min-height: 680px; }
  .event-hero-content { padding-top: 124px; padding-bottom: 48px; }
  .event-hero h1 { font-size: clamp(52px, 15vw, 74px); }
  .event-detail-grid { grid-template-columns: 1fr; }
  .poster-story-grid { grid-template-columns: 1fr; }
  .poster-card, .poster-card:last-child { grid-column: auto; min-height: 590px; }
  .summary-item { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
