:root {
  --ink: #081214;
  --paper: #fff8e6;
  --warm: #ffefb8;
  --mint: #d8f4ec;
  --sky: #e6f7ff;
  --sun: #ffd21f;
  --coral: #e72b72;
  --blue: #159fd3;
  --teal: #169f89;
  --purple: #9a6db5;
  --green: #2fa86f;
  --line: rgba(8, 18, 20, 0.16);
  --shadow: 0 22px 50px rgba(8, 18, 20, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito", "Arial Rounded MT Bold", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

img {
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1rem;
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 230, 0.92);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 950;
  text-decoration: none;
  letter-spacing: 0;
}

.brand img {
  width: 58px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.02;
}

.brand small {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  background: var(--sun);
  border-radius: 6px;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 950;
  cursor: pointer;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
}

.cta-nav {
  background: var(--coral) !important;
  color: var(--paper) !important;
  box-shadow: 4px 4px 0 var(--ink);
}

.page {
  overflow: hidden;
}

.inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(88svh - 76px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 248, 230, 0.95), rgba(216, 244, 236, 0.58)),
    var(--mint);
  border-bottom: 2px solid var(--ink);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2.8rem, 5vw, 4.5rem) 0 2rem;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--sun);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 9ch;
  margin-top: 1rem;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 950;
}

.title-pop {
  color: var(--coral);
}

.hero-copy {
  max-width: 38rem;
  margin: 1.2rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 750;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  padding: 0.55rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
  font-weight: 900;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.78rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn.primary {
  background: var(--coral);
  color: var(--paper);
}

.btn.blue {
  background: var(--blue);
  color: var(--paper);
}

.btn.sun {
  background: var(--sun);
}

button.btn {
  cursor: pointer;
  font: inherit;
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.hero-logo-card {
  position: absolute;
  left: 1%;
  top: 8%;
  width: min(74%, 510px);
  aspect-ratio: 1965 / 1830;
  display: grid;
  place-items: center;
  filter: drop-shadow(18px 24px 34px rgba(8, 18, 20, 0.12));
}

.hero-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-logo-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-character {
  position: absolute;
  right: -10%;
  bottom: 0;
  z-index: 2;
  width: auto;
  height: min(80%, 455px);
  max-width: 36%;
  object-fit: contain;
  filter: drop-shadow(10px 12px 0 rgba(8, 18, 20, 0.16));
}

.floating-note {
  position: absolute;
  left: 3%;
  right: auto;
  top: -8%;
  bottom: auto;
  z-index: 3;
  width: min(58%, 355px);
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--sun);
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-3deg);
}

.ticker {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.ticker-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.75rem 0;
  animation: ticker 26s linear infinite;
  font-weight: 950;
  white-space: nowrap;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.band {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.band.warm {
  background: var(--warm);
}

.band.sky {
  background: var(--sky);
}

.band.mint {
  background: var(--mint);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.48fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  font-weight: 950;
}

.section-head p {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 750;
}

.quick-grid,
.activity-grid,
.sponsor-grid,
.vendor-grid,
.volunteer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tile,
.sponsor-card,
.vendor-card,
.volunteer-card {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.tile {
  min-height: 190px;
  padding: 1rem;
  display: grid;
  align-content: space-between;
  min-width: 0;
  overflow: hidden;
}

.tile strong {
  max-width: 100%;
  font-size: 3.1rem;
  line-height: 0.96;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.tile span {
  font-weight: 900;
  max-width: 100%;
  overflow-wrap: break-word;
}

.tile.coral {
  background: var(--coral);
  color: var(--paper);
}

.tile.blue {
  background: var(--blue);
  color: var(--paper);
}

.tile.sun {
  background: var(--sun);
}

.tile.teal {
  background: var(--teal);
  color: var(--paper);
}

.sponsor-feature {
  background: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.featured-sponsor-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.25rem);
  margin: 0 0 1.25rem;
}

.featured-sponsor-logo {
  min-height: 210px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(1.1rem, 3vw, 2rem);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
}

.featured-sponsor-logo img {
  width: auto;
  max-width: min(100%, 360px);
  max-height: 128px;
  object-fit: contain;
}

.featured-sponsor-logo-tall img {
  max-width: min(100%, 230px);
  max-height: 170px;
}

.featured-sponsor-logo-energy img {
  max-width: min(100%, 320px);
  max-height: 140px;
}

.featured-sponsor-logo-county img {
  max-width: min(100%, 320px);
  max-height: 136px;
}

.sponsor-logo-scroll {
  overflow-x: auto;
  padding: 0 0 0.6rem;
}

.sponsor-logo-board {
  margin: 0;
  width: 100%;
  min-width: min(820px, 100%);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fbfbef;
  box-shadow: 6px 6px 0 var(--ink);
}

.sponsor-logo-board img {
  width: 100%;
  height: auto;
}

.sponsor-feature .actions {
  width: 100%;
  display: grid;
  justify-items: center;
}

.sponsor-feature .btn {
  margin-inline: 0;
}

.invite-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.7fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.share-card {
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.share-card h3,
.video-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.05;
  font-weight: 950;
}

.invite-text,
.video-card p {
  margin: 0.75rem 0 0;
  font-weight: 760;
}

.invite-copy-label {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.invite-copy-box {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.8rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: #fff8d9;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 780;
  resize: vertical;
  box-shadow: inset 3px 3px 0 rgba(8, 18, 20, 0.08);
}

.share-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.share-actions .btn {
  width: 100%;
  min-height: 50px;
}

.web-invite-form {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px dashed rgba(8, 18, 20, 0.28);
}

.web-invite-form h4 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-weight: 950;
}

.web-invite-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.web-invite-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.web-invite-form input {
  min-height: 46px;
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 0.72rem 0.78rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 760;
}

.share-status {
  min-height: 1.4rem;
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--purple);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.85fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
}

.video-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.centered-actions {
  justify-content: center;
}

.video-frame {
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
}

.video-placeholder span {
  padding: 0.75rem 1rem;
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 4px 4px 0 var(--ink);
}

.copy-block h2 {
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 950;
}

.copy-block p {
  margin: 1rem 0 0;
  font-size: 1.06rem;
  font-weight: 750;
}

.illustration-strip {
  display: grid;
  width: min(980px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: end;
}

.illustration-strip img {
  width: 100%;
  height: 310px;
  min-width: 0;
  object-fit: contain;
  object-position: bottom center;
}

.illustration-strip .strip-logo {
  align-self: center;
  height: 245px;
  object-position: center;
}

.subhero {
  position: relative;
  background: var(--mint);
  border-bottom: 2px solid var(--ink);
}

.subhero .inner {
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.subhero h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 9vw, 7.8rem);
}

.subhero p {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-size: 1.12rem;
  font-weight: 780;
}

.subhero-art {
  justify-self: end;
  width: min(380px, 100%);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(9px 12px 0 rgba(8, 18, 20, 0.15));
}

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

.activity {
  min-height: 210px;
  padding: 1.15rem;
}

.activity h3,
.sponsor-card h3,
.vendor-card h3,
.volunteer-card h3 {
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1.05;
}

.activity p,
.vendor-card p,
.volunteer-card p {
  margin: 0.8rem 0 0;
  font-weight: 720;
}

.activity:nth-child(3n + 1) {
  background: var(--warm);
}

.activity:nth-child(3n + 2) {
  background: var(--sky);
}

.activity:nth-child(3n) {
  background: #ffe1ec;
}

.mission {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 1fr);
  gap: 2rem;
  align-items: center;
}

.mission-photo {
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mission-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
}

.timeline-item strong {
  color: var(--purple);
  font-weight: 950;
}

.photo-hero {
  background:
    linear-gradient(180deg, rgba(255, 248, 230, 0.35), rgba(255, 248, 230, 0.96)),
    url("assets/promo/photo-hero-asian-dragon.webp") center / cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-button {
  position: relative;
  min-height: 250px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  cursor: zoom-in;
  box-shadow: 5px 5px 0 var(--ink);
}

.gallery-button.tall {
  grid-row: span 2;
  min-height: 520px;
}

.gallery-button.wide {
  grid-column: span 2;
}

.gallery-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.gallery-button span {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  right: 0.7rem;
  padding: 0.45rem 0.55rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: rgba(255, 248, 230, 0.9);
  font-weight: 900;
  text-align: left;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 18, 20, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 86svh;
  border: 3px solid var(--paper);
  border-radius: 8px;
}

.lightbox button {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--sun);
  font-weight: 950;
  cursor: pointer;
}

.sponsor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.sponsor-card {
  padding: 1.2rem;
}

.sponsor-card.featured {
  background: var(--sun);
}

.sponsor-card.gold {
  background: #ffe1ec;
}

.sponsor-card.silver {
  background: var(--sky);
}

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

.benefit-list li,
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 760;
}

.benefit-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--ink);
  background: var(--coral);
  transform: rotate(45deg);
}

.activity-sponsors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.media-kit-band {
  background: var(--teal);
  color: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.media-kit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.media-kit-copy h2 {
  max-width: 9ch;
  margin-top: 1rem;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 950;
}

.media-kit-copy p {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 800;
}

.media-kit-copy .check-list li::before {
  background: var(--sun);
}

.contact-form.media-kit-form {
  color: var(--ink);
  box-shadow: none;
}

.contact-form.media-kit-form h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 950;
}

.form-intro {
  max-width: 38rem;
  margin: 0.35rem 0 0;
  font-weight: 800;
}

.vendor-grid,
.volunteer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vendor-card,
.volunteer-card {
  padding: 1.1rem;
}

.vendor-card:nth-child(4n + 1),
.volunteer-card:nth-child(4n + 1) {
  background: var(--warm);
}

.vendor-card:nth-child(4n + 2),
.volunteer-card:nth-child(4n + 2) {
  background: var(--sky);
}

.vendor-card:nth-child(4n + 3),
.volunteer-card:nth-child(4n + 3) {
  background: #e2f4e5;
}

.vendor-card:nth-child(4n) {
  background: #ffe1ec;
}

.directions-band {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 92px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.2) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #fff8e6 0%, #eef9f7 100%);
}

.directions-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: stretch;
}

.directions-copy {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(1.25rem, 4vw, 2.2rem);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--sun);
}

.directions-copy .eyebrow {
  position: relative;
  z-index: 2;
  background: var(--sun);
  color: var(--ink);
}

.directions-copy h2 {
  position: relative;
  z-index: 2;
  max-width: 8.2ch;
  margin-top: 1rem;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  font-weight: 950;
}

.directions-copy p {
  position: relative;
  z-index: 2;
  max-width: 33rem;
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 800;
}

.directions-address {
  position: relative;
  z-index: 2;
  max-width: 27rem;
  margin: 1.2rem 0 0;
  padding: 1rem;
  border: 2px solid rgba(255, 248, 230, 0.35);
  border-radius: 8px;
  background: rgba(255, 248, 230, 0.1);
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 950;
}

.directions-address span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sun);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.directions-copy .actions {
  position: relative;
  z-index: 2;
}

.directions-copy .btn {
  background: var(--paper);
}

.directions-copy .btn.primary {
  background: var(--coral);
}

.directions-illustration {
  position: absolute;
  right: -8%;
  bottom: -20%;
  z-index: 1;
  width: min(44%, 260px);
  filter: drop-shadow(14px 14px 0 rgba(255, 248, 230, 0.15));
  opacity: 0.96;
  pointer-events: none;
}

.map-panel {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  min-height: 430px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.map-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-top: 2px solid var(--ink);
  background: var(--sun);
  font-weight: 950;
}

.map-caption span {
  max-width: 20rem;
  color: rgba(8, 18, 20, 0.74);
  font-weight: 850;
}

.arrival-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.arrival-step {
  min-height: 120px;
  padding: 0.95rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 4px 4px 0 rgba(8, 18, 20, 0.18);
}

.arrival-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  padding: 0.25rem 0.5rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--blue);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.arrival-step:nth-child(2) span {
  background: var(--teal);
}

.arrival-step:nth-child(3) span {
  background: var(--purple);
}

.arrival-step:nth-child(4) span {
  background: var(--coral);
}

.arrival-step strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 950;
}

.directions-modern-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 1rem;
  align-items: stretch;
  margin-top: 1rem;
}

.route-panel,
.parking-panel {
  min-height: 100%;
  padding: clamp(1.1rem, 3vw, 1.55rem);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.route-panel h3,
.parking-panel h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 950;
}

.route-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.route-item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 2px solid rgba(8, 18, 20, 0.16);
  border-radius: 8px;
  background: #f4fbff;
}

.route-badge {
  display: grid;
  place-items: center;
  width: 3.35rem;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--blue);
  color: var(--paper);
  font-weight: 950;
}

.route-item:nth-child(2) .route-badge {
  background: var(--purple);
}

.route-item:nth-child(3) .route-badge {
  background: var(--teal);
}

.route-item h4 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 950;
}

.route-item p,
.parking-panel p {
  margin: 0.45rem 0 0;
  font-weight: 780;
}

.parking-panel {
  background: #fff8d9;
}

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

.parking-list li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 800;
}

.parking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--coral);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-panel {
  padding: 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--sun);
  box-shadow: 6px 6px 0 var(--ink);
}

.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 950;
}

.contact-panel p,
.contact-panel a {
  font-weight: 820;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: rgba(8, 18, 20, 0.76);
}

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

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 0.7rem 0.8rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 720;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.vendor-app-hero .subhero-art {
  max-height: 390px;
}

.vendor-app-band {
  background:
    linear-gradient(135deg, rgba(22, 159, 137, 0.14) 0 24%, transparent 24% 100%),
    linear-gradient(180deg, #fff8e6 0%, #eef9f7 100%);
}

.vendor-app-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.contact-form.vendor-questionnaire {
  gap: 1.2rem;
}

.choice-field {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
}

.choice-field legend {
  padding: 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 950;
}

.choice-field label {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: start;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.75rem;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}

.choice-field label:has(input:checked) {
  border-color: var(--ink);
  background: var(--warm);
  box-shadow: 4px 4px 0 var(--ink);
}

.choice-field input {
  width: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.18rem;
  accent-color: var(--coral);
}

.choice-field span {
  font-weight: 850;
}

.service-detail {
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--sky);
}

.vendor-app-alert {
  padding: 0.95rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--warm);
  font-weight: 900;
}

.vendor-app-alert[data-status="eligible"] {
  background: #e2f4e5;
}

.vendor-app-alert[data-status="blocked"] {
  background: #ffe1ec;
}

.vendor-fee-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--sun);
  box-shadow: 6px 6px 0 var(--ink);
}

.vendor-fee-panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  font-weight: 950;
}

.vendor-fee-panel p {
  margin: 0;
  font-weight: 830;
}

.fee-meter {
  overflow: hidden;
  height: 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
}

.fee-meter span {
  display: block;
  width: 8%;
  height: 100%;
  background: var(--teal);
  transition: width 200ms ease;
}

.vendor-review-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vendor-review-list li {
  position: relative;
  padding: 0.65rem 0.75rem;
  padding-left: 2rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 900;
}

.vendor-review-list li::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--ink);
  background: var(--teal);
  transform: rotate(45deg);
}

.paypal-form {
  display: grid;
}

.paypal-form[hidden] {
  display: none;
}

.site-footer {
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.confetti {
  position: absolute;
  z-index: 0;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  background: var(--coral);
  transform: rotate(17deg);
}

.confetti.c2 {
  background: var(--blue);
  border-radius: 999px;
}

.confetti.c3 {
  background: var(--sun);
  transform: rotate(45deg);
}

  @media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    padding: 0 16px 16px;
    background: rgba(255, 248, 230, 0.97);
    border-bottom: 2px solid var(--ink);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    display: grid;
    gap: 0.4rem;
    width: min(var(--max), 100%);
    margin: 0 auto;
  }

  .main-nav a {
    width: 100%;
    justify-content: center;
    border: 2px solid var(--ink);
    background: var(--paper);
  }

  .hero-grid,
  .subhero .inner,
  .section-head,
  .invite-layout,
  .feature-split,
  .video-grid,
  .directions-hero,
  .directions-modern-grid,
  .mission,
  .media-kit-layout,
  .contact-layout,
  .vendor-app-layout {
    grid-template-columns: 1fr;
  }

  .vendor-fee-panel {
    position: static;
  }

  .directions-copy {
    min-height: 380px;
  }

  .directions-copy h2 {
    max-width: 10ch;
  }

  .directions-illustration {
    right: 0;
    bottom: -24%;
    width: min(34vw, 220px);
  }

  .map-panel {
    min-height: 380px;
  }

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

  .hero-art {
    min-height: 470px;
  }

  .hero-logo-card {
    left: 50%;
    top: 6%;
    width: min(88vw, 500px);
    transform: translateX(-50%);
  }

  .hero-character {
    right: -8%;
    bottom: 0;
    width: auto;
    height: min(76%, 420px);
    max-width: 38%;
  }

  .floating-note {
    left: 3%;
    top: -6%;
    width: min(64vw, 340px);
  }

  .quick-grid,
  .activity-grid,
  .featured-sponsor-logos,
  .sponsor-grid,
  .activity-sponsors,
  .vendor-grid,
  .volunteer-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .illustration-strip {
    grid-template-columns: repeat(5, minmax(80px, 1fr));
  }

  .illustration-strip .strip-logo {
    height: 200px;
  }

  .subhero-art {
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .inner {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.7rem);
  }

  .hero-grid {
    padding-top: 1.8rem;
  }

  .confetti {
    display: none;
  }

  .hero-art {
    min-height: 360px;
  }

  .hero-logo-card {
    top: 12%;
    width: min(96vw, 390px);
  }

  .hero-character {
    right: -14%;
    bottom: 2%;
    width: auto;
    height: min(76%, 292px);
    max-width: 42%;
  }

  .floating-note {
    left: 0;
    top: -5%;
    width: min(78vw, 330px);
    font-size: 0.84rem;
  }

  .share-actions {
    grid-template-columns: 1fr;
  }

  .web-invite-fields {
    grid-template-columns: 1fr;
  }

  .directions-band {
    scroll-margin-top: 84px;
  }

  .directions-copy {
    min-height: auto;
    padding-bottom: 1.3rem;
  }

  .directions-copy h2 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .directions-illustration {
    display: none;
  }

  .map-panel {
    min-height: 0;
  }

  .map-panel iframe {
    min-height: 300px;
  }

  .map-caption {
    display: grid;
  }

  .arrival-strip,
  .route-item {
    grid-template-columns: 1fr;
  }

  .arrival-step {
    min-height: auto;
  }

  .route-badge {
    width: 3rem;
  }

  .quick-grid,
  .activity-grid,
  .featured-sponsor-logos,
  .sponsor-grid,
  .activity-sponsors,
  .vendor-grid,
  .volunteer-grid,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .illustration-strip img {
    height: 220px;
  }

  .illustration-strip .strip-logo {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(70%, 240px);
    height: 180px;
  }

  .tile strong {
    font-size: 2.45rem;
  }

  .featured-sponsor-logo {
    min-height: 180px;
  }

  .featured-sponsor-logo img {
    max-height: 112px;
  }

  .featured-sponsor-logo-tall img {
    max-height: 156px;
  }

  .featured-sponsor-logo-energy img {
    max-height: 118px;
  }

  .featured-sponsor-logo-county img {
    max-height: 118px;
  }

  .gallery-button.wide {
    grid-column: span 1;
  }

  .gallery-button,
  .gallery-button.tall {
    min-height: 280px;
    grid-row: span 1;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
