/* ---------------------------------------------------
   Production/booking site — The Crater
   Aesthetic: editorial, theatrical, bookable — volcanic,
   spacious. Dark rock, amber ember accent, pressure-and-
   surface as the visual/verbal throughline.
   Accent matched to eriksjoholm.com's --color-accent
   (#C8922A) so the two sites read as siblings — warm
   paper tones and amber, on a dark ground instead of
   eriksjoholm.com's light one.
--------------------------------------------------- */

:root {
  --bg: #0e0f0d;
  --bg-soft: #16170f;
  --paper: #f4f1e9;
  --accent: #c8922a;
  --accent-dim: #8c661d;
  --glow: rgba(200,146,42,0.14);
  --line: rgba(244,241,233,0.14);
  --muted: rgba(244,241,233,0.62);
  --serif: 'Iowan Old Style', 'Georgia', 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Nav */
header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14,15,13,0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.navlinks {
  display: flex;
  gap: 28px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navlinks a { text-decoration: none; color: var(--muted); transition: color 0.2s; }
.navlinks a:hover, .navlinks a.active { color: var(--paper); }

/* Hero */
.hero {
  position: relative;
  padding: 180px 0 150px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -360px;
  width: 1100px;
  height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--glow), transparent 72%);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.12;
  margin: 0 0 40px;
  max-width: 14ch;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 30px;
}

.lede + .lede { margin-top: 6px; margin-bottom: 52px; }

.cta-row { display: flex; gap: 20px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 16px 32px;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.82; }

.btn-primary { background: var(--accent); color: #0e0f0d; }
.btn-ghost { border: 1px solid var(--line); color: var(--paper); }

/* Sections */
section { padding: 140px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: none; }

.section-head { margin-bottom: 72px; max-width: 60ch; }

.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 22px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

/* Grid of audiences / services */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.grid > div {
  background: var(--bg);
  padding: 48px 38px;
}

.grid h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  margin: 0 0 16px;
}

.grid p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* Shows list */
.show {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.show:first-of-type { border-top: none; }

.show .tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.show h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.8rem;
  margin: 12px 0 20px;
}

.show p { color: var(--muted); line-height: 1.75; margin: 0 0 20px; }

.show .meta {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .show { grid-template-columns: 1fr; }
}

/* Footer */
footer {
  padding: 90px 0 110px;
  color: var(--muted);
  font-size: 0.85rem;
}

footer a { text-decoration: underline; text-underline-offset: 3px; }

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.badge {
  display: inline-block;
  margin-top: 26px;
  padding: 10px 16px;
  border: 1px dashed var(--line);
  font-size: 0.78rem;
  color: var(--muted);
  border-radius: 2px;
}
