:root {
  --black: #050504;
  --ink: #0b0c0a;
  --wine: #390517;
  --wine-soft: #5a1327;
  --gold: #a38560;
  --gold-soft: #c3aa82;
  --green: #16302b;
  --green-deep: #03110d;
  --ivory: #e0e0e0;
  --ivory-soft: rgba(224, 224, 224, 0.72);
  --line: rgba(224, 224, 224, 0.16);
  --line-strong: rgba(163, 133, 96, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(circle at 20% 0%, rgba(57, 5, 23, 0.58), transparent 34rem),
    radial-gradient(circle at 100% 12%, rgba(22, 48, 43, 0.76), transparent 36rem),
    linear-gradient(135deg, #050504 0%, #07100d 48%, #020302 100%);
  font-family:
    Inter, Avenir, Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(224, 224, 224, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 224, 224, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

.bio-page {
  width: min(100% - 36px, 1120px);
  margin: 0 auto;
  padding: 42px 0 76px;
}

.hero {
  display: grid;
  min-height: calc(100vh - 72px);
  align-items: center;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
}

.hero__brand {
  position: relative;
  max-width: 680px;
}

.hero__brand::before {
  display: block;
  width: 156px;
  height: 8px;
  margin: 0 0 32px;
  content: "";
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--green));
}

.kicker {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
.choice-card strong {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: #f0ebe2;
  font-size: clamp(4.05rem, 8.8vw, 8.8rem);
  line-height: 0.86;
}

.hero__note {
  max-width: 430px;
  margin: 26px 0 0;
  color: var(--ivory-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.choice-panel {
  display: grid;
  gap: 16px;
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 156px;
  overflow: hidden;
  align-items: stretch;
  grid-template-columns: 72px 1fr 18px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 4, 0.56);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}

.choice-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.choice-card__index {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(224, 224, 224, 0.12);
  color: rgba(224, 224, 224, 0.74);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.choice-card__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 26px 24px;
}

.choice-card strong {
  color: #f1ece4;
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 0.96;
}

.choice-card small {
  max-width: 330px;
  margin-top: 12px;
  color: var(--ivory-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.choice-card__mark {
  display: block;
  height: 100%;
}

.choice-card--wine .choice-card__mark,
.choice-card--wine .choice-card__index {
  background: linear-gradient(180deg, var(--wine-soft), var(--wine));
}

.choice-card--green .choice-card__mark,
.choice-card--green .choice-card__index {
  background: linear-gradient(180deg, var(--green), var(--green-deep));
}

.choice-card--gold .choice-card__mark,
.choice-card--gold .choice-card__index {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #120d08;
}

.choice-card--wine {
  background:
    linear-gradient(90deg, rgba(57, 5, 23, 0.24), transparent 56%),
    rgba(5, 5, 4, 0.62);
}

.choice-card--green {
  background:
    linear-gradient(90deg, rgba(22, 48, 43, 0.34), transparent 56%),
    rgba(5, 5, 4, 0.62);
}

.choice-card--gold {
  background:
    linear-gradient(90deg, rgba(163, 133, 96, 0.2), transparent 56%),
    rgba(5, 5, 4, 0.62);
}

.authority {
  max-width: 760px;
  margin-top: 82px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.authority h2 {
  color: #f0ebe2;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.92;
}

@media (max-width: 900px) {
  .bio-page {
    width: min(100% - 28px, 620px);
    padding-top: 30px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .hero__brand::before {
    width: 122px;
    height: 7px;
    margin-bottom: 24px;
  }

  h1 {
    font-size: clamp(3.35rem, 17.2vw, 5.5rem);
  }

  .choice-card {
    min-height: 138px;
    grid-template-columns: 58px 1fr 14px;
  }

  .choice-card__content {
    padding: 22px 20px;
  }

  .choice-card strong {
    font-size: clamp(1.78rem, 9vw, 2.55rem);
  }

  .authority {
    margin-top: 58px;
  }
}

@media (max-width: 420px) {
  .bio-page {
    width: min(100% - 22px, 390px);
  }

  .kicker {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

  .choice-card {
    min-height: 128px;
    grid-template-columns: 48px 1fr 12px;
  }

  .choice-card__content {
    padding: 19px 17px;
  }

  .choice-card small {
    font-size: 0.86rem;
  }
}
