:root {
  --bg: #fffaf8;
  --surface: #ffffff;
  --surface-soft: #f8efea;
  --text: #2a1f1f;
  --muted: #6d5a5a;
  --primary: #a64456;
  --primary-dark: #7f3140;
  --border: #eadad3;
  --shadow: 0 16px 40px rgba(94, 45, 59, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 248, 0.85);
  border-bottom: 1px solid rgba(234, 218, 211, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

.hero,
.section {
  padding: 84px 0;
}

.events-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

.section-soft { background: var(--surface-soft); }
.section-accent {
  background: linear-gradient(135deg, #f9efea 0%, #f5e3de 100%);
}

.hero-grid,
.two-col,
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 800;
  margin: 0 0 16px;
}

h1, h2, h3, h4, p { margin-top: 0; }

h1 {
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions,
.center-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

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

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

.btn-primary:hover { background: var(--primary-dark); }

.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
}

.btn-ghost {
  color: var(--primary);
  border-color: rgba(166, 68, 86, 0.25);
  background: rgba(255,255,255,0.45);
}

.hero-card,
.event-panel,
.info-card,
.stat-card,
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.event-panel {
  padding: 20px;
}

.placeholder-image {
  min-height: 340px;
  border-radius: calc(var(--radius) - 6px);
  background:
    linear-gradient(135deg, rgba(166,68,86,0.16), rgba(236,211,204,0.78)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.45), rgba(255,255,255,0.45) 14px, rgba(255,255,255,0.18) 14px, rgba(255,255,255,0.18) 28px);
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.placeholder-image.tall { min-height: 420px; }

.small-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  margin-top: 12px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.stats-grid,
.cards-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.testimonial-grid {
  grid-template-columns: repeat(2, 1fr);
}

.stat-card,
.info-card,
.testimonial {
  padding: 26px;
}

.stat-card strong {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.05em;
  color: var(--primary-dark);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(166, 68, 86, 0.1);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.check-list {
  padding-left: 20px;
  color: var(--muted);
}

.check-list li + li { margin-top: 10px; }
.compact li + li { margin-top: 6px; }

.text-link {
  color: var(--primary-dark);
  font-weight: 700;
}

.site-footer {
  padding: 56px 0 24px;
  background: #2a1f1f;
  color: #f7ece9;
}

.site-footer a { color: #f7ece9; }
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li + li { margin-top: 10px; }
.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(247,236,233,0.72);
}

@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .footer-grid,
  .stats-grid,
  .cards-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero,
  .section { padding: 64px 0; }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  .btn { width: 100%; }
}
