@font-face {
  font-family: 'Instrument Sans';
  src: url('./fonts/InstrumentSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('./fonts/InstrumentSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Sans';
  src: url('./fonts/InstrumentSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Sans Condensed';
  src: url('./fonts/InstrumentSansCondensed-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Instrument Sans Condensed';
  src: url('./fonts/InstrumentSansCondensed-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: rgba(255, 255, 255, 0.97);
  --muted: rgba(255, 255, 255, 0.64);
  --soft: rgba(255, 255, 255, 0.38);
  --accent: #d6cfb2;
  --max-width: 1440px;
  --page-gutter: 28px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 52%, var(--bg-2) 100%);
  pointer-events: none;
  z-index: 0;
}

main,
.redirect-shell {
  position: relative;
  z-index: 1;
}

.page {
  min-height: 100vh;
  padding: var(--page-gutter) var(--page-gutter) 24px;
}

.page-home {
  --page-gutter: clamp(28px, 4vw, 56px);
  padding: 0;
}

.page-home .shell {
  min-height: 100vh;
}

.shell {
  width: 100%;
  max-width: var(--max-width);
  min-height: calc(100vh - 52px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.hero-stage {
  position: relative;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  min-height: calc(100svh - 52px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.page-home .hero-stage {
  min-height: 100svh;
}

.hero-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 44%, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.8) 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.64) 22%, rgba(0, 0, 0, 0.42) 50%, rgba(0, 0, 0, 0.72) 84%, rgba(0, 0, 0, 0.96) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-stage::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: clamp(220px, 28vw, 360px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.46) 38%, rgba(5, 5, 5, 0.82) 72%, #050505 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-stage > * {
  position: relative;
  z-index: 3;
}

.hero-stage-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-stage-media::before,
.hero-stage-media::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-stage-media::before {
  top: 0;
  height: clamp(280px, 30vh, 440px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 34%, rgba(0, 0, 0, 0.22) 68%, rgba(0, 0, 0, 0) 100%);
}

.hero-stage-media::after {
  bottom: 0;
  height: clamp(240px, 30vh, 420px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.26) 34%, rgba(0, 0, 0, 0.66) 72%, rgba(0, 0, 0, 0.96) 100%);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  filter: grayscale(1) contrast(1.08) brightness(0.56);
  -webkit-mask-image: none;
  mask-image: none;
  transform: translate(-50%, -50%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 24px;
  padding: 0 var(--page-gutter) 18px;
}

.page-home .site-header {
  padding-top: clamp(34px, 5.8vh, 68px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.utility-nav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.6vw, 34px);
}

.brand-switch {
  gap: clamp(18px, 2.6vw, 34px);
}

.utility-link.brand-switch-link {
  color: var(--muted);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.brand-switch-link.is-current {
  color: var(--text);
  cursor: default;
}

.utility-link {
  color: var(--muted);
  text-decoration: none;
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.18s ease;
}

.access-link {
  color: var(--soft);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.75;
}

.academy-nav-link {
  color: var(--muted);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.access-link-disabled {
  color: color-mix(in srgb, var(--soft) 54%, var(--ink) 46%);
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
}

.utility-link:hover,
.utility-link:focus-visible,
.utility-link.is-active {
  color: var(--text);
}

.access-link-disabled:hover,
.access-link-disabled:focus-visible {
  color: color-mix(in srgb, var(--soft) 54%, var(--ink) 46%);
}

.lang-menu {
  position: relative;
}

.lang-menu summary {
  list-style: none;
  cursor: pointer;
}

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

.lang-menu[open] summary {
  color: var(--text);
}

.lang-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 88px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 8px;
}

.lang-menu-panel a {
  color: var(--muted);
  text-decoration: none;
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lang-menu-panel a:hover,
.lang-menu-panel a:focus-visible,
.lang-menu-panel a.is-active {
  color: var(--text);
}

.hero {
  min-height: calc(100svh - 148px);
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 26px var(--page-gutter) 54px;
}

.hero-inner {
  width: 100%;
  max-width: 1100px;
}

.eyebrow {
  margin: 0 0 22px;
  color: rgba(241, 237, 211, 0.92);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  max-width: 11ch;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: clamp(3.6rem, 7.2vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.038em;
  font-weight: 600;
  text-wrap: balance;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.hero-title strong {
  font-weight: 700;
  color: var(--accent);
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.65;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.lower {
  position: relative;
  width: calc(100% - var(--page-gutter) - var(--page-gutter));
  margin: 76px auto 0;
  padding: 40px 38px 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 0%, rgba(255, 255, 255, 0) 28%),
    rgba(5, 5, 5, 0.94);
  backdrop-filter: none;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 34px;
  overflow: hidden;
}

.lower::before {
  display: none;
}

.lower::after {
  display: none;
}

.lower-label {
  margin: 0 0 10px;
  color: var(--soft);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lower-copy {
  margin: 0;
  max-width: 47rem;
  font-size: 1.04rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.84);
}

.lower-stage {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
}

.lower-title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 600;
  text-wrap: balance;
}

.lower-title strong {
  color: var(--accent);
  font-weight: 600;
}

.lower-note {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.62);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  line-height: 1.65;
  text-transform: uppercase;
}

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

.lower-item {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
  min-height: 182px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, rgba(255, 255, 255, 0.012) 100%);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.lower-item:first-child {
  padding-top: 26px;
}

.lower-item-body {
  display: grid;
  gap: 10px;
  justify-items: center;
  max-width: 18rem;
}

.lower-item:hover,
.lower-item:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.042) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.lower-item-title {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: 600;
  text-wrap: balance;
}

.lower-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.process-band {
  position: relative;
  width: calc(100% - var(--page-gutter) - var(--page-gutter));
  margin: 80px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.process-band-head {
  display: grid;
  gap: 18px;
  max-width: 28rem;
}

.process-band-kicker {
  margin: 0;
  color: var(--soft);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-band-title {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 600;
  text-wrap: balance;
}

.process-band-copy {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.74;
  font-size: 1rem;
}

.process-rail {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 8px;
  padding-left: 28px;
}

.process-rail::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.05) 100%);
}

.process-node {
  position: relative;
  padding: 24px 24px 24px 28px;
  min-height: 0;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    radial-gradient(circle at top right, rgba(214, 207, 178, 0.08) 0%, rgba(214, 207, 178, 0) 38%),
    linear-gradient(180deg, rgba(255,255,255,0.034) 0%, rgba(255,255,255,0.012) 100%),
    rgba(255,255,255,0.014);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.process-node::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 100%);
}

.process-node::before {
  content: '';
  position: absolute;
  top: 26px;
  left: -28px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(214, 207, 178, 0.08);
}

.process-node-step {
  position: absolute;
  top: 16px;
  right: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.12);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.process-node-label {
  margin: 0 0 10px;
  color: var(--text);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.process-node-body {
  margin: 0;
  max-width: 25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.process-node:nth-child(2) {
  margin-left: 34px;
}

.process-node:nth-child(3) {
  margin-left: 68px;
}


.selective-band {
  position: relative;
  width: calc(100% - var(--page-gutter) - var(--page-gutter));
  margin: 88px auto 0;
  padding: clamp(42px, 6vw, 72px) 0 0;
  display: grid;
  gap: clamp(34px, 5vw, 58px);
  justify-items: center;
  text-align: center;
}

.selective-copy {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 56rem;
}

.selective-kicker {
  margin: 0;
  color: var(--soft);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.selective-title {
  margin: 0;
  max-width: 16ch;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.selective-title strong {
  color: var(--accent);
  font-weight: 600;
}

.selective-body {
  margin: 0;
  max-width: 43rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.76;
}

.partner-logos {
  width: min(100%, 840px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: clamp(20px, 5vw, 72px);
  padding: 22px 0 4px;
}

.partner-logos img {
  display: block;
  width: auto;
  height: clamp(74px, 8vw, 116px);
  max-width: min(150px, 100%);
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.16) brightness(1.18);
  opacity: 0.9;
}

.site-footer {
  width: calc(100% - var(--page-gutter) - var(--page-gutter));
  max-width: var(--max-width);
  margin: 104px auto 0;
  padding-top: 20px;
  padding-bottom: clamp(32px, 5vw, 56px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 1fr));
  gap: 28px 36px;
}

.footer-brand {
  max-width: 28rem;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.footer-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-wordmark {
  margin: 0;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 1.34rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-transform: uppercase;
}

.footer-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 34rem;
}

.footer-column-title {
  margin: 0 0 14px;
  color: var(--soft);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
  line-height: 1.5;
  transition: color 0.18s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 16px;
  padding-bottom: 2px;
}

.footer-meta,
.footer-note {
  margin: 0;
  color: var(--soft);
  font-size: 0.84rem;
  line-height: 1.6;
}

.redirect-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.redirect-card {
  width: min(100%, 520px);
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
}

.redirect-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.redirect-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.redirect-title {
  margin: 0;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.045em;
}

.redirect-copy {
  margin: 18px 0 10px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.redirect-card a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.redirect-card a:hover,
.redirect-card a:focus-visible {
  color: var(--accent);
}

.embed-body {
  min-height: 100vh;
  background: #050505;
}

.embed-page {
  width: 100%;
  min-height: 100vh;
  background: #050505;
}

.embed-frame {
  width: 100%;
  min-height: 100vh;
  border: 0;
  display: block;
  background: #050505;
}

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

  .lower {
    grid-template-columns: 1fr;
    padding: 28px 24px 24px;
  }

  .hero {
    min-height: auto;
    padding: 48px 0 42px;
  }
}

@media (max-width: 720px) {
  .page {
    --page-gutter: 22px;
    padding: 20px var(--page-gutter) 18px;
  }

  .page.page-home {
    padding: 0;
  }

  .shell {
    min-height: calc(100vh - 38px);
  }

  .site-header {
    align-items: center;
    gap: 16px;
    padding-inline: var(--page-gutter);
    padding-bottom: 14px;
  }

  .page-home .site-header {
    padding-top: clamp(22px, 4.4vh, 34px);
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero-stage::before {
    background:
      radial-gradient(circle at 34% 32%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.82) 72%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.54) 22%, rgba(0, 0, 0, 0.48) 52%, rgba(0, 0, 0, 0.72) 84%, rgba(0, 0, 0, 0.94) 100%);
  }

  .hero-stage-media {
    inset: 0;
  }

  .hero-video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    object-fit: cover;
    object-position: 50% 12%;
    transform: none;
  }

  .utility-nav {
    justify-content: flex-end;
    gap: 14px;
  }

  .brand-switch {
    gap: 16px;
  }

  .utility-link.brand-switch-link {
    font-size: 0.84rem;
  }

  .lang-menu-panel {
    left: 0;
    right: auto;
  }

  .hero {
    min-height: calc(100svh - 124px);
    padding: 28px var(--page-gutter) 48px;
  }

  .hero-inner {
    max-width: 100%;
    padding-right: 8px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero-title {
    max-width: 7.2ch;
    font-size: clamp(2.9rem, 13vw, 4.4rem);
    line-height: 0.96;
    letter-spacing: -0.036em;
  }

  .hero-copy {
    margin-top: 18px;
    max-width: 26rem;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .lower {
    margin-top: 88px;
    gap: 28px;
    padding: 32px 24px 28px;
  }

  .lower-stage {
    gap: 14px;
  }

  .lower-item {
    min-height: 0;
    padding: 22px 18px;
    justify-items: start;
    text-align: left;
  }

  .lower-title {
    max-width: 12ch;
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .lower-copy {
    font-size: 1rem;
    line-height: 1.68;
  }

  .lower-note {
    max-width: none;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

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

  .process-band {
    margin-top: 66px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-band-title {
    max-width: 14ch;
  }

  .process-rail {
    gap: 18px;
    padding-top: 18px;
    padding-left: 24px;
  }

  .process-node {
    padding: 20px 18px 20px 22px;
  }

  .process-node-step {
    top: 14px;
    right: 14px;
    font-size: 2.5rem;
  }

  .process-node-body {
    max-width: none;
  }

  .process-node:nth-child(2),
  .process-node:nth-child(3) {
    margin-left: 0;
  }


  .selective-band {
    margin-top: 78px;
    padding-top: 40px;
    gap: 30px;
  }

  .selective-copy {
    padding: 0 22px;
  }

  .selective-title {
    max-width: 12ch;
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 0.98;
  }

  .selective-body {
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .partner-logos {
    gap: 18px;
    padding: 12px 20px 0;
  }

  .partner-logos img {
    height: clamp(62px, 17vw, 82px);
    max-width: 104px;
  }

  .lower-item-body {
    justify-items: start;
    max-width: none;
    gap: 10px;
  }

  .lower-item-title {
    font-size: 1rem;
    line-height: 1.35;
  }

  .lower-item p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-footer {
    margin-top: 96px;
    padding-bottom: 44px;
  }

  .footer-copy {
    font-size: 0.92rem;
  }

  .footer-meta,
  .footer-note {
    font-size: 0.8rem;
  }
}

@media (max-width: 520px) {
  .page {
    --page-gutter: 20px;
  }

  .hero {
    min-height: calc(100svh - 116px);
    padding: 26px var(--page-gutter) 42px;
  }

  .hero-title {
    max-width: 7.4ch;
    font-size: clamp(2.7rem, 12.2vw, 3.9rem);
    line-height: 0.97;
    letter-spacing: -0.03em;
  }

  .hero-copy {
    max-width: 22rem;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .access-link {
    font-size: 0.94rem;
  }

  .lower {
    margin-top: 76px;
    padding: 28px 20px 24px;
  }

  .lower-title {
    font-size: clamp(1.9rem, 9.2vw, 2.8rem);
  }

  .process-band-title {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

  .lower-item {
    padding: 20px 16px;
  }

  .lower-item p {
    font-size: 0.93rem;
  }

  .selective-band {
    margin-top: 68px;
  }

  .selective-copy {
    padding-inline: 20px;
  }

  .selective-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .selective-title {
    font-size: clamp(1.9rem, 9.2vw, 2.8rem);
  }

  .partner-logos {
    gap: 14px;
  }

  .partner-logos img {
    height: clamp(54px, 15vw, 70px);
    max-width: 92px;
  }

  .site-footer {
    margin-top: 84px;
    padding-bottom: 40px;
  }

  .footer-mark img {
    width: 34px;
    height: 34px;
  }

  .footer-wordmark {
    font-size: 1.16rem;
    letter-spacing: normal;
  }
}


/* --- Static subpages --- */
.subpage-page {
  padding: clamp(22px, 3.6vw, 42px) var(--page-gutter) clamp(42px, 6vw, 80px);
}

.subpage-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.subpage-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(42px, 8vw, 72px);
}

.subpage-back,
.subpage-wordmark {
  color: inherit;
  text-decoration: none;
}

.subpage-back {
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
}

.subpage-back:hover,
.subpage-back:focus-visible {
  color: var(--text);
}

.subpage-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.subpage-wordmark img {
  width: 28px;
  height: 28px;
}

.subpage-wordmark span {
  display: inline;
  color: var(--text);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.subpage-footer-note {
  margin-top: clamp(64px, 8vw, 96px);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.subpage-footer-note p {
  margin: 0;
  color: var(--soft);
  font-size: 0.84rem;
}

.subpage-footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
}

.subpage-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.subpage-legal-links a {
  color: var(--soft);
  font-size: 0.84rem;
  text-decoration: none;
}

.subpage-legal-links a:hover,
.subpage-legal-links a:focus-visible,
.subpage-legal-links a[aria-current='page'] {
  color: var(--text);
}

.story-hero,
.story-split,
.promise-section,
.story-closing,
.contact-hero,
.contact-card-shell,
.contact-closing,
.dpa-hero,
.dpa-copy-grid,
.dpa-form-shell {
  margin-bottom: clamp(56px, 8vw, 92px);
}

.story-kicker,
.legal-sidebar-label,
.contact-card-status,
.dpa-form-title {
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-hero h1,
.story-text h2,
.section-intro h2,
.story-closing-title,
.contact-hero h1,
.contact-closing-title,
.legal-hero h1,
.legal-article h2,
.dpa-hero h1,
.dpa-copy-grid h2 {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.story-hero h1,
.contact-hero h1,
.legal-hero h1,
.dpa-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.96;
  margin: 0 0 18px;
}

.story-copy,
.story-text,
.section-intro,
.contact-hero,
.contact-closing,
.legal-intro,
.legal-article section,
.dpa-copy-grid article,
.dpa-form-shell {
  color: var(--muted);
}

.story-copy p,
.story-text p,
.section-intro p,
.contact-hero p,
.contact-closing p,
.legal-intro p,
.legal-article p,
.legal-article li,
.dpa-copy-grid p,
.dpa-form-copy,
.dpa-actions p {
  line-height: 1.7;
  font-size: 1rem;
}

.story-copy p + p,
.story-text p + p,
.legal-intro p + p,
.legal-article p + p {
  margin-top: 16px;
}

.story-hero,
.contact-hero {
  max-width: 940px;
}

.story-copy,
.section-intro {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.problem-card-stack,
.promise-grid,
.dpa-copy-grid {
  display: grid;
  gap: 18px;
}

.contact-layout,
.contact-points {
  display: grid;
  gap: 18px;
}

.problem-card,
.promise-card,
.contact-panel,
.contact-point,
.contact-card-shell,
.dpa-copy-grid article,
.dpa-form-shell {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(18px);
}

.problem-card,
.promise-card,
.contact-panel,
.contact-point,
.dpa-copy-grid article {
  border-radius: 20px;
  padding: 22px 24px;
}

.problem-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--soft);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.problem-card p,
.promise-card p,
.dpa-copy-grid p {
  margin: 0;
}

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

.promise-card h3,
.dpa-copy-grid h2 {
  margin: 0 0 12px;
  font-size: 1.14rem;
  color: var(--text);
}

.story-emphasis,
.story-highlight,
.story-closing-copy,
.contact-closing-copy {
  color: var(--text);
}

.story-closing {
  padding-top: 12px;
}

.story-closing-title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.04;
}

.story-closing-title span {
  background: none;
  color: var(--accent);
}

.contact-hero h1 span {
  color: var(--accent);
}

.contact-layout {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 24px;
  align-self: start;
}

.contact-panel-kicker {
  margin: 0;
  color: var(--soft);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-panel h2 {
  margin: 0;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.contact-point h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1rem;
}

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

.contact-simple-shell {
  max-width: 920px;
  margin-inline: auto;
}

.dpa-shell {
  max-width: 960px;
}

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

.dpa-summary-shell {
  display: grid;
  gap: 24px;
  max-width: 760px;
  margin-bottom: clamp(48px, 7vw, 72px);
}

.dpa-summary-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.dpa-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.dpa-summary-list li {
  display: grid;
  grid-template-columns: minmax(0, 170px) minmax(0, 1fr);
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.dpa-summary-list strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.dpa-summary-list span {
  color: var(--muted);
  line-height: 1.7;
}

.contact-direct {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 0;
}

.contact-direct p + p {
  margin-top: 8px;
}

.contact-direct strong {
  color: var(--text);
  font-weight: 600;
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
  color: var(--soft);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-card-shell,
.dpa-form-shell {
  border-radius: 28px;
  overflow: hidden;
}

.contact-card-head,
.dpa-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-card-title,
.dpa-form-title {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 0.84rem;
}

.contact-card-subtitle,
.dpa-form-copy {
  margin: 0;
  color: var(--soft);
}

.contact-embed-shell {
  padding: 18px;
}

.contact-embed-shell iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: 18px;
  background: #080808;
}

.booking-consent {
  display: grid;
  place-items: start;
  min-height: 360px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 18%, rgba(198, 255, 61, 0.1), transparent 34%),
    #080808;
}

.booking-consent-kicker {
  margin: 0 0 20px;
  color: var(--accent);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-consent h2 {
  max-width: 680px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.booking-consent > p:not(.booking-consent-kicker) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.booking-consent-actions,
.booking-frame-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.booking-consent-actions {
  margin-top: 28px;
}

.booking-consent-primary,
.booking-frame-controls button {
  appearance: none;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #050505;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 12px 18px;
}

.booking-consent-actions a,
.booking-frame-controls a,
.booking-frame-controls button {
  font-size: 0.9rem;
  text-decoration: none;
}

.booking-consent-actions a,
.booking-frame-controls a {
  color: var(--text);
}

.booking-consent .booking-consent-note {
  margin-top: 22px;
  color: var(--soft);
  font-size: 0.84rem;
}

.booking-consent-note a {
  color: var(--text);
}

.booking-frame-controls {
  justify-content: space-between;
  padding: 14px 4px 0;
}

[data-cal-consent][hidden],
[data-cal-frame][hidden],
[data-cal-controls][hidden] {
  display: none !important;
}

.booking-frame-controls button {
  border-color: rgba(255,255,255,0.16);
  background: transparent;
  color: var(--soft);
  padding: 9px 14px;
}

.contact-alt {
  padding: 0 26px 26px;
}

.contact-alt p,
.contact-alt a {
  color: var(--soft);
}

.contact-alt a {
  color: var(--accent);
}

/* --- KAIRON project conversation --- */
.contact-conversation {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(42px, 7vw, 94px);
  align-items: start;
  margin-bottom: clamp(64px, 9vw, 112px);
}

.contact-conversation-intro {
  padding-top: clamp(8px, 1.5vw, 18px);
}

.contact-conversation-kicker,
.contact-conversation-details dt,
.contact-routes span {
  color: var(--soft);
  font-family: 'Instrument Sans Condensed', 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-conversation-kicker {
  margin: 0 0 24px;
}

.contact-conversation-intro h2 {
  max-width: 560px;
  margin: 0;
  color: var(--text);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: clamp(2.45rem, 5.2vw, 4.9rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
  text-wrap: balance;
}

.contact-conversation-copy {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.contact-conversation-details {
  display: grid;
  gap: 22px;
  margin: clamp(40px, 5vw, 64px) 0 0;
}

.contact-conversation-details div {
  display: grid;
  grid-template-columns: minmax(72px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
}

.contact-conversation-details dt,
.contact-conversation-details dd {
  margin: 0;
}

.contact-conversation-details dd {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.contact-booking {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 8%, rgba(214, 207, 178, 0.12), transparent 34%),
    #0a0a09;
  box-shadow: inset 0 0 0 1px rgba(214, 207, 178, 0.1);
}

.contact-booking::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

.contact-booking > * {
  position: relative;
  z-index: 1;
}

.contact-booking .booking-consent {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 0;
  background: transparent;
}

.contact-booking .booking-consent-kicker {
  margin: 0 0 22px;
}

.contact-booking .booking-consent h3 {
  max-width: 560px;
  margin: 0;
  color: var(--text);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.contact-booking .booking-consent > p:not(.booking-consent-kicker):not(.booking-consent-note) {
  max-width: 540px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-booking .booking-consent-actions {
  margin-top: 30px;
}

.contact-booking .booking-consent-primary {
  min-height: 48px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 13px 19px;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.contact-booking .booking-consent-primary:hover,
.contact-booking .booking-consent-primary:focus-visible {
  background: #eee8d1;
  border-color: #eee8d1;
}

.contact-booking .booking-consent-primary:active {
  transform: translateY(1px) scale(0.985);
}

.contact-booking .booking-consent-actions a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 200ms ease;
}

.contact-booking .booking-consent-actions a:hover,
.contact-booking .booking-consent-actions a:focus-visible {
  color: var(--text);
}

.contact-booking .booking-consent .booking-consent-note {
  max-width: 500px;
  margin-top: 26px;
  color: var(--soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.booking-frame {
  height: 724px;
  overflow: hidden;
  background: #090909;
}

.booking-frame iframe {
  display: block;
  width: 100%;
  height: 724px;
  border: 0;
  background: #090909;
}

.contact-booking .booking-frame-controls {
  padding: 13px 18px 17px;
  background: #090909;
}

.contact-booking .booking-frame-controls button {
  border-radius: 5px;
  transition: border-color 200ms ease, color 200ms ease;
}

.contact-booking .booking-frame-controls button:hover,
.contact-booking .booking-frame-controls button:focus-visible {
  border-color: rgba(255,255,255,0.32);
  color: var(--text);
}

.contact-conversation:has(.contact-booking.is-loaded) {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.contact-conversation:has(.contact-booking.is-loaded) .contact-conversation-intro {
  display: none;
}

.contact-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 72px);
  margin-bottom: clamp(68px, 8vw, 104px);
}

.contact-routes div {
  display: grid;
  gap: 11px;
  min-width: 0;
}

.contact-routes a {
  width: fit-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.94rem, 1.3vw, 1.08rem);
  text-decoration-color: rgba(214, 207, 178, 0.38);
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
  transition: color 200ms ease, text-decoration-color 200ms ease;
}

.contact-routes a:hover,
.contact-routes a:focus-visible {
  color: var(--text);
  text-decoration-color: var(--accent);
}

.contact-booking button:focus-visible,
.contact-booking a:focus-visible,
.contact-routes a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.legal-sidebar {
  position: sticky;
  top: 32px;
  align-self: start;
}

.legal-sidebar-label {
  color: var(--soft);
  font-size: 0.75rem;
  margin: 0 0 16px;
}

.legal-sidebar-nav {
  display: grid;
  gap: 10px;
}

.legal-sidebar-nav a {
  color: var(--soft);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.4;
}

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

.legal-hero {
  margin-bottom: 28px;
}

.legal-hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.legal-updated {
  margin: 10px 0 0;
  color: var(--soft);
  font-size: 0.92rem;
}

.legal-intro {
  margin-bottom: 24px;
}

.legal-sections section + section {
  margin-top: 42px;
}

.legal-article h2 {
  font-size: 2rem;
  line-height: 1.08;
  margin: 0 0 18px;
}

.legal-article h3 {
  margin: 24px 0 10px;
  font-size: 1.1rem;
  color: var(--text);
}

.legal-article ul {
  margin: 12px 0 0 0;
  padding-left: 18px;
}

.legal-article li + li {
  margin-top: 8px;
}

.legal-article a {
  color: var(--accent);
  text-decoration-color: rgba(198, 255, 61, 0.42);
  text-underline-offset: 0.16em;
}

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

.dpa-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
}

.dpa-form-grid label {
  display: grid;
  gap: 8px;
}

.dpa-form-grid label.full,
.dpa-actions {
  grid-column: 1 / -1;
}

.dpa-form-grid span {
  color: var(--soft);
  font-size: 0.84rem;
}

.dpa-form-grid input,
.dpa-form-grid textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

.dpa-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}


.dpa-actions button {
  border: 0;
  border-radius: 14px;
  background: var(--text);
  color: #050505;
  padding: 14px 24px;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.dpa-actions button:hover,
.dpa-actions button:focus-visible {
  opacity: 0.88;
}

.dpa-helper {
  max-width: 760px;
  margin: -34px 0 clamp(48px, 6vw, 64px);
  color: var(--soft);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .story-split,
  .contact-layout,
  .contact-conversation,
  .legal-layout,
  .promise-grid,
  .dpa-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-conversation {
    gap: 46px;
  }

  .contact-conversation-intro,
  .contact-conversation-copy {
    max-width: 760px;
  }

  .legal-sidebar {
    position: static;
    min-width: 0;
    margin-bottom: 34px;
    overflow: hidden;
  }

  .legal-sidebar-label {
    margin-bottom: 12px;
  }

  .legal-sidebar-nav {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 0 0 10px;
    scrollbar-width: none;
  }

  .legal-sidebar-nav::-webkit-scrollbar {
    display: none;
  }

  .legal-sidebar-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .contact-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .subpage-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-footer-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .subpage-legal-links {
    justify-content: flex-start;
  }

  .contact-card-head,
  .dpa-form-head {
    flex-direction: column;
  }

  .dpa-summary-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-embed-shell iframe {
    min-height: 620px;
  }

  .booking-consent {
    min-height: 0;
  }

  .contact-hero {
    margin-bottom: 62px;
  }

  .contact-conversation {
    gap: 34px;
    margin-bottom: 68px;
  }

  .contact-conversation-details {
    gap: 20px;
    margin-top: 38px;
  }

  .contact-conversation-details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-booking {
    border-radius: 20px;
  }

  .contact-booking .booking-consent {
    min-height: 430px;
    padding: 30px 24px;
  }

  .contact-booking .booking-consent-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-frame,
  .booking-frame iframe {
    height: 660px;
  }

  .contact-routes {
    grid-template-columns: 1fr;
    gap: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-booking .booking-consent-primary,
  .contact-booking .booking-consent-actions a,
  .contact-routes a {
    transition: none;
  }
}
