:root {
  --bg: #0d1714;
  --card: #14231f;
  --green: #1c4a3d;
  --orange: #f47b20;
  --text: #f2f3ed;
  --muted: #9ba89e;
  --spine: 220px;
  --max: 980px;
  --pad: clamp(20px, 4vw, 40px);
  font-family: "SF Pro Text", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.page {
  display: grid;
  grid-template-columns: var(--spine) 1fr;
  min-height: 100vh;
}

.spine {
  align-self: stretch;
  min-height: 100vh;
  padding: 2rem 1.25rem;
  background: linear-gradient(180deg, #14231f 0%, #0d1714 100%);
  border-right: 1px solid rgba(244, 123, 32, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.spine__brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.spine__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.spine__nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.spine__nav a:hover { color: var(--text); text-decoration: none; }

.spine__note {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.main { min-width: 0; }

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 23, 20, 0.95) 0%, rgba(13, 23, 20, 0.35) 55%, rgba(28, 74, 61, 0.25) 100%);
}

.hero__copy {
  position: relative;
  z-index: 1;
  padding: var(--pad);
  max-width: 640px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--orange);
  margin: 0 0 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
  font-weight: 800;
}

.hero h1 span { color: var(--orange); }

.hero__tagline {
  margin: 0;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36ch;
}

.intro {
  padding: 3rem var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.intro__inner { max-width: var(--max); }

.intro h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.intro p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.features {
  padding: 3rem var(--pad) 2rem;
}

.features__head h2 {
  margin: 0 0 2rem;
  font-size: 1.6rem;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  max-width: var(--max);
}

.feature-row--reverse .feature-row__media { order: 2; }
.feature-row--reverse .feature-row__text { order: 1; }

.feature-row__media img {
  border-radius: 18px;
  border: 1px solid rgba(244, 123, 32, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.feature-row__text h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  color: var(--orange);
}

.feature-row__text p {
  margin: 0;
  color: var(--muted);
}

.screens {
  padding: 2rem var(--pad) 3rem;
  background: linear-gradient(180deg, transparent, rgba(28, 74, 61, 0.12));
}

.screens__head {
  max-width: var(--max);
  margin-bottom: 2rem;
}

.screens__head h2 { margin: 0 0 0.5rem; font-size: 1.6rem; }
.screens__head p { margin: 0; color: var(--muted); }

.mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  max-width: var(--max);
  align-items: start;
}

.mosaic__large { grid-row: span 2; }

.mosaic figure {
  margin: 0;
}

.mosaic img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  background: var(--card);
}

.mosaic__large img {
  max-height: 640px;
  object-fit: cover;
  object-position: top center;
}

.mosaic__small img {
  max-height: 300px;
  object-fit: cover;
  object-position: top center;
}

.mosaic figcaption {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal-band {
  padding: 3rem var(--pad) 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: var(--max);
}

.legal-panel {
  background: var(--card);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: var(--orange);
}

.legal-panel p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  padding: 1.5rem var(--pad) 2.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .page { grid-template-columns: 1fr; }
  .spine {
    min-height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(244, 123, 32, 0.15);
  }
  .spine__nav { flex-direction: row; flex-wrap: wrap; }
  .spine__note { width: 100%; margin-top: 0; }
  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
  }
  .feature-row--reverse .feature-row__media,
  .feature-row--reverse .feature-row__text { order: unset; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic__large { grid-row: auto; }
  .mosaic__large img,
  .mosaic__small img { max-height: none; }
  .legal-grid { grid-template-columns: 1fr; }
}
