/* Bread and Iron - landing. Dark iron ground, parchment text, bread-gold accent. */

:root {
  --bg: #14110d;
  --surface: #1c1813;
  --border: #2c261e;
  --text: #e8dfd0;
  --muted: #a2947e;
  --gold: #c8933b;
  --gold-bright: #e0af59;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.7; margin: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold-bright); }

/* Hero */
.hero { position: relative; min-height: 68vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgb(20 17 13 / 35%) 0%, rgb(20 17 13 / 10%) 40%, rgb(20 17 13 / 92%) 88%, var(--bg) 100%); }
.hero-inner { position: relative; margin: 0 auto; max-width: 900px; padding: 26vh 1.5rem 3.5rem; width: 100%; }
h1 { font-family: var(--serif); font-size: clamp(3rem, 9vw, 5.5rem); font-weight: 700; letter-spacing: 0.04em; line-height: 1; margin: 0; text-transform: uppercase; text-shadow: 0 2px 24px rgb(0 0 0 / 55%); }
h1 .amp { color: var(--gold-bright); }
.tagline { color: var(--gold-bright); font-family: var(--serif); font-size: clamp(1.25rem, 3vw, 1.7rem); font-weight: 600; font-style: italic; margin: 0.5rem 0 0; text-shadow: 0 1px 12px rgb(0 0 0 / 65%); }
.sub { color: var(--text); font-size: 1.05rem; margin: 1.1rem 0 0; max-width: 56ch; text-shadow: 0 1px 8px rgb(0 0 0 / 70%); }
.ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
.cta { background: var(--gold); border: 1px solid var(--gold); border-radius: 3px; color: #171310; display: inline-block; font-weight: 500; letter-spacing: 0.04em; padding: 0.8rem 1.5rem; text-decoration: none; }
.cta:hover, .cta:focus-visible { background: var(--gold-bright); border-color: var(--gold-bright); }
.cta.ghost { background: transparent; color: var(--text); border-color: var(--muted); }
.cta.ghost:hover, .cta.ghost:focus-visible { background: rgb(232 223 208 / 8%); border-color: var(--text); }

/* Bands */
main { display: flex; flex-direction: column; gap: 5rem; margin: 4.5rem auto 5rem; max-width: 1060px; padding: 0 1.5rem; }
.band { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1.15fr; align-items: center; }
.band.flip .band-text { order: 2; }
.band.flip .band-art { order: 1; }
h2 { font-family: var(--serif); font-size: 2rem; font-weight: 700; letter-spacing: 0.03em; margin: 0 0 0.9rem; }
.band-text p { color: #cfc4b0; margin: 0 0 1rem; max-width: 54ch; }
.band-text p:last-child { margin-bottom: 0; }
.tech { color: var(--muted); font-size: 0.9rem; }
.band-art { margin: 0; }
.band-art img { border: 1px solid var(--border); border-radius: 4px; box-shadow: 0 18px 50px rgb(0 0 0 / 40%); }

/* Signup */
.signup { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; margin-top: 1rem; padding: 2.75rem 2rem; text-align: center; }
.signup h2 { margin-bottom: 0.6rem; }
.signup > p { color: #cfc4b0; margin: 0 auto 1.5rem; max-width: 52ch; }
#signup-form { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
#signup-form input[type=email] { background: #100d0a; border: 1px solid var(--border); border-radius: 3px; color: var(--text); font-family: var(--sans); font-size: 1rem; min-width: 260px; padding: 0.8rem 1rem; }
#signup-form input[type=email]:focus-visible { border-color: var(--gold); outline: 1px solid var(--gold); outline-offset: 2px; }
#signup-form button { background: var(--gold); border: 0; border-radius: 3px; color: #171310; cursor: pointer; font-family: var(--sans); font-size: 1rem; font-weight: 500; padding: 0.8rem 1.4rem; }
#signup-form button:hover:not(:disabled), #signup-form button:focus-visible { background: var(--gold-bright); }
#signup-form button:disabled { cursor: progress; opacity: 0.6; }
.hp { position: absolute; left: -9999px; }
.status { border-radius: 3px; display: inline-block; margin: 1rem auto 0; padding: 0.6rem 1rem; }
.status.good { background: rgb(143 194 122 / 12%); border: 1px solid #6f9c5c; color: #b7d8a6; }
.status.bad { background: rgb(200 90 60 / 12%); border: 1px solid #a05a41; color: #e0b3a0; }
.alt { color: var(--muted); font-size: 0.95rem; margin: 1.4rem 0 0; }

/* Footer */
footer { border-top: 1px solid var(--border); color: var(--muted); font-size: 0.9rem; margin: 0 auto; max-width: 1060px; padding: 2rem 1.5rem 3rem; }
footer p { margin: 0 0 0.5rem; }
.fine { font-size: 0.8rem; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 760px) {
  .hero-inner { padding-top: 34vh; }
  .band, .band.flip { display: flex; flex-direction: column; gap: 1.4rem; }
  .band.flip .band-text { order: 0; }
  main { gap: 3.5rem; margin-top: 3rem; }
}
