:root {
  --color-bg: #fdf6ee;
  --color-surface: #fffaf3;
  --color-text: #3d1f1a;
  --color-text-muted: #8a5a4a;
  --color-accent: #7a1f2b;
  --color-gold: #c8963e;
  --color-gold-vivid: #e0a940;
  --color-gold-hover: #ecb753;
  --color-border: #e8d3b8;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Mukta', Georgia, 'Times New Roman', serif;
  --max-width: 860px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-display);
}

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

/* Shared content-section shell (Schedule, Venue, Travel, FAQ, etc.) */
section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.75rem 4rem;
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 80px;
}

section:last-of-type {
  border-bottom: none;
}

@media (max-width: 640px) {
  section {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

@media (max-width: 640px) {
  h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .section-heading {
    flex-direction: column;
    gap: 0.4rem;
  }
}

.section-icon {
  width: 38px;
  height: 38px;
  opacity: 0.9;
}
