/* Lake Tahoe Equine Conference — styles */

:root {
  --navy: #0a1620;
  --navy-deep: #061018;
  --slate: #1a2e3c;
  --lake: #3d6b85;
  --lake-bright: #5a8fad;
  --pine: #2a4538;
  --copper: #c17a3a;
  --copper-hot: #d4893f;
  --amber: #e8a854;
  --snow: #eef3f6;
  --mist: #d5e0e8;
  --ink: #132029;
  --muted: #5c7385;
  --line: rgba(19, 32, 41, 0.12);
  --white: #ffffff;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Figtree", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--snow);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}

p {
  margin: 0;
}

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

/* ——— Nav ——— */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav.is-scrolled,
.nav.is-open {
  background: rgba(6, 16, 24, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav.is-open {
  background: #061018;
  backdrop-filter: none;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  letter-spacing: 0.04em;
  color: var(--white);
  font-weight: 500;
  max-width: min(70vw, 22rem);
  line-height: 1.2;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.15rem;
  background: var(--copper);
  color: var(--white) !important;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--copper-hot);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - var(--nav-h));
  height: calc(100dvh - var(--nav-h));
  background: #061018;
  padding: 2rem 1.5rem calc(2rem + env(safe-area-inset-bottom, 0px));
  flex-direction: column;
  gap: 1.5rem;
  z-index: 99;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.nav.is-open .nav-mobile,
.nav-mobile.is-open {
  display: flex;
}

.nav-mobile[hidden] {
  display: none !important;
}

.nav-mobile a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  flex-shrink: 0;
}

body.nav-locked {
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  touch-action: none;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border: 0;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
}

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

.btn-primary {
  background: var(--copper);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--copper-hot);
  box-shadow: 0 10px 28px rgba(193, 122, 58, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 16, 24, 0.45) 0%, rgba(6, 16, 24, 0.2) 35%, rgba(6, 16, 24, 0.72) 70%, rgba(6, 16, 24, 0.94) 100%),
    linear-gradient(90deg, rgba(6, 16, 24, 0.35) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0 0 clamp(3.5rem, 10vh, 6rem);
}

.hero-edition {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 1s var(--ease) 0.15s forwards;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.75rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 18ch;
  opacity: 0;
  transform: translateY(28px);
  animation: riseIn 1s var(--ease) 0.25s forwards;
}

.hero-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 1s var(--ease) 0.45s forwards;
}

.hero-meta strong {
  font-weight: 600;
  color: var(--amber);
}

.hero-venue-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.2em;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.hero-venue-link:hover {
  color: var(--amber);
  text-decoration-color: var(--amber);
}

.hero-lede {
  margin-top: 1.15rem;
  max-width: 48rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 1s var(--ease) 0.6s forwards;
}

.hero-hotel-note {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.48);
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 1s var(--ease) 0.7s forwards;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 1s var(--ease) 0.75s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  right: clamp(1.25rem, 4vw, 3rem);
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  opacity: 0;
  animation: riseIn 1s var(--ease) 1.1s forwards;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— Sections ——— */

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-inner {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lake);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--navy);
  max-width: 16ch;
}

.section-lede {
  margin-top: 1.15rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ——— About ——— */

.about {
  background: var(--snow);
}

.about-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
  }
}

.topic-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.topic-list li {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.125rem;
}

.topic-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--copper);
  transform: translateY(-2px);
}

.ce-badge {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.95rem;
}

.ce-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--amber);
}

.about-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(6, 16, 24, 0.85));
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}

.includes {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.includes p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--slate);
  max-width: 40rem;
  line-height: 1.35;
}

/* ——— Speakers ——— */

.speakers {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.speaker-grid {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

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

.speaker {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .speaker {
    padding: 1.65rem 1.5rem 1.65rem 0;
  }

  .speaker:nth-child(even) {
    padding-left: 1.5rem;
    border-left: 1px solid var(--line);
  }
}

.speaker-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}

.speaker-cred {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lake);
}

.speaker-role {
  margin: 0.45rem 0 0;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 36ch;
}

/* ——— Schedule ——— */

.schedule {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--snow);
  border-top: 0;
}

.schedule-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(90, 143, 173, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(193, 122, 58, 0.16), transparent 50%),
    linear-gradient(165deg, #0a1620 0%, #061018 45%, #0d1f2c 100%);
  pointer-events: none;
}

.schedule-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    -18deg,
    transparent 0,
    transparent 11px,
    rgba(255, 255, 255, 0.015) 11px,
    rgba(255, 255, 255, 0.015) 12px
  );
}

.schedule .section-inner {
  position: relative;
  z-index: 1;
}

.schedule .section-label {
  color: var(--amber);
}

.schedule .section-title {
  color: var(--white);
  max-width: 12ch;
}

.schedule .section-lede {
  color: rgba(238, 243, 246, 0.68);
}

.schedule-intro {
  display: grid;
  gap: 0;
}

.schedule-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  width: fit-content;
  padding: 0.7rem 0.85rem 0.7rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.schedule-pdf:hover {
  border-color: rgba(232, 168, 84, 0.65);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.schedule-pdf-ext {
  display: inline-grid;
  place-items: center;
  min-width: 2.5rem;
  padding: 0.35rem 0.5rem;
  background: var(--copper);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.schedule-days {
  margin-top: 3.25rem;
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 900px) {
  .schedule-days {
    gap: 1.5rem;
  }
}

.schedule-day {
  position: relative;
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.4rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2rem) clamp(1.4rem, 3.5vw, 2rem)
    clamp(1.25rem, 4vw, 5.5rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid rgba(193, 122, 58, 0.75);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease);
}

.schedule-day:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  border-left-color: var(--copper-hot);
  transform: translateX(3px);
}

.schedule-day.is-free {
  border-left-color: rgba(90, 143, 173, 0.7);
  background: rgba(90, 143, 173, 0.08);
}

.schedule-day.is-free:hover {
  border-left-color: var(--lake-bright);
}

.schedule-day-index {
  position: absolute;
  top: 1.1rem;
  left: 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.02em;
  pointer-events: none;
}

@media (min-width: 720px) {
  .schedule-day-index {
    left: 1.15rem;
    top: 1.45rem;
  }
}

.schedule-day-header {
  margin: 0;
  padding: 0;
  border: 0;
}

.schedule-date {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.schedule-theme {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  max-width: 22ch;
}

.schedule-sponsors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin: 1rem 0 0;
}

.schedule-sponsors span {
  display: inline-block;
  padding: 0.28rem 0;
  font-size: 0.78rem;
  color: rgba(238, 243, 246, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.35;
}

.schedule-sessions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-session {
  display: grid;
  gap: 0.35rem 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.25s;
}

.schedule-session:last-child {
  border-bottom: 0;
  padding-bottom: 0.15rem;
}

@media (min-width: 640px) {
  .schedule-session {
    grid-template-columns: 10rem minmax(0, 1fr);
    align-items: start;
  }
}

.schedule-session.is-break {
  background: linear-gradient(90deg, rgba(193, 122, 58, 0.1), transparent 70%);
  margin: 0 -0.35rem;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

.schedule-time {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--copper-hot);
  white-space: nowrap;
  padding-top: 0.15rem;
}

@media (min-width: 640px) {
  .schedule-time::before {
    content: "";
    position: absolute;
    left: -1.05rem;
    top: 0.55rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--copper);
    box-shadow: 0 0 0 3px rgba(193, 122, 58, 0.2);
  }

  .schedule-sessions {
    position: relative;
  }

  .schedule-sessions::before {
    content: "";
    position: absolute;
    left: -0.9rem;
    top: 1.15rem;
    bottom: 1.15rem;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgba(193, 122, 58, 0.55),
      rgba(90, 143, 173, 0.25)
    );
  }
}

.schedule-session-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.schedule-session-meta {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  color: rgba(238, 243, 246, 0.55);
}

.schedule-free-note {
  margin: 0;
  max-width: 34rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: rgba(238, 243, 246, 0.7);
  line-height: 1.45;
}

@media (prefers-reduced-motion: no-preference) {
  .schedule-days.reveal:not(.is-visible) .schedule-day {
    opacity: 0;
    transform: translateY(18px);
  }

  .schedule-days.reveal.is-visible .schedule-day,
  .schedule-days:not(.reveal) .schedule-day {
    animation: scheduleRise 0.7s var(--ease) both;
    animation-delay: calc(var(--day, 0) * 0.09s);
  }
}

@keyframes scheduleRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— Sponsors ——— */

.sponsors {
  background: var(--snow);
  border-top: 1px solid var(--line);
}

.sponsor-groups {
  margin-top: 2.75rem;
  display: grid;
  gap: 3rem;
}

.sponsor-group-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}

.sponsor-group-note {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.sponsor-logo-grid {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

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

@media (min-width: 960px) {
  .sponsor-logo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.sponsor-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 11rem;
  padding: 1.25rem 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  transition: border-color 0.2s, transform 0.25s var(--ease), box-shadow 0.25s;
  color: inherit;
  text-decoration: none;
}

a.sponsor-tile:hover {
  border-color: rgba(61, 107, 133, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 22, 32, 0.08);
}

.sponsor-tile.is-invert img {
  filter: brightness(0);
}

.sponsor-tile img {
  width: 100%;
  max-width: 11rem;
  height: 5.5rem;
  object-fit: contain;
  object-position: center;
}

.sponsor-fallback {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--mist);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.sponsor-name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--slate);
  max-width: 14ch;
}

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

.sponsor-list li {
  font-size: 1rem;
  color: var(--slate);
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}

/* ——— Experience ——— */

.experience {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.experience .section-label {
  color: var(--amber);
}

.experience .section-title {
  color: var(--white);
}

.experience .section-lede {
  color: rgba(255, 255, 255, 0.65);
}

.mosaic {
  margin-top: 3rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
}

.mosaic figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.mosaic figure:hover img {
  transform: scale(1.04);
}

.mosaic-tall {
  grid-row: span 2;
  min-height: 280px;
}

.mosaic-wide {
  grid-column: span 2;
  aspect-ratio: 21 / 9;
}

.mosaic-sq {
  aspect-ratio: 1;
}

@media (min-width: 720px) {
  .mosaic {
    grid-template-columns: 1.1fr 0.9fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 1rem;
  }

  .mosaic-tall {
    grid-row: 1 / 3;
    min-height: 0;
  }

  .mosaic-wide {
    grid-column: auto;
    aspect-ratio: auto;
  }

  .mosaic-sq {
    aspect-ratio: auto;
  }
}

.venue-bar {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.venue-bar > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: baseline;
}

.venue-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 0.2em;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.venue-link:hover {
  color: var(--amber);
  text-decoration-color: var(--amber);
}

.venue-bar span {
  color: rgba(255, 255, 255, 0.6);
}

.venue-book {
  flex-shrink: 0;
}

.venue-hotel-note {
  margin: 0.85rem 0 0;
  max-width: 44rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
}

.venue-hotel-note a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.venue-hotel-note strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

/* ——— Gallery ——— */

.gallery {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.gallery-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--mist);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(6, 16, 24, 0.75));
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ——— Register ——— */

.register {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(90, 143, 173, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(193, 122, 58, 0.08), transparent 50%),
    var(--snow);
}

.pricing {
  margin-top: 2.75rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .pricing {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 720px;
  }
}

.price-card {
  position: relative;
  text-align: left;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
  color: inherit;
  width: 100%;
}

.price-card:hover {
  border-color: rgba(61, 107, 133, 0.4);
  transform: translateY(-2px);
}

.price-card.is-selected {
  border-color: var(--copper);
  box-shadow: 0 0 0 1px var(--copper), 0 16px 40px rgba(10, 22, 32, 0.08);
}

.price-card.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.price-card-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lake);
}

.price-card-amount {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.price-card-amount span {
  font-size: 1.25rem;
  vertical-align: super;
}

.price-card-note {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-card-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
}

.price-card.is-selected .price-card-check {
  background: var(--copper);
  border-color: var(--copper);
}

.price-card-check svg {
  opacity: 0;
  color: white;
  width: 12px;
  height: 12px;
}

.price-card.is-selected .price-card-check svg {
  opacity: 1;
}

.register-layout {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .register-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
  }
}

.form-card,
.summary-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.form-card h3,
.summary-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid.city-state-zip {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--snow);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lake);
  background: var(--white);
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #f8e8e6;
  color: #8a2e24;
  font-size: 0.9rem;
}

.form-error.is-visible {
  display: block;
}

.turnstile-wrap {
  margin-top: 1.25rem;
  min-height: 65px;
}

.turnstile-wrap[hidden] {
  display: none !important;
}

.form-actions {
  margin-top: 1.5rem;
}

.form-secure {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.check-alt {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.check-alt strong {
  color: var(--ink);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.summary-row span:last-child {
  font-weight: 600;
  text-align: right;
}

.summary-total {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
}

.summary-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.stripe-setup-note {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: #fff6e8;
  border-left: 3px solid var(--copper);
  font-size: 0.88rem;
  color: var(--slate);
}

.stripe-setup-note.is-visible {
  display: block;
}

/* ——— Contact ——— */

.contact {
  background: var(--navy-deep);
  color: var(--white);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 720px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }
}

.contact .section-label {
  color: var(--amber);
}

.contact .section-title {
  color: var(--white);
}

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

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list .label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.contact-list a,
.contact-list .value {
  font-size: 1.15rem;
  color: var(--white);
  transition: color 0.2s;
}

.contact-list a:hover {
  color: var(--amber);
}

.footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer a {
  color: rgba(255, 255, 255, 0.55);
}

.footer a:hover {
  color: var(--white);
}

/* ——— Success page ——— */

.success-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(6, 16, 24, 0.55), rgba(6, 16, 24, 0.85)),
    url("../images/hero-lake.jpg") center / cover;
  color: var(--white);
  text-align: center;
}

.success-card {
  width: min(480px, 100%);
  padding: 2.5rem 2rem;
  background: rgba(10, 22, 32, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-card h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
}

.success-card p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.success-card .btn {
  margin-top: 1.75rem;
}

.success-card .btn + .btn,
.success-card p + .btn {
  margin-top: 1rem;
}

/* ——— Secondary pages (sponsor form) ——— */

.page-main {
  padding-top: var(--nav-h);
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, rgba(10, 22, 32, 0.92), rgba(10, 22, 32, 0.78)),
    url("../images/hero-lake.jpg") center / cover;
  color: var(--white);
}

.page-hero .section-label {
  color: var(--amber);
}

.page-title {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  max-width: 14ch;
}

.page-lede {
  margin: 1rem 0 0;
  max-width: 36rem;
  color: rgba(238, 243, 246, 0.72);
  font-size: 1.05rem;
  line-height: 1.55;
}

.page-lede strong {
  color: var(--white);
  font-weight: 600;
}

.sponsor-vet-block {
  margin-top: 1.5rem;
  padding: 1.15rem 1.1rem 1.25rem;
  background: rgba(61, 107, 133, 0.06);
  border: 1px solid var(--line);
}

.sponsor-vet-note {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.sponsor-steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.75rem;
  color: var(--ink);
  line-height: 1.4;
}

.sponsor-aside-note {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.sponsor-aside-note a {
  color: var(--lake);
}
