:root {
  --bg: #fff8ef;
  --surface: #ffffff;
  --ink: #24140f;
  --muted: #6d5a50;
  --red: #aa1f2e;
  --red-dark: #7f1420;
  --gold: #f4b63c;
  --cream: #fff0d0;
  --border: #ecd9c1;
  --shadow: 0 24px 70px rgba(84, 36, 17, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(244, 182, 60, 0.28), transparent 34rem),
    linear-gradient(180deg, #fff8ef 0%, #fff 48%, #fff8ef 100%);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(170, 31, 46, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
  min-width: 14rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-size: 1.6rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(170, 31, 46, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.55rem 0.75rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--cream);
  color: var(--red-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-weight: 800;
  padding: 0.65rem 1rem;
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: center;
  gap: 2rem;
  padding: clamp(4rem, 9vw, 7rem) 0 3rem;
}

.hero h1,
.page-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero p,
.page-hero p {
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.eyebrow {
  color: var(--red-dark) !important;
  font-size: 0.84rem !important;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
}

.button.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 26px rgba(170, 31, 46, 0.23);
}

.button.secondary {
  border: 1px solid var(--border);
  background: white;
  color: var(--red-dark);
}

.hero-card,
.festival-hero {
  min-height: 24rem;
  border: 1px solid rgba(170, 31, 46, 0.14);
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.8), transparent 10rem),
    linear-gradient(145deg, #aa1f2e, #f4b63c);
  color: white;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after,
.festival-hero::after {
  content: "";
  position: absolute;
  inset: auto -7rem -8rem auto;
  width: 17rem;
  height: 17rem;
  border: 2.5rem solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.hero-card h2 {
  margin-top: 7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.hero-card p {
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.9);
}

.festival-tag {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  padding: 0.45rem 0.8rem;
  font-weight: 900;
}

.section-grid,
.committee-grid,
.pricing-grid,
.values-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.feature-card,
.committee-grid article,
.price-card,
.values-grid div,
.contact-card,
.contact-form,
.content-section,
.sponsor-wall,
.timeline article {
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 36px rgba(84, 36, 17, 0.08);
  padding: clamp(1.2rem, 3vw, 2rem);
}

h2,
h3 {
  line-height: 1.15;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  border-radius: 2rem;
  background: var(--ink);
  color: white;
  margin: 4rem 0;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.split-section p {
  color: rgba(255, 255, 255, 0.76);
}

.event-list {
  display: grid;
  gap: 0.8rem;
}

.event-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1rem;
  text-decoration: none;
}

.event-list small,
.muted {
  color: var(--muted);
}

.page {
  padding-bottom: 4rem;
}

.page-hero {
  padding: clamp(3rem, 8vw, 6rem) 0 2rem;
}

.page-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.content-section {
  margin: 2rem 0;
}

.callout {
  background: var(--cream);
}

.committee-grid article span {
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card .price {
  color: var(--red-dark);
  font-size: 1.8rem;
  font-weight: 900;
}

.highlighted {
  border-color: rgba(170, 31, 46, 0.45);
  transform: translateY(-0.35rem);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline time {
  color: var(--red-dark);
  font-weight: 900;
}

.logo-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.logo-grid span,
.gallery-grid div {
  display: grid;
  place-items: center;
  min-height: 8rem;
  border: 1px dashed rgba(170, 31, 46, 0.35);
  border-radius: 1rem;
  background: #fffaf3;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.gallery-grid div {
  min-height: 15rem;
  background:
    linear-gradient(135deg, rgba(170, 31, 46, 0.12), rgba(244, 182, 60, 0.2)),
    #fffaf3;
}

.contact-grid {
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  color: var(--muted);
  margin-top: 2rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    justify-content: flex-start;
  }

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

  .hero,
  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .committee-grid,
  .pricing-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .section-grid,
  .committee-grid,
  .pricing-grid,
  .values-grid,
  .logo-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .event-list a,
  .site-footer {
    display: grid;
  }
}
