:root {
  --wine: #3b101c;
  --wine-deep: #2a0b14;
  --burgundy: #a9344c;
  --burgundy-deep: #7a2438;
  --gold: #d4a017;
  --gold-bright: #e6bc2d;
  --gold-soft: #f3d98a;
  --teal: #6cb1ac;
  --teal-deep: #3d7a76;
  --cream: #f6f0e4;
  --paper: #fffcf8;
  --ink: #1c1418;
  --muted: #5c5560;
  --line: rgba(212, 160, 23, 0.35);
  --shadow: 0 24px 60px rgba(42, 11, 20, 0.18);
  --radius: 18px;
  --header: 84px;
  --font-display: "Roboto Condensed", "Arial Narrow", sans-serif;
  --font-sans: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 148px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0 0 0.45em;
}
h1, h2 { text-transform: uppercase; }

p { margin: 0 0 1em; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--wine);
  padding: 0.6rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  height: 1px;
  width: 2.2rem;
  background: currentColor;
  opacity: 0.7;
}
.eyebrow.center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  color: var(--wine-deep);
  box-shadow: 0 10px 24px rgba(212, 160, 23, 0.28);
}
.btn-outline {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-burgundy {
  background: var(--burgundy);
  color: #fff;
}
.btn-burgundy:hover { background: var(--burgundy-deep); }
.btn-teal {
  background: var(--teal);
  color: var(--wine-deep);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(42, 11, 20, 0.78), rgba(42, 11, 20, 0.15) 85%, transparent);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header .inner {
  width: min(1220px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header .logo img {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.site-header nav a:not(.btn) {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.92;
}
.site-header nav a:not(.btn):hover,
.site-header nav a.active { color: var(--gold-bright); opacity: 1; }
.site-header.is-scrolled,
.site-header.solid {
  background: rgba(42, 11, 20, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  border-radius: 10px;
  color: #fff;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: calc(var(--header) + 2rem) 0 4rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: var(--wine-deep);
}
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(42,11,20,0.42) 0%, rgba(42,11,20,0.18) 42%, rgba(42,11,20,0.55) 100%),
    linear-gradient(180deg, rgba(42,11,20,0.5) 0%, rgba(42,11,20,0.62) 45%, rgba(42,11,20,0.92) 100%);
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-slide img {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  max-width: none;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform, opacity;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(246,189,47,0), #f6bd2f);
  pointer-events: none;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: min(920px, calc(100% - 2rem));
}
.hero-host {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 1.15rem;
}
.hero-host img {
  height: 118px;
  width: auto;
  max-width: min(100%, 460px);
  object-fit: contain;
}
.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  color: #fff;
  margin: 0.1em 0 0.15em;
  text-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.hero .lede {
  font-size: clamp(0.95rem, 1.7vw, 1.2rem);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.4rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.2rem;
  color: var(--gold-soft);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0 0.65rem; }
.hero-meta span + span::before {
  content: "·";
  color: var(--gold);
  margin-right: 0.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; }

.gold-rule {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.2rem;
}

/* Sections */
section { padding: 5.5rem 0; }
.section-dark {
  background: var(--wine);
  color: #fff;
}
.section-cream {
  background: var(--cream);
}
.section-wine-photo {
  background:
    linear-gradient(180deg, rgba(59,16,28,0.88), rgba(42,11,20,0.92)),
    url("../images/about-event.jpg") center/cover no-repeat;
  color: #fff;
}
.section-gold {
  background:
    linear-gradient(120deg, rgba(246,189,47,0.96), rgba(230,140,60,0.94)),
    url("../images/pattern.jpg") center/cover;
  color: var(--wine);
  margin-top: -1px;
}
.section-gold .eyebrow {
  color: var(--burgundy-deep);
}
.section-gold .eyebrow::before,
.section-gold .eyebrow::after {
  background: var(--burgundy-deep);
  opacity: 0.55;
}
.section-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-intro h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--burgundy-deep);
}
.section-dark .section-intro h2,
.section-wine-photo .section-intro h2 { color: #fff; }
.section-gold .section-intro h2 { color: var(--burgundy-deep); }
.kicker {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 0.6rem;
}

/* Honoree cards */
.honoree-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.honoree-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}
.honoree-card:hover { transform: translateY(-6px); }
.honoree-card .photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--wine);
}
.honoree-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.honoree-card:hover .photo img { transform: scale(1.04); }
.honoree-card .body {
  padding: 1.15rem 1.15rem 1.3rem;
  text-align: center;
}
.honoree-card h3 {
  font-size: 1.35rem;
  color: var(--burgundy-deep);
  margin-bottom: 0.2rem;
}
.honoree-card .role {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
}

.past-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.carousel {
  position: relative;
  padding: 0 3.1rem;
}
.carousel-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.35rem 0.15rem 1.1rem;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel .past-card {
  flex: 0 0 calc((100% - 2.2rem) / 3);
  max-width: calc((100% - 2.2rem) / 3);
  scroll-snap-align: start;
}
.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.carousel-btn:hover { background: var(--burgundy); }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.past-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(42,11,20,0.12);
  text-align: center;
  color: var(--ink);
}
.past-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}
.past-card .body { padding: 0.9rem 0.8rem 1.1rem; }
.past-card h3 { font-size: 1.15rem; color: var(--wine); margin-bottom: 0.2rem; }
.past-card .year {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
}

/* Feature bands */
.feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  align-items: stretch;
}
.feature.reverse { grid-template-columns: 1.1fr minmax(280px, 0.9fr); }
.feature.reverse .copy { order: 0; }
.feature.reverse .photo { order: 1; }
.feature .photo {
  display: grid;
  place-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  min-height: 420px;
  background: rgba(0,0,0,0.16);
}
.feature .photo img {
  width: min(100%, 400px);
  aspect-ratio: 1;
  height: auto;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 22px;
  box-shadow: 0 22px 44px rgba(0,0,0,0.28);
}
.feature .copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}
.feature h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 0.2rem;
}
.feature .name {
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--gold-bright);
}
.feature p { font-size: 1.05rem; max-width: 38rem; color: rgba(255,255,255,0.88); }
.feature.burgundy { background: var(--burgundy); color: #fff; }
.feature.teal { background: var(--teal-deep); color: #fff; }
.feature.teal .name { color: #fff; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.split img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.split h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); color: var(--burgundy-deep); }

.sponsors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 2.8rem;
}
.sponsors img {
  height: 58px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.sponsors.tier-visionary img {
  height: 78px;
  max-width: 300px;
}
.sponsors.tier-sustaining img {
  height: 58px;
  max-width: 240px;
}
.sponsors.tier-investor {
  gap: 1.35rem 1.9rem;
}
.sponsors.tier-investor img {
  height: 44px;
  max-width: 190px;
}
.sponsor-carousel {
  position: relative;
  padding: 0.4rem 3.2rem 0.6rem;
  min-height: 210px;
}
.sponsor-slides {
  min-height: 180px;
}
.sponsor-slide {
  display: none;
}
.sponsor-slide.is-active {
  display: block;
}
.sponsor-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
}
.sponsor-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(59,16,28,0.22);
  cursor: pointer;
}
.sponsor-dots button.is-active {
  background: var(--burgundy);
  transform: scale(1.15);
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 1.1rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-bright); font-size: 1.3rem; }
.faq details[open] summary::after { content: "–"; }
.faq p { color: rgba(255,255,255,0.84); margin: 0.8rem 0 0.2rem; max-width: 60ch; }
.faq a { color: var(--gold-bright); text-decoration: underline; }

/* Page hero */
.page-hero {
  padding: calc(var(--header) + 5.75rem) 0 3.5rem;
  background:
    linear-gradient(180deg, rgba(42,11,20,0.72), rgba(42,11,20,0.82)),
    url("../images/feature-event.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
}
.page-hero p {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.88);
}

/* Bio */
.bio {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
  padding: calc(var(--header) + 5.5rem) 0 5.5rem;
}
.bio .portrait {
  position: sticky;
  top: calc(var(--header) + 1.5rem);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bio .portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
}
.bio .label {
  display: block;
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.bio h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--wine);
}
.bio .prose p { font-size: 1.08rem; color: var(--muted); }
.quote {
  margin: 2rem 0 0;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--wine);
}

/* Tiers */
.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}
.tier {
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem 1.35rem 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.tier.featured {
  background: var(--wine);
  color: #fff;
  transform: translateY(-10px);
  border-color: var(--gold);
}
.tier h3 {
  font-size: 1.8rem;
  color: var(--burgundy-deep);
}
.tier.featured h3 { color: var(--gold-bright); }
.tier .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin: 0.2rem 0 1rem;
}
.tier ul {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  flex: 1;
}
.tier li {
  padding: 0.55rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.92rem;
}
.tier.featured li { border-color: rgba(255,255,255,0.12); }
.tier .note { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-deep); font-weight: 600; }

/* Timeline */
.timeline {
  display: grid;
  gap: 1.2rem;
}
.year-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.year-tabs a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.year-tabs a:hover { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.event-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(169,52,76,0.15);
}
.event-card .when {
  color: var(--burgundy);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.event-card h3 { font-size: 1.6rem; color: var(--wine); }

/* Gallery */
.masonry {
  columns: 3;
  column-gap: 0.85rem;
}
.masonry a {
  display: block;
  margin: 0 0 0.85rem;
  break-inside: avoid;
  border-radius: 12px;
  overflow: hidden;
}
.masonry img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}
.masonry a:hover img { transform: scale(1.03); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,8,12,0.92);
  display: none;
  place-items: center;
  z-index: 80;
  padding: 2rem;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 100%); max-height: 90vh; border-radius: 8px; }
.lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
form {
  background: #fff;
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--burgundy-deep);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #ddd0c4;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.form-note {
  background: var(--cream);
  padding: 1.6rem 1.7rem;
  border-radius: 18px;
}
.form-note h3 { font-size: 1.7rem; color: var(--wine); }
.form-destination {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.form-destination a { color: var(--burgundy); text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--wine-deep);
  color: rgba(255,255,255,0.82);
  padding: 3.2rem 0 1.6rem;
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.2rem;
}
.site-footer h2 {
  color: #fff;
  font-size: 1.8rem;
}
.site-footer a:hover { color: var(--gold-bright); }
.site-footer .logo img { height: 72px; width: auto; margin-bottom: 0.8rem; }
.site-footer .appleseed {
  display: inline-flex;
  margin-top: 1rem;
}
.site-footer .appleseed img {
  height: 78px;
  width: auto;
  max-width: min(100%, 360px);
  object-fit: contain;
}
.host-mark {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.1rem;
}
.host-mark img {
  height: 58px;
  width: auto;
}
.legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.1rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-band {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(90deg, var(--burgundy-deep), var(--burgundy), var(--teal-deep));
  color: #fff;
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; }

@media (max-width: 980px) {
  .honoree-grid,
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .carousel .past-card {
    flex-basis: calc((100% - 1.1rem) / 2);
    max-width: calc((100% - 1.1rem) / 2);
  }
  .feature,
  .feature.reverse,
  .split,
  .bio,
  .form-grid,
  .event-card,
  .site-footer .grid { grid-template-columns: 1fr; }
  .feature .photo,
  .feature.reverse .photo { order: -1; }
  .feature.reverse .copy { order: 0; }
  .bio .portrait { position: static; max-width: 420px; }
  .tier.featured { transform: none; }
  .masonry { columns: 2; }
  .nav-toggle { display: grid; place-items: center; }
  .site-header nav {
    position: absolute;
    top: var(--header);
    right: 0.8rem;
    left: 0.8rem;
    background: var(--wine-deep);
    flex-direction: column;
    padding: 1rem;
    border-radius: 14px;
    display: none;
  }
  .site-header nav.open { display: flex; }
}

@media (max-width: 640px) {
  .honoree-grid,
  .past-grid,
  .tiers,
  .row-2 { grid-template-columns: 1fr; }
  .carousel { padding: 0 2.6rem; }
  .carousel .past-card {
    flex-basis: 100%;
    max-width: 100%;
  }
  .masonry { columns: 1; }
  .hero h1 { font-size: 3.1rem; }
  .hero-host img { height: 84px; }
  .sponsor-carousel { padding: 0 2.6rem; }
  .sponsors.tier-visionary img { height: 64px; }
  .sponsors.tier-investor img { height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
