:root {
  --ink: #1f1a15;
  --muted: #5c5147;
  --accent: #c84a1a;
  --accent-2: #1b6b5f;
  --accent-3: #f2b84b;
  --paper: #fff6ed;
  --surface: #ffffff;
  --shadow: 0 24px 60px rgba(28, 20, 12, 0.18);
  --radius: 18px;
}

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

body {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(242, 184, 75, 0.18), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(27, 107, 95, 0.2), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(200, 74, 26, 0.18), transparent 40%),
    linear-gradient(180deg, #fff8f1 0%, #ffffff 45%, #faf4ed 100%);
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

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

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 248, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 26, 21, 0.08);
}

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

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-2);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--muted);
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a.active,
.nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--accent-3);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(200, 74, 26, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(200, 74, 26, 0.3);
}

.button.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(200, 74, 26, 0.4);
  box-shadow: none;
}

.button.small {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.hero {
  padding: 80px 0 60px;
}

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

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}

.hero-card {
  position: absolute;
  bottom: -24px;
  left: -16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 26, 21, 0.08);
  max-width: 220px;
}

.hero-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.section {
  padding: 70px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-title p {
  color: var(--muted);
  max-width: 520px;
}

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

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 26, 21, 0.06);
}

.card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
}

.card .tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(27, 107, 95, 0.12);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.image-card .caption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
  color: #fff;
  padding: 16px;
  font-weight: 600;
}

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

.split p {
  color: var(--muted);
}

.list {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 4px solid var(--accent-3);
  box-shadow: var(--shadow);
}

.timeline-item h4 {
  margin-bottom: 6px;
  font-weight: 600;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 74, 26, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

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

.sponsorship-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(31, 26, 21, 0.08);
  box-shadow: var(--shadow);
}

.sponsorship-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
}

.sponsorship-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  margin-top: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 26, 21, 0.2);
  font-family: inherit;
  background: #fff;
}

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

.form-status {
  background: rgba(27, 107, 95, 0.12);
  color: var(--accent-2);
  padding: 12px 14px;
  border-radius: 12px;
  display: none;
}

.form-status.visible {
  display: block;
}

.site-footer {
  padding: 50px 0 60px;
  border-top: 1px solid rgba(31, 26, 21, 0.08);
  background: rgba(255, 248, 241, 0.85);
}

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

.footer-grid p {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent-2);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

.js-enabled .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    row-gap: 8px;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-card {
    position: static;
    margin-top: 16px;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal,
  .button {
    transition: none;
  }
}
