:root {
  color-scheme: dark;
  --ink: #f4f0e8;
  --muted: #c8c0b1;
  --paper: #12110f;
  --paper-soft: #1a1815;
  --line: rgba(244, 240, 232, 0.15);
  --accent: #e2b24d;
  --accent-strong: #ffce5c;
  --green: #809c64;
  --rust: #b4653c;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(18, 17, 15, 0.96), rgba(18, 17, 15, 0.56) 48%, rgba(18, 17, 15, 0.2)),
    linear-gradient(180deg, rgba(18, 17, 15, 0.35), rgba(18, 17, 15, 0.92));
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 22px auto 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}

.nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(244, 240, 232, 0.26);
  background: rgba(18, 17, 15, 0.46);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 180px 0 92px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin: 10px 0 8px;
  font-size: clamp(3.8rem, 12vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: keep-all;
}

h1 span {
  display: block;
}

.no-break {
  white-space: nowrap;
}

.subtitle {
  margin: 0;
  color: var(--accent);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  font-weight: 800;
}

.intro {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.manifesto {
  background: var(--ink);
  color: #171410;
  padding: 48px 20px;
}

.manifesto p {
  width: min(900px, 100%);
  margin: 0 auto;
  font-size: clamp(1.25rem, 2.6vw, 2.1rem);
  line-height: 1.22;
  font-weight: 850;
}

.standard-section {
  padding: 74px 20px;
  background:
    linear-gradient(180deg, rgba(128, 156, 100, 0.07), transparent 320px),
    var(--paper);
}

.standard-section.band {
  background: var(--paper-soft);
}

.standard-section.q-band {
  background:
    linear-gradient(135deg, rgba(226, 178, 77, 0.14), rgba(180, 101, 60, 0.1)),
    #181612;
}

.section-heading,
.standard-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.standard-card {
  min-height: 235px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  background: rgba(244, 240, 232, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 178, 77, 0.55);
  color: var(--accent-strong);
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.82rem;
}

h3 {
  margin: 0;
  color: #fffaf0;
  font-size: clamp(1.22rem, 2vw, 1.6rem);
  line-height: 1.05;
}

.standard-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 760px) {
  .hero {
    min-height: 88vh;
    background: #0d0c0a;
  }

  .hero__image {
    object-fit: contain;
    object-position: center top;
    opacity: 0.82;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(18, 17, 15, 0.22), rgba(18, 17, 15, 0.98)),
      linear-gradient(90deg, rgba(18, 17, 15, 0.8), rgba(18, 17, 15, 0.24));
  }

  .nav {
    width: calc(100% - 24px);
    gap: 6px;
  }

  .nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.75rem;
  }

  .hero__content {
    width: calc(100% - 28px);
    padding-bottom: 48px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 12vw, 3.45rem);
    line-height: 0.94;
  }

  .standard-section {
    padding: 52px 14px;
  }

  .section-heading {
    display: block;
  }

  .section-kicker {
    margin-bottom: 10px;
  }

  .standard-grid {
    grid-template-columns: 1fr;
  }

  .standard-card {
    min-height: auto;
    padding: 20px;
  }
}
