:root {
  --ink: #121212;
  --muted: #66625f;
  --paper: #f4f2ef;
  --white: #ffffff;
  --line: #d8d4cf;
  --soft-line: #e8e4df;
  --accent: #a43f7c;
  --accent-dark: #6d2754;
  --accent-soft: #f5e8f1;
  --gold: #e2b85c;
  --shadow: 0 24px 70px rgba(22, 18, 16, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.profile {
  overflow: clip;
  background:
    radial-gradient(circle at 90% 28%, rgba(164, 63, 124, 0.065), transparent 25rem),
    var(--paper);
}

.hero {
  position: relative;
  min-height: 730px;
  color: var(--white);
  background: #111;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--accent) 0 36%, #e56e8a 36% 62%, #ded7d1 62% 100%);
  z-index: 4;
}

.hero__track {
  position: absolute;
  width: 900px;
  height: 900px;
  top: -500px;
  left: -300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 0 0 72px rgba(255,255,255,.025),
    0 0 0 144px rgba(255,255,255,.025),
    0 0 0 216px rgba(255,255,255,.025),
    0 0 0 288px rgba(255,255,255,.025);
  transform: rotate(-16deg);
  z-index: -1;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr);
  max-width: var(--max);
  min-height: 610px;
  margin: 0 auto;
  padding: 70px 32px 0;
}

.hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 64px 54px 0;
  z-index: 2;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255,255,255,.72);
}

.flag {
  margin-right: 8px;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.4rem, 8vw, 8rem);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.66);
  text-stroke: 1.5px rgba(255,255,255,.66);
}

.hero__role {
  margin: 32px 0 0;
  max-width: 560px;
  color: rgba(255,255,255,.76);
  font-size: 1.04rem;
  font-weight: 650;
}

.hero__role span {
  margin: 0 8px;
  color: var(--accent);
}

.hero__tagline {
  margin: 11px 0 0;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  text-decoration: none;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .03em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--ghost {
  color: var(--white);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}

.hero__visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 0 0 0 90px;
}

.hero__visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #111 0%, rgba(17,17,17,.72) 8%, transparent 38%),
    linear-gradient(0deg, rgba(17,17,17,.64), transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 50%;
  filter: saturate(.88) contrast(1.04);
}

.hero__result {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  min-width: 250px;
  padding: 20px 23px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  background: rgba(13,13,13,.75);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  z-index: 3;
}

.hero__result-label,
.hero__result span:last-child {
  color: rgba(255,255,255,.64);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__result strong {
  margin: 2px 0;
  font-size: 2.65rem;
  line-height: 1.08;
  letter-spacing: -.045em;
  font-variant-numeric: tabular-nums;
}

.hero__number {
  position: absolute;
  right: -24px;
  top: 14px;
  color: rgba(255,255,255,.09);
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  z-index: 2;
}

.hero__stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  z-index: 5;
}

.hero__stats article {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 26px;
  border-right: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
}

.hero__stats article:first-child {
  border-radius: 18px 0 0 0;
}

.hero__stats article:last-child {
  border-right: 0;
  border-radius: 0 18px 0 0;
}

.hero__stats span {
  color: rgba(255,255,255,.54);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero__stats strong {
  margin-top: 3px;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}

.section-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(18,18,18,.08);
  background: rgba(244,242,239,.9);
  backdrop-filter: blur(14px);
}

.section-nav__inner {
  display: flex;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav__inner::-webkit-scrollbar {
  display: none;
}

.section-nav a {
  flex: 0 0 auto;
  padding: 19px 19px 17px;
  border-bottom: 2px solid transparent;
  color: #5e5a56;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease;
}

.section-nav a:first-child {
  padding-left: 0;
}

.section-nav a:hover,
.section-nav a:focus-visible,
.section-nav a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.page-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 110px 0;
  scroll-margin-top: 70px;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.section-heading--row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.kicker {
  color: var(--accent);
}

.section h2 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 880;
  line-height: .98;
  letter-spacing: -.058em;
}

.section-intro {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 70px;
  align-items: start;
}

.overview__story {
  max-width: 760px;
}

.overview__story p {
  color: #45413e;
  font-size: 1.04rem;
}

.overview__story .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 520;
  line-height: 1.45;
}

blockquote {
  position: relative;
  margin: 48px 0 0;
  padding: 34px 38px 32px 84px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(24,20,18,.07);
}

blockquote::before {
  position: absolute;
  left: 28px;
  top: 18px;
  content: "“";
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 1;
}

blockquote p {
  margin: 0 !important;
  color: var(--ink) !important;
  font-size: 1.3rem !important;
  font-weight: 750;
}

blockquote cite {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .75rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.identity-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.identity-card__image {
  height: 375px;
  overflow: hidden;
  background: #d9d3cc;
}

.identity-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: saturate(.9);
}

.identity-card dl {
  margin: 0;
  padding: 18px 26px 24px;
}

.identity-card dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.identity-card dl div:last-child {
  border-bottom: 0;
}

.identity-card dt {
  color: rgba(255,255,255,.52);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.identity-card dd {
  margin: 0;
  text-align: right;
  font-weight: 750;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.filter {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5d5854;
  background: transparent;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.filter:hover,
.filter:focus-visible,
.filter.is-active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(28,24,21,.065);
}

.records-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: .9rem;
}

.records-table th,
.records-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--soft-line);
  text-align: left;
  vertical-align: middle;
}

.records-table th {
  color: #746e69;
  background: #faf9f7;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.records-table th:nth-child(2),
.records-table td:nth-child(2),
.records-table th:nth-child(3),
.records-table td:nth-child(3) {
  text-align: right;
}

.records-table tr:last-child td {
  border-bottom: 0;
}

.records-table tbody tr {
  transition: opacity .2s ease, background .2s ease;
}

.records-table tbody tr:hover {
  background: #faf8f5;
}

.records-table .time {
  font-size: 1.14rem;
  font-weight: 860;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.record-highlight {
  color: var(--white);
  background: var(--accent) !important;
}

.record-highlight td {
  border-bottom-color: rgba(255,255,255,.16);
}

.badge {
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 7px;
  border-radius: 5px;
  color: var(--accent);
  background: var(--white);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
  vertical-align: middle;
}

.source-note {
  margin: 14px 3px 0;
  color: #817b76;
  font-size: .74rem;
}

.season-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
}

.season-mark strong {
  color: var(--accent);
  font-size: 2.2rem;
  line-height: 1;
}

.season-mark span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.result-list {
  display: grid;
  gap: 10px;
}

.result-card {
  display: grid;
  grid-template-columns: 78px 175px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 104px;
  padding: 17px 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.54);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.result-card:hover {
  transform: translateX(4px);
  border-color: #b8b1aa;
  background: var(--white);
}

.result-card--featured {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 18px 50px rgba(143,32,48,.2);
}

.result-card--featured:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.result-card time {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .07em;
}

.result-card--featured time {
  color: rgba(255,255,255,.66);
}

.result-card__event {
  display: grid;
}

.result-card__event span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.result-card--featured .result-card__event span,
.result-card--featured .result-card__meet span {
  color: rgba(255,255,255,.67);
}

.result-card__event strong {
  font-size: 1.75rem;
  line-height: 1.15;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}

.result-card__meet {
  display: grid;
}

.result-card__meet strong {
  font-size: .95rem;
}

.result-card__meet span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .8rem;
}

.result-card__tag,
.result-card__place {
  min-width: 44px;
  text-align: center;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.result-card__tag {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
}

.result-card--featured .result-card__tag {
  color: var(--accent);
  background: var(--white);
}

.result-card__place {
  color: var(--accent);
  font-size: 1.5rem;
  letter-spacing: -.04em;
}

.chart-card {
  padding: 32px 34px 16px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 15%, rgba(143,32,48,.55), transparent 24rem),
    #141414;
  box-shadow: var(--shadow);
}

.chart-card__summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 6px;
}

.chart-card__summary span {
  color: rgba(255,255,255,.5);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.chart-card__summary strong {
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}

.progress-chart {
  width: 100%;
  min-width: 680px;
  overflow: visible;
}

.chart-card {
  overflow-x: auto;
}

.progress-chart .grid-lines line {
  stroke: rgba(255,255,255,.1);
  stroke-width: 1;
}

.progress-chart .axis-labels text {
  fill: rgba(255,255,255,.4);
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.progress-chart .area {
  fill: url(#none);
  fill: rgba(143,32,48,.17);
}

.progress-chart .line {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.progress-chart .points circle {
  fill: #141414;
  stroke: #fff;
  stroke-width: 3;
  transition: r .2s ease, fill .2s ease;
}

.progress-chart .points g:focus circle,
.progress-chart .points g:hover circle {
  r: 12;
  fill: var(--accent);
  outline: none;
}

.progress-chart .points .point-current {
  fill: var(--accent);
  stroke: #fff;
}

.progress-chart .points text {
  fill: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 780;
  text-anchor: middle;
}

.progress-chart .points .value {
  fill: rgba(255,255,255,.9);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.progress-chart .points .value--current {
  fill: #fff;
  font-size: 16px;
  font-weight: 900;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 74px;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 40px;
  padding: 0 0 48px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__year {
  position: relative;
  padding-top: 3px;
  color: #706a65;
  font-size: 1.3rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.timeline__year::after {
  position: absolute;
  right: 32px;
  top: 11px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  content: "";
  background: #aaa29b;
  box-shadow: 0 0 0 1px #aaa29b;
}

.timeline__item--current .timeline__year {
  color: var(--accent);
}

.timeline__item--current .timeline__year::after {
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 0 7px var(--accent-soft);
}

.timeline__content {
  max-width: 850px;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.timeline__item:last-child .timeline__content {
  border-bottom: 0;
}

.timeline__content h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -.03em;
}

.timeline__content p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
}

.gallery figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd7d0;
}

.gallery__main {
  grid-row: 1 / span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .3s ease;
}

.gallery__main img {
  object-position: 50% 50%;
}

.gallery figure:nth-child(2) img {
  object-position: 44% 50%;
}

.gallery figure:nth-child(3) img {
  object-position: 50% 34%;
}

.gallery figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  color: var(--white);
  background: rgba(12,12,12,.7);
  backdrop-filter: blur(9px);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.profile-footer {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 20px;
  padding: 40px max(32px, calc((100vw - var(--max)) / 2 + 32px));
  color: var(--white);
  background: #111;
}

.profile-footer > div:first-child {
  display: grid;
}

.profile-footer strong {
  font-size: 1.05rem;
  letter-spacing: .03em;
}

.profile-footer span {
  color: rgba(255,255,255,.48);
  font-size: .76rem;
}

.profile-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.profile-footer a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 800;
}

.profile-footer a:hover,
.profile-footer a:focus-visible {
  color: var(--white);
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(143,32,48,.35);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero__content {
    grid-template-columns: 1fr;
    padding: 56px 24px 0;
  }

  .hero__copy {
    min-height: 500px;
    padding-right: 0;
  }

  .hero__visual {
    min-height: 520px;
    border-radius: 28px 28px 0 0;
  }

  .hero__visual::before {
    background: linear-gradient(0deg, rgba(17,17,17,.7), transparent 50%);
  }

  .hero__stats {
    padding: 0 24px;
  }

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

  .identity-card {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
  }

  .identity-card__image {
    height: auto;
    min-height: 410px;
  }

  .result-card {
    grid-template-columns: 70px 155px 1fr auto;
    gap: 16px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .hero__content {
    padding: 42px 18px 0;
  }

  .hero__copy {
    min-height: 475px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 22vw, 6.2rem);
  }

  .hero__role {
    max-width: 330px;
    font-size: .91rem;
  }

  .hero__visual {
    min-height: 470px;
    border-radius: 24px 24px 0 0;
  }

  .hero__visual img {
    object-position: 41% 50%;
  }

  .hero__result {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-width: 0;
  }

  .hero__number {
    font-size: 6.5rem;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 18px;
  }

  .hero__stats article {
    min-height: 95px;
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .hero__stats article:nth-child(2) {
    border-right: 0;
  }

  .hero__stats article:first-child,
  .hero__stats article:last-child {
    border-radius: 0;
  }

  .section-nav__inner {
    padding: 0 18px;
  }

  .page-grid {
    padding: 0 18px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading,
  .section-heading--row {
    display: block;
    margin-bottom: 34px;
  }

  .section h2 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .filters {
    justify-content: flex-start;
    margin-top: 24px;
  }

  .identity-card {
    display: block;
  }

  .identity-card__image {
    height: 420px;
    min-height: 0;
  }

  blockquote {
    padding: 74px 24px 25px;
  }

  blockquote::before {
    left: 22px;
    top: 8px;
  }

  .season-mark {
    display: inline-flex;
    margin-top: 24px;
  }

  .result-card {
    grid-template-columns: 58px 1fr auto;
    gap: 10px 14px;
    min-height: 0;
    padding: 16px;
  }

  .result-card__event {
    grid-column: 2;
  }

  .result-card__meet {
    grid-column: 2 / 4;
  }

  .result-card__tag,
  .result-card__place {
    grid-column: 3;
    grid-row: 1;
  }

  .result-card__event strong {
    font-size: 1.5rem;
  }

  .chart-card {
    padding: 24px 18px 10px;
    border-radius: 20px;
  }

  .chart-card__summary {
    display: grid;
    gap: 4px;
  }

  .timeline::before {
    left: 5px;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 13px;
    padding-left: 29px;
  }

  .timeline__year::after {
    left: -29px;
    right: auto;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 270px 350px;
  }

  .gallery__main {
    grid-row: auto;
  }

  .profile-footer {
    display: grid;
    padding: 40px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Zelta arhīvs */
.archive {
  position: relative;
}

.archive::before {
  position: absolute;
  top: 42px;
  right: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(213,169,78,.22);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 42px rgba(213,169,78,.035),
    0 0 0 84px rgba(213,169,78,.025);
  pointer-events: none;
}

.archive__intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 50px;
  align-items: end;
  z-index: 1;
}

.archive__stamp {
  display: grid;
  width: 170px;
  height: 170px;
  place-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: #725514;
  background: rgba(213,169,78,.1);
  box-shadow: inset 0 0 0 7px var(--paper), inset 0 0 0 8px rgba(213,169,78,.55);
  text-align: center;
  transform: rotate(6deg);
}

.archive__stamp span,
.archive__stamp small {
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.archive__stamp strong {
  margin: -2px 0 -6px;
  color: var(--ink);
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: -.08em;
}

.archive__rail {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin: -4px 0 34px;
  color: #887035;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.archive__rail-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(213,169,78,.1), var(--gold), rgba(213,169,78,.1));
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.archive-card {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
  border: 1px solid #d9d1bf;
  border-radius: 18px;
  color: var(--ink);
  background: #ebe3d3;
  box-shadow: 0 16px 45px rgba(61,49,24,.08);
  text-decoration: none;
  isolation: isolate;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.archive-card::after {
  position: absolute;
  right: 14px;
  bottom: 11px;
  width: 54px;
  height: 5px;
  border-radius: 99px;
  content: "";
  background: var(--gold);
  opacity: .58;
}

.archive-card:hover,
.archive-card:focus-visible {
  transform: translateY(-6px) rotate(-.25deg);
  border-color: #b99a55;
  box-shadow: 0 24px 65px rgba(61,49,24,.16);
}

.archive-card:nth-child(even):hover,
.archive-card:nth-child(even):focus-visible {
  transform: translateY(-6px) rotate(.25deg);
}

.archive-card__tab {
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 3;
  min-width: 76px;
  padding: 8px 13px 7px;
  border-radius: 0 0 9px 9px;
  color: var(--white);
  background: #9b7629;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: center;
}

.archive-card__paper {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  border-right: 1px solid rgba(85,65,27,.15);
  background: #d8cfbd;
}

.archive-card__paper::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 70%, rgba(61,49,24,.1));
  pointer-events: none;
}

.archive-card__paper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: sepia(.12) saturate(.72) contrast(.94);
  transition: transform .35s ease, filter .35s ease;
}

.archive-card:hover .archive-card__paper img,
.archive-card:focus-visible .archive-card__paper img {
  transform: scale(1.035);
  filter: sepia(0) saturate(.9) contrast(1);
}

.archive-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 42px 20px 32px;
}

.archive-card__copy span {
  color: #6c5b35;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.archive-card__copy strong {
  margin-top: 9px;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}

.archive-card__copy small {
  margin-top: auto;
  padding-top: 28px;
  color: #8f6d26;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.archive-card--final {
  color: var(--white);
  border-color: #5a111c;
  background: var(--accent);
  box-shadow: 0 18px 55px rgba(143,32,48,.19);
}

.archive-card--final .archive-card__tab {
  color: #4d390d;
  background: var(--gold);
}

.archive-card--final .archive-card__copy span,
.archive-card--final .archive-card__copy small {
  color: rgba(255,255,255,.72);
}

.archive-card--final::after {
  background: var(--white);
}

.archive__note {
  margin: 22px 0 0;
  color: #777067;
  font-size: .76rem;
}

@media (max-width: 1050px) {
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .archive::before {
    display: none;
  }

  .archive__intro {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .archive__stamp {
    width: 124px;
    height: 124px;
    margin: -10px 0 35px auto;
  }

  .archive__stamp strong {
    font-size: 3.4rem;
  }

  .archive-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .archive-card {
    grid-template-columns: 100px minmax(0, 1fr);
    min-height: 190px;
  }

  .archive-card__copy {
    padding: 36px 17px 25px;
  }

  .archive-card__copy strong {
    font-size: 1.3rem;
  }

  .archive-card__copy small {
    padding-top: 20px;
  }
}


/* Annijas profila nianses */
.hero__visual--annija img {
  object-position: 58% 48%;
  filter: saturate(.96) contrast(1.03);
}

.identity-card--annija {
  color: var(--ink);
  border: 1px solid var(--soft-line);
  background: linear-gradient(145deg, #f8edf4 0%, #ffffff 58%, #f1eee9 100%);
}

.identity-card--annija dl div {
  border-bottom-color: rgba(18,18,18,.10);
}

.identity-card--annija dt {
  color: var(--accent-dark);
}

.identity-card--annija dd {
  color: var(--ink);
}

.identity-card__image--cutout {
  background:
    radial-gradient(circle at 50% 32%, rgba(164,63,124,.18), transparent 43%),
    linear-gradient(180deg, #f7eff4, #ebe7e2);
}

.identity-card__image--cutout img {
  object-fit: contain;
  object-position: center bottom;
  padding: 24px 24px 0;
}

.gallery__grid--annija {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 560px;
}

.gallery__grid--annija figure {
  grid-row: auto;
}

.gallery__grid--annija img {
  object-position: 50% 48%;
}

.hero__tagline::after {
  content: "";
  display: inline-block;
  width: 46px;
  height: 3px;
  margin-left: 12px;
  vertical-align: middle;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), #f19aab);
}

@media (max-width: 760px) {
  .gallery__grid--annija {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 430px);
  }
}
