:root {
  --purple-900: #44245d;
  --purple-700: #6e3e91;
  --purple-100: #f5edfb;
  --gold-500: #d9ae43;
  --gold-300: #efd08a;
  --cream: #fffaf2;
  --warm-white: #fffdf9;
  --sand: #f4ede2;
  --text: #2e2532;
  --muted: #64596d;
  --border: rgba(68, 36, 93, 0.12);
  --shadow: 0 18px 40px rgba(68, 36, 93, 0.09);
  --radius: 22px;
  --radius-small: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 208, 138, 0.28), transparent 35%),
    linear-gradient(180deg, #fffdf9 0%, #fff9ef 100%);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 920px;
}

.section {
  padding: 5.5rem 0;
}

.alt-section {
  background: rgba(255, 255, 255, 0.64);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.brand-text {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--purple-900);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--purple-900);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-button,
.button.primary {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-900));
  color: #fff;
  box-shadow: 0 12px 26px rgba(68, 36, 93, 0.18);
}

.button.secondary {
  background: #fff;
  color: var(--purple-900);
  border: 1px solid rgba(68, 36, 93, 0.16);
}

.button.small {
  padding: 0.8rem 1.15rem;
}

.button.full {
  width: 100%;
}

.nav-button:hover,
.button:hover,
.nav-button:focus-visible,
.button:focus-visible {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--purple-900);
  border-radius: 999px;
}

.hero {
  padding-top: 4.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(217, 174, 67, 0.16);
  color: var(--purple-900);
  font-weight: 700;
  font-size: 0.92rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
  color: var(--purple-900);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.1rem;
  color: var(--purple-900);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.hero-text {
  font-size: 1.125rem;
  max-width: 62ch;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 1.4rem;
}

.hero-points {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text);
  font-weight: 500;
}

.hero-points li::before {
  content: "•";
  position: absolute;
  left: 0.45rem;
  color: var(--gold-500);
  font-size: 1.4rem;
  line-height: 1;
}

.hero-art-card,
.info-card,
.program-card,
.sponsor-panel,
.contact-card,
.placeholder-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-art-card {
  padding: 1rem;
}

.hero-art {
  width: 100%;
  border-radius: calc(var(--radius) - 6px);
}

.info-grid,
.cards-grid {
  display: grid;
  gap: 1.2rem;
}

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

.info-card,
.program-card,
.contact-card,
.sponsor-panel {
  padding: 1.45rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

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

.program-card {
  min-height: 100%;
}

.card-icon {
  font-size: 1.7rem;
  margin-bottom: 0.9rem;
}

.highlight-card {
  background: linear-gradient(180deg, rgba(245, 237, 251, 0.95), rgba(255, 255, 255, 0.9));
}

.sponsor-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}

.support-list {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
  color: var(--text);
}

.support-list li {
  margin-bottom: 0.65rem;
}

.placeholder-box {
  padding: 1rem 1rem 0.3rem;
  background: rgba(255, 250, 242, 0.95);
}

code {
  font-family: Consolas, Monaco, monospace;
  background: rgba(68, 36, 93, 0.08);
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  color: var(--purple-900);
}

.contact-list p {
  margin-bottom: 0.75rem;
}

.social-placeholder {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mini-note {
  font-size: 0.95rem;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 1rem;
  align-items: center;
}

.footer-brand {
  font-weight: 800;
  color: var(--purple-900);
  margin-bottom: 0.35rem;
}

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

.copyright {
  text-align: right;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .sponsor-grid,
  .contact-grid,
  .footer-wrap,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .footer-links,
  .copyright {
    justify-content: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.2rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.7rem 0.25rem;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .info-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .button-group {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .nav-button {
    width: 100%;
  }

  .hero {
    padding-top: 3.2rem;
  }
}
