/* Foundation Ukraine — parchment + crimson (brand SVGs). No blue/navy. */

/* ── Light tokens ── */
.theme-ukraine {
  --fw-surface: #f4ede0;
  --fw-surface-alt: #ede4d3;
  --fw-text: #1a1410;
  --fw-text-muted: rgba(26, 20, 16, 0.62);
  --fw-border: rgba(26, 20, 16, 0.12);
  --fw-deep-crimson: #8c2020;
  --fw-crimson: #8c2020;
  --fw-accent: #b4463e;
  --fw-parchment: #f4ede0;
  --fw-dark-parchment: #ede4d3;
  --fw-white: #ffffff;
  --fw-dominant: #1a1410;
  --fw-accent-live: #b4463e;
  --fw-shadow: 0 16px 48px rgba(26, 20, 16, 0.1);
  --fw-header-fg: #1a1410;
  --fw-header-bg: rgba(244, 237, 224, 0.95);
  --fw-header-scrolled: rgba(244, 237, 224, 0.98);
  --fw-radius: 0;
  --fw-radius-lg: 0;
  --fw-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-ukraine,
.theme-ukraine body {
  background: var(--fw-surface);
  color: var(--fw-text);
}

/* ── Dark tokens — warm ink field, not navy ── */
html[data-theme="dark"] .theme-ukraine {
  --fw-surface: #14110e;
  --fw-surface-alt: #1c1713;
  --fw-text: #f4ede0;
  --fw-text-muted: rgba(244, 237, 224, 0.62);
  --fw-border: rgba(244, 237, 224, 0.12);
  --fw-deep-crimson: #b4463e;
  --fw-crimson: #b4463e;
  --fw-accent: #d45a50;
  --fw-parchment: #14110e;
  --fw-dark-parchment: #1c1713;
  --fw-white: #1f1914;
  --fw-dominant: #f4ede0;
  --fw-accent-live: #b4463e;
  --fw-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  --fw-header-fg: #f4ede0;
  --fw-header-bg: rgba(20, 17, 14, 0.95);
  --fw-header-scrolled: rgba(28, 23, 19, 0.98);
}

html[data-theme="dark"] .theme-ukraine,
html[data-theme="dark"] .theme-ukraine body {
  background: var(--fw-surface);
  color: var(--fw-text);
}

/* ── Ambient ── */
.theme-ukraine #fw-ambient {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(140, 32, 32, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(26, 20, 16, 0.03) 0%, var(--fw-surface) 40%);
}

html[data-theme="dark"] .theme-ukraine #fw-ambient {
  background:
    radial-gradient(ellipse 60% 45% at 100% 0%, rgba(180, 70, 62, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 100%, rgba(0, 0, 0, 0.45), transparent 55%),
    var(--fw-surface);
}

/* ── Header & nav ── */
.theme-ukraine .fw-header {
  background: var(--fw-header-bg);
  border-bottom: 1px solid var(--fw-border);
  transition: background 0.3s var(--fw-ease), border-color 0.3s var(--fw-ease);
}

.theme-ukraine .fw-header.is-scrolled {
  background: var(--fw-header-scrolled);
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
}

.theme-ukraine .fw-site-nav > a,
.theme-ukraine .fw-site-nav__trigger {
  color: var(--fw-header-fg);
  text-transform: none;
  font-weight: 500;
}

.theme-ukraine .fw-site-nav > a.is-active,
.theme-ukraine .fw-site-nav__trigger.is-active,
.theme-ukraine .fw-site-nav a.is-active {
  color: var(--fw-deep-crimson);
}

html[data-theme="dark"] .theme-ukraine .fw-header {
  background: var(--fw-header-bg);
  border-bottom-color: var(--fw-border);
}

html[data-theme="dark"] .theme-ukraine .fw-header.is-menu-open,
html[data-theme="dark"] .theme-ukraine .fw-header__menu {
  background: var(--fw-surface);
}

html[data-theme="dark"] .theme-ukraine .fw-site-nav > a,
html[data-theme="dark"] .theme-ukraine .fw-site-nav__trigger {
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-ukraine .fw-site-nav > a.is-active,
html[data-theme="dark"] .theme-ukraine .fw-site-nav__trigger.is-active {
  color: var(--fw-accent-live);
}

/* ── Links & buttons ── */
.theme-ukraine a {
  color: var(--fw-deep-crimson);
  transition: color 0.2s var(--fw-ease);
}

.theme-ukraine a:hover {
  color: var(--fw-accent);
}

.theme-ukraine .fw-btn {
  border-color: var(--fw-deep-crimson);
  background: var(--fw-deep-crimson);
  color: #fff;
  border-radius: var(--fw-radius);
  transition: background 0.2s var(--fw-ease), border-color 0.2s var(--fw-ease), transform 0.2s var(--fw-ease);
}

.theme-ukraine .fw-btn:hover {
  background: var(--fw-accent);
  border-color: var(--fw-accent);
  color: #fff;
  transform: translateY(-2px);
}

.theme-ukraine .fw-btn--ghost {
  background: transparent;
  color: var(--fw-deep-crimson);
  border-color: rgba(140, 32, 32, 0.35);
}

.theme-ukraine .fw-btn--ghost:hover {
  background: rgba(140, 32, 32, 0.06);
  transform: translateY(-2px);
}

html[data-theme="dark"] .theme-ukraine .fw-btn {
  background: var(--fw-accent-live);
  border-color: var(--fw-accent-live);
  color: #fff;
}

html[data-theme="dark"] .theme-ukraine .fw-btn:hover {
  background: var(--fw-accent);
  border-color: var(--fw-accent);
}

html[data-theme="dark"] .theme-ukraine .fw-btn--ghost {
  color: var(--fw-accent-live);
  border-color: rgba(180, 70, 62, 0.45);
}

html[data-theme="dark"] .theme-ukraine a {
  color: var(--fw-accent-live);
}

html[data-theme="dark"] .theme-ukraine a:hover {
  color: var(--fw-accent);
}

/* ── Eyebrow & prose ── */
.theme-ukraine .fw-eyebrow,
.theme-ukraine .ua-eyebrow {
  color: var(--fw-accent-live);
  letter-spacing: 0.16em;
  font-weight: 700;
}

.theme-ukraine .fw-prose blockquote {
  border-left-color: var(--fw-accent-live);
  background: rgba(237, 228, 211, 0.5);
}

html[data-theme="dark"] .theme-ukraine .fw-prose blockquote {
  background: rgba(6, 26, 46, 0.6);
  border-left-color: var(--fw-accent-live);
}

html[data-theme="dark"] .theme-ukraine .fw-prose h1,
html[data-theme="dark"] .theme-ukraine .fw-prose h2,
html[data-theme="dark"] .theme-ukraine .fw-prose h3 {
  color: var(--fw-text);
}

/* ── Cards, blog, meta ── */
.theme-ukraine .fw-card,
.theme-ukraine .fw-blog-card {
  background: var(--fw-white);
  border-color: var(--fw-border);
  border-radius: var(--fw-radius-lg);
  transition: transform 0.2s var(--fw-ease), box-shadow 0.2s var(--fw-ease);
}

.theme-ukraine .fw-card:hover,
.theme-ukraine .fw-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fw-shadow);
}

.theme-ukraine .fw-card__label {
  color: var(--fw-accent-live);
}

.theme-ukraine .fw-blog-card__title a:hover,
.theme-ukraine .fw-blog-card__link {
  color: var(--fw-deep-crimson);
}

.theme-ukraine .fw-blog-card__title a:hover {
  color: var(--fw-accent-live);
}

.theme-ukraine .fw-article-meta {
  color: var(--fw-text-muted);
}

.theme-ukraine .fw-strip {
  background: var(--fw-surface-alt);
  border-color: var(--fw-border);
}

.theme-ukraine .fw-hero__panel {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--fw-border);
  border-radius: var(--fw-radius-lg);
}

html[data-theme="dark"] .theme-ukraine .fw-card,
html[data-theme="dark"] .theme-ukraine .fw-blog-card {
  background: var(--fw-white);
  border-color: var(--fw-border);
}

html[data-theme="dark"] .theme-ukraine .fw-card p,
html[data-theme="dark"] .theme-ukraine .fw-blog-card__excerpt,
html[data-theme="dark"] .theme-ukraine .fw-blog-card__meta {
  color: var(--fw-text-muted);
}

html[data-theme="dark"] .theme-ukraine .fw-blog-card__title a {
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-ukraine .fw-blog-card__title a:hover,
html[data-theme="dark"] .theme-ukraine .fw-blog-card__link {
  color: var(--fw-accent-live);
}

html[data-theme="dark"] .theme-ukraine .fw-hero__panel {
  background: rgba(13, 47, 79, 0.85);
}

html[data-theme="dark"] .theme-ukraine .fw-strip {
  background: var(--fw-surface-alt);
}

/* ── Theme inner ── */
.theme-ukraine .theme-inner {
  background: var(--fw-surface);
}

html[data-theme="dark"] .theme-ukraine .theme-inner {
  background: var(--fw-surface);
}

.theme-ukraine .fw-footer {
  background: var(--fw-surface-alt);
  border-top-color: var(--fw-border);
}

html[data-theme="dark"] .theme-ukraine .fw-footer {
  background: var(--fw-surface-alt);
}

html[data-theme="dark"] .theme-ukraine .fw-footer a {
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-ukraine .fw-footer h4 {
  color: var(--fw-accent-live);
}

/* ── Section band helpers ── */
.theme-ukraine .ua-band--light {
  background: #ffffff;
  color: var(--fw-dominant);
}

.theme-ukraine .ua-band--cream {
  background: var(--fw-parchment);
  color: var(--fw-dominant);
}

html[data-theme="dark"] .theme-ukraine .ua-band--light {
  background: var(--fw-white);
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-ukraine .ua-band--cream {
  background: var(--fw-surface-alt);
  color: var(--fw-text);
}

/* ── Hero (image-only) ── */
.ua-hero--image-only {
  position: relative;
  height: clamp(22rem, 75vh, 36rem);
}

.ua-hero__media {
  position: absolute;
  inset: 0;
}

.ua-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ua-hero__veil {
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.28);
}

html[data-theme="dark"] .theme-ukraine .ua-hero__veil {
  background: rgba(6, 26, 46, 0.45);
}

/* ── Light band hero ── */
.ua-hero--light-band {
  background: var(--fw-white);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

html[data-theme="dark"] .theme-ukraine .ua-hero--light-band {
  background: var(--fw-white);
}

.ua-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fw-accent-live);
}

.ua-hero__title {
  font-family: var(--fw-font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--fw-dominant);
  margin: 0.5rem 0;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.ua-hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--fw-text-muted);
}

.ua-hero__lead {
  max-width: 40rem;
  line-height: 1.75;
  color: var(--fw-text-muted);
}

.ua-hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.ua-btn {
  padding: 0.75rem 1.35rem;
  background: var(--fw-deep-crimson);
  color: #fff;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--fw-deep-crimson);
  transition: background 0.2s var(--fw-ease), color 0.2s var(--fw-ease), transform 0.2s var(--fw-ease);
}

.ua-btn:hover {
  background: var(--fw-accent);
  border-color: var(--fw-accent);
  transform: translateY(-3px);
}

.ua-btn--line {
  background: transparent;
  color: var(--fw-deep-crimson);
  border: 2px solid rgba(140, 32, 32, 0.35);
}

.ua-btn--line:hover {
  background: rgba(140, 32, 32, 0.06);
  border-color: var(--fw-deep-crimson);
}

html[data-theme="dark"] .theme-ukraine .ua-btn {
  background: var(--fw-accent-live);
  border-color: var(--fw-accent-live);
}

html[data-theme="dark"] .theme-ukraine .ua-btn--line {
  color: var(--fw-accent-live);
  border-color: rgba(180, 70, 62, 0.45);
}

html[data-theme="dark"] .theme-ukraine .ua-hero__title {
  color: var(--fw-text);
}

/* ── Editorial ── */
.ua-editorial {
  padding: 3rem 0 5rem;
  background: var(--fw-surface-alt);
}

.ua-editorial__head h2 {
  font-family: var(--fw-font-display);
  color: var(--fw-dominant);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

.ua-editorial__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  margin-top: 2rem;
}

.ua-card {
  padding: 1.5rem;
  background: var(--fw-white);
  border-top: 3px solid var(--fw-accent-live);
  transition: transform 0.2s var(--fw-ease), box-shadow 0.2s var(--fw-ease);
}

.ua-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fw-shadow);
}

.ua-card span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fw-accent-live);
}

.ua-card h3 {
  color: var(--fw-dominant);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  margin: 0.35rem 0 0.5rem;
}

.ua-card p {
  font-size: 0.9375rem;
  color: var(--fw-text-muted);
  margin: 0;
}

html[data-theme="dark"] .theme-ukraine .ua-editorial {
  background: var(--fw-surface-alt);
}

html[data-theme="dark"] .theme-ukraine .ua-editorial__head h2 {
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-ukraine .ua-card {
  background: var(--fw-white);
}

html[data-theme="dark"] .theme-ukraine .ua-card h3 {
  color: var(--fw-text);
}

/* ── Page hero ── */
.ua-page-hero__image {
  height: clamp(14rem, 35vw, 20rem);
  overflow: hidden;
}

.ua-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ua-page-hero__band {
  padding: 2rem 0 3rem;
}

/* ── Editorial footer (site + Foundation network) ── */
.theme-footer--editorial,
.ua-foot {
  background: var(--fw-white);
  border-top: 1px solid var(--fw-border);
  padding: 2.75rem 0 1.5rem;
  margin-top: 0;
  color: var(--fw-dominant);
}

.ua-foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 900px) {
  .ua-foot__grid {
    grid-template-columns: 1fr 1fr;
  }
  .ua-foot__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .ua-foot__grid {
    grid-template-columns: 1fr;
  }
}

/* “On this site” nav is redundant with the mobile menu */
@media (max-width: 799px) {
  .theme-ukraine .ua-foot__col--explore {
    display: none !important;
  }
  .theme-ukraine .ua-foot__grid {
    grid-template-columns: 1fr;
  }
  .theme-ukraine .ua-foot__brand {
    grid-column: auto;
  }
}

.ua-foot__blurb {
  margin: 1rem 0 0.75rem;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fw-text-muted);
}

.ua-foot__network-lede {
  margin: 0;
  max-width: 28rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--fw-text-muted);
  opacity: 0.9;
}

.ua-foot__heading {
  margin: 0 0 0.85rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fw-text-muted);
}

.ua-foot__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ua-foot__list a {
  color: var(--fw-dominant);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  transition: color 0.2s var(--fw-ease);
}

.ua-foot__list a:hover {
  color: var(--fw-accent-live, #8c2020);
}

.ua-foot__network a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.ua-foot__network a:hover {
  border-bottom-color: color-mix(in srgb, var(--fw-accent-live, #8c2020) 35%, transparent);
}

.ua-foot__net-name {
  font-weight: 700;
  font-size: 0.92rem;
}

.ua-foot__net-tag {
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--fw-text-muted);
}

.ua-foot__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--fw-border);
  font-size: 0.8125rem;
  color: var(--fw-text-muted);
}

.ua-foot__legal-note {
  max-width: 28rem;
  text-align: right;
}

@media (max-width: 560px) {
  .ua-foot__legal-note {
    text-align: left;
  }
}

/* Legacy single-row nav (if any partial still uses it) */
.theme-footer__minimal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.theme-footer--editorial a {
  color: var(--fw-dominant);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s var(--fw-ease);
}

.theme-footer--editorial a:hover {
  color: var(--fw-accent-live, #8c2020);
}

html[data-theme="dark"] .theme-ukraine .theme-footer--editorial,
html[data-theme="dark"] .theme-ukraine .ua-foot {
  background: var(--fw-surface-alt, #14110e);
  color: var(--fw-text);
  border-top-color: var(--fw-border);
}

html[data-theme="dark"] .theme-ukraine .ua-foot__list a,
html[data-theme="dark"] .theme-ukraine .theme-footer--editorial a {
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-ukraine .ua-foot__list a:hover,
html[data-theme="dark"] .theme-ukraine .theme-footer--editorial a:hover {
  color: var(--fw-accent-live, #c45a50);
}

html[data-theme="dark"] .theme-ukraine .ua-foot__net-tag,
html[data-theme="dark"] .theme-ukraine .ua-foot__blurb,
html[data-theme="dark"] .theme-ukraine .ua-foot__network-lede {
  color: color-mix(in srgb, var(--fw-text) 68%, transparent);
}

/* Kinetic home */
.ua-hero--kinetic { padding-top: 0; }
.ua-hero__stage { position: relative; min-height: min(92vh, 48rem); display: flex; align-items: flex-end; }
.ua-hero--kinetic .ua-hero__media { position: absolute; inset: 0; }
.ua-hero--kinetic .ua-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.ua-hero--kinetic .ua-hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,18,40,0.55), rgba(10,18,40,0.85) 70%);
}
.ua-hero__kinetic-copy {
  position: relative; z-index: 1;
  padding: calc(var(--fw-header-h) + 2rem) 0 clamp(2.5rem, 6vw, 4rem);
  color: #fff; max-width: 44rem;
}
.ua-hero__kinetic-copy .ua-eyebrow { color: rgba(255,255,255,0.7); }
.ua-hero__title--stack {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  line-height: 0.95; letter-spacing: -0.04em;
  text-transform: uppercase; color: #fff;
}
.ua-hero__kinetic-copy .ua-hero__subtitle,
.ua-hero__kinetic-copy .ua-hero__lead { color: rgba(255,255,255,0.85); }
.ua-editorial--kinetic { padding: clamp(3rem, 6vw, 5rem) 0; }
.ua-editorial__big {
  font-family: var(--fw-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em; line-height: 1.05;
  text-transform: uppercase; max-width: 16ch;
}
.ua-editorial__stack {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 2.5rem; border-top: 2px solid var(--fw-deep-crimson);
}
.ua-card--beat {
  display: grid; grid-template-columns: 5rem 1fr;
  gap: 1.25rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--fw-border);
  background: transparent; box-shadow: none;
}
.ua-card__beat {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em;
  color: var(--fw-deep-crimson); padding-top: 0.35rem;
}
.ua-home-body { padding: 3rem 0 4rem; }

/* Ukraine unique pages */
.ua-page { padding-top: var(--fw-header-h); min-height: 70vh; }
.ua-page h1 {
  font-family: var(--fw-font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 600; letter-spacing: -0.035em; line-height: 0.98;
  text-transform: uppercase; margin: 0.35rem 0 0; color: var(--fw-text);
}
.ua-page__type-blast {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  border-bottom: 3px solid var(--fw-deep-crimson);
}
.ua-page__body { padding: 2.5rem 0 4.5rem; max-width: 44rem; }

/* why full bleed */
.ua-page__why-media {
  position: relative; min-height: min(70vh, 34rem);
  display: flex; align-items: flex-end;
}
.ua-page__why-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ua-page__why-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,40,0.9), transparent 55%);
}
.ua-page__why-title { position: relative; z-index: 1; padding-bottom: 2rem; color: #fff; }
.ua-page__why-title .ua-eyebrow, .ua-page__why-title h1 { color: #fff; }

/* asset model board */
.ua-page__model-head { padding: clamp(2rem, 4vw, 3rem) 0; border-bottom: 1px solid var(--fw-border); }
.ua-page__model-board {
  padding: 2.5rem 0 4.5rem;
  background:
    repeating-linear-gradient(-12deg, transparent, transparent 18px, color-mix(in srgb, var(--fw-deep-crimson) 8%, transparent) 18px, color-mix(in srgb, var(--fw-deep-crimson) 8%, transparent) 19px);
}
.ua-page__model-board .fw-container {
  background: var(--fw-surface); border: 2px solid var(--fw-deep-crimson);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

/* approach columns */
.ua-page__approach-cols {
  display: grid; grid-template-columns: minmax(14rem, 22rem) 1fr;
  min-height: calc(100vh - var(--fw-header-h));
}
.ua-page__approach-rail {
  position: sticky; top: var(--fw-header-h); align-self: start;
  min-height: calc(100vh - var(--fw-header-h));
  padding: clamp(2rem, 4vw, 3rem) 1.5rem;
  background: var(--fw-deep-crimson); color: #fff;
}
.ua-page__approach-rail .ua-eyebrow,
.ua-page__approach-rail h1 { color: #fff; }
.ua-page__approach-cols .fw-prose {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem) 4rem;
  max-width: 42rem;
}
@media (max-width: 900px) {
  .ua-page__approach-cols { grid-template-columns: 1fr; }
  .ua-page__approach-rail { position: static; min-height: 0; }
}

/* operator */
.ua-page__op-banner {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
}
.ua-page__op-kicker {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fw-deep-crimson); margin: 0;
}
.ua-page__op-media { height: clamp(11rem, 30vw, 18rem); overflow: hidden; }
.ua-page__op-media img { width: 100%; height: 100%; object-fit: cover; }

/* record stripes */
.ua-page__record-stripes {
  padding: 2.5rem 0 4.5rem;
  background: repeating-linear-gradient(90deg, transparent, transparent 48px, color-mix(in srgb, var(--fw-border) 80%, transparent) 48px, color-mix(in srgb, var(--fw-border) 80%, transparent) 49px);
}
.ua-page__record-stripes .fw-container {
  background: var(--fw-surface); max-width: 44rem;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}

/* platform */
.ua-page__platform-head {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--fw-surface-alt);
  border-bottom: 3px solid var(--fw-deep-crimson);
}
.ua-page__platform-grid { padding: 2.5rem 0 4.5rem; }

/* team split */
.ua-page__team-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: min(50vh, 24rem);
  border-bottom: 3px solid var(--fw-deep-crimson);
}
.ua-page__team-copy {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--fw-surface-alt);
}
.ua-page__team-shot img { width: 100%; height: 100%; object-fit: cover; min-height: 16rem; }
@media (max-width: 800px) {
  .ua-page__team-split { grid-template-columns: 1fr; }
}

/* contact blast */
.ua-page--contact {
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100vh - var(--fw-header-h));
  padding: 3rem 1.25rem;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, color-mix(in srgb, var(--fw-deep-crimson) 12%, transparent), transparent);
}
.ua-page__contact-blast {
  max-width: 36rem; width: 100%;
  border-top: 4px solid var(--fw-deep-crimson);
  padding-top: 1.5rem;
}

/* faq */
.ua-page__faq-sheet { padding: 2rem 0 4.5rem; background: var(--fw-surface-alt); }
.ua-page__faq-sheet .fw-prose {
  max-width: 46rem; background: var(--fw-surface);
  border: 1px solid var(--fw-border); padding: clamp(1.25rem, 3vw, 2rem);
}

/* blog stack */
.ua-blog-stack { padding: 1rem 0 4.5rem; display: flex; flex-direction: column; }
.ua-blog-row {
  display: grid; grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem; padding: 1.35rem 0;
  border-bottom: 2px solid var(--fw-border);
  text-decoration: none; color: inherit;
  transition: border-color 0.2s var(--fw-ease);
}
.ua-blog-row:hover { border-bottom-color: var(--fw-deep-crimson); }
.ua-blog-row time {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fw-deep-crimson); padding-top: 0.35rem;
}
.ua-blog-row h2 {
  font-family: var(--fw-font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  text-transform: uppercase; letter-spacing: -0.02em;
  margin: 0 0 0.35rem; line-height: 1.1;
}
.ua-blog-row p { margin: 0; color: var(--fw-text-muted); }

/* ═══════════════════════════════════════════════════════════
   Design v2 - Kinetic rebuild (Lando pacing, Foundation colors)
   ═══════════════════════════════════════════════════════════ */

.ua-hero--kinetic .ua-hero__stage {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.ua-hero--kinetic .ua-hero__media {
  position: absolute;
  inset: 0;
}

.ua-hero--kinetic .ua-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ua-hero--kinetic .ua-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 37, 64, 0.92) 0%, rgba(10, 37, 64, 0.45) 45%, rgba(10, 37, 64, 0.2) 100%),
    linear-gradient(120deg, rgba(140, 32, 32, 0.18), transparent 50%);
}

.ua-hero__kinetic-copy {
  position: relative;
  z-index: 3;
  max-width: 42rem;
  padding-top: calc(var(--fw-header-h) + 2rem);
  color: #fff;
}

.ua-hero__title--stack {
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  margin: 0.4rem 0 0.75rem;
}

.ua-hero--kinetic .ua-eyebrow {
  color: rgba(244, 237, 224, 0.75);
}

.ua-hero--kinetic .ua-hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(244, 237, 224, 0.88);
  margin: 0 0 0.85rem;
}

.ua-hero--kinetic .ua-hero__lead {
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
}

.ua-hero--kinetic .ua-btn {
  border-width: 2px;
}

.ua-hero--kinetic .ua-btn--line {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.ua-hero--kinetic .ua-btn--line:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* Kinetic band - bold section rhythm */
.ua-kinetic-band {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(4rem, 9vw, 6rem);
  background: #f4ede0;
  overflow: hidden;
}

html[data-theme="dark"] .theme-ukraine .ua-kinetic-band {
  background: var(--fw-surface);
}

.ua-kinetic-band__stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #1a1410 0%, #1a1410 40%, #8c2020 40%, #8c2020 100%);
}

.ua-kinetic-band__head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.ua-kinetic-band__big {
  font-family: var(--fw-font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: uppercase;
  color: #1a1410;
  margin: 0.5rem 0 1rem;
}

html[data-theme="dark"] .theme-ukraine .ua-kinetic-band__big {
  color: var(--fw-text);
}

.ua-kinetic-band__head p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fw-text-muted);
  max-width: 38ch;
}

/* Beat stack - horizontal energy strips */
.ua-beat-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}

.ua-beat {
  display: grid;
  grid-template-columns: minmax(6rem, 10rem) 1fr;
  gap: 1.25rem;
  padding: 1.5rem 1.25rem;
  border-left: 4px solid #8c2020;
  background: #fff;
  margin-bottom: 0.65rem;
  transition: transform 0.25s var(--fw-ease), border-color 0.25s var(--fw-ease), box-shadow 0.25s var(--fw-ease);
}

html[data-theme="dark"] .theme-ukraine .ua-beat {
  background: var(--fw-surface-alt);
}

.ua-beat:nth-child(even) {
  border-left-color: #1a1410;
  background: #ede4d3;
}

html[data-theme="dark"] .theme-ukraine .ua-beat:nth-child(even) {
  background: var(--fw-white);
}

.ua-beat:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.1);
}

.ua-beat__label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c2020;
  padding-top: 0.35rem;
}

.ua-beat:nth-child(even) .ua-beat__label {
  color: #1a1410;
}

.ua-beat h3 {
  font-family: var(--fw-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  color: #1a1410;
  text-transform: uppercase;
}

html[data-theme="dark"] .theme-ukraine .ua-beat h3 {
  color: var(--fw-text);
}

.ua-beat p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--fw-text-muted);
  max-width: 40rem;
}

/* Dual gateway nav - athletic confidence */
.ua-gate-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 0.5rem;
}

.ua-gate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: #1a1410;
  color: #f4ede0;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: background 0.2s var(--fw-ease), transform 0.2s var(--fw-ease);
}

.ua-gate:hover {
  background: #8c2020;
  color: #fff;
  transform: translateY(-2px);
}

.ua-gate:nth-child(even) {
  background: #8c2020;
}

.ua-gate:nth-child(even):hover {
  background: #1a1410;
}

.ua-gate__a {
  font-size: 1.1rem;
  opacity: 0.7;
}

.ua-body {
  padding: clamp(3rem, 6vw, 4.5rem) 0 5rem;
  background: #fff;
}

html[data-theme="dark"] .theme-ukraine .ua-body {
  background: var(--fw-surface);
}

.ua-body__measure {
  max-width: 44rem;
}

/* Solid readable header (no ghost white-on-beige from old kinetic hero) */
.theme-ukraine .fw-header {
  background: var(--fw-header-bg);
  border-bottom: 1px solid var(--fw-border);
  color: var(--fw-header-fg);
}

.theme-ukraine .fw-site-nav > a,
.theme-ukraine .fw-site-nav__trigger {
  color: var(--fw-header-fg) !important;
}

.theme-ukraine .fw-site-nav > a.is-active,
.theme-ukraine .fw-site-nav__trigger.is-active,
.theme-ukraine .fw-site-nav a.is-active {
  color: var(--fw-deep-crimson) !important;
}

.theme-ukraine .fw-header__toggle-icon span {
  background: var(--fw-header-fg) !important;
}

.theme-ukraine .fw-header.is-scrolled {
  background: var(--fw-header-scrolled);
  border-bottom: 1px solid var(--fw-border);
  backdrop-filter: blur(10px);
}

.theme-ukraine .fw-progress {
  color: #8c2020;
  height: 3px;
  mix-blend-mode: normal;
}

/* Kinetic motion */
.theme-ukraine .fw-immerse {
  transition-duration: 0.4s, 0.5s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-ukraine .fw-immerse-stagger > * {
  transition-delay: calc(var(--i, 0) * 55ms);
}

@media (max-width: 700px) {
  .ua-beat {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}
