:root {
  --bw-navy: #172a3a;
  --bw-navy-deep: #0e1b25;
  --bw-white: #ffffff;
  --bw-off-white: #f7f7f4;
  --bw-charcoal: #222222;
  --bw-slate: #65717a;
  --bw-line: #d9ddd7;
  --bw-orange: #e87924;
  --bw-orange-dark: #8c4513;
  --bw-font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, -apple-system, sans-serif;
  --bw-font-en: Inter, Helvetica, Arial, system-ui, sans-serif;
  --bw-shell: min(1180px, calc(100vw - 40px));
  --bw-reading: min(760px, calc(100vw - 40px));
  --bw-header: 76px;
  --bw-section: clamp(5.25rem, 10vw, 9rem);
  --bw-ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bw-white);
  color: var(--bw-charcoal);
  font-family: var(--bw-font-jp);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--bw-navy);
  text-decoration-thickness: .08em;
  text-underline-offset: .22em;
}

a:hover {
  color: var(--bw-orange-dark);
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

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

::selection {
  background: var(--bw-orange);
  color: var(--bw-navy-deep);
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--bw-navy);
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.shell {
  width: var(--bw-shell);
  margin-inline: auto;
}

.shell--reading {
  width: var(--bw-reading);
}

.shell--wide {
  width: min(1320px, calc(100vw - 40px));
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  background: var(--bw-white);
  color: var(--bw-navy);
  font-weight: 700;
}

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

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--bw-slate);
  font-family: var(--bw-font-en);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 24px;
  height: 2px;
  margin: 0 .65rem .22rem 0;
  background: var(--bw-orange);
  content: "";
}

.eyebrow--light {
  color: rgba(255, 255, 255, .68);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.35rem;
  border: 1px solid var(--bw-navy);
  background: var(--bw-navy);
  color: var(--bw-white);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color .22s ease, color .22s ease, transform .22s var(--bw-ease);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--bw-white);
  color: var(--bw-navy);
}

.button--light {
  border-color: var(--bw-white);
  background: var(--bw-white);
  color: var(--bw-navy);
}

.button--light:hover {
  background: transparent;
  color: var(--bw-white);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: .55rem;
  color: var(--bw-navy);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: underline;
  text-decoration-color: var(--bw-orange);
  text-underline-offset: .35rem;
}

.text-link span {
  transition: transform .2s var(--bw-ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link--light,
.text-link--light:hover {
  color: var(--bw-white);
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  height: var(--bw-header);
  border-bottom: 1px solid var(--bw-line);
  background: rgba(255, 255, 255, .96);
}

.home .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border-color: rgba(255, 255, 255, .2);
  background: transparent;
  color: var(--bw-white);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-wordmark {
  display: inline-flex;
  min-height: 48px;
  flex-direction: column;
  justify-content: center;
  color: var(--bw-navy);
  font-family: var(--bw-font-en);
  text-decoration: none;
}

.home .brand-wordmark {
  color: var(--bw-white);
}

.brand-wordmark:hover {
  color: inherit;
}

.brand-wordmark__main {
  font-size: .96rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.2;
}

.brand-wordmark__sub {
  margin-top: .28rem;
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .16em;
  opacity: .65;
}

.custom-logo-link {
  display: block;
}

.custom-logo {
  width: auto;
  max-height: 48px;
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bw-navy);
  cursor: pointer;
}

.home .menu-toggle {
  color: var(--bw-white);
}

.menu-toggle__label {
  font-family: var(--bw-font-en);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.menu-toggle__lines {
  position: relative;
  width: 22px;
  height: 14px;
}

.menu-toggle__lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform .22s ease, top .22s ease;
}

.menu-toggle__lines span:first-child { top: 3px; }
.menu-toggle__lines span:last-child { top: 10px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:first-child { top: 7px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:last-child { top: 7px; transform: rotate(-45deg); }

.primary-navigation .menu,
.site-footer .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation .menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.primary-navigation a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--bw-navy);
  font-family: var(--bw-font-en);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
}

.home .primary-navigation a {
  color: var(--bw-white);
}

.primary-navigation a::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 1.4rem;
  background: var(--bw-orange);
  content: "";
  transition: width .2s ease;
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after {
  width: 18px;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  align-items: end;
  overflow: hidden;
  background: var(--bw-navy-deep);
  color: var(--bw-white);
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media picture,
.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 60% center;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(9, 21, 30, .94) 0%, rgba(9, 21, 30, .75) 38%, rgba(9, 21, 30, .2) 72%, rgba(9, 21, 30, .18) 100%),
    linear-gradient(0deg, rgba(9, 21, 30, .62) 0%, transparent 38%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--bw-header) + 3rem);
  padding-bottom: clamp(6.5rem, 12vh, 9rem);
}

.hero__kicker {
  margin-bottom: 1rem;
  font-family: var(--bw-font-en);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.hero h1 {
  margin-bottom: 1.6rem;
  color: var(--bw-white);
}

.hero__brand {
  display: block;
  max-width: 9ch;
  margin-bottom: 1.25rem;
  font-family: var(--bw-font-en);
  font-size: clamp(3.3rem, 15.5vw, 6rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .82;
}

.hero__statement {
  display: block;
  font-size: clamp(1.45rem, 5.6vw, 2.15rem);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.45;
}

.hero__lead {
  max-width: 28rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.hero__scroll {
  position: absolute;
  right: 20px;
  bottom: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0;
  font-family: var(--bw-font-en);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}

.hero__scroll span {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, .55);
}

/* Shared sections */
.section,
.page-section {
  padding-block: var(--bw-section);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-heading h2,
.editorial-grid h2,
.split-copy h2,
.story-grid h2,
.contact-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 7.2vw, 4.7rem);
  line-height: 1.25;
}

.section-heading > p:last-child {
  max-width: 48rem;
}

.editorial-grid,
.split-copy,
.story-grid,
.contact-band__inner {
  display: grid;
  gap: 2.5rem;
}

.prose > :last-child,
.editorial-grid__body > :last-child,
.story-grid__body > :last-child {
  margin-bottom: 0;
}

.prose p,
.editorial-grid__body p,
.story-grid__body p {
  margin-bottom: 1.45rem;
}

.prose--lead,
.editorial-grid__body,
.page-hero__lead {
  font-size: clamp(1.04rem, 2.8vw, 1.2rem);
  line-height: 2;
}

.section--why {
  background: var(--bw-white);
}

.section--why h2 {
  font-size: clamp(2rem, 6vw, 4.15rem);
}

.section--support,
.page-section--tint {
  background: var(--bw-off-white);
}

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

/* Support cards */
.support-grid {
  display: grid;
  border-top: 1px solid var(--bw-line);
}

.support-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--bw-line);
}

.support-card__number {
  color: var(--bw-orange-dark);
  font-family: var(--bw-font-en);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.support-card__label {
  margin-bottom: 1rem;
  color: var(--bw-navy);
  font-family: var(--bw-font-en);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.support-card__label span {
  margin-left: .6rem;
  color: var(--bw-slate);
  font-family: var(--bw-font-jp);
  font-weight: 500;
  letter-spacing: .04em;
}

.support-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 4.8vw, 1.8rem);
}

.support-card p:last-child {
  margin-bottom: 0;
  color: var(--bw-slate);
}

/* Manifesto */
.manifesto {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 14vw, 12rem);
  background: var(--bw-navy);
  color: var(--bw-white);
}

.manifesto__line {
  position: absolute;
  top: 1.2rem;
  left: -2rem;
  color: rgba(255, 255, 255, .36);
  font-family: var(--bw-font-en);
  font-size: clamp(3.5rem, 11vw, 9rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
  white-space: nowrap;
}

.manifesto__inner {
  position: relative;
  z-index: 1;
}

.manifesto h2 {
  margin-bottom: 2rem;
  color: var(--bw-white);
  font-family: var(--bw-font-en);
  font-size: clamp(3.4rem, 15vw, 8.8rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .82;
}

.manifesto h2 span {
  color: var(--bw-orange);
  font-size: .42em;
  letter-spacing: .06em;
}

.manifesto p:not(.eyebrow) {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, .78);
}

.manifesto--compact h2 {
  font-size: clamp(3.2rem, 13vw, 8rem);
}

/* UNGYM */
.section--ungym {
  background: var(--bw-off-white);
}

.ungym-grid {
  display: grid;
  gap: 3rem;
}

.ungym-mark {
  position: relative;
  display: grid;
  min-height: min(82vw, 440px);
  place-items: center;
  overflow: hidden;
  background: var(--bw-navy);
  color: var(--bw-white);
}

.ungym-mark__orbit {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
}

.ungym-mark__orbit::before,
.ungym-mark__orbit::after {
  position: absolute;
  inset: 50% -22%;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  content: "";
}

.ungym-mark__orbit::after {
  transform: rotate(90deg);
}

.ungym-mark__word {
  position: relative;
  z-index: 1;
  font-family: var(--bw-font-en);
  font-size: clamp(4rem, 18vw, 7rem);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .75;
}

.ungym-mark__note {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  color: rgba(255, 255, 255, .6);
  font-family: var(--bw-font-en);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-align: right;
}

.ungym-copy h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 8.5vw, 5rem);
}

.ungym-copy__product {
  display: block;
  margin-top: .55rem;
  color: var(--bw-orange-dark);
  font-family: var(--bw-font-en);
  font-size: .54em;
  font-weight: 800;
  letter-spacing: .12em;
}

.ungym-copy p:not(.eyebrow) {
  margin-bottom: 1.5rem;
}

.ungym-copy .button {
  margin-top: .5rem;
}

/* Philosophy symbol story */
.between-lines {
  padding-block: var(--bw-section);
  overflow: hidden;
  background: var(--bw-navy-deep);
  color: var(--bw-white);
}

.between-lines__grid {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
}

.between-lines__symbol {
  display: flex;
  min-height: clamp(280px, 62vw, 520px);
  align-items: stretch;
  justify-content: space-between;
  padding-inline: clamp(3rem, 14vw, 9rem);
}

.between-lines__symbol span {
  width: 1px;
  background: rgba(255, 255, 255, .72);
}

.between-lines__copy {
  align-self: center;
}

.between-lines__copy h2 {
  margin-bottom: 2rem;
  color: var(--bw-white);
  font-size: clamp(2.35rem, 8vw, 4.8rem);
  line-height: 1.25;
}

.between-lines__copy p:not(.eyebrow) {
  max-width: 38rem;
  color: rgba(255, 255, 255, .76);
}

/* Articles */
.section--articles {
  background: var(--bw-white);
}

.section-heading--row h2 {
  font-family: var(--bw-font-en);
  letter-spacing: -.04em;
}

.section-heading--row h2 span {
  font-family: var(--bw-font-jp);
  font-size: .45em;
  letter-spacing: .02em;
}

.article-grid {
  display: grid;
  gap: 3rem 1.5rem;
}

.article-card {
  min-width: 0;
}

.article-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.article-card__media {
  aspect-ratio: 3 / 2;
  margin-bottom: 1.35rem;
  overflow: hidden;
  background: var(--bw-off-white);
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--bw-ease);
}

.article-card__link:hover .article-card__media img {
  transform: scale(1.025);
}

.article-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, .13) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255, 255, 255, .13) 50%, transparent 50.2%),
    var(--bw-navy);
  color: var(--bw-white);
}

.article-card__placeholder span {
  font-family: var(--bw-font-en);
  font-size: clamp(2.2rem, 10vw, 4rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .8;
}

.article-card__meta,
.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  margin-bottom: .8rem;
  color: var(--bw-slate);
  font-family: var(--bw-font-en);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-card__meta span:first-child,
.article-header__meta a {
  color: var(--bw-orange-dark);
}

.article-card h2,
.article-card h3 {
  margin-bottom: .8rem;
  font-size: 1.3rem;
}

.article-card__body > p {
  margin-bottom: .75rem;
  color: var(--bw-slate);
  font-size: .94rem;
}

.article-empty {
  display: grid;
  gap: 2rem;
  padding: clamp(2rem, 8vw, 5rem);
  border: 1px solid var(--bw-line);
  background: var(--bw-off-white);
}

.article-empty__mark {
  margin: 0;
  color: rgba(23, 42, 58, .62);
  font-family: var(--bw-font-en);
  font-size: clamp(2.7rem, 13vw, 6rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .82;
}

.article-empty h3 {
  font-size: 1.5rem;
}

/* Story and vision */
.section--story {
  border-top: 1px solid var(--bw-line);
}

.story-grid__quote {
  color: var(--bw-orange-dark);
  font-family: var(--bw-font-en);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.45;
}

.story-grid__body p {
  max-width: 40rem;
}

.vision {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 15vw, 11rem);
  background: var(--bw-navy-deep);
  color: var(--bw-white);
}

.vision__content {
  position: relative;
  z-index: 1;
}

.vision h2 {
  max-width: 10ch;
  margin-bottom: 2rem;
  color: var(--bw-white);
  font-size: clamp(2.6rem, 11vw, 6rem);
  line-height: 1.25;
}

.vision p:last-child {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.vision__court,
.not-found-page__court {
  position: absolute;
  right: -25%;
  bottom: -50%;
  width: min(95vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
}

.vision__court::before,
.vision__court::after,
.not-found-page__court::before,
.not-found-page__court::after {
  position: absolute;
  content: "";
}

.vision__court::before,
.not-found-page__court::before {
  inset: -40% 50%;
  width: 1px;
  background: rgba(255, 255, 255, .1);
}

.vision__court::after,
.not-found-page__court::after {
  inset: 50% -40%;
  height: 1px;
  background: rgba(255, 255, 255, .1);
}

.contact-band {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--bw-orange);
}

.contact-band .eyebrow,
.contact-band h2,
.contact-band p {
  color: var(--bw-navy-deep);
}

.contact-band .eyebrow::before {
  background: var(--bw-navy);
}

.contact-band .button {
  margin-top: .5rem;
}

/* Breadcrumb and page headers */
.breadcrumbs {
  border-bottom: 1px solid var(--bw-line);
  background: var(--bw-white);
}

.breadcrumbs ol {
  display: flex;
  width: var(--bw-shell);
  min-height: 48px;
  align-items: center;
  gap: .55rem;
  margin: 0 auto;
  padding: .6rem 0;
  overflow: hidden;
  list-style: none;
  color: var(--bw-slate);
  font-family: var(--bw-font-en);
  font-size: .7rem;
  white-space: nowrap;
}

.breadcrumbs li {
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li + li::before {
  margin-right: .55rem;
  color: var(--bw-line);
  content: "/";
}

.breadcrumbs a {
  color: var(--bw-slate);
}

.page-hero {
  padding-block: clamp(4.5rem, 11vw, 8rem);
  border-bottom: 1px solid var(--bw-line);
  background: var(--bw-off-white);
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 1.75rem;
  font-size: clamp(2.6rem, 10vw, 6.4rem);
  line-height: 1.2;
}

.page-hero__lead {
  max-width: 48rem;
  margin: 0;
  color: #44515a;
}

.page-hero--simple h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(2.5rem, 8vw, 5rem);
}

/* About, services, UNGYM pages */
.about-statement,
.service-feature,
.ungym-principle {
  padding-block: var(--bw-section);
  background: var(--bw-navy);
  color: var(--bw-white);
}

.about-statement h2,
.service-feature h2,
.ungym-principle h2 {
  color: var(--bw-white);
}

.about-statement h2 {
  margin-bottom: 3rem;
  font-family: var(--bw-font-en);
  font-size: clamp(2.3rem, 9vw, 6.7rem);
  letter-spacing: -.055em;
  line-height: .95;
}

.about-statement h2 span {
  color: var(--bw-orange);
}

.about-statement__copy {
  max-width: 42rem;
  color: rgba(255, 255, 255, .78);
}

.principle-grid,
.field-grid {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--bw-line);
  list-style: none;
}

.principle-grid li,
.field-grid article {
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid var(--bw-line);
}

.principle-grid li > span,
.field-grid article > span {
  color: var(--bw-orange-dark);
  font-family: var(--bw-font-en);
  font-size: .7rem;
  font-weight: 700;
}

.principle-grid h3,
.field-grid h3 {
  margin: .5rem 0 1rem;
  font-family: var(--bw-font-en);
  font-size: 1.45rem;
  letter-spacing: .03em;
}

.principle-grid p,
.field-grid p:last-child {
  margin: 0;
  color: var(--bw-slate);
}

.service-feature__grid,
.ungym-principle__grid {
  display: grid;
  gap: 2.5rem;
}

.service-feature__name {
  margin-bottom: 0;
  color: var(--bw-white);
  font-family: var(--bw-font-en);
  font-size: clamp(4rem, 18vw, 9rem);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .85;
}

.service-feature h2,
.ungym-principle h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 8vw, 5rem);
}

.service-feature__grid > div:last-child > p,
.ungym-principle__grid > div:last-child > p {
  max-width: 38rem;
  color: rgba(255, 255, 255, .74);
}

.field-grid article .eyebrow {
  margin: .5rem 0 0;
}

.next-links {
  display: grid;
  border-top: 1px solid var(--bw-line);
}

.next-links a {
  display: grid;
  min-height: 112px;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--bw-line);
  color: var(--bw-navy);
  font-size: 1.35rem;
  font-weight: 650;
  text-decoration: none;
}

.next-links a span {
  grid-column: 1 / -1;
  color: var(--bw-slate);
  font-family: var(--bw-font-en);
  font-size: .7rem;
  letter-spacing: .12em;
}

.ungym-hero {
  padding-block: clamp(5rem, 12vw, 9rem);
  overflow: hidden;
  background: var(--bw-navy-deep);
  color: var(--bw-white);
}

.ungym-hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.ungym-hero h1 {
  margin-bottom: 1.5rem;
  color: var(--bw-white);
  font-size: clamp(2.8rem, 10vw, 6.5rem);
}

.ungym-hero p:last-child {
  max-width: 42rem;
  color: rgba(255, 255, 255, .72);
}

.ungym-hero__mark {
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--bw-white);
  font-family: var(--bw-font-en);
  font-size: clamp(5rem, 26vw, 10rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .65;
}

.ungym-hero__mark i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52%;
  aspect-ratio: 1;
  transform: translate(-50%, -45%);
  border: 1px solid rgba(232, 121, 36, .8);
  border-radius: 50%;
}

.ungym-principle ol {
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  list-style: none;
}

.ungym-principle li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.ungym-principle li span {
  color: var(--bw-orange);
  font-family: var(--bw-font-en);
  font-size: .75rem;
  font-weight: 700;
}

.fine-print {
  margin-top: 1.5rem;
  color: var(--bw-slate);
  font-size: .8125rem;
}

/* Topic nav and pagination */
.topic-nav {
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--bw-line);
}

.topic-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-nav a,
.topic-nav span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: .55rem .9rem;
  border: 1px solid var(--bw-line);
  color: var(--bw-navy);
  font-family: var(--bw-font-en);
  font-size: .75rem;
  font-weight: 650;
  text-decoration: none;
}

.topic-nav span {
  color: var(--bw-slate);
}

.page-section--articles-list {
  min-height: 45vh;
}

.navigation.pagination {
  margin-top: 4rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.page-numbers {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--bw-line);
  color: var(--bw-navy);
  text-decoration: none;
}

.page-numbers.current {
  border-color: var(--bw-navy);
  background: var(--bw-navy);
  color: var(--bw-white);
}

.empty-state {
  max-width: 54rem;
  margin-inline: auto;
  padding: clamp(3rem, 10vw, 7rem) 0;
  text-align: center;
}

.empty-state h2 {
  font-size: clamp(1.8rem, 6vw, 3.25rem);
}

/* Article */
.article-header {
  padding-top: clamp(4rem, 9vw, 7rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.article-header h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.15rem, 7.5vw, 4.8rem);
  line-height: 1.25;
}

.article-header__excerpt {
  margin-bottom: 0;
  color: var(--bw-slate);
  font-size: 1.08rem;
}

.article-header__meta a {
  text-decoration: none;
}

.article-hero {
  margin-bottom: clamp(3rem, 8vw, 6rem);
}

.article-hero img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.entry-content {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  overflow-wrap: break-word;
}

.article-hero + .entry-content {
  padding-top: 0;
}

.entry-content > * {
  margin-bottom: 1.6rem;
}

.entry-content > :first-child { margin-top: 0; }
.entry-content > :last-child { margin-bottom: 0; }

.entry-content h2 {
  margin-top: 3.75rem;
  padding-top: 1.1rem;
  border-top: 3px solid var(--bw-navy);
  font-size: clamp(1.65rem, 5vw, 2.25rem);
}

.entry-content h3 {
  margin-top: 2.75rem;
  font-size: clamp(1.3rem, 4vw, 1.65rem);
}

.entry-content h4 {
  margin-top: 2rem;
  font-size: 1.125rem;
}

.entry-content p,
.entry-content li {
  line-height: 1.95;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.4rem;
}

.entry-content a {
  color: var(--bw-orange-dark);
}

.entry-content blockquote {
  margin-inline: 0;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-left: 3px solid var(--bw-orange);
  background: var(--bw-off-white);
  color: #44515a;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: .8rem;
  border: 1px solid var(--bw-line);
  text-align: left;
}

.entry-content th {
  background: var(--bw-off-white);
}

.entry-content pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 1rem;
  background: var(--bw-navy-deep);
  color: var(--bw-white);
}

.article-footer {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.article-footer__line {
  width: 48px;
  height: 3px;
  margin-bottom: 2.5rem;
  background: var(--bw-orange);
}

.article-footer h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.post-navigation {
  display: grid;
  gap: 1px;
  margin-bottom: var(--bw-section);
  background: var(--bw-line);
  border: 1px solid var(--bw-line);
}

.post-navigation > div {
  background: var(--bw-white);
}

.post-navigation a {
  display: block;
  min-height: 112px;
  padding: 1.25rem;
  color: var(--bw-navy);
  font-weight: 650;
  text-decoration: none;
}

.post-navigation a span {
  display: block;
  margin-bottom: .45rem;
  color: var(--bw-slate);
  font-family: var(--bw-font-en);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Contact and forms */
.contact-page__grid {
  display: grid;
  gap: 3rem;
}

.contact-page__aside h2 {
  font-size: clamp(2rem, 7vw, 3.8rem);
}

.contact-page__aside ul {
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--bw-line);
  list-style: none;
}

.contact-page__aside li {
  padding: .8rem 0;
  border-bottom: 1px solid var(--bw-line);
  color: var(--bw-slate);
}

.contact-page__form,
.contact-fallback {
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--bw-off-white);
}

.wpcf7-form p {
  margin-bottom: 1.35rem;
}

.bw-contact-form {
  display: grid;
  gap: 1.35rem;
}

.bw-form-field label,
.bw-form-consent {
  display: block;
  margin-bottom: .45rem;
  color: var(--bw-navy);
  font-size: .875rem;
  font-weight: 650;
}

.bw-form-field label span,
.bw-form-consent b {
  margin-left: .35rem;
  color: #8b1e1e;
  font-size: .72rem;
}

.bw-form-field label small {
  margin-left: .35rem;
  color: var(--bw-slate);
  font-weight: 500;
}

.bw-form-field input,
.bw-form-field select,
.bw-form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: .75rem .9rem;
  border: 1px solid #aeb6b9;
  border-radius: 0;
  background: var(--bw-white);
}

.bw-form-field textarea {
  min-height: 190px;
  resize: vertical;
}

.bw-form-consent {
  display: flex;
  min-height: 44px;
  align-items: flex-start;
  gap: .65rem;
  margin: 0;
  cursor: pointer;
}

.bw-form-consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: .2rem;
}

.bw-form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.bw-form-notice {
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--bw-navy);
  background: var(--bw-white);
}

.bw-form-notice--success {
  border-color: #2b6a4b;
}

.bw-form-notice--error {
  border-color: #8b1e1e;
}

.wpcf7-form label,
.search-form label {
  display: block;
  margin-bottom: .45rem;
  color: var(--bw-navy);
  font-size: .875rem;
  font-weight: 650;
}

.wpcf7-form-control:not(.wpcf7-submit),
.search-form input {
  width: 100%;
  min-height: 50px;
  padding: .75rem .9rem;
  border: 1px solid #aeb6b9;
  border-radius: 0;
  background: var(--bw-white);
}

textarea.wpcf7-form-control {
  min-height: 180px;
  resize: vertical;
}

.wpcf7-submit,
.search-form button {
  min-height: 50px;
  padding: .75rem 1.25rem;
  border: 1px solid var(--bw-navy);
  border-radius: 0;
  background: var(--bw-navy);
  color: var(--bw-white);
  font-weight: 700;
  cursor: pointer;
}

.wpcf7-not-valid-tip {
  color: #8b1e1e;
  font-size: .8rem;
}

.wpcf7-response-output {
  margin: 1.5rem 0 0 !important;
  padding: 1rem !important;
  border-color: var(--bw-navy) !important;
}

.search-form {
  max-width: 44rem;
  margin-bottom: 3rem;
}

.search-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.search-form__row input {
  min-width: 0;
  border-right: 0;
}

.not-found-page .search-form {
  margin: 2.5rem 0 0;
}

.not-found-page .search-form label {
  color: rgba(255, 255, 255, .78);
}

/* 404 */
.not-found-page {
  position: relative;
  min-height: calc(100svh - var(--bw-header));
  overflow: hidden;
  background: var(--bw-navy-deep);
  color: var(--bw-white);
}

.not-found-page__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: inherit;
  align-items: center;
  gap: 1rem;
  padding-block: 5rem;
}

.not-found-page__code {
  color: rgba(255, 255, 255, .07);
  font-family: var(--bw-font-en);
  font-size: clamp(7rem, 35vw, 17rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .7;
}

.not-found-page h1 {
  color: var(--bw-white);
  font-size: clamp(2.2rem, 8vw, 4.7rem);
}

.not-found-page__copy > p:not(.eyebrow) {
  max-width: 40rem;
  color: rgba(255, 255, 255, .72);
}

.not-found-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
}

/* Footer */
.site-footer {
  padding-top: clamp(4.5rem, 10vw, 7rem);
  background: var(--bw-navy-deep);
  color: rgba(255, 255, 255, .72);
}

.site-footer__main {
  display: grid;
  gap: 3.5rem;
  padding-bottom: 4rem;
}

.site-footer__wordmark {
  margin-bottom: .8rem;
  color: var(--bw-white);
  font-family: var(--bw-font-en);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: -.045em;
}

.site-footer__brand p:last-child {
  margin: 0;
}

.site-footer__navs {
  display: grid;
  gap: 2rem;
}

.menu--footer,
.menu--legal {
  display: grid;
  gap: .2rem;
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, .78);
  font-family: var(--bw-font-en);
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--bw-white);
}

.site-footer__base {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.site-footer__base p {
  margin: 0;
}

.back-to-top {
  white-space: nowrap;
}

/* Medium screens */
@media (min-width: 700px) {
  :root {
    --bw-shell: min(1180px, calc(100vw - 72px));
    --bw-reading: min(760px, calc(100vw - 72px));
  }

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

  .article-empty {
    grid-template-columns: minmax(220px, .7fr) 1fr;
    align-items: center;
  }

  .principle-grid,
  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principle-grid li:nth-child(odd),
  .field-grid article:nth-child(odd) {
    padding-right: 2rem;
    border-right: 1px solid var(--bw-line);
  }

  .principle-grid li:nth-child(even),
  .field-grid article:nth-child(even) {
    padding-left: 2rem;
  }

  .post-navigation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-navigation > div:last-child {
    text-align: right;
  }

  .not-found-page__inner {
    grid-template-columns: .7fr 1.2fr;
  }

  .site-footer__navs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop */
@media (min-width: 900px) {
  :root {
    --bw-header: 88px;
  }

  .has-js .menu-toggle {
    display: none;
  }

  .primary-navigation {
    display: block !important;
  }

  .hero__content {
    padding-bottom: clamp(7rem, 13vh, 10rem);
  }

  .hero__brand {
    max-width: none;
    font-size: clamp(5.6rem, 9.5vw, 9.2rem);
    white-space: nowrap;
  }

  .hero__statement {
    font-size: clamp(1.9rem, 2.6vw, 2.65rem);
  }

  .hero__scroll {
    right: calc((100vw - min(1180px, calc(100vw - 72px))) / 2);
  }

  .editorial-grid,
  .split-copy,
  .story-grid,
  .contact-band__inner {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(4rem, 9vw, 8rem);
    align-items: start;
  }

  .editorial-grid__heading,
  .split-copy > div:first-child,
  .story-grid__aside {
    position: sticky;
    top: 2rem;
  }

  .support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .support-card {
    min-height: 420px;
    grid-template-columns: 1fr;
    align-content: space-between;
    padding: 2.25rem;
    border-right: 1px solid var(--bw-line);
    border-bottom: 1px solid var(--bw-line);
  }

  .support-card:last-child {
    border-right: 0;
  }

  .support-card__number {
    font-size: .8rem;
  }

  .support-card h3 {
    font-size: 1.65rem;
  }

  .manifesto__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 4rem;
  }

  .manifesto__inner .eyebrow,
  .manifesto__inner h2 {
    grid-column: 1 / -1;
  }

  .manifesto__inner p:not(.eyebrow) {
    align-self: end;
  }

  .ungym-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    gap: clamp(4rem, 9vw, 8rem);
    align-items: center;
  }

  .between-lines__grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .ungym-mark {
    min-height: 590px;
  }

  .section-heading--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
  }

  .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-grid {
    grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr);
  }

  .contact-band__inner {
    align-items: end;
  }

  .contact-band__inner > div:last-child {
    max-width: 34rem;
  }

  .about-statement__copy {
    margin-left: auto;
  }

  .service-feature__grid,
  .ungym-principle__grid,
  .ungym-hero__grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(4rem, 9vw, 8rem);
    align-items: center;
  }

  .next-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .next-links a:first-child {
    padding-right: 2rem;
    border-right: 1px solid var(--bw-line);
  }

  .next-links a:last-child {
    padding-left: 2rem;
  }

  .contact-page__grid {
    grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
    gap: clamp(4rem, 9vw, 8rem);
    align-items: start;
  }

  .contact-page__aside {
    position: sticky;
    top: 2rem;
  }

  .site-footer__main {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

/* Mobile navigation */
@media (max-width: 899px) {
  .has-js .menu-toggle {
    display: inline-flex;
  }

  .has-js .primary-navigation {
    position: fixed;
    inset: var(--bw-header) 0 0;
    z-index: 90;
    display: none;
    overflow-y: auto;
    padding: 2rem 20px 4rem;
    background: var(--bw-navy-deep);
  }

  .has-js .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation .menu {
    display: grid;
    gap: 0;
  }

  .primary-navigation a,
  .home .primary-navigation a {
    display: flex;
    min-height: 64px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    color: var(--bw-white);
    font-size: 1rem;
  }

  .primary-navigation a::after {
    width: 18px;
    height: 1px;
    margin: 0;
    background: var(--bw-orange);
  }

  .menu-open .site-header,
  .home.nav-open .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: var(--bw-navy-deep);
  }

  .home.nav-open .brand-wordmark,
  .home.nav-open .menu-toggle {
    color: var(--bw-white);
  }
}

@media (max-width: 420px) {
  :root {
    --bw-shell: calc(100vw - 32px);
    --bw-reading: calc(100vw - 32px);
  }

  .hero__content {
    padding-bottom: 6.5rem;
  }

  .hero__brand {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .search-form__row {
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  .search-form__row input {
    border-right: 1px solid #aeb6b9;
  }

  .search-form button {
    width: 100%;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .breadcrumbs,
  .hero__scroll,
  .post-navigation {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
  }
}
