:root {
  --honey: #f2c14e;
  --honey-deep: #c7901f;
  --ink: #1d1b16;
  --cream: #fff7e6;
  --stone: #f3efe6;
  --muted: #6f675c;
  --accent: #2b6f6a;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(29, 27, 22, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff3d1, var(--cream) 45%, #f5efe3 100%);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(92vw, var(--max-width));
  margin: 0 auto;
}

.skip-links {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

.skip-links a {
  position: absolute;
  left: -999px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}

.skip-links a:focus {
  left: 16px;
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 230, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29, 27, 22, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--honey), var(--honey-deep));
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
}

.nav-links a {
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--honey-deep);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

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

.btn-secondary {
  background: var(--white);
  border-color: rgba(29, 27, 22, 0.2);
}

.btn-gold {
  background: linear-gradient(130deg, var(--honey), var(--honey-deep));
  color: var(--ink);
  font-weight: 700;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--stone);
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.hero {
  padding: 110px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(29, 27, 22, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.data-grid {
  align-items: stretch;
}

.data-card {
  display: grid;
  gap: 12px;
}

.data-card img {
  height: 200px;
  object-fit: cover;
}

.data-meta {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--muted);
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 16px 32px rgba(29, 27, 22, 0.08);
}

.card img {
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.media-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.sponsor-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 14px 24px rgba(29, 27, 22, 0.08);
}

.cta {
  background: linear-gradient(135deg, #fff1c4, #ffe2a1);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  gap: 18px;
  justify-items: start;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.gallery-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  scroll-snap-align: center;
  cursor: pointer;
}

.gallery-actions {
  display: flex;
  gap: 12px;
  margin: 14px 0 10px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(29, 27, 22, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.lightbox-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
}

.lightbox-controls button {
  background: var(--white);
  border: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(29, 27, 22, 0.2);
  border-radius: var(--radius-sm);
  font-family: inherit;
}

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

footer {
  background: var(--ink);
  color: var(--white);
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: start;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 4vw;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 80px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .cta {
    padding: 36px 24px;
  }

  .media-embed iframe {
    height: 220px;
  }
}
