:root {
  --bg: #050505;
  --surface: #0d0d0d;
  --surface-soft: #111;
  --text: #f7f5f0;
  --muted: #d8d3ca;
  --soft: #858075;
  --line: rgba(247, 245, 240, 0.16);
  --accent: #d7b56f;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
}

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

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--bg);
  pointer-events: none;
  animation: intro-exit 2200ms ease forwards;
}

.intro-content {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.intro-name {
  color: var(--text);
  font-size: 2.85rem;
  font-weight: 850;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(10px);
  animation: intro-name 1200ms ease 120ms forwards;
}

.intro-line {
  width: 180px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  animation: intro-line 1100ms ease 420ms forwards;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.92);
}

.brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.language-switcher {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.language-toggle {
  display: inline-flex;
  min-width: 58px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
}

.language-toggle::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.language-toggle:hover,
.language-toggle:focus-visible,
.language-switcher:focus-within .language-toggle {
  border-color: var(--accent);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  min-width: 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
  background: #101010;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.language-menu[hidden] {
  display: none;
}

.language-option {
  display: block;
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.active {
  color: #111;
  background: var(--accent);
}

.section-band {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: 58px;
  align-items: center;
  padding: 68px 0 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 1.06rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: 5.6rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: 2.7rem;
  line-height: 1.13;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.24rem;
  line-height: 1.3;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.22rem;
}

.portrait-wrap {
  margin: 0;
}

.portrait {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 62%;
  background: #111;
}

.content-grid,
.split,
.feature-panel {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  padding: 58px 0;
}

.content-grid {
  grid-template-columns: 190px minmax(0, 1fr);
}

.section-content,
.split-copy,
.feature-copy {
  border-left: 2px solid var(--accent);
  border-radius: 8px;
  padding: 28px 30px;
  background: var(--surface);
}

.section-content p,
.split-copy p,
.feature-copy p {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.1rem;
}

.section-content p:last-child,
.split-copy p:last-child,
.feature-copy p:last-child {
  margin-bottom: 0;
}

.timeline {
  padding: 58px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  margin-bottom: 26px;
}

.timeline-list {
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 26px 28px;
  background: var(--surface-soft);
}

.timeline-item + .timeline-item {
  margin-top: 10px;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.year {
  display: block;
  color: var(--accent);
  font-size: 1.12rem;
  font-weight: 850;
}

.site-footer {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 30px 0 42px;
  color: var(--soft);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.footer-note {
  margin-top: 12px;
  color: var(--muted);
}

@keyframes intro-name {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes intro-exit {
  0%,
  72% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    width: min(100% - 28px, var(--max));
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .nav {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .section-band,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .hero,
  .content-grid,
  .split,
  .feature-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero {
    padding: 46px 0 62px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section-content,
  .split-copy,
  .feature-copy {
    padding: 22px;
  }

  .portrait-wrap {
    max-width: 500px;
  }

  .timeline-item {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 1rem;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-lead {
    font-size: 1.18rem;
  }

  .section-content p,
  .split-copy p,
  .feature-copy p {
    font-size: 1.06rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 16px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
