/* ignition-booking · dark fire theme, matches ignitionfire-net revamp palette */
/* Art direction: gallery art rendered to match a live-show photo by @ExpressoBuzz (Instagram). */

@font-face {
  font-family: "Windlass";
  src: url("fonts/Windlass.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a0a0a;
  --bg-alt: #141414;
  --card: #191510;
  --paper: #f5e9d4;
  --ink: #1a1410;
  --fire: #ff7a18;
  --fire-deep: #c0392b;
  --gold: #f0c75a;
  --muted: #a89a86;
  --border: #2a241d;
  --ok: #7ec97e;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: "Windlass", "Palatino", Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(240, 199, 90, 0.35); }
a:hover { color: var(--fire); border-bottom-color: var(--fire); }

h1, h2, h3 {
  font-family: "Windlass", "Palatino", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

h1 { font-size: 2.8rem; margin: 0 0 0.4em; line-height: 1.1; }
h2 { font-size: 1.7rem; margin: 0 0 0.6em; color: var(--gold); }
h3 { font-size: 1.15rem; margin: 0 0 0.4em; color: var(--fire); }
p  { margin: 0 0 1em; }

.wrap { max-width: 1020px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Hero ---------- */
header.hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.15) 40%, rgba(10,10,10,0.92) 100%),
    url("art/hero.jpg") center 30% / cover no-repeat;
  border-bottom: 3px solid var(--fire-deep);
  text-align: center;
  padding: 4rem 1.5rem 3.5rem;
}
header.hero .brand {
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
  margin-bottom: 1rem;
}
header.hero .brand img { height: 74px; width: auto; border-radius: 8px; }
header.hero .kicker {
  font-family: "Windlass", "Palatino", Georgia, serif;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--gold);
  margin: 0 0 0.4rem;
}
header.hero h1 { text-shadow: 0 2px 22px rgba(0,0,0,0.85); }
header.hero .sub {
  max-width: 620px; margin: 0 auto 1.8rem;
  font-size: 1.15rem; color: var(--paper);
  text-shadow: 0 1px 14px rgba(0,0,0,0.9);
}

.btn {
  display: inline-block;
  font-family: "Windlass", "Palatino", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, var(--fire) 0%, var(--fire-deep) 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 2.2rem;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(255, 122, 24, 0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 32px rgba(255, 122, 24, 0.55); color: #fff; }
.btn:disabled { opacity: 0.55; cursor: wait; transform: none; }
.btn.ghost {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--muted);
  box-shadow: none;
}
.btn.ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Sections ---------- */
section { padding: 3.5rem 0; }
section.alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.center { text-align: center; }
.lede { max-width: 640px; margin: 0 auto 2rem; color: var(--muted); text-align: center; }

/* photo strip */
.strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.strip figure { margin: 0; }
.strip img {
  width: 100%; height: 210px; object-fit: cover;
  border-radius: 10px; border: 1px solid var(--border);
  filter: saturate(1.05);
}
.strip figcaption { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; text-align: center; }

/* includes cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.6rem; }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.3rem;
}
.card .big { font-size: 1.7rem; display: block; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- How It Works · night gallery ----------
   Art direction: rendered to match a live-show photo by @ExpressoBuzz (Instagram) —
   true black, the performer lit only by their own flame. */
section.nightworks {
  background: #050505;
  border-top: 3px solid var(--fire-deep);
  border-bottom: 3px solid var(--fire-deep);
}
.night-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.night-strip figure {
  margin: 0;
  background: #0b0906;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
}
.night-strip img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.night-strip figure:hover img { filter: brightness(1.15); }
.night-strip figcaption {
  padding: 10px 14px 12px;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}
.night-strip figcaption strong {
  display: block;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

/* ---------- Booking form ---------- */
#book { scroll-margin-top: 2rem; }

.formshell {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: 0 10px 60px rgba(0,0,0,0.6);
}

.progress {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: #100d09;
}
.progress .p-step {
  flex: 1;
  text-align: center;
  padding: 0.7rem 0.2rem 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  overflow: hidden;
}
.progress .p-step .flame { display: block; font-size: 1.05rem; filter: grayscale(1) opacity(0.45); }
.progress .p-step.active { color: var(--gold); border-bottom-color: var(--fire); }
.progress .p-step.active .flame, .progress .p-step.done .flame { filter: none; }
.progress .p-step.done { color: var(--fire); }

.stage { display: grid; grid-template-columns: 300px 1fr; min-height: 480px; }
.stage .art {
  background-size: cover;
  background-position: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stage .art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--card) 100%);
}
.stage .panel { padding: 2rem 2.2rem 2.2rem; }

.panel h2 { font-size: 1.4rem; }
.panel .hint { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.2rem; }
.field { margin-bottom: 0.9rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.field label .req { color: var(--fire); }
.field input, .field select, .field textarea {
  width: 100%;
  background: #0e0b08;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--paper);
  font-family: inherit;
  font-size: 1rem;
  padding: 0.6rem 0.7rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--fire);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.18);
}
.field textarea { min-height: 90px; resize: vertical; }
.field .note { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }
.field.invalid input, .field.invalid select { border-color: var(--fire-deep); box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.25); }

/* pill radios */
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pills label {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  cursor: pointer;
  color: var(--paper);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  background: #0e0b08;
  margin: 0;
}
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills label:has(input:checked) {
  border-color: var(--fire);
  background: rgba(255, 122, 24, 0.15);
  color: var(--gold);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.8rem;
  gap: 1rem;
}
.nav .spacer { flex: 1; }
.error-banner {
  display: none;
  background: rgba(192, 57, 43, 0.18);
  border: 1px solid var(--fire-deep);
  color: #ffb3a0;
  border-radius: 8px;
  padding: 0.6rem 0.9rem;
  font-size: 0.92rem;
  margin-top: 1rem;
}
.error-banner.show { display: block; }

/* review step */
.review-block { margin-bottom: 1.2rem; }
.review-block h3 { border-bottom: 1px dashed var(--border); padding-bottom: 0.25rem; }
.review-block dl { display: grid; grid-template-columns: 220px 1fr; gap: 0.15rem 1rem; margin: 0.5rem 0 0; font-size: 0.93rem; }
.review-block dt { color: var(--muted); }
.review-block dd { margin: 0; }

.estimate {
  background: linear-gradient(135deg, rgba(255,122,24,0.14), rgba(240,199,90,0.08));
  border: 1px solid rgba(255, 122, 24, 0.45);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  margin: 1.4rem 0;
}
.estimate .amount {
  font-family: "Windlass", "Palatino", Georgia, serif;
  font-size: 1.9rem;
  color: var(--gold);
}
.estimate p { color: var(--muted); font-size: 0.88rem; margin: 0.4rem 0 0; }

/* success */
.success { text-align: center; padding: 3rem 2rem; }
.success .big { font-size: 3rem; }
.success h2 { color: var(--ok); }

/* footer */
footer {
  border-top: 1px solid var(--border);
  padding: 2.2rem 1.5rem 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
footer img { height: 40px; opacity: 0.85; border-radius: 6px; margin-bottom: 0.6rem; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .stage { grid-template-columns: 1fr; }
  .stage .art { min-height: 150px; border-right: none; border-bottom: 1px solid var(--border); }
  .stage .art::after { background: linear-gradient(180deg, transparent 55%, var(--card) 100%); }
  .strip { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .review-block dl { grid-template-columns: 1fr; }
  .review-block dt { margin-top: 0.4rem; }
  .progress .p-step span.lbl { display: none; }
  h1 { font-size: 2rem; }
}
