:root {
  --bg: #0f0f12;
  --bg-soft: #17171d;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --text: #f7f6f3;
  --muted: #b7b4ad;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #d0a75d;
  --accent-soft: rgba(208, 167, 93, 0.23);
  --shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
  --max: 1120px;
  --radius: 22px;
  --font-sans: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(1200px 720px at 15% -5%, rgba(208, 167, 93, 0.14) 0%, transparent 60%),
    radial-gradient(900px 640px at 85% 110%, rgba(108, 128, 167, 0.12) 0%, transparent 60%),
    var(--bg);
  line-height: 1.6;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: min(var(--max), calc(100% - 2.2rem));
  margin: 0 auto;
}

.bio-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(13, 13, 16, 0.8);
  border-bottom: 1px solid var(--line);
}

.bio-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bio-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bio-brand__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(208, 167, 93, 0.16);
}

.bio-brand b {
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bio-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

.bio-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(208, 167, 93, 0.65);
}

.btn--primary {
  border-color: rgba(208, 167, 93, 0.7);
  background: linear-gradient(130deg, #d8ae63, #b98f4a);
  color: #17130c;
}

.btn--primary:hover {
  background: linear-gradient(130deg, #e2ba71, #c79e58);
}

.bio-main {
  padding: clamp(28px, 6vw, 60px) 0 clamp(48px, 7vw, 78px);
}

.bio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.14fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

.bio-photo {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}

.bio-photo img {
  border-radius: calc(var(--radius) - 10px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.bio-photo__caption {
  margin: 10px 4px 2px;
  color: var(--muted);
  font-size: 0.84rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.bio-copy h1 {
  margin: 14px 0 8px;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  line-height: 1.1;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.bio-subhead {
  margin: 0;
  color: #ece9e2;
  font-weight: 500;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.bio-lead {
  margin: 15px 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.info-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
}

.info-card b {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.info-card span {
  font-size: 0.95rem;
  line-height: 1.3;
}

.story-grid {
  margin-top: clamp(24px, 4.3vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: clamp(16px, 2.8vw, 26px);
}

.panel {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 26px);
}

.panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.36rem, 2vw, 1.78rem);
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.panel p {
  margin: 0 0 10px;
  color: #ddd8cf;
}

.quote {
  margin-top: 18px;
  border-left: 3px solid rgba(208, 167, 93, 0.64);
  padding-left: 14px;
}

.quote p {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-style: italic;
}

.quote cite {
  color: var(--muted);
  font-style: normal;
  font-size: 0.88rem;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.timeline li {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.timeline b {
  display: block;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline span {
  color: #ded9d1;
  font-size: 0.93rem;
}

.links-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.links-panel li {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.links-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}

.links-panel a:hover {
  background: rgba(208, 167, 93, 0.08);
}

.links-panel small {
  color: var(--muted);
}

.bio-footer {
  border-top: 1px solid var(--line);
  margin-top: clamp(34px, 5vw, 52px);
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: revealUp 0.65s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.12s;
}

.reveal.delay-2 {
  animation-delay: 0.24s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .bio-hero,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .bio-photo img {
    aspect-ratio: 16 / 12;
  }
}

@media (max-width: 700px) {
  .bio-header__inner {
    min-height: 66px;
  }

  .bio-nav .btn {
    padding: 9px 12px;
    font-size: 0.8rem;
  }

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