:root {
  --black: #050505;
  --ink: #141414;
  --paper: #f7f2e8;
  --white: #ffffff;
  --acid: #c9ff2f;
  --red: #f1452d;
  --blue: #165c83;
  --muted: #746e63;
  --line: rgba(20, 20, 20, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px clamp(16px, 5vw, 64px);
  background: rgba(5, 5, 5, 0.92);
  color: var(--white);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  background: #000;
}
.topbar nav {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.topbar nav::-webkit-scrollbar { display: none; }
.topbar nav a {
  flex: 0 0 auto;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255,255,255,.78);
  font-size: .86rem;
  font-weight: 800;
}
.topbar nav a:hover { color: var(--acid); }
.topbar nav a.radioLink {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--black);
}

.hero {
  position: relative;
  min-height: calc(100vh - 66px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .45fr);
  align-items: end;
  gap: clamp(18px, 4vw, 42px);
  padding: clamp(36px, 7vw, 76px) clamp(16px, 5vw, 64px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.heroCarousel {
  position: absolute;
  inset: 0;
}
.heroCarousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.92), rgba(5,5,5,.58) 45%, rgba(5,5,5,.28)),
    linear-gradient(0deg, rgba(5,5,5,.96), rgba(5,5,5,0) 58%);
}
.heroSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}
.heroSlide.active { opacity: .94; }
.heroSlide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroText, .nextCard { position: relative; z-index: 1; }
.heroText { max-width: 860px; padding-top: 120px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4.6vw, 4rem);
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
}
h3 {
  margin-bottom: 10px;
  font-size: clamp(1.16rem, 2.4vw, 1.7rem);
  line-height: 1;
}
p { color: var(--muted); line-height: 1.55; }
.heroText p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 900;
}
.button.primary { background: var(--acid); color: var(--black); }
.button.ghost { border: 1px solid rgba(255,255,255,.32); color: var(--white); }

.nextCard {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.nextCard span, .nextCard small {
  color: rgba(255,255,255,.62);
  font-weight: 900;
  text-transform: uppercase;
}
.nextCard strong {
  color: var(--acid);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: .78;
}
.nextCard p {
  margin-bottom: 0;
  color: white;
  font-size: 1.3rem;
  font-weight: 900;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.stats article {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px clamp(16px, 3vw, 32px);
  border-right: 1px solid var(--line);
  overflow: hidden;
}
.stats article:last-child { border-right: 0; }
.stats article.visitorStat {
  background: var(--black);
  color: var(--white);
}
.stats article.visitorStat strong { color: var(--acid); }
.stats article.visitorStat span { color: rgba(255,255,255,.78); }
.stats strong {
  color: var(--red);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: .92;
  overflow-wrap: anywhere;
}
.stats span {
  color: var(--muted);
  font-size: clamp(.9rem, 1.25vw, 1.05rem);
  font-weight: 800;
  line-height: 1.2;
}

.section {
  padding: clamp(38px, 6vw, 78px) clamp(16px, 5vw, 64px);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
}
.textStack { display: grid; gap: 18px; }
.routeCard {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
}
.routeCard b {
  min-width: 72px;
  min-height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--black);
  color: var(--acid);
  font-size: 1.45rem;
}
.routeCard p { margin-bottom: 0; }
.stravaRoute {
  width: min(100%, 640px);
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  justify-self: start;
}
.stravaRoute iframe,
.stravaRoute .strava-embed-placeholder {
  width: 100%;
  min-height: 300px;
}

.sectionHead {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(24px, 5vw, 48px);
}
.sectionHead.compact {
  grid-template-columns: 1fr;
  max-width: 820px;
}
.sectionHead h2 { color: inherit; }
.sectionHead p:not(.eyebrow) { max-width: 620px; }

.calendarWrap {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
  background: var(--white);
}
.calendar {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  transition: opacity 180ms ease, transform 180ms ease;
}
.calendar.isLoading {
  opacity: .55;
  transform: translateY(4px);
  pointer-events: none;
}
.calendarTitle {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: var(--black);
  color: var(--white);
}
.calendarTitle span { display: block; margin-bottom: 4px; color: rgba(255,255,255,.65); font-weight: 800; }
.calendarTitle strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.65rem, 3.6vw, 2.8rem);
  line-height: .88;
  text-transform: uppercase;
}
.monthNav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.monthNav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
}
.monthNav a:hover {
  border-color: var(--acid);
  color: var(--acid);
}
.monthNav b { color: var(--acid); text-transform: uppercase; }
.weekDays, .monthGrid { display: grid; grid-template-columns: repeat(7, 1fr); }
.weekDays {
  border-bottom: 1px solid var(--line);
  background: #ece5d8;
}
.weekDays span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.weekDays span:last-child { border-right: 0; }
.monthGrid article {
  min-height: 88px;
  display: grid;
  align-content: start;
  gap: 7px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px;
  background: rgba(255,255,255,.52);
}
.monthGrid article:nth-child(7n) { border-right: 0; }
.monthGrid .outside {
  background: rgba(20,20,20,.04);
  color: rgba(20,20,20,.28);
}
.monthGrid .outside strong { color: rgba(20,20,20,.24); }
.monthGrid .today {
  outline: 3px solid var(--acid);
  outline-offset: -3px;
}
.monthGrid strong {
  color: rgba(20,20,20,.62);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}
.monthGrid span {
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.05;
}
.couponOpen {
  display: grid;
  gap: 7px;
  justify-items: start;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.couponOpen:hover span,
.couponOpen:focus-visible span {
  text-decoration: underline;
}
.couponOpen:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}
.monthGrid small {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 8px;
  background: #e8efe5;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}
.monthGrid .free {
  background: var(--white);
}
.monthGrid .free strong {
  color: var(--red);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}
.monthGrid .special {
  background: var(--black);
  color: var(--white);
}
.monthGrid .special strong {
  color: var(--acid);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}
.monthGrid .special small { background: var(--red); color: var(--white); }
.monthGrid .coupon {
  background: var(--blue);
  color: var(--white);
}
.monthGrid .coupon strong {
  color: var(--acid);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}
.monthGrid .coupon small {
  background: var(--acid);
  color: var(--black);
}
.calendarNote {
  padding: 18px;
  background: #ece5d8;
}
.calendarNote p { margin-bottom: 0; }

.photographers {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 36px);
  align-items: start;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 8px solid var(--red);
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
  margin-top: clamp(18px, 4vw, 36px);
  margin-bottom: clamp(18px, 4vw, 36px);
}
.photographers .sectionHead {
  max-width: 820px;
  margin-bottom: 0;
}
.photographerGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 12px;
}
.photographerGrid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}
.photographerCard {
  min-height: 190px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
}
.photographerCard:hover strong,
.photographerCard:focus-visible strong {
  text-decoration: underline;
}
.photographerImage {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: #f6f4ef;
}
.photographerImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photographerInfo {
  min-width: 0;
  display: grid;
  gap: 7px;
}
.photographerInfo strong {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.photographerInfo small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.modalOpen { overflow: hidden; }
.couponModal, .sponsorModal {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.couponModal[aria-hidden="false"], .sponsorModal[aria-hidden="false"] { display: flex; }
.couponModalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,.72);
}
.couponDialog, .sponsorDialog {
  position: relative;
  width: min(520px, 100%);
  border-radius: 8px;
  padding: clamp(22px, 5vw, 34px);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
}
.couponDialog h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 7vw, 3.8rem);
}
.couponDialog p:not(.eyebrow) {
  margin: 18px 0 22px;
}
.couponClose {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
}
.couponCodeBox {
  display: grid;
  gap: 8px;
  border: 1px dashed rgba(16,18,20,.32);
  border-radius: 8px;
  padding: 16px;
  background: #f6f4ef;
}
.couponCodeBox span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.couponCodeBox strong {
  color: var(--red);
  font-size: clamp(1.8rem, 8vw, 3.2rem);
  line-height: .9;
}
.sponsorDialog {
  width: min(620px, 100%);
}
.sponsorModalImage {
  min-height: 160px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #f6f4ef;
}
.sponsorModalImage:empty { display: none; }
.sponsorModalImage img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.sponsors {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
  background: var(--paper);
  border-top: 1px solid rgba(16,18,20,.08);
}
.sponsorGrid {
  align-self: start;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}
.sponsorGrid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}
.sponsorCardButton {
  width: 100%;
  min-height: 220px;
  display: grid;
  grid-template-rows: 132px minmax(32px, auto) 24px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  border: 0;
  padding: 16px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: center;
  cursor: pointer;
}
.sponsorCardButton:hover .sponsorName,
.sponsorCardButton:focus-visible .sponsorName {
  text-decoration: underline;
}
.sponsorLogo {
  width: 100%;
  height: 132px;
  min-height: 132px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  padding: 10px;
  background: rgba(255,255,255,.84);
}
.sponsorLogo img {
  max-width: 96%;
  max-height: 128px;
  object-fit: contain;
}
.sponsorName {
  margin-bottom: 0;
  font-size: clamp(.98rem, 1.7vw, 1.25rem);
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.sponsorCardButton:not(.sponsorOpen)::after {
  content: "";
  min-height: 24px;
}
.sponsorGrid .hasCoupon {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}
.sponsorGrid .hasCoupon .sponsorLogo {
  background: var(--white);
}
.sponsorCouponTag {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--white);
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.finalCta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(44px, 8vw, 82px) clamp(16px, 5vw, 64px);
  background: var(--red);
  color: var(--white);
}
.finalCta .eyebrow { color: var(--acid); }
.finalCta h2 { color: var(--white); }
.finalCta h2 {
  max-width: 680px;
  font-size: clamp(1.9rem, 5vw, 3.8rem);
}
.finalCta p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.8);
}

@media (max-width: 900px) {
  .hero, .split, .sectionHead, .calendarWrap, .photographers, .sponsors, .finalCta {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .nextCard { max-width: 360px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats article:nth-child(2n) { border-right: 0; }
  .photographerGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sponsorGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 10px 12px;
  }
  .brand {
    max-width: 100%;
    gap: 8px;
    font-size: .92rem;
    line-height: 1.05;
  }
  .brand img { width: 38px; height: 38px; }
  .topbar nav {
    width: 100%;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow-x: visible;
  }
  .topbar nav a {
    min-height: 34px;
    padding: 0 8px;
    font-size: .72rem;
    white-space: nowrap;
  }
  .topbar nav a.radioLink {
    padding: 0 9px;
  }
  .hero {
    padding: 28px 16px 42px;
  }
  .heroText { padding-top: 64px; }
  h1 { font-size: clamp(2.65rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 3rem); }
  .actions, .button { width: 100%; }
  .stats article {
    min-height: 104px;
    padding: 16px;
  }
  .stats strong { font-size: clamp(1.75rem, 10vw, 2.65rem); }
  .stats span { font-size: .86rem; }
  .section { padding: 44px 16px; }
  .calendarTitle {
    align-items: flex-start;
    flex-direction: column;
  }
  .monthNav {
    width: 100%;
    justify-content: flex-start;
  }
  .weekDays span { min-height: 30px; font-size: .62rem; }
  .monthGrid article {
    min-height: 74px;
    padding: 8px;
    gap: 5px;
  }
  .monthGrid strong { font-size: 1rem; }
  .monthGrid .free strong,
  .monthGrid .special strong { font-size: 1.25rem; }
  .monthGrid span { font-size: .66rem; }
  .monthGrid small {
    padding: 4px 5px;
    font-size: .54rem;
  }
  .photographerGrid { grid-template-columns: 1fr; }
  .photographerCard {
    min-height: 154px;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }
  .photographerImage {
    width: 118px;
    height: 118px;
  }
  .photographerInfo strong { font-size: 1.25rem; }
  .photographerInfo small { font-size: .92rem; }
  .sponsorGrid { grid-template-columns: 1fr; }
  .sponsorCardButton {
    min-height: 246px;
    grid-template-rows: 154px minmax(34px, auto) 24px;
    gap: 12px;
  }
  .sponsorLogo {
    height: 154px;
    min-height: 154px;
    padding: 12px;
  }
  .sponsorLogo img {
    max-height: 150px;
    max-width: 96%;
  }
}

@media (max-width: 380px) {
  .topbar nav a {
    min-height: 32px;
    padding: 0 7px;
    font-size: .68rem;
  }
  .photographerCard {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }
  .photographerImage {
    width: 104px;
    height: 104px;
  }
  .photographerInfo strong { font-size: 1.08rem; }
  .photographerInfo small { font-size: .84rem; }
  .sponsorCardButton {
    min-height: 224px;
    grid-template-rows: 136px minmax(34px, auto) 24px;
  }
  .sponsorLogo {
    height: 136px;
    min-height: 136px;
  }
  .sponsorLogo img {
    max-height: 132px;
  }
}
