:root {
  --ink: #080b0a;
  --paper: #f4f0e5;
  --gold: #f3b51b;
  --green: #00866a;
  --muted: #b3b8b3;
  --line: rgba(244, 240, 229, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--paper); font-family: "Inter", system-ui, sans-serif; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.keep-together { white-space: nowrap; }
section[id] { scroll-margin-top: 2rem; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: var(--paper); color: var(--ink); padding: 0.8rem 1rem; font-weight: 700; }
.skip-link:focus { top: 1rem; }
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(var(--ink), rgba(8, 11, 10, 0.5));
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand img, .footer-brand img { flex-shrink: 0; }
.site-header nav { display: flex; align-items: center; gap: 2rem; }
.header-link {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  min-height: 44px;
  border-bottom: 2px solid var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.experience-link { border-color: transparent; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 9rem clamp(1.2rem, 4vw, 4.5rem) 5.5rem;
}
.hero-carousel { position: absolute; z-index: -1; inset: 0 0 0 32%; touch-action: pan-y; }
.hero-photo { position: absolute; inset: 0; margin: 0; }
.hero-slide { opacity: 0; visibility: hidden; transition: opacity 800ms ease, visibility 800ms; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 0% 45%; }
.hero-photo[data-person="Adam Starling"] img { object-position: 20% 45%; }
.hero-photo[data-person="Zeak Gallent"] img { object-position: 30% 45%; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink), rgba(8, 11, 10, 0.7) 18%, rgba(8, 11, 10, 0.05) 75%),
    linear-gradient(0deg, var(--ink), transparent 30%, transparent 80%, rgba(8, 11, 10, 0.35));
}
.hero-inner { width: min(930px, 67%); }
.kicker, .section-label, .card-label {
  margin: 0;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.kicker { display: flex; align-items: center; gap: 0.7rem; }
.status-light { width: 7px; height: 7px; flex-shrink: 0; background: var(--gold); border-radius: 50%; }
.event-logo-heading { width: 100%; margin: 0.6rem 0 -0.5rem; line-height: 0; }
.event-logo { width: 100%; height: auto; }
.hero-line { margin: 1.2rem 0 1.8rem; color: #d9d8cf; font-family: "Barlow Condensed", sans-serif; font-size: clamp(1.6rem, 2.6vw, 2.4rem); line-height: 1.18; }
.hero-line strong { color: var(--paper); font-weight: 700; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem 1.8rem; }
.hero-venue { margin: 1.5rem 0 0; color: #c4c7c0; font-size: 0.8rem; line-height: 1.9; }
.hero-venue time { color: var(--paper); font-weight: 600; }
.hero-photo-credit {
  position: absolute;
  bottom: 1.4rem;
  right: clamp(1.2rem, 4vw, 4.5rem);
  margin: 0;
  color: #c4c7c0;
  font-size: 0.65rem;
  line-height: 1.7;
  text-align: right;
}
.hero-photo-credit a { display: inline-block; min-height: 32px; text-underline-offset: 3px; }
.hero-person { position: absolute; z-index: 1; right: clamp(1.2rem, 4vw, 4.5rem); bottom: 8.2rem; padding: 0; text-align: right; color: var(--paper); }
.hero-person span { display: block; margin-bottom: 0.4rem; color: var(--gold); font-family: "Barlow Condensed", sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.hero-person strong { display: block; font-family: "Barlow Condensed", sans-serif; font-size: clamp(2.3rem, 4.5vw, 4.2rem); font-weight: 900; line-height: 1; text-transform: uppercase; }
.carousel-controls { position: absolute; z-index: 2; right: clamp(1.2rem, 4vw, 4.5rem); bottom: 4.4rem; display: flex; gap: 0.3rem; }
.carousel-controls[hidden] { display: none; }
.carousel-controls button { min-height: 44px; min-width: 44px; padding: 0.5rem 0.7rem; border: 1px solid var(--line); border-bottom: 3px solid var(--line); background: rgba(8, 11, 10, 0.86); color: var(--paper); font-family: "Barlow Condensed", sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; }
.carousel-controls button:hover { border-color: var(--gold); }
.carousel-controls button[aria-pressed="true"] { color: var(--gold); border-bottom-color: var(--gold); }
.carousel-controls .carousel-toggle { min-width: 60px; margin-left: 0.4rem; color: var(--muted); }
.primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 3.35rem;
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}
.primary-button:hover, .secondary-button:hover { background: #ffcc4b; transform: translateY(-3px); }
.text-link, .calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  text-transform: uppercase;
}
.text-link:hover { color: var(--gold); }

.ticker { overflow: hidden; border-block: 1px solid #31937a; background: #00664f; }
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 0.9rem 0;
  animation: ticker 28s linear infinite;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.ticker-track span { padding-inline: 2.8rem; }
.ticker-track i { width: 0.35rem; height: 0.35rem; background: var(--gold); transform: rotate(45deg); }
@keyframes ticker { to { transform: translateX(-50%); } }

.experience, .updates, .watch { width: min(1280px, calc(100% - 2.4rem)); margin-inline: auto; }
.experience { padding-top: clamp(4rem, 7vw, 7rem); }
.experience-heading { display: grid; grid-template-columns: 1.5fr 1fr; align-items: end; gap: 2rem; margin-bottom: 2.5rem; }
h2 {
  margin: 0.7rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}
.experience-heading h2 span { color: var(--gold); }
.experience-intro { max-width: 430px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.photo-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.5rem; }
.photo-grid figure { min-width: 0; margin: 0; }
.photo-feature { grid-row: span 2; display: flex; flex-direction: column; }
.photo-frame { position: relative; overflow: hidden; background: #141b17; }
.photo-feature .photo-frame { flex: 1; }
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(8, 11, 10, 0.92));
  pointer-events: none;
}
.photo-frame img { width: 100%; height: auto; }
.photo-crowd .photo-frame, .photo-gold .photo-frame { aspect-ratio: 2; }
.photo-crowd img, .photo-gold img { height: 100%; object-fit: cover; }
.photo-feature img { height: 100%; object-fit: cover; object-position: 52% 50%; }
.photo-tag {
  position: absolute;
  z-index: 1;
  bottom: 1.3rem;
  left: 1.5rem;
  right: 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.photo-feature .photo-tag { font-size: clamp(2.4rem, 5vw, 4.6rem); }
figcaption { padding-top: 0.65rem; color: #b3b8b3; font-size: 0.66rem; line-height: 1.5; }
figcaption span { padding-inline: 0.3rem; }
figcaption a { display: inline-block; min-height: 32px; text-underline-offset: 3px; }
.archive-note { margin: 1.4rem 0 0; color: var(--muted); font-size: 0.76rem; line-height: 1.7; }

.statement {
  position: relative;
  margin-block: clamp(4rem, 7vw, 7rem);
  padding: clamp(4rem, 7vw, 7rem) 1.2rem;
  border-block: 1px solid var(--line);
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 134, 106, 0.13), transparent 65%);
}
.statement h2 { font-size: clamp(3.4rem, 8.5vw, 8rem); }
.statement h2 em { color: var(--gold); font-style: normal; }
.statement > p:not(.section-label) { margin: 1.8rem auto 1rem; color: var(--muted); font-size: clamp(0.95rem, 1.6vw, 1.1rem); line-height: 1.8; }

.updates { padding-bottom: clamp(4rem, 7vw, 7rem); }
.section-heading { margin-bottom: 2.5rem; }
.status-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; border: 1px solid var(--line); }
.status-card { padding: clamp(1.5rem, 3vw, 2.5rem); min-width: 0; }
.status-card + .status-card { border-left: 1px solid var(--line); }
.status-card h3 { margin: 2rem 0 1.1rem; font-family: "Barlow Condensed", sans-serif; font-size: clamp(2rem, 3.2vw, 3rem); font-weight: 700; line-height: 1.06; text-transform: uppercase; }
.status-card > p:not(.card-label) { color: var(--muted); line-height: 1.7; font-size: 0.92rem; }
.date-card { color: var(--ink); background: var(--paper); }
.date-card .card-label, .date-card > p:not(.card-label) { color: #454d46; }
.date-display { display: block; margin-top: 1.3rem; font-family: "Barlow Condensed", sans-serif; font-size: clamp(4.8rem, 7vw, 6.5rem); font-weight: 900; letter-spacing: -0.035em; line-height: 0.9; }
.date-display span { display: inline-block; margin-left: 0.65rem; color: #00664f; font-size: 1.4rem; letter-spacing: 0.02em; writing-mode: vertical-rl; }
.date-card h3 { margin: 1.2rem 0 0.8rem; font-size: 1.4rem; }
.calendar-link:hover { color: #00664f; }

.watch { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: clamp(4rem, 7vw, 7rem); padding-block: 2.5rem; border-block: 1px solid var(--line); }
.watch h2 { font-size: clamp(2.6rem, 4.5vw, 4.6rem); }
.watch .secondary-button { flex-shrink: 0; }
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1.2rem, 4vw, 4.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  line-height: 1.6;
}
footer p { margin: 0; }
footer p a { display: inline-block; min-height: 32px; text-underline-offset: 3px; }

.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
  .js-reveal .reveal.is-visible { opacity: 1; transform: none; }
}

@media (min-width: 1600px) {
  .hero { min-height: 880px; }
  .hero-inner { margin-left: max(0px, calc((100vw - 1500px) / 2)); }
}
@media (max-width: 960px) {
  .brand span { display: none; }
  .hero { min-height: 730px; }
  .hero-inner { width: 76%; }
  .hero-carousel { left: 24%; }
  .hero-person { bottom: 8rem; }
  .experience-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .experience-intro { max-width: 650px; }
  .photo-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .photo-feature { grid-column: 1 / -1; grid-row: auto; }
  .photo-feature img { height: auto; }
  .photo-crowd .photo-frame, .photo-gold .photo-frame { aspect-ratio: 1.5; }
  .status-grid { grid-template-columns: 1fr 1fr; }
  .status-card:last-child { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); }
  .status-card:last-child h3 br { display: none; }
  .watch { align-items: flex-start; flex-direction: column; }
  footer { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .site-header { padding: 0.85rem 1.2rem; }
  .brand img { width: 44px; height: 44px; }
  .experience-link { display: none; }
  .hero { display: flex; flex-direction: column; align-items: stretch; min-height: 0; padding: 4.5rem 1.2rem 5.5rem; }
  .hero-carousel { position: relative; inset: auto; z-index: 0; order: 0; width: calc(100% + 2.4rem); height: auto; aspect-ratio: 1.15; margin: 0 -1.2rem; }
  .hero-photo img, .hero-photo[data-person] img { object-position: 50% 35%; }
  .hero-photo::after { background: linear-gradient(0deg, var(--ink), transparent 40%); }
  .hero-person { right: 1.2rem; bottom: 2.7rem; }
  .hero-person strong { font-size: 2.3rem; }
  .hero-person span { font-size: 0.7rem; }
  .carousel-controls { position: relative; order: 1; inset: auto; justify-content: space-between; gap: 0.2rem; margin-top: -1.6rem; margin-bottom: 1.3rem; }
  .carousel-controls button { padding-inline: 0.55rem; font-size: 0.8rem; }
  .carousel-controls .carousel-toggle { min-width: 48px; margin-left: 0.2rem; }
  .hero-inner { order: 2; width: 100%; margin-top: 0; }
  .kicker { font-size: 0.75rem; letter-spacing: 0.11em; }
  .event-logo-heading { width: 100%; margin: 0.8rem 0 -0.4rem; }
  .hero-line { margin-top: 1rem; font-size: 1.9rem; }
  .hero-actions { gap: 0.7rem 1.4rem; }
  .hero-actions .primary-button { width: 100%; }
  .hero-photo-credit { right: auto; left: 1.2rem; bottom: 0.65rem; text-align: left; font-size: 0.62rem; }
  .hero-venue { margin-top: 0.7rem; }
  .ticker-track span { padding-inline: 1.4rem; }
  .experience { padding-top: 3.5rem; }
  .experience-heading { margin-bottom: 2rem; }
  .experience-intro { font-size: 0.93rem; }
  .photo-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .photo-feature { grid-column: auto; }
  .photo-tag, .photo-feature .photo-tag { left: 1rem; bottom: 1rem; font-size: 2.2rem; }
  figcaption { font-size: 0.65rem; }
  .statement .section-label { max-width: 280px; margin-inline: auto; line-height: 1.5; }
  .statement h2 { font-size: clamp(2.4rem, 10.5vw, 3.5rem); }
  .status-grid { grid-template-columns: 1fr; }
  .status-card + .status-card { border-left: 0; border-top: 1px solid var(--line); }
  .status-card h3 { margin-top: 1rem; }
  .status-card:last-child { grid-column: auto; }
  .status-card:last-child h3 br { display: initial; }
  .date-display { font-size: 5.8rem; }
  footer { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .primary-button, .secondary-button { transition: none; }
  .hero-slide { transition: none; }
}
