:root {
  --bg: #090705;
  --panel: rgba(20, 15, 12, 0.82);
  --panel-strong: rgba(35, 24, 16, 0.92);
  --text: #f3eadb;
  --muted: #b7a894;
  --gold: #d7a24c;
  --gold-strong: #f0c16b;
  --red: #8c2f21;
  --line: rgba(240, 193, 107, 0.22);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.topbar {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(6, 5, 4, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand img {
  display: block;
  width: min(220px, 44vw);
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  text-transform: uppercase;
  color: var(--muted);
}

nav a {
  text-decoration: none;
  white-space: nowrap;
}

nav a:hover,
.text-link:hover {
  color: var(--gold-strong);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 6vw, 84px) 84px;
  background:
    linear-gradient(90deg, rgba(9, 7, 5, 0.93), rgba(9, 7, 5, 0.62) 48%, rgba(9, 7, 5, 0.24)),
    url("/assets/images/remastered-bg.jpg") center / cover no-repeat;
}

.hero__shade {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(9, 7, 5, 0), var(--bg));
}

.hero__content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow,
.label {
  margin: 0 0 10px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
  font-weight: 800;
}

h2 {
  margin-bottom: 10px;
  font-size: 25px;
}

.lead {
  max-width: 620px;
  color: #e8ddcc;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.primary {
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  color: #1c1108;
  border-color: transparent;
}

.secondary {
  background: rgba(10, 8, 6, 0.58);
  color: var(--text);
}

.status-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.status-band > div {
  min-height: 116px;
  padding: 24px clamp(18px, 3vw, 42px);
  background: #120e0b;
}

.status-band strong {
  display: block;
  line-height: 1.35;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 48px auto 58px;
}

.panel {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 184px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.panel.highlight {
  background: var(--panel-strong);
}

.panel img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.panel p:not(.label) {
  color: var(--muted);
  line-height: 1.58;
}

.text-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

@media (max-width: 820px) {
  .topbar {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 176px;
  }

  .status-band,
  .grid {
    grid-template-columns: 1fr;
  }

  .panel {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 156px;
  }

  .panel img {
    width: 72px;
    height: 72px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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