/* Irwin Law — Phantom Flash style v1 */
:root {
  --black: #0b0b0d;
  --panel: #131318;
  --panel-2: #1a1a22;
  --red: #e3242b;
  --red-dark: #a4161c;
  --white: #f5f4f0;
  --gray: #9b9aa3;
  --line: #2a2a33;
  --max: 1100px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, .wordmark, .btn {
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--white); }
p { margin-bottom: 1rem; }
ul { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: 0.5rem; }
.accent { color: var(--red); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,11,13,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--red);
}
.nav {
  max-width: var(--max); margin: 0 auto; padding: 0.75rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.wordmark {
  font-size: 1.45rem; font-weight: 700; color: var(--white); white-space: nowrap;
}
.wordmark:hover { text-decoration: none; }
/* Backlit station-sign whisper: soft warm glow behind the wordmark, red LAW lit like a signal lamp */
.wordmark {
  text-shadow: 0 0 18px rgba(255, 244, 214, 0.35), 0 0 6px rgba(255, 244, 214, 0.25);
}
.wordmark span {
  text-shadow: 0 0 16px rgba(227, 25, 55, 0.75), 0 0 5px rgba(227, 25, 55, 0.5);
}
.wordmark span { color: var(--red); }
nav ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; }
nav li { margin: 0; }
nav a {
  color: var(--white); font-family: "Oswald", sans-serif; text-transform: uppercase;
  font-size: 0.95rem; letter-spacing: 0.06em;
}
nav a:hover, nav a.active { color: var(--red); text-decoration: none; }
.nav-toggle {
  display: none; background: none; border: 2px solid var(--red); color: var(--white);
  font-size: 1.2rem; padding: 0.15rem 0.6rem; cursor: pointer;
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--black); border-bottom: 2px solid var(--red); display: none; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; padding: 0.5rem 1.25rem 1rem; }
  nav li { padding: 0.5rem 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  border-bottom: 4px solid var(--red);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 25%;
  filter: saturate(0.85);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.85) 65%, var(--black) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(4rem, 12vw, 9rem) 1.25rem clamp(3rem, 8vw, 6rem);
  text-align: left;
}
.kicker {
  font-family: "Oswald", sans-serif; text-transform: uppercase;
  letter-spacing: 0.25em; color: var(--red); font-size: 0.9rem; margin-bottom: 0.75rem;
}
.hero p.lede { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 40rem; color: #d9d8de; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 0.8rem 1.8rem; font-size: 1rem; font-weight: 600;
  background: var(--red); color: var(--white); border: 2px solid var(--red);
  transition: background 0.15s, color 0.15s;
}
.btn:hover { background: transparent; color: var(--red); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn.ghost:hover { border-color: var(--red); color: var(--red); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ---------- Doors ---------- */
.doors {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  max-width: var(--max); margin: -3rem auto 0; padding: 0 1.25rem 3rem;
  position: relative; z-index: 2;
}
@media (max-width: 720px) { .doors { grid-template-columns: 1fr; margin-top: 0; padding-top: 2rem; } }
.door {
  position: relative; display: block; min-height: 340px; overflow: hidden;
  border: 2px solid var(--line); background: var(--panel);
  transition: border-color 0.15s, transform 0.15s;
}
.door:hover { border-color: var(--red); transform: translateY(-4px); text-decoration: none; }
.door-bg { position: absolute; inset: 0; background-size: cover; background-position: center 20%; opacity: 0.5; transition: opacity 0.2s; }
.door:hover .door-bg { opacity: 0.7; }
.door-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(11,11,13,0.95) 55%);
}
.door-label h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.25rem; }
.door-label p { color: #d9d8de; margin: 0; font-size: 0.95rem; }
.door-label .go { color: var(--red); font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; }

/* ---------- Sections ---------- */
section.band { padding: 3.5rem 0; border-bottom: 1px solid var(--line); }
section.band.alt { background: var(--panel); }
.split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; align-items: center; }
@media (max-width: 720px) { .split { grid-template-columns: 1fr; } }
.split img { border: 2px solid var(--line); }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.card {
  background: var(--panel-2); border: 1px solid var(--line); border-top: 3px solid var(--red);
  padding: 1.5rem;
}
.card p:last-child { margin-bottom: 0; }
.card .num {
  font-family: "Oswald", sans-serif; font-size: 2rem; color: var(--red); font-weight: 700; display: block; margin-bottom: 0.25rem;
}

/* ---------- Audio / COA ---------- */
.coa {
  background: var(--panel-2); border: 2px solid var(--red); padding: 2rem;
  margin-top: 1.5rem;
}
.coa audio { width: 100%; margin-top: 1rem; }
.todo-note { color: var(--gray); font-size: 0.85rem; border-left: 3px solid var(--red); padding-left: 0.75rem; }

/* ---------- Pricing ---------- */
.price-line {
  font-family: "Oswald", sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--red); font-weight: 700;
}
.price-sub { color: var(--gray); font-size: 0.95rem; }

/* ---------- Contact ---------- */
form { max-width: 560px; }
label { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.08em; margin: 1rem 0 0.3rem; color: var(--gray); }
input, textarea, select {
  width: 100%; padding: 0.7rem 0.9rem; background: var(--panel-2); color: var(--white);
  border: 1px solid var(--line); font: inherit; font-size: 1rem;
}
input:focus, textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
form .btn { margin-top: 1.25rem; cursor: pointer; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.vcard p { margin-bottom: 0.5rem; }
.vcard strong { font-family: "Oswald", sans-serif; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.08em; color: var(--gray); display: block; }

/* ---------- CTA strip ---------- */
.cta-strip { background: var(--red); text-align: center; padding: 3rem 1.25rem; }
.cta-strip h2 { color: var(--white); }
.cta-strip p { color: #ffe9ea; max-width: 42rem; margin: 0.5rem auto 1.25rem; }
.cta-strip .btn { background: var(--black); border-color: var(--black); }
.cta-strip .btn:hover { background: transparent; color: var(--black); }

/* ---------- Footer ---------- */
footer { padding: 2.5rem 0 3rem; color: var(--gray); font-size: 0.85rem; }
footer .wrap { display: grid; gap: 1rem; }
footer a { color: var(--gray); text-decoration: underline; }
footer a:hover { color: var(--red); }
.foot-firm { font-family: "Oswald", sans-serif; text-transform: uppercase; color: var(--white); letter-spacing: 0.06em; }

/* ---------- Page hero (interior) ---------- */
.page-hero { border-bottom: 4px solid var(--red); background: var(--panel); }
.page-hero .hero-inner { padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem; }

/* halftone accent */
.halftone {
  height: 10px;
  background-image: radial-gradient(var(--red) 1.5px, transparent 1.5px);
  background-size: 10px 10px; opacity: 0.5;
}

/* Railroad-sign hero: the sign IS the headline */
.hero-inner.hero-sign {
  min-height: 78vh;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  text-align: center;
  padding-top: 0;
}
.hero-inner.hero-sign .lede { max-width: 44rem; margin-bottom: 1.25rem; text-shadow: 0 2px 8px rgba(0,0,0,0.9); }
