:root {
  --ink: #001e32;
  --muted: #617080;
  --paper: #fff8ea;
  --surface: #ffffff;
  --surface-strong: #f5ead5;
  --navy: #001e32;
  --gold: #de9e05;
  --gold-2: #f0bd36;
  --green: #001e32;
  --line: rgba(16, 32, 51, .14);
  --shadow: 0 18px 55px rgba(7, 35, 63, .16);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 30, 50, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 30, 50, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 72%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(16px, 4vw, 56px);
  background: rgba(255, 248, 234, .9);
  border-bottom: 1px solid rgba(0, 30, 50, .1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-logo-wide {
  width: clamp(172px, 22vw, 252px);
  height: auto;
  max-height: 58px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: .95;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.top-nav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .62);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 70px;
}

.home-hero,
.tour-hero,
.tour-card {
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  min-height: 0;
  padding: clamp(38px, 7vw, 72px) 0 clamp(34px, 6vw, 62px);
}

.tour-hero,
.tour-card {
  grid-template-columns: minmax(0, .85fr) minmax(320px, .62fr);
  padding: clamp(34px, 6vw, 72px) 0;
}

.home-copy,
.tour-hero-copy,
.tour-card-copy {
  min-width: 0;
  max-width: 720px;
}

.home-mark {
  margin: 0;
  justify-self: center;
}

.home-mark img {
  display: block;
  width: min(100%, 300px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 30, 50, .12));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(62px, 10vw, 118px);
  line-height: 1.08;
}

.official-title {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  line-height: 1.25;
}

.tour-title span {
  display: inline;
  line-height: 1.08;
}

.title-stack-mobile span {
  display: inline;
  line-height: 1.08;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.08;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.organizer-line {
  display: block;
  margin-top: 8px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.button.primary {
  color: #111b25;
  background: var(--gold);
  border: 2px solid var(--gold);
}

.button:hover,
.top-nav a:hover,
.poster-link:hover {
  transform: translateY(-1px);
}

.content {
  padding-top: clamp(28px, 6vw, 62px);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.tour-card {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(0, 30, 50, .08);
}

.poster {
  margin: 0;
}

.poster img {
  display: block;
  width: 100%;
  max-height: min(660px, calc(100vh - 134px));
  object-fit: contain;
  object-position: center bottom;
  box-shadow: var(--shadow);
}

.poster-link {
  transition: transform .18s ease;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-item {
  display: grid;
  grid-template-columns: 72px 98px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 16px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0, 30, 50, .07);
}

.event-highlight {
  background: var(--navy);
  border-color: var(--navy);
}

.event-logo {
  display: block;
  width: 64px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 30, 50, .16);
}

.event-date {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  line-height: .86;
}

.event-item p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.event-highlight h3,
.event-highlight p {
  color: #fff;
}

.event-highlight .event-date {
  color: var(--gold-2);
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 18px;
}

.info-block,
.note-panel {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(0, 30, 50, .08);
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}

.facts div {
  min-height: 100px;
  padding: 16px;
  background: var(--surface-strong);
  border-left: 6px solid var(--gold);
}

.facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.facts dd {
  margin: 8px 0 0;
  font-weight: 800;
  line-height: 1.35;
}

.prize-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.35;
}

.prize-list li {
  position: relative;
  padding-left: 22px;
}

.prize-list li::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.points-intro {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.points-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.points-list li {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 14px;
  background: var(--surface-strong);
  border-top: 6px solid var(--gold);
}

.points-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.points-list strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
}

.note-panel {
  background: var(--navy);
}

.note-panel h2,
.note-panel p {
  color: #fff;
}

.note-panel p:last-child {
  max-width: 850px;
  margin: 18px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  font-weight: 800;
}

@media (max-width: 900px) {
  .home-hero,
  .tour-hero,
  .tour-card,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 0;
  }

  .home-mark {
    justify-self: start;
  }

  .home-mark img {
    width: min(52vw, 220px);
  }

  .poster img {
    max-height: none;
  }
}

@media (max-width: 700px) {
  .tour-page .top-nav {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand-logo-wide {
    width: min(64vw, 210px);
    max-height: 48px;
  }

  .top-nav {
    width: 100%;
  }

  .top-nav a {
    width: 100%;
    text-align: center;
  }

  main {
    width: calc(100% - 24px);
    max-width: 1180px;
  }

  .home-hero {
    gap: 20px;
    padding: 34px 0 32px;
  }

  .home-mark {
    display: none;
  }

  h1 {
    font-size: 56px;
  }

  .official-title {
    max-width: 31ch;
    font-size: 22px;
    line-height: 1.35;
  }

  .lead {
    max-width: 31ch;
  }

  .tour-title span {
    display: block;
  }

  .title-stack-mobile span {
    display: block;
  }

  .button {
    width: 100%;
  }

  .tour-card {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .event-item {
    grid-template-columns: 56px minmax(64px, auto) 1fr;
    gap: 12px;
    min-height: 88px;
    padding: 12px;
  }

  .event-logo {
    width: 52px;
  }

  .event-date {
    font-size: 30px;
  }

  .event-item h3 {
    font-size: 26px;
  }

  .event-item p {
    font-size: 15px;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .points-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .points-list {
    grid-template-columns: 1fr;
  }
}

/* Results table */
.results-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.results-table th {
  text-align: left;
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--line);
}

.results-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.results-table td:first-child {
  font-weight: 700;
  color: var(--muted);
  width: 4rem;
}

.results-table tbody tr:hover {
  background: rgba(0, 30, 50, 0.04);
}

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

  .button:hover,
  .top-nav a:hover,
  .poster-link:hover {
    transform: none;
  }
}
