:root {
  color-scheme: light;
  --ink: #181613;
  --muted: #665f56;
  --paper: #f6f1e7;
  --surface: #fffdf8;
  --line: #ded4c4;
  --line-strong: #c9bba6;
  --clay: #a94132;
  --clay-dark: #7d2f27;
  --moss: #496c58;
  --ochre: #c99b43;
  --deep: #25201b;
  --soft: #ece2d1;
  --shadow: 0 18px 50px rgba(37, 32, 27, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(222, 212, 196, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  background: var(--deep);
  color: var(--paper);
  border-radius: 0.35rem;
}

.brand-mark svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name,
.brand-subtitle {
  display: block;
  white-space: nowrap;
}

.brand-name {
  max-width: min(46vw, 38rem);
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 900;
  font-size: 0.92rem;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.58rem 0.72rem;
  color: var(--muted);
  border-radius: 0.3rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(169, 65, 50, 0.1);
  color: var(--clay-dark);
  outline: none;
}

.site-nav .nav-register {
  margin-left: 0.35rem;
  background: var(--deep);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  background: var(--surface);
}

.nav-toggle-line {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.25rem auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 0.58fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 5vw, 4.5rem) clamp(4.5rem, 7vw, 6rem);
  min-height: clamp(34rem, 74vh, 44rem);
  background:
    radial-gradient(circle at 70% 28%, rgba(201, 155, 67, 0.18), transparent 26rem),
    linear-gradient(110deg, rgba(255, 253, 248, 0.98), rgba(239, 228, 210, 0.82));
}

.hero h1 {
  max-width: 16ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero h1 .title-x {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.34em;
  width: max-content;
  height: 1.1em;
  margin: 0.34em 0 0.4em;
  color: var(--ink);
  background: transparent;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.34em;
  font-weight: 950;
  line-height: 0;
  letter-spacing: 0;
  transform: none;
}

.hero h1 .title-x::before,
.hero h1 .title-x::after {
  content: "";
  display: block;
  width: 1.9em;
  height: 1px;
  border-radius: 999px;
}

.hero h1 .title-x::before {
  background: linear-gradient(90deg, transparent, rgba(24, 22, 19, 0.74));
}

.hero h1 .title-x::after {
  background: linear-gradient(90deg, rgba(24, 22, 19, 0.74), transparent);
}

.hero h1::selection {
  background: var(--ochre);
  color: var(--ink);
}

.hero-copy {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font-weight: 900;
  text-decoration: none;
}

.button-primary {
  background: var(--clay);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--clay-dark);
  outline: 3px solid rgba(169, 65, 50, 0.22);
}

.button-secondary {
  background: var(--surface);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--line-strong);
  outline: 3px solid rgba(201, 155, 67, 0.2);
}

.hero-dashboard {
  align-self: center;
  background: #2b241e;
  color: var(--paper);
  border-radius: 0.55rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.snapshot-primary {
  display: flex;
  align-items: end;
  min-height: 12rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(226, 183, 88, 0.95), rgba(137, 80, 53, 0.72)),
    repeating-linear-gradient(45deg, rgba(37, 32, 27, 0.18) 0 2.5rem, transparent 2.5rem 5rem);
}

.snapshot-primary strong {
  display: block;
  max-width: 10ch;
  font-family: Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}

.snapshot-grid div {
  padding: 1rem;
  border-top: 1px solid rgba(246, 241, 231, 0.13);
}

.snapshot-grid div:nth-child(odd) {
  border-right: 1px solid rgba(246, 241, 231, 0.13);
}

.snapshot-grid dt {
  color: rgba(246, 241, 231, 0.62);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.snapshot-grid dd {
  margin: 0.25rem 0 0;
  font-size: 1.1rem;
  font-weight: 950;
}

.snapshot-grid a,
address a {
  white-space: nowrap;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.05rem;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  transform: translateX(-50%);
  border: 1px solid rgba(24, 22, 19, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  backdrop-filter: blur(10px);
  box-shadow: 0 0.75rem 2rem rgba(24, 22, 19, 0.08);
}

.scroll-cue span {
  width: 0.82rem;
  height: 0.82rem;
  border-right: 2px solid var(--clay);
  border-bottom: 2px solid var(--clay);
  transform: rotate(45deg);
  animation: arrowDrift 1.45s ease-in-out infinite;
}

@keyframes arrowDrift {
  0% {
    transform: translateY(-0.22rem) rotate(45deg);
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(0.22rem) rotate(45deg);
    opacity: 0.45;
  }
}

.section,
.essentials,
.final-cta {
  padding: clamp(3rem, 6vw, 5.25rem) clamp(1rem, 5vw, 4.5rem);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.essentials-grid,
.section-cards,
.venue-grid {
  display: grid;
  gap: 1rem;
}

.essentials-grid,
.section-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.essentials-grid article,
.section-cards article,
.venue-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1.2rem;
}

.essentials-grid span {
  color: var(--ochre);
  font-weight: 950;
}

h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.essentials-grid h3 {
  margin-top: 0.65rem;
}

p {
  margin: 0;
}

.essentials-grid p,
.section-cards p,
.section-meta,
.venue-grid p,
.inline-note,
.lane-note {
  color: var(--muted);
}

.section-meta {
  display: grid;
  gap: 0.4rem;
  padding: 0 0 0 1.05rem;
  margin: 0;
  list-style: disc;
  font-weight: 760;
}

.section-meta li {
  padding-left: 0.15rem;
}

.section-meta li::marker {
  color: var(--clay);
}

.section-meta strong {
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.14em;
}

.section-cards dl {
  margin: 1rem 0 0;
}

.section-cards dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
}

.section-cards dt {
  color: var(--muted);
  font-weight: 850;
}

.section-cards dd {
  margin: 0;
  font-weight: 950;
}

.card-prize {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.schedule-section {
  background: var(--deep);
  color: var(--paper);
}

.schedule-heading {
  max-width: 58rem;
}

.schedule-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.schedule-lane {
  background: #fff9ee;
  color: var(--ink);
  border: 1px solid rgba(246, 241, 231, 0.18);
  border-radius: 0.55rem;
  overflow: hidden;
}

.schedule-lane header {
  padding: 1.25rem;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.featured-lane header {
  background: #e8d2a0;
}

.schedule-lane header p {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-lane h3 {
  margin: 0.35rem 0;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.schedule-lane header span {
  color: var(--muted);
  font-weight: 800;
}

.timeline {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: minmax(7rem, 0.45fr) 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 4.4rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child {
  border-bottom: 0;
}

.timeline time {
  color: var(--muted);
  font-weight: 900;
}

.timeline span {
  font-size: 1.25rem;
  font-weight: 950;
}

.timeline .break {
  background: rgba(73, 108, 88, 0.12);
}

.timeline .break span {
  color: var(--moss);
}

.lane-note {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 800;
}

.note-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.inline-note {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 0.25rem;
}

.note-grid .inline-note {
  margin-top: 0;
}

.note-green {
  background: rgba(73, 108, 88, 0.11);
  border-left: 4px solid var(--moss);
}

.note-gold {
  background: rgba(201, 155, 67, 0.14);
  border-left: 4px solid var(--ochre);
}

.fees-section {
  background: var(--soft);
}

.fee-table {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
}

.fee-table > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.fee-table > div:last-child {
  border-bottom: 0;
}

.fee-table span {
  color: var(--muted);
  font-weight: 750;
}

.fee-table strong {
  font-size: 1.22rem;
}

.venue-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

address {
  margin: 0 0 0.9rem;
  font-style: normal;
  font-weight: 900;
}

.email-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.email-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.35rem;
  padding: 0.2rem 0;
}

.copy-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  min-height: 1.8rem;
  padding: 0 0.65rem;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.copy-mini:hover,
.copy-mini:focus-visible {
  border-color: var(--clay);
  background: rgba(169, 65, 50, 0.08);
  color: var(--clay-dark);
  outline: 3px solid rgba(169, 65, 50, 0.16);
}

.copy-mini.is-copied {
  border-color: var(--moss);
  background: rgba(73, 108, 88, 0.14);
  color: var(--moss);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 0 clamp(1rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem);
  background: var(--deep);
  color: var(--paper);
  border-radius: 0.55rem;
}

.final-cta p {
  margin-top: 0.75rem;
  color: rgba(246, 241, 231, 0.76);
}

.final-cta .button {
  min-width: 7.5rem;
  min-height: 3.35rem;
  padding-inline: 1.35rem;
  font-size: 1rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem clamp(1rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  font-weight: 900;
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-register {
    margin-left: 0;
  }

  .hero,
  .venue-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

}

@media (max-width: 820px) {
  .schedule-board,
  .essentials-grid,
  .section-cards {
    grid-template-columns: 1fr;
  }

  .final-cta,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-subtitle {
    display: none;
  }

  .brand-name {
    max-width: 13.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.05rem);
  }

  .hero h1 .title-x {
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding-bottom: 5rem;
  }

  .hero-dashboard {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .snapshot-grid div:nth-child(odd) {
    border-right: 0;
  }

  .timeline li,
  .fee-table > div {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

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