:root {
  --ink: #0b120e;
  --ink-soft: #111b15;
  --ink-raised: #17241c;
  --paper: #f4f0e7;
  --paper-deep: #e9e3d7;
  --paper-light: #fffdf7;
  --signal: #c9ff4b;
  --signal-dark: #486500;
  --forest: #17573e;
  --forest-light: #237354;
  --white: #ffffff;
  --text-on-dark: #f2f5f0;
  --muted-on-dark: #aab6ae;
  --text-on-light: #152019;
  --muted-on-light: #59635d;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(21, 32, 25, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text-on-dark);
  font-family: Inter, "Noto Sans Georgian", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.georgian {
  letter-spacing: -0.006em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.section-light :focus-visible,
.section-paper-deep :focus-visible {
  outline-color: var(--ink);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(11, 18, 14, 0.82);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-dark);
  background: rgba(11, 18, 14, 0.95);
}

.header-row {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(201, 255, 75, 0.5);
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted-on-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: var(--muted-on-dark);
  font-size: 13px;
  font-weight: 720;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.language-link {
  padding: 9px 10px;
  border-radius: 999px;
  color: var(--muted-on-dark);
  font-size: 12px;
  font-weight: 800;
}

.language-link:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--signal);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.mobile-menu {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--signal);
}

.mobile-contact-link {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-size: 19px;
  font-weight: 950;
}

.mobile-menu summary {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -5px;
}

.menu-icon::after {
  position: absolute;
  top: 5px;
}

.mobile-menu[open] .menu-icon {
  background: transparent;
}

.mobile-menu[open] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu[open] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav-panel {
  position: absolute;
  z-index: 5;
  top: 52px;
  right: 0;
  width: min(290px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: #101a14;
  box-shadow: var(--shadow);
}

.mobile-nav-panel a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-on-dark);
  font-size: 14px;
  font-weight: 760;
}

.mobile-nav-panel a:last-child {
  border-bottom: 0;
  color: var(--signal);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  padding: clamp(64px, 9vw, 118px) 0 clamp(72px, 9vw, 112px);
  background:
    radial-gradient(circle at 78% 18%, rgba(35, 115, 84, 0.34), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(201, 255, 75, 0.08), transparent 28%),
    var(--ink);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 11%;
  right: -10vw;
  width: min(55vw, 740px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: clamp(50px, 8vw, 110px);
}

.hero-grid > *,
.footage-grid > *,
.profile-grid > *,
.timeline-grid > *,
.contact-layout > * {
  min-width: 0;
}

.status-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.updated {
  color: var(--muted-on-dark);
  font-size: 11px;
  font-weight: 700;
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 18px;
  color: var(--white);
  font-size: clamp(53px, 7.6vw, 112px);
  font-weight: 930;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

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

.role-line {
  margin: 0 0 18px;
  color: var(--signal);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.role-line span {
  color: var(--muted-on-dark);
  font-weight: 550;
}

.hero-summary {
  max-width: 640px;
  margin: 0;
  color: #cbd4ce;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.72;
}

.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--signal);
  color: var(--ink);
}

.button-secondary {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

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

.button-outline-dark {
  border-color: rgba(11, 18, 14, 0.35);
  background: transparent;
  color: var(--ink);
}

.button-icon {
  font-size: 18px;
  line-height: 1;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: var(--muted-on-dark);
  font-size: 12px;
}

.trust-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(201, 255, 75, 0.1);
}

.identity-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 510px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #206b4e, #123d2c 78%);
  box-shadow: var(--shadow);
}

.identity-card::before,
.identity-card::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.identity-card::before {
  top: 85px;
  right: -34%;
  width: 126%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.identity-card::after {
  inset: 48% 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.geo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.geo-flag {
  display: block;
  width: 24px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 2px;
}

.portrait-zone {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin: 18px -25px 20px;
  border-block: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 18, 12, 0.32);
  place-items: center;
}

.portrait-zone picture {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
}

.player-portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 5%;
}

.portrait-zone::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(5, 18, 12, 0.68));
  content: "";
  pointer-events: none;
}

.portrait-note {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 11px;
  max-width: calc(100% - 28px);
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(11, 18, 14, 0.78);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.monogram {
  position: relative;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(105px, 15vw, 184px);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.8;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transform: translateX(-0.05em);
}

.portrait-fallback {
  z-index: 0;
}

.monogram::after {
  position: absolute;
  right: -4px;
  bottom: -18px;
  width: 54%;
  height: 6px;
  border-radius: 99px;
  background: var(--signal);
  content: "";
}

.card-identity {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.card-identity h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.card-identity p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.position-code {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.card-metrics {
  display: grid;
  margin: 0;
  padding-top: 20px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.card-metrics div {
  min-width: 0;
}

.card-metrics dt {
  overflow: hidden;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.card-metrics dd {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.measurement-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.photo-disclosure {
  margin: 15px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.55;
}

.photo-disclosure strong {
  color: var(--white);
}

.fact-bar {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-soft);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-item {
  min-height: 130px;
  padding: 29px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line-dark);
}

.fact-item:first-child {
  padding-left: 0;
}

.fact-item:last-child {
  border-right: 0;
}

.fact-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted-on-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fact-value {
  display: block;
  color: var(--white);
  font-size: clamp(18px, 2.1vw, 25px);
  font-weight: 880;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.fact-value small {
  display: block;
  margin-top: 7px;
  color: var(--muted-on-dark);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.35;
}

.section {
  padding: clamp(78px, 10vw, 136px) 0;
}

.section-light {
  background: var(--paper);
  color: var(--text-on-light);
}

.section-paper-deep {
  background: var(--paper-deep);
  color: var(--text-on-light);
}

.section-dark {
  background: var(--ink);
  color: var(--text-on-dark);
}

.section-heading {
  display: grid;
  align-items: start;
  margin-bottom: clamp(42px, 6vw, 72px);
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
}

.section-number {
  padding-top: 10px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.section-dark .section-number {
  color: var(--signal);
}

.section-title-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 40px;
}

.section-title {
  max-width: 690px;
  margin: 0;
  font-size: clamp(36px, 5.6vw, 76px);
  font-weight: 930;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-intro {
  align-self: end;
  margin: 0;
  color: var(--muted-on-light);
  font-size: 15px;
  line-height: 1.75;
}

.section-dark .section-intro {
  color: var(--muted-on-dark);
}

.footage-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.65fr);
  gap: clamp(30px, 5vw, 66px);
}

.video-shell {
  overflow: hidden;
  border-radius: 24px;
  background: #050806;
  box-shadow: 0 24px 60px rgba(18, 31, 23, 0.2);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(rgba(5, 8, 6, 0.35), rgba(5, 8, 6, 0.35)),
    repeating-linear-gradient(90deg, #174d38 0, #174d38 11%, #1a573e 11%, #1a573e 22%);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-facade {
  display: grid;
  position: absolute;
  inset: 0;
  width: 100%;
  cursor: pointer;
  place-content: center;
  place-items: center;
  gap: 16px;
  border: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 255, 75, 0.12), transparent 24%),
    linear-gradient(rgba(5, 8, 6, 0.18), rgba(5, 8, 6, 0.42));
  color: var(--white);
  text-align: center;
}

.video-facade:hover .play-mark {
  transform: scale(1.08);
}

.play-mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  padding-left: 4px;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-size: 24px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  transition: transform 160ms ease;
}

.facade-copy {
  display: grid;
  gap: 2px;
}

.facade-copy strong {
  font-size: 15px;
  font-weight: 900;
}

.facade-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  color: var(--text-on-dark);
}

.video-caption strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

.video-caption small {
  color: var(--muted-on-dark);
  font-size: 11px;
}

.video-type {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--signal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footage-copy h3 {
  margin: 0 0 15px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.footage-summary {
  margin: 0;
  color: var(--muted-on-light);
}

.footage-copy > .button {
  max-width: 100%;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
}

.button-stack {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}

.button-stack .button {
  max-width: 100%;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
}

.footage-meta {
  display: grid;
  margin: 28px 0;
  border-top: 1px solid var(--line-light);
}

.footage-meta div {
  display: grid;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
}

.footage-meta dt {
  color: var(--muted-on-light);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footage-meta dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.evidence-note {
  margin-top: 22px;
  padding: 15px 17px;
  border-left: 3px solid var(--forest);
  background: rgba(23, 87, 62, 0.08);
  color: var(--muted-on-light);
  font-size: 12px;
  line-height: 1.6;
}

.video-library {
  margin-top: clamp(48px, 7vw, 82px);
  padding-top: clamp(34px, 5vw, 54px);
  border-top: 1px solid var(--line-light);
}

.video-library-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 28px;
}

.video-library-heading h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.video-library-heading p {
  margin: 0;
  color: var(--muted-on-light);
  line-height: 1.7;
}

.video-library-grid,
.gallery-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-library-card {
  display: block;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: var(--paper-light);
  transition: border-color 160ms ease, transform 160ms ease;
}

.video-library-card:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
}

.video-library-card > span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-library-card h4 {
  margin: 14px 0 8px;
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.video-library-card p {
  margin: 0 0 18px;
  color: var(--muted-on-light);
}

.video-library-card > strong {
  color: var(--forest);
  font-size: 12px;
}

.gallery-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-light);
  border-radius: 22px;
  background: var(--paper-light);
}

.gallery-card img {
  width: 100%;
  height: auto;
}

.gallery-card figcaption {
  padding: 16px 18px;
  color: var(--muted-on-light);
  font-size: 12px;
  line-height: 1.6;
}

.profile-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.68fr);
  gap: clamp(50px, 8vw, 110px);
}

.profile-story .lead {
  max-width: 800px;
  margin: 0;
  color: var(--white);
  font-size: clamp(23px, 3.3vw, 40px);
  font-weight: 690;
  letter-spacing: -0.045em;
  line-height: 1.32;
}

.profile-story .lead strong {
  color: var(--signal);
  font-weight: 860;
}

.profile-story .supporting-copy {
  max-width: 720px;
  margin: 32px 0 0;
  color: var(--muted-on-dark);
  font-size: 16px;
  line-height: 1.8;
}

.source-status {
  max-width: 720px;
  margin: 24px 0 0;
  padding: 15px 17px;
  border-left: 3px solid var(--signal);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-on-dark);
  font-size: 12px;
  line-height: 1.65;
}

.source-status strong {
  color: var(--white);
}

.profile-panel {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: var(--ink-raised);
}

.profile-panel-header {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--signal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile-data {
  margin: 0;
}

.profile-data div {
  display: grid;
  padding: 17px 22px;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.profile-data div:last-child {
  border-bottom: 0;
}

.profile-data dt {
  color: var(--muted-on-dark);
  font-size: 11px;
  font-weight: 700;
}

.profile-data dd {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  text-align: right;
}

.profile-data dd small {
  display: block;
  margin-top: 4px;
  color: var(--muted-on-dark);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.profile-data .data-source-link {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  margin-top: 7px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.45;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(201, 255, 75, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.profile-data .data-source-link:hover {
  text-decoration-color: currentColor;
}

.timeline-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.6fr);
  gap: clamp(46px, 8vw, 110px);
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 11px;
  width: 1px;
  background: rgba(23, 87, 62, 0.35);
  content: "";
}

.timeline-item {
  display: grid;
  position: relative;
  padding-bottom: 54px;
  grid-template-columns: 54px minmax(0, 1fr);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 23px;
  height: 23px;
  margin-top: 4px;
  border: 6px solid var(--paper-deep);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 1px var(--forest);
}

.timeline-period {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 920;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.timeline-content p {
  margin: 12px 0 0;
  color: var(--muted-on-light);
}

.timeline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.timeline-facts span {
  padding: 6px 9px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--text-on-light);
  font-size: 11px;
  font-weight: 820;
}

.pathway-card {
  padding: 28px;
  border-radius: 22px;
  background: var(--forest);
  color: var(--white);
}

.pathway-card .mini-label {
  color: var(--signal);
}

.pathway-card h3 {
  margin: 12px 0 14px;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.pathway-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.pathway-stat {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pathway-stat strong {
  display: block;
  color: var(--signal);
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}

.pathway-stat span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-section {
  overflow: hidden;
  padding: clamp(78px, 10vw, 130px) 0;
  background: var(--signal);
  color: var(--ink);
}

.contact-section :focus-visible {
  outline-color: var(--ink);
}

.contact-layout {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.55fr);
  gap: clamp(50px, 8vw, 110px);
}

.mini-label {
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-copy h2 {
  max-width: 800px;
  margin: 18px 0 22px;
  font-size: clamp(45px, 7.2vw, 96px);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.contact-copy p {
  max-width: 700px;
  margin: 0;
  color: rgba(11, 18, 14, 0.72);
  font-size: 16px;
}

.contact-list {
  margin: 0;
  border-top: 1px solid rgba(11, 18, 14, 0.28);
}

.contact-list div {
  padding: 17px 0;
  border-bottom: 1px solid rgba(11, 18, 14, 0.28);
}

.contact-list dt {
  margin-bottom: 2px;
  color: rgba(11, 18, 14, 0.58);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.safety-note {
  margin-top: 18px;
  color: rgba(11, 18, 14, 0.62);
  font-size: 11px;
  line-height: 1.6;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
}

.footer-name {
  margin: 20px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.footer-meta {
  margin: 6px 0 0;
  color: var(--muted-on-dark);
  font-size: 11px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--muted-on-dark);
  font-size: 11px;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--signal);
}

.toast {
  position: fixed;
  z-index: 500;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: var(--ink-raised);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 750;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.print-only {
  display: none;
}

.watch-page {
  background: var(--paper);
  color: var(--text-on-light);
}

.watch-hero {
  padding: clamp(58px, 8vw, 96px) 0 clamp(34px, 5vw, 58px);
  background:
    radial-gradient(circle at 82% 10%, rgba(35, 115, 84, 0.32), transparent 34%),
    var(--ink);
  color: var(--text-on-dark);
}

.watch-heading {
  max-width: 980px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted-on-dark);
  font-size: 12px;
  font-weight: 800;
}

.breadcrumb:hover {
  color: var(--white);
}

.watch-heading h1 {
  max-width: 1000px;
  margin: 20px 0 18px;
  color: var(--white);
  font-size: clamp(40px, 6.5vw, 82px);
  font-weight: 930;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.watch-heading > p {
  max-width: 760px;
  margin: 0;
  color: #cbd4ce;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.75;
}

.watch-video-section {
  padding: 0 0 clamp(56px, 8vw, 92px);
  background: var(--ink);
}

.video-frame-static {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.watch-video-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  color: var(--muted-on-dark);
  font-size: 12px;
  font-weight: 720;
}

.watch-video-actions a {
  flex: 0 0 auto;
  color: var(--signal);
  font-weight: 850;
}

.watch-details-section {
  padding-top: clamp(64px, 8vw, 104px);
}

.watch-detail-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.62fr);
  gap: clamp(42px, 8vw, 100px);
}

.watch-detail-grid h2 {
  margin: 14px 0 20px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 920;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.watch-meta {
  margin-top: 0;
}

.watch-context-card {
  padding: 30px;
  border-radius: 24px;
  background: var(--paper-deep);
  box-shadow: 0 20px 50px rgba(18, 31, 23, 0.1);
}

.watch-context-card h2 {
  margin-top: 12px;
  font-size: 30px;
}

.watch-context-card p {
  margin: 0 0 26px;
  color: var(--muted-on-light);
  line-height: 1.75;
}

.privacy-hero {
  padding-bottom: clamp(54px, 8vw, 86px);
}

.privacy-updated {
  display: inline-flex;
  margin-top: 28px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.04em;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.privacy-content {
  counter-reset: privacy-section;
}

.privacy-content section {
  position: relative;
  padding: clamp(26px, 4vw, 42px) 0;
  border-bottom: 1px solid var(--line-light);
  counter-increment: privacy-section;
}

.privacy-content section:first-child {
  padding-top: 0;
}

.privacy-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-content h2 {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(23px, 3.2vw, 34px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.privacy-content h2::before {
  content: counter(privacy-section, decimal-leading-zero);
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.privacy-content p,
.privacy-content li {
  color: var(--muted-on-light);
  font-size: 16px;
  line-height: 1.78;
}

.privacy-content p {
  margin: 0 0 14px 50px;
}

.privacy-content p:last-child {
  margin-bottom: 0;
}

.privacy-content ul {
  display: grid;
  gap: 12px;
  margin: 0 0 0 50px;
  padding-left: 20px;
}

.privacy-content a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 40px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(35, 115, 84, 0.34), transparent 30%),
    var(--ink);
}

.error-card {
  max-width: 760px;
}

.error-code {
  display: block;
  margin-top: 70px;
  color: var(--signal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.error-card h1 {
  margin: 16px 0;
  color: var(--white);
  font-size: clamp(46px, 8vw, 92px);
  font-weight: 940;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.error-card p {
  max-width: 580px;
  margin: 0 0 30px;
  color: var(--muted-on-dark);
  font-size: 17px;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .hero h1 span {
    color: CanvasText;
    -webkit-text-stroke: 0;
  }

  .brand-mark,
  .position-code,
  .play-mark,
  .mobile-menu,
  .mobile-contact-link {
    border: 1px solid CanvasText;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .footage-grid,
  .profile-grid,
  .timeline-grid,
  .contact-layout,
  .watch-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .identity-card {
    width: 100%;
    max-width: 560px;
    min-height: 500px;
  }

  .section-title-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-intro {
    max-width: 660px;
  }

  .footage-copy,
  .profile-panel,
  .pathway-card,
  .contact-details {
    max-width: 660px;
  }

  .footer-grid {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-row {
    min-height: 68px;
  }

  .brand-copy small {
    display: none;
  }

  .language-link {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-contact-link {
    display: grid;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(50px, 17vw, 84px);
  }

  .hero h1 span {
    font-size: 0.78em;
    line-height: 1.03;
  }

  .georgian .hero h1 {
    font-size: clamp(41px, 13.5vw, 68px);
  }

  .hero-summary {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .role-line {
    line-height: 1.35;
  }

  .role-line span {
    display: block;
    margin-top: 5px;
    font-size: 0.82em;
    line-height: 1.45;
  }

  .action-row .button,
  .footage-copy > .button,
  .button-stack .button {
    width: 100%;
    max-width: 100%;
    padding-inline: 14px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

  .georgian .action-row .button,
  .georgian .footage-copy > .button,
  .georgian .button-stack .button {
    font-size: 12px;
  }

  .trust-line {
    align-items: flex-start;
  }

  .trust-dot {
    margin-top: 6px;
  }

  .identity-card {
    min-height: 450px;
    padding: 20px;
    border-radius: 22px;
  }

  .portrait-zone {
    margin: 14px -20px 16px;
  }

  .card-identity h2 {
    font-size: 18px;
  }

  .fact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-item,
  .fact-item:first-child {
    min-height: 110px;
    padding: 22px 16px;
    border-bottom: 1px solid var(--line-dark);
  }

  .fact-item:nth-child(2) {
    border-right: 0;
  }

  .fact-item:nth-child(n + 3) {
    border-bottom: 0;
  }

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

  .section-number {
    padding-top: 0;
  }

  .video-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .footage-meta div {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .profile-data div {
    padding-inline: 17px;
  }

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

  .timeline-content h3 {
    font-size: 24px;
  }

  .contact-copy h2 {
    font-size: clamp(43px, 14vw, 72px);
  }

  .georgian .contact-copy h2 {
    font-size: clamp(36px, 11.5vw, 62px);
  }

  .contact-actions .button {
    width: 100%;
  }

  .watch-video-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-library-heading,
  .video-library-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .watch-heading h1 {
    font-size: clamp(38px, 12vw, 62px);
  }

  .georgian .watch-heading h1 {
    font-size: clamp(34px, 10vw, 54px);
  }
}

@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 11px;
  }

  .card-metrics {
    gap: 6px;
  }

  .card-metrics dd {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .privacy-content h2 {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .privacy-content p,
  .privacy-content ul {
    margin-left: 42px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 13mm;
  }

  :root {
    --ink: #111111;
    --text-on-dark: #111111;
    --muted-on-dark: #4f4f4f;
    --line-dark: rgba(0, 0, 0, 0.18);
  }

  html,
  body {
    background: #fff;
    color: #111;
    font-size: 10pt;
  }

  .site-header,
  .action-row,
  .fact-bar,
  .video-frame,
  .video-type,
  .contact-actions,
  .site-footer,
  .toast,
  .skip-link {
    display: none !important;
  }

  .hero,
  .section,
  .contact-section {
    min-height: auto;
    padding: 10mm 0;
    background: #fff !important;
    color: #111 !important;
  }

  .section-heading {
    display: block;
    margin-bottom: 7mm;
  }

  .section-number {
    display: block;
    padding: 0;
    margin-bottom: 2mm;
  }

  .section-title-wrap {
    display: block;
  }

  .section-title {
    max-width: none;
    font-size: 21pt;
    letter-spacing: -0.035em;
  }

  .section-intro {
    margin-top: 2mm;
    color: #444 !important;
    font-size: 9pt;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-grid,
  .footage-grid,
  .profile-grid,
  .timeline-grid,
  .contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 10mm;
  }

  .hero h1,
  .hero h1 span,
  .role-line,
  .eyebrow,
  .section-number,
  .profile-story .lead,
  .profile-story .lead strong,
  .mini-label,
  .contact-copy h2 {
    color: #111 !important;
    -webkit-text-stroke: 0;
  }

  .eyebrow::before {
    background: #111;
  }

  .hero h1 {
    margin-top: 7mm;
    font-size: 34pt;
  }

  .hero-summary,
  .trust-line,
  .profile-story .supporting-copy,
  .contact-copy p,
  .safety-note {
    color: #444 !important;
  }

  .identity-card,
  .profile-panel,
  .pathway-card,
  .video-shell,
  .timeline-item {
    break-inside: avoid;
  }

  .identity-card,
  .profile-panel,
  .pathway-card {
    border: 1px solid #999;
    background: #f4f4f4 !important;
    box-shadow: none;
    color: #111;
  }

  .identity-card {
    min-height: 0;
  }

  .identity-card::before,
  .identity-card::after,
  .portrait-zone::after,
  .portrait-fallback {
    display: none;
  }

  .portrait-zone {
    min-height: 0;
    aspect-ratio: 16 / 9;
    margin: 4mm 0;
    border: 1px solid #999;
  }

  .card-top,
  .card-identity h2,
  .card-identity p,
  .card-metrics dt,
  .card-metrics dd,
  .measurement-note,
  .profile-panel-header,
  .profile-data dt,
  .profile-data dd,
  .profile-data .data-source-link,
  .pathway-card .mini-label,
  .pathway-card h3,
  .pathway-card p,
  .pathway-stat strong,
  .pathway-stat span {
    color: #111 !important;
  }

  .position-code {
    border: 1px solid #111;
    background: transparent;
  }

  .video-shell {
    border: 1px solid #aaa;
    box-shadow: none;
  }

  .video-caption {
    color: #111;
  }

  .print-only {
    display: block;
  }

  a[href^="http"]::after {
    content: "";
  }
}
