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

:root {
  --color-bg: #fff;
  --color-text: #1a1a1a;
  --color-accent: #d4471a;
  --color-muted: #666;
  --color-border: #e5e5e5;
  --max-width: 800px;
  --section-gap: 5rem;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

/* ── Utilities ── */

.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary:hover { opacity: 0.9; }

/* ── Hero ── */

.hero {
  text-align: center;
  padding: 5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); line-height: 1.1; margin-bottom: 1rem; }
.tagline { font-size: 1.2rem; color: var(--color-muted); margin-bottom: 2rem; }

/* ── Sections ── */

section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-gap) 1.5rem;
  border-top: 1px solid var(--color-border);
}
section h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }

/* ── Show Card ── */

.show-card { display: flex; flex-direction: column; gap: 0.5rem; }
.show-title { font-size: 1.3rem; }
.show-date { font-weight: 600; }
.show-venue { color: var(--color-muted); }
.show-card .btn-primary { align-self: flex-start; margin-top: 1rem; }
.loading { color: var(--color-muted); }

/* ── About / Troupe Members ── */

.section-about p { margin-bottom: 2rem; }
.section-about h3 { font-size: 1.2rem; margin-bottom: 1.25rem; }

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1.5rem;
}
.member { text-align: center; }
.member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin-bottom: 0.5rem;
}
.member p { font-size: 0.9rem; font-weight: 600; }

/* ── Contact Form ── */

.section-contact form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.section-contact label { font-weight: 600; font-size: 0.9rem; }
.section-contact input,
.section-contact textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}
.section-contact textarea { resize: vertical; }
.section-contact button { align-self: flex-start; }
#form-status { font-size: 0.9rem; color: var(--color-muted); min-height: 1.4em; }

/* Honeypot: invisible to humans */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ── Footer ── */

footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1.25rem;
}
.social-links a {
  color: var(--color-muted);
  display: flex;
  align-items: center;
}
.social-links a:hover { color: var(--color-accent); }
