:root {
  --black: #0a0a0b;
  --ink: #121214;
  --muted: #6b6f76;
  --line: #e6e7ea;
  --bg: #f3f4f6;
  --white: #ffffff;
  --blue: #1f5eff;
  --blue-deep: #0d3ecf;
  --orange: #ff5a1f;
  --max: 1080px;
  --nav-h: 64px;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(10, 10, 11, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-deep); }
a:hover { color: var(--orange); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.15rem calc(2.5rem + env(safe-area-inset-bottom));
}

/* —— Header / Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 -1.15rem 1.5rem;
  padding: 0 1.15rem;
}

.site-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), #062a8a);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(255, 90, 31, 0.85);
}

.brand-mark span {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
  text-align: center;
}

.brand-text {
  font-family: "Syne", sans-serif;
  font-weight: 760;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-text small {
  display: block;
  font-family: Manrope, sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.15rem;
}

.nav-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.nav-toggle svg { width: 20px; height: 20px; }

.nav {
  display: none;
  width: 100%;
  flex-basis: 100%;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0 1rem;
}

.nav.open { display: flex; }

.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  border-radius: 12px;
}

.nav a:hover,
.nav a.active {
  color: #fff;
  background: rgba(31, 94, 255, 0.28);
}

@media (min-width: 820px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    width: auto;
    margin-left: auto;
    padding: 0;
    gap: 0.2rem;
  }
  .nav a {
    font-size: 0.88rem;
    padding: 0.55rem 0.85rem;
  }
  .logo-strip { display: block; }
}

.logo-strip {
  display: none;
  max-width: var(--max);
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.logo-strip img {
  margin: 0 auto;
  width: min(100%, 520px);
}

/* —— Hero —— */
.hero {
  margin: 0 0 1.5rem;
}

.hero-copy {
  margin-bottom: 1.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 0.65rem;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
}

.hero h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 9vw, 4.4rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 0.75rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-lead {
  font-size: clamp(1.02rem, 2.8vw, 1.2rem);
  color: var(--muted);
  max-width: 34rem;
  font-weight: 500;
  margin-bottom: 1.15rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover { color: #fff; }

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover { color: var(--ink); border-color: #c9ccd2; }

/* —— Photos —— */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
}

@media (min-width: 700px) {
  .photo-grid {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
  }
  .photo-grid .feature { grid-row: 1 / 3; }
  .photo-grid .wide { grid-column: 1 / -1; }
}

.shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s ease;
}

.shot:hover img { transform: scale(1.03); }

.shot.feature img { aspect-ratio: 3 / 4; min-height: 280px; }
@media (min-width: 700px) {
  .shot.feature img { aspect-ratio: auto; min-height: 100%; height: 100%; }
}

.shot.wide img { aspect-ratio: 16 / 9; }
.shot.portrait img { aspect-ratio: 3 / 4; object-position: center 18%; }

.shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 650;
}

/* —— Sections —— */
.home-next .next-date {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.home-accent {
  margin: 1.25rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.home-accent img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: center 30%;
}

.home-accent figcaption {
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 550;
}

.home-accent a {
  font-weight: 750;
  text-decoration: none;
}

.gallery-page {
  margin-top: 0.25rem;
}

@media (min-width: 700px) {
  .gallery-page {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-page .wide { grid-column: 1 / -1; }
  .gallery-page .feature { grid-row: auto; }
}

.page-intro {
  margin-bottom: 1.35rem;
}

.page-intro h2 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 0.45rem;
}

.page-intro p {
  color: var(--muted);
  max-width: 38rem;
  font-weight: 500;
}

.section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 30px rgba(10, 10, 11, 0.04);
}

.section h3 {
  font-family: "Syne", sans-serif;
  font-weight: 750;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section p + p { margin-top: 0.7rem; }

.note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #eef3ff;
  border-radius: 12px;
  color: #334;
  font-size: 0.95rem;
  font-weight: 550;
}

.warn {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: #fff1ea;
  border-radius: 12px;
  color: #6b2a12;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Facts */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin: 0 0 1.25rem;
}

@media (min-width: 640px) {
  .facts { grid-template-columns: repeat(4, 1fr); }
}

.fact {
  background: var(--black);
  color: #fff;
  border-radius: 14px;
  padding: 1.1rem 0.9rem;
  min-height: 6.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.fact:nth-child(2) { background: var(--blue); }
.fact:nth-child(3) { background: var(--orange); color: #1a0a00; }
.fact:nth-child(4) { background: #17191f; }

.fact .v {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.fact .l {
  margin-top: 0.3rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Link cards */
.link-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.link-list a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 1.1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.link-list a:hover {
  border-color: #b8c4ff;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: var(--ink);
}

.link-list strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-weight: 750;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.link-list span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

/* Schedule */
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.meta-line span {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: #eef3ff;
  color: var(--blue-deep);
}

.schedule-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
}

.schedule {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.schedule th,
.schedule td {
  text-align: left;
  padding: 0.85rem 0.55rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.schedule th {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-bottom: 2px solid var(--ink);
}

.schedule .date {
  font-family: "Syne", sans-serif;
  font-weight: 750;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.schedule .dow {
  display: block;
  font-family: Manrope, sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
  letter-spacing: 0;
}

.schedule tr.off td {
  color: #9aa0a8;
  font-style: italic;
}

.schedule tr.awards td {
  background: #fff7f2;
  font-weight: 700;
}

.schedule tr.awards .date { color: var(--orange); }

/* Venues / contact */
.venue-list,
.people {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .people { grid-template-columns: 1fr 1fr; }
}

.venue,
.person {
  padding: 1rem;
  border-radius: 14px;
  background: var(--bg);
}

.venue h3,
.person h3 {
  font-family: "Syne", sans-serif;
  font-weight: 750;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.venue p,
.person .role {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.person .role { margin-bottom: 0.55rem; }

.venue a,
.person a {
  display: inline-block;
  margin-top: 0.45rem;
  font-weight: 750;
  text-decoration: none;
  font-size: 0.92rem;
}

.person a { display: block; margin-top: 0.25rem; }

/* Rules */
.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin: 0.5rem 0 1rem;
}

.tab {
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
  padding: 0.7rem 0.4rem;
  border-radius: 12px;
  cursor: pointer;
  min-height: 44px;
}

.tab[aria-selected="true"] {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

.panel-rules { display: none; }
.panel-rules.active { display: block; }

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 0.65rem;
}

.rule-block ol,
.rule-block ul {
  margin: 0.5rem 0 0 1.15rem;
}

.rule-block li { margin: 0.4rem 0; }

.rule-block + .rule-block,
.section + .section { }

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 1.5rem 1.15rem;
  border-radius: var(--radius);
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  font-size: 0.9rem;
}

.site-footer strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-weight: 750;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

body.nav-open { overflow: hidden; }

@media (max-width: 819px) {
  .site-header.menu-open .nav {
    display: flex;
  }
}

@media print {
  .site-header, .nav-toggle { position: static; }
  .nav { display: flex !important; flex-direction: row; }
  .shot { box-shadow: none; }
}
