:root {
  --indigo: #26247b;
  --indigo-deep: #17164f;
  --turquoise: #3c94bb;
  --gold: #f3d96d;
  --gold-soft: #f8e9a7;
  --black: #050509;
  --white: #ffffff;
  --cream: #fbfaf5;
  --ink: #161625;
  --muted: #686879;
  --line: rgba(38, 36, 123, 0.16);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(12, 10, 45, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.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;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 1000;
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 110px 0; }
.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(60, 148, 187, .26), transparent 26%),
    radial-gradient(circle at 92% 76%, rgba(38, 36, 123, .48), transparent 30%),
    linear-gradient(120deg, #0a0a12 0%, #080810 50%, #18184f 100%);
}
.section-indigo {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(60, 148, 187, .28), transparent 30%),
    linear-gradient(135deg, #17164c 0%, #26247b 60%, #1d1b64 100%);
}
.section-light { background: var(--cream); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow-dark { color: var(--indigo); }
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 20px;
}
.hero-brand img {
  width: 108px;
  height: auto;
  flex: 0 0 auto;
}
.hero-brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  color: var(--white);
  white-space: nowrap;
}
.hero-brand-text em {
  color: var(--white);
  font-family: var(--display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}
.hero-brand-text strong {
  color: var(--white);
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-brand { margin: 0 0 20px; }
.hero-brand-lockup { display: block; width: min(100%, 520px); height: auto; }

#about, #experience, #auction, #contest, #highlights, #sponsors { scroll-margin-top: 110px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.02; }
h1, h2 { font-family: var(--display); font-weight: 600; }
h2 { margin-bottom: 22px; font-size: clamp(3rem, 5.2vw, 5.6rem); letter-spacing: -.035em; }
h3 { font-size: 1.3rem; }
p { margin-bottom: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(6, 6, 14, .92);
  border-color: rgba(255, 255, 255, .09);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { color: var(--white); display: inline-flex; flex-direction: column; line-height: 1; }
.brand-kicker { margin-bottom: 7px; font-size: .52rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; opacity: .9; }
.brand-name { color: var(--gold); font-family: var(--display); font-size: 1.75rem; font-weight: 600; letter-spacing: -.03em; }
.brand-name em { font-weight: 500; }
.site-nav { display: flex; align-items: center; gap: 20px; color: var(--white); font-size: .74rem; font-weight: 600; }
.site-nav > a:not(.button) { position: relative; padding: 12px 0; opacity: .88; }
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: var(--gold);
  transition: right .2s ease;
}
.site-nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--white); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0 25px;
  background: var(--gold);
  color: #11111b;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .035em;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 28px rgba(243, 217, 109, .18);
}
.button:hover { transform: translateY(-2px); background: var(--gold-soft); box-shadow: 0 18px 35px rgba(243, 217, 109, .24); }
.button-small { min-height: 42px; padding-inline: 19px; font-size: .73rem; }
.button-ghost { background: transparent; color: var(--white); box-shadow: none; }
.button-ghost:hover { color: var(--black); background: var(--gold); }
.button-muted { opacity: .72; cursor: default; box-shadow: none; }

.hero {
  position: relative;
  min-height: 860px;
  padding: 175px 0 95px;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(243, 217, 109, .12);
}
.hero::before { top: -170px; right: 8%; }
.hero::after { bottom: -200px; left: 7%; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(18px); opacity: .65; }
.hero-glow-one { width: 420px; height: 420px; right: -110px; top: 170px; background: rgba(60, 148, 187, .18); }
.hero-glow-two { width: 320px; height: 320px; left: 4%; bottom: 6%; background: rgba(38, 36, 123, .42); }
.sparkle-field {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image:
    radial-gradient(circle, rgba(243,217,109,.9) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255,255,255,.5) 0 1.2px, transparent 1.8px);
  background-position: 0 0, 24px 18px;
  background-size: 54px 54px, 92px 92px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 82%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.hero h1 { margin: 0 0 24px; color: var(--gold); font-size: clamp(5.1rem, 9vw, 9rem); letter-spacing: -.055em; }
.hero h1 span { display: block; margin: -14px 0 -5px 25%; font-size: .48em; font-style: italic; font-weight: 500; }
.hero-subtitle { max-width: 560px; margin-bottom: 35px; font-size: 1.25rem; line-height: 1.55; color: rgba(255,255,255,.82); }
.event-meta { display: grid; gap: 11px; margin-bottom: 33px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.event-meta > div { display: grid; grid-template-columns: 95px 1fr; gap: 18px; align-items: baseline; }
.meta-label { color: var(--turquoise); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.event-meta strong { font-size: .92rem; font-weight: 500; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.event-note { margin: 19px 0 0; color: rgba(255,255,255,.57); font-size: .76rem; }
.hero-media { position: relative; min-height: 610px; }
.photo-frame { position: absolute; margin: 0; overflow: hidden; border: 1px solid rgba(243,217,109,.26); background: #0b0b16; box-shadow: 0 30px 85px rgba(0,0,0,.4); }
.photo-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(4,4,12,.22), rgba(4,4,12,0) 50%), linear-gradient(to bottom, rgba(60,148,187,.06), transparent 34%); }
.photo-frame-main { inset: 0 11% 7% 0; border-radius: 28px; }
.photo-frame-small { width: 42%; height: 34%; border-radius: 24px; }
.photo-frame-small:nth-child(2) { right: 0; top: 7%; }
.photo-frame-small:nth-child(3) { right: 0; bottom: 0; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.97) contrast(1.04); }
.hero-event-image { object-position: center center; }
.hero-animal-image { object-position: center 42%; }
.hero-rooftop-image { object-position: 35% center; }
.hero-rule { position: absolute; z-index: 3; bottom: 45px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; width: min(420px, 65vw); color: var(--gold); }
.hero-rule span { flex: 1; height: 1px; background: var(--gold); opacity: .7; }
.hero-rule b { padding: 0 17px; font-size: 1.1rem; }

.placeholder-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 28px;
  text-align: center;
  color: rgba(255,255,255,.9);
  background:
    linear-gradient(135deg, rgba(60,148,187,.3), rgba(38,36,123,.58)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 12px, transparent 12px 24px),
    #14142f;
}
.placeholder-photo::before {
  content: "✦";
  display: block;
  margin-bottom: 11px;
  color: var(--gold);
  font-size: 1.15rem;
}
.placeholder-photo span { font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.placeholder-photo small { max-width: 210px; margin-top: 9px; color: rgba(255,255,255,.56); font-size: .68rem; }

.quick-links { position: relative; z-index: 6; margin-top: -1px; color: var(--white); background: var(--black); border-top: 1px solid rgba(255,255,255,.08); }
.quick-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-card { min-height: 140px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.11); transition: background .2s ease; }
.quick-card:first-child { border-left: 1px solid rgba(255,255,255,.11); }
.quick-card:hover { background: rgba(255,255,255,.055); }
.quick-card.is-disabled { cursor: default; }
.quick-number { color: var(--turquoise); font-size: .66rem; font-weight: 700; }
.quick-card strong { display: block; margin-bottom: 4px; font-family: var(--display); font-size: 1.55rem; color: var(--gold); }
.quick-card small { color: rgba(255,255,255,.55); font-size: .68rem; }
.quick-arrow { color: var(--gold); }

.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.section-heading h2 { color: var(--indigo); }
.section-copy { padding-top: 50px; font-size: 1.03rem; }
.section-copy .lead { color: var(--indigo); font-size: 1.33rem; font-weight: 600; }
.center-heading { max-width: 760px; margin: 0 auto 62px; text-align: center; }
.center-heading p:last-child { color: rgba(255,255,255,.66); }
.center-heading-dark h2 { color: var(--indigo); }
.center-heading-dark p:last-child { color: var(--muted); }
.ornament { display: flex; align-items: center; width: 220px; margin: 24px auto 0; color: var(--gold); }
.ornament span { flex: 1; height: 1px; background: currentColor; }
.ornament b { padding-inline: 13px; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.12); border-left: 1px solid rgba(255,255,255,.12); }
.experience-card { min-height: 245px; padding: 38px 34px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.experience-icon { display: block; margin-bottom: 33px; color: var(--gold); font-size: 1.25rem; }
.experience-card h3 { margin-bottom: 13px; color: var(--gold); font-family: var(--display); font-size: 2rem; font-weight: 600; }
.experience-card p { margin: 0; color: rgba(255,255,255,.64); font-size: .86rem; }

.section-intro-row { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 55px; }
.section-intro-row h2 { margin-bottom: 0; color: var(--indigo); }
.section-intro-row > p { margin-bottom: 16px; color: var(--muted); }
.explore-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.explore-card { position: relative; display: grid; grid-template-columns: 46% 54%; min-height: 330px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 18px 50px rgba(15, 12, 63, .08); transition: transform .25s ease, box-shadow .25s ease; }
.explore-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.explore-photo { position: relative; min-height: 100%; margin: 0; overflow: hidden; border-radius: 0; background: #111129; }
.explore-photo::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(8,8,18,.18), rgba(8,8,18,0) 45%), linear-gradient(135deg, rgba(38,36,123,.10), rgba(60,148,187,.10)); }
.explore-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.95) contrast(1.03); }
.explore-photo-auction img { object-position: 42% center; }
.explore-photo-contest img { object-position: center 38%; }
.explore-copy { display: flex; flex-direction: column; justify-content: end; padding: 36px; }
.explore-copy p { margin-bottom: 5px; color: var(--turquoise); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.explore-copy h3 { margin: 0 0 22px; color: var(--indigo); font-family: var(--display); font-size: 3.1rem; font-weight: 600; }
.explore-copy span { color: var(--muted); font-size: .78rem; font-weight: 600; }
.coming-soon-copy { display: block; margin-top: 16px; color: var(--indigo); font-size: .76rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.card-status { position: absolute; z-index: 2; top: 20px; right: 20px; padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--indigo); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 8px 20px rgba(0,0,0,.08); }
.explore-card-crowned .explore-photo { background:
  radial-gradient(circle at 50% 35%, rgba(243,217,109,.16), transparent 28%),
  #111129; }

.impact-section { padding: 120px 0; }
.impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.impact-photo { min-height: 610px; border-radius: 50% 50% 24px 24px; border: 1px solid rgba(243,217,109,.22); box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.impact-copy h2 { color: var(--gold); }
.impact-copy p { color: rgba(255,255,255,.72); }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 14px; padding-bottom: 6px; border-bottom: 1px solid var(--gold); color: var(--gold); font-size: .8rem; font-weight: 700; }

.gallery-grid { display: grid; grid-template-columns: 1.4fr .75fr .85fr; grid-template-rows: 250px 250px; gap: 18px; }
.gallery-item { position: relative; min-height: 0; border: 1px solid rgba(38,36,123,.10); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 22px 60px rgba(16,18,42,.12); background: #13132b; }
.gallery-item::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(7,8,18,.22), rgba(7,8,18,0) 38%), linear-gradient(135deg, rgba(38,36,123,.10), rgba(60,148,187,.08)); }
.gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.96) contrast(1.04); transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-featured { grid-row: 1 / 3; }
.gallery-featured img { object-position: center center; }
.gallery-tall { grid-row: 1 / 3; }
.gallery-tall img { object-position: center 56%; }
.gallery-wide { grid-column: 3; }
.gallery-wide img { object-position: center 58%; }
.gallery-strip-wrap { margin-top: 26px; }
.gallery-strip-label { margin: 0 0 12px; color: var(--indigo-deep); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.gallery-strip { display: flex; gap: 14px; overflow-x: auto; padding: 4px 4px 12px; scroll-snap-type: x proximity; scrollbar-width: thin; scrollbar-color: rgba(38,36,123,.35) rgba(38,36,123,.08); }
.gallery-strip::-webkit-scrollbar { height: 10px; }
.gallery-strip::-webkit-scrollbar-track { background: rgba(38,36,123,.08); border-radius: 999px; }
.gallery-strip::-webkit-scrollbar-thumb { background: rgba(38,36,123,.35); border-radius: 999px; }
.gallery-strip-item { position: relative; flex: 0 0 clamp(220px, 24vw, 290px); height: 220px; border-radius: 18px; overflow: hidden; scroll-snap-align: start; border: 1px solid rgba(38,36,123,.10); box-shadow: 0 16px 42px rgba(16,18,42,.10); background: #13132b; }
.gallery-strip-item::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(7,8,18,.18), rgba(7,8,18,0) 40%), linear-gradient(135deg, rgba(38,36,123,.10), rgba(60,148,187,.08)); }
.gallery-strip-item img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.96) contrast(1.04); transition: transform .4s ease; }
.gallery-strip-item:hover img { transform: scale(1.03); }
.gallery-strip-note { margin: 10px 2px 0; color: rgba(23,22,79,.72); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.sponsor-intro { display: flex; align-items: end; justify-content: space-between; gap: 44px; padding-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,.16); }
.sponsor-intro h2 { color: var(--gold); }
.sponsor-intro p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.68); }
.sponsor-intro .button { flex: 0 0 auto; }
.current-sponsors { padding-top: 54px; }
.current-sponsors-heading { text-align: center; margin-bottom: 42px; }
.current-sponsors-heading h3 { margin: 0; color: var(--gold); font-family: var(--display); font-size: clamp(2.5rem, 4vw, 4.2rem); font-weight: 600; line-height: 1; }
.sponsor-group + .sponsor-group { margin-top: 38px; }
.sponsor-group-label { margin: 0 0 16px; color: rgba(255,255,255,.68); font-size: .72rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.sponsor-logo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.sponsor-logo-card { min-height: 170px; display: grid; place-items: center; padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: #fff; box-shadow: 0 14px 40px rgba(0,0,0,.16); }
.sponsor-logo-card img { width: 100%; height: 118px; object-fit: contain; }
.sponsor-logo-card.logo-card-round img { height: 136px; }
.sponsor-logo-card.logo-card-wide img { height: 88px; }
.sponsor-group-printing { max-width: 380px; }
.sponsor-logo-card-printing { min-height: 190px; }
.sponsor-logo-card-printing img { height: 145px; }

.final-cta { padding: 120px 0; text-align: center; }
.final-cta-inner { max-width: 850px; }
.final-cta h2 { color: var(--gold); }
.final-cta p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.final-actions { display: flex; justify-content: center; gap: 13px; flex-wrap: wrap; margin-top: 34px; }
.site-footer { padding: 58px 0 25px; color: rgba(255,255,255,.68); background: #040408; }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 40px; padding-bottom: 45px; }
.footer-grid strong { color: var(--gold); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid p { margin: 10px 0 0; font-size: .76rem; }
.footer-logo { margin: 0 !important; color: var(--gold); font-family: var(--display); font-size: 2rem !important; line-height: 1; }
.footer-logo em { font-weight: 500; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .66rem; }

.toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  transform: translateY(100px);
  opacity: 0;
  padding: 12px 18px;
  border: 1px solid rgba(243,217,109,.35);
  border-radius: 10px;
  color: var(--gold);
  background: rgba(7,7,14,.94);
  box-shadow: var(--shadow);
  font-size: .76rem;
  transition: .25s ease;
}
.toast.is-visible { transform: translateY(0); opacity: 1; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 88px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(7,7,16,.98);
    box-shadow: 0 25px 70px rgba(0,0,0,.35);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 10px !important; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-grid, .split-layout, .section-intro-row, .impact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 45px; }
  .hero-media { min-height: 560px; max-width: 670px; width: 100%; margin-inline: auto; }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-card:nth-child(3) { border-left: 1px solid rgba(255,255,255,.11); border-top: 1px solid rgba(255,255,255,.11); }
  .quick-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,.11); }
  .split-layout { gap: 10px; }
  .section-copy { padding-top: 0; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .section-intro-row { gap: 10px; }
  .explore-card { grid-template-columns: 42% 58%; }
  .impact-photo { min-height: 520px; }
  .gallery-grid { grid-template-columns: 1.2fr 1fr; grid-template-rows: 250px 250px 250px; }
  .gallery-featured { grid-row: 1 / 3; }
  .gallery-tall { grid-row: 1 / 3; }
  .gallery-wide { grid-column: 1 / 3; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .nav-wrap { min-height: 76px; }
  .site-nav { inset: 76px 14px auto; }
  .brand-kicker { display: none; }
  .hero { padding: 135px 0 75px; }
  .hero h1 { font-size: clamp(4.4rem, 21vw, 6.8rem); }
  .hero-brand { gap: 14px; }
  .hero-brand img { width: 90px; }
  .hero-brand-text { gap: 9px; }
  .hero-brand-text em { font-size: 1.6rem; }
  .hero-brand-text strong { font-size: .82rem; letter-spacing: .11em; }
  .hero h1 span { margin-top: -8px; }
  .event-meta > div { grid-template-columns: 1fr; gap: 1px; }
  .hero-media { min-height: 480px; }
  .hero-brand { flex-wrap: wrap; }
  .hero-brand-text { flex-wrap: wrap; white-space: normal; }
  .photo-frame-main { inset: 0 6% 15% 0; }
  .photo-frame-small { width: 47%; height: 31%; }
  .photo-frame-small:nth-child(2) { top: 5%; }
  .hero-rule { bottom: 28px; }
  .quick-links-grid { grid-template-columns: 1fr; }
  .quick-card { min-height: 110px; border-left: 1px solid rgba(255,255,255,.11); border-top: 1px solid rgba(255,255,255,.11); }
  .quick-card:first-child { border-top: 0; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 210px; }
  .explore-grid { grid-template-columns: 1fr; }
  .explore-card { grid-template-columns: 1fr; }
  .explore-photo { min-height: 230px; }
  .impact-photo { min-height: 430px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 360px 210px 210px 210px; }
  .gallery-featured { grid-column: 1 / 3; grid-row: 1; }
  .gallery-tall { grid-column: 1; grid-row: 2 / 4; }
  .gallery-wide { grid-column: 1 / 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / 3; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

/* Responsive refinements — keeps the design consistent across wide desktop,
   laptop, tablet, and phone viewports while allowing the layout to reflow. */
:root {
  --section-space: clamp(72px, 7vw, 108px);
}

.section { padding-block: var(--section-space); }
.shell { width: min(1180px, calc(100% - clamp(32px, 6vw, 72px))); }
h2 { font-size: clamp(3rem, 4.7vw, 5.15rem); }
.hero {
  min-height: min(900px, 100svh);
  padding-top: clamp(145px, 13vh, 180px);
  padding-bottom: clamp(82px, 9vh, 105px);
}
.hero-grid { gap: clamp(42px, 6vw, 76px); }
.hero h1 { font-size: clamp(5rem, 7.5vw, 8.15rem); }
.hero-subtitle { font-size: clamp(1.05rem, 1.35vw, 1.25rem); }
.hero-media { min-height: clamp(520px, 48vw, 610px); }
.experience-card { padding: clamp(28px, 3vw, 38px); }
.explore-copy { padding: clamp(28px, 3vw, 36px); }
.explore-copy h3 { font-size: clamp(2.35rem, 3vw, 3.1rem); }

@media (min-width: 1440px) {
  .hero-grid { grid-template-columns: 1.02fr .98fr; }
  .hero-copy { max-width: 620px; }
  .hero-media { max-width: 570px; justify-self: end; width: 100%; }
}

@media (max-width: 1100px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-media { width: min(100%, 720px); min-height: 540px; margin-inline: auto; }
  .split-layout { gap: 52px; }
  .experience-card h3 { font-size: 1.8rem; }
}

@media (max-width: 820px) {
  :root { --section-space: 74px; }
  .shell { width: min(100% - 36px, 720px); }
  h2 { font-size: clamp(2.75rem, 8vw, 4.25rem); }
  .hero { padding-top: 128px; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(4.25rem, 14vw, 6rem); }
  .hero h1 span { margin-left: 20%; }
  .hero-media {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    min-height: 430px;
  }
  .photo-frame { position: relative; inset: auto !important; width: auto !important; height: auto !important; }
  .photo-frame-main { grid-row: 1 / 3; border-radius: 24px; }
  .photo-frame-small { border-radius: 18px; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: auto; }
  .explore-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: 260px 220px 220px;
  }
  .gallery-featured { grid-column: 1 / 3; grid-row: 1; }
  .gallery-tall { grid-column: 1; grid-row: 2 / 4; }
  .gallery-wide { grid-column: 2; }
}

@media (max-width: 560px) {
  .hero-brand-lockup { width: min(92vw, 360px); }
  :root { --section-space: 62px; }
  .shell { width: min(100% - 28px, 520px); }
  .nav-wrap { min-height: 70px; }
  .site-nav { inset: 70px 14px auto; }
  .brand-name { font-size: 1.48rem; }
  .hero { padding-top: 108px; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(3.75rem, 18vw, 5rem); }
  .hero h1 span { margin: -6px 0 -2px 18%; }
  .hero-subtitle { margin-bottom: 26px; }
  .event-meta { padding-block: 18px; margin-bottom: 26px; }
  .hero-actions .button { width: 100%; }
  .event-note { line-height: 1.5; }
  .hero-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 145px;
    gap: 10px;
    min-height: 0;
  }
  .photo-frame-main { grid-column: 1 / 3; grid-row: 1; border-radius: 20px; }
  .photo-frame-small { grid-row: 2; }
  .hero-rule { display: none; }
  .split-layout, .section-intro-row { gap: 26px; }
  .section-copy { font-size: .96rem; }
  .section-copy .lead { font-size: 1.15rem; }
  .center-heading { margin-bottom: 38px; }
  .experience-card { padding: 28px 24px; }
  .experience-icon { margin-bottom: 20px; }
  .explore-card { min-height: 0; }
  .explore-photo { min-height: 190px; }
  .explore-copy { padding: 26px 24px; }
  .explore-copy h3 { font-size: 2.3rem; margin-bottom: 14px; }
  .gallery-grid { display: flex; flex-direction: column; gap: 12px; }
  .gallery-item { min-height: 180px; }
  .gallery-featured { min-height: 290px; }
  .gallery-tall { min-height: 260px; }
  .gallery-wide { min-height: 180px; }
  .gallery-strip-item { flex-basis: 72vw; height: 190px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { gap: 8px; }
}

@media (max-width: 380px) {
  .shell { width: min(100% - 22px, 360px); }
  .hero h1 { font-size: 3.45rem; }
  .hero-media { grid-template-rows: 265px 125px; }
  .placeholder-photo { padding: 18px; }
  .placeholder-photo span { font-size: .62rem; }
}


@media (max-width: 900px) {
  .sponsor-intro { align-items: flex-start; }
  .sponsor-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .hero-brand-lockup { width: min(92vw, 360px); }
  .sponsor-intro { align-items: flex-start; flex-direction: column; gap: 24px; }
  .sponsor-intro .button { width: 100%; }
  .current-sponsors { padding-top: 44px; }
  .current-sponsors-heading { margin-bottom: 32px; }
  .sponsor-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .sponsor-logo-card { min-height: 128px; padding: 14px; border-radius: 14px; }
  .sponsor-logo-card img { height: 90px; }
  .sponsor-logo-card.logo-card-round img { height: 100px; }
  .sponsor-logo-card.logo-card-wide img { height: 62px; }
  .sponsor-group-printing { max-width: none; }
  .sponsor-logo-card-printing { min-height: 150px; }
  .sponsor-logo-card-printing img { height: 116px; }
}

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

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


/* Balanced six-photo gallery: all six tiles occupy the same composed block. */
@media (min-width: 981px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, 250px);
    gap: 18px;
  }
  .gallery-grid > .gallery-item { grid-column: auto; grid-row: auto; }
  .gallery-grid > .gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
  .gallery-grid > .gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 3; }
  .gallery-grid > .gallery-item:nth-child(3) { grid-column: 9 / 11; grid-row: 1; }
  .gallery-grid > .gallery-item:nth-child(4) { grid-column: 11 / 13; grid-row: 1; }
  .gallery-grid > .gallery-item:nth-child(5) { grid-column: 9 / 11; grid-row: 2; }
  .gallery-grid > .gallery-item:nth-child(6) { grid-column: 11 / 13; grid-row: 2; }
}

@media (max-width: 980px) and (min-width: 561px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 230px);
    gap: 14px;
  }
  .gallery-grid > .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0;
  }
}

.gallery-item, .gallery-strip-item { text-decoration: none; }
.gallery-item:focus-visible, .gallery-strip-item:focus-visible, .gallery-strip:focus-visible { outline: 2px solid var(--turquoise); outline-offset: 3px; }

/* FINAL LOCKED HEADER + HERO LAYOUT
   This is the single source of truth for the organization logo and hero photos. */
.site-header .nav-wrap {
  min-height: 78px;
  flex-wrap: nowrap;
  gap: 24px;
}
.header-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.header-logo {
  display: block;
  width: 205px;
  max-width: 205px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}
.site-nav {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 18px;
  font-size: .72rem;
}
.site-nav > a {
  flex: 0 0 auto;
  white-space: nowrap;
}

.hero-media {
  display: grid !important;
  grid-template-columns: minmax(0, 2.25fr) minmax(150px, 1fr) !important;
  grid-template-rows: 1fr 1fr !important;
  gap: 14px !important;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1.1 / 1;
}
.hero-media .photo-frame {
  position: relative !important;
  inset: auto !important;
  width: auto !important;
  height: auto !important;
  margin: 0;
}
.hero-media .photo-frame-main {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 26px;
}
.hero-media .photo-frame-small:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  border-radius: 22px;
}
.hero-media .photo-frame-small:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  border-radius: 22px;
}
.hero-media .hero-event-image {
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .header-logo { width: 185px; max-width: 185px; max-height: 56px; }
  .site-nav { gap: 13px; font-size: .67rem; }
}
@media (max-width: 980px) {
  .site-header .nav-wrap { min-height: 76px; }
  .header-logo { width: 200px; max-width: 200px; max-height: 60px; }
  .site-nav { flex-wrap: nowrap; }
}
@media (max-width: 560px) {
  .site-header .nav-wrap { min-height: 70px; }
  .header-logo { width: 175px; max-width: 175px; max-height: 53px; }
  .hero-media {
    aspect-ratio: auto;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: 300px 145px !important;
    gap: 10px !important;
  }
  .hero-media .photo-frame-main {
    grid-column: 1 / 3;
    grid-row: 1;
    border-radius: 20px;
  }
  .hero-media .photo-frame-small:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    border-radius: 18px;
  }
  .hero-media .photo-frame-small:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    border-radius: 18px;
  }
}
@media (max-width: 380px) {
  .header-logo { width: 158px; max-width: 158px; }
  .hero-media { grid-template-rows: 265px 125px !important; }
}

