:root {
  --black: #070707;
  --ink: #242524;
  --muted: #656665;
  --red: #b22125;
  --red-dark: #8f171b;
  --white: #ffffff;
  --gray-50: #f8f8f7;
  --gray-100: #f1f1ef;
  --gray-200: #dededb;
  --gray-300: #c4c4c0;
  --green: #1e6b4a;
  --amber: #8a5a00;
  --max-width: 1180px;
  --radius: 4px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --font-body: "Roboto", Arial, Helvetica, sans-serif;
  --font-condensed: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

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

:focus-visible {
  outline: 3px solid #ffcb54;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-200%);
  background: var(--white);
  color: var(--black);
  font-weight: 700;
}

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

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

.utility-bar {
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 8px;
}

.utility-bar a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 7, 0.98);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 230px;
  text-decoration: none;
}

.brand img {
  width: 142px;
  height: 57px;
  object-fit: contain;
}

.brand span {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: #d7d7d4;
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.primary-nav > a:not(.button) {
  color: #eeeeeb;
  font-family: var(--font-condensed);
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover,
.primary-nav > a:not(.button):focus-visible {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 3px;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button__label {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-button__icon,
.menu-button__icon::before,
.menu-button__icon::after {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  display: block;
  transition: transform 180ms ease;
}

.menu-button__icon {
  position: relative;
}

.menu-button__icon::before,
.menu-button__icon::after {
  position: absolute;
  left: 0;
}

.menu-button__icon::before {
  top: -7px;
}

.menu-button__icon::after {
  top: 7px;
}

.menu-button[aria-expanded="true"] .menu-button__icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-button__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-family: var(--font-condensed);
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button--small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.82rem;
}

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

.button--red:hover {
  background: var(--red-dark);
}

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

.button--black:hover {
  background: #2a2b2a;
}

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

.button--ghost {
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--white);
}

.button--ghost:hover,
.button--outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button--outline-white {
  border-color: var(--white);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--black);
  font-family: var(--font-condensed);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--red);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
  background:
    linear-gradient(110deg, rgba(7, 7, 7, 0.98), rgba(7, 7, 7, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.04) 120px),
    var(--black);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 0;
  right: -130px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(178, 33, 37, 0.18);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.72fr);
  gap: 76px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f1f1ef;
  font-family: var(--font-condensed);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow--red {
  color: var(--red);
}

.hero h1,
.section-heading h2,
.cta-panel h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-condensed);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(3.4rem, 7.3vw, 6.9rem);
}

.hero h1::after {
  display: block;
  width: 84px;
  height: 8px;
  margin-top: 28px;
  background: var(--red);
  content: "";
}

.hero__lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #e1e1de;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

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

.hero__note {
  max-width: 760px;
  margin: 24px 0 0;
  color: #aeaeaa;
  font-size: 0.84rem;
  line-height: 1.6;
}

.hero-card {
  position: relative;
  padding: 34px;
  background: #151515;
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow);
}

.hero-card__kicker {
  margin: 0 0 10px;
  color: #b7b7b3;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0;
  font-family: var(--font-condensed);
  font-size: 1.65rem;
  line-height: 1.15;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0.04em;
  left: 0;
  color: var(--red);
  content: "✓";
  font-weight: 900;
}

.check-list--light {
  color: #dededb;
  font-size: 0.93rem;
}

.capability-strip {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.capability-strip span {
  flex: 1 1 auto;
  padding: 18px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: #c7c7c4;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: 104px 0;
}

.section--intro {
  padding-block: 78px;
}

.section--gray {
  background: var(--gray-100);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--booking {
  background: var(--gray-50);
}

.section--trust {
  background: #171817;
  color: var(--white);
}

.section--cta {
  padding-block: 72px;
  background: var(--red);
  color: var(--white);
}

.intro-grid,
.intake-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.35fr);
  gap: 80px;
}

.intro-copy {
  font-size: 1.08rem;
}

.intro-copy p {
  margin-top: 0;
}

.section-heading h2 {
  color: var(--black);
  font-size: clamp(2.55rem, 5.2vw, 4.75rem);
}

.section--dark .section-heading h2,
.section--trust .section-heading h2 {
  color: var(--white);
}

.section-heading > p:last-child {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--dark .section-heading > p:last-child,
.section--trust .section-heading > p:last-child {
  color: #bdbdb9;
}

.section-heading--wide {
  max-width: 900px;
  margin-bottom: 60px;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--gray-300);
  list-style: none;
}

.workflow__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  min-height: 310px;
  padding: 34px;
  background: var(--white);
}

.workflow__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: auto;
}

.workflow__number {
  color: var(--red);
  font-family: var(--font-condensed);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
}

.workflow__phase {
  margin: 0 0 6px;
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.workflow h3,
.lane-card h3,
.timeline-card h3,
.control-card h3,
.trust-library h3,
.content-card h2,
.content-card h3 {
  margin: 0;
  font-family: var(--font-condensed);
  font-weight: 900;
  line-height: 1.15;
}

.workflow h3 {
  font-size: 1.55rem;
}

.workflow__item p:not(.workflow__phase) {
  color: #505150;
  font-size: 0.94rem;
}

.workflow__gate {
  margin-bottom: 0;
  padding-top: 13px;
  border-top: 1px solid var(--gray-200);
}

.workflow__gate strong {
  color: var(--black);
}

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

.lane-card {
  position: relative;
  min-height: 560px;
  padding: 34px 30px;
  overflow: hidden;
  background: #171817;
  border: 1px solid #353635;
}

.lane-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border: 30px solid rgba(178, 33, 37, 0.2);
  border-radius: 50%;
  content: "";
}

.lane-card__index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  background: var(--red);
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 900;
}

.lane-card h3 {
  font-size: 2rem;
}

.lane-card > p {
  min-height: 104px;
  color: #bcbdb9;
}

.lane-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 24px 0 0 20px;
  border-top: 1px solid #3d3e3d;
  color: #e6e6e3;
  font-size: 0.91rem;
}

.lane-card li::marker {
  color: var(--red);
}

.architecture {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 52px;
}

.architecture__node {
  padding: 22px;
  background: #222322;
  border: 1px solid #404140;
}

.architecture__node--accent {
  border-top: 4px solid var(--red);
}

.architecture__node span,
.architecture__node strong {
  display: block;
}

.architecture__node span {
  margin-bottom: 6px;
  color: #a7a8a4;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.architecture__node strong {
  font-family: var(--font-condensed);
  line-height: 1.25;
}

.architecture__arrow {
  align-self: center;
  color: var(--red);
  font-size: 1.5rem;
}

.architecture__support {
  margin: 22px 0 0;
  color: #aeb0ac;
  font-size: 0.9rem;
  text-align: center;
}

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

.timeline-card {
  min-height: 310px;
  padding: 34px;
  background: var(--gray-50);
  border-top: 5px solid var(--black);
}

.timeline-card--featured {
  background: var(--black);
  color: var(--white);
  border-top-color: var(--red);
  box-shadow: var(--shadow);
}

.timeline-card__range {
  margin: 0 0 30px;
  color: var(--red);
  font-family: var(--font-condensed);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

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

.timeline-card > p:last-child {
  color: var(--muted);
}

.timeline-card--featured > p:last-child {
  color: #bfc0bd;
}

.notice {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  margin-top: 32px;
  padding: 28px 34px;
  border-left: 6px solid var(--red);
  background: var(--gray-100);
}

.notice strong {
  font-family: var(--font-condensed);
  font-size: 1.2rem;
}

.notice p {
  margin: 0;
}

.intake-grid {
  align-items: start;
}

.intake-grid .button {
  margin-top: 28px;
}

.intake-panels {
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.intake-panels details {
  border-bottom: 1px solid var(--gray-200);
}

.intake-panels details:last-child {
  border-bottom: 0;
}

.intake-panels summary {
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-condensed);
  font-size: 1.25rem;
  font-weight: 900;
}

.intake-panels summary::marker {
  color: var(--red);
}

.intake-panels ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0 36px 26px 54px;
  color: #555655;
}

.booking-grid {
  align-items: start;
}

.stacked-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 30px;
}

.booking-frame {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.booking-frame iframe {
  width: 100%;
  min-height: 700px;
  border: 0;
}

.booking-frame__fallback {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  max-width: 390px;
  padding: 16px 18px;
  background: rgba(7, 7, 7, 0.94);
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.45;
  box-shadow: var(--shadow);
}

.booking-frame__fallback strong {
  display: block;
  margin-bottom: 3px;
}

.booking-frame__fallback a {
  color: var(--white);
  text-decoration-color: var(--red-light);
  text-decoration-thickness: 2px;
}

.trust-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 70px;
  align-items: end;
}

.trust-intro > p {
  margin: 0;
  color: #c3c4c0;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid #3c3d3c;
  border-left: 1px solid #3c3d3c;
}

.control-card {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid #3c3d3c;
  border-bottom: 1px solid #3c3d3c;
}

.control-card > span {
  color: var(--red);
  font-family: var(--font-condensed);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.control-card h3 {
  margin-top: 50px;
  font-size: 1.45rem;
}

.control-card p {
  color: #aaaBa8;
  font-size: 0.91rem;
}

.trust-library {
  margin-top: 70px;
  padding: 48px;
  background: var(--white);
  color: var(--ink);
}

.trust-library h3 {
  color: var(--black);
  font-size: 2.2rem;
}

.trust-library > div:first-child > p:last-child {
  max-width: 860px;
  color: var(--muted);
}

.document-list {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.document-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 20px 22px;
  background: var(--gray-50);
}

.document-item h4 {
  margin: 0;
  color: var(--black);
  font-family: var(--font-condensed);
  font-size: 1.1rem;
}

.document-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.document-item__badge {
  display: inline-flex;
  min-width: 126px;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid currentColor;
  color: var(--amber);
  font-family: var(--font-condensed);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.document-item__badge--published {
  color: var(--green);
}

.trust-library__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
}

.privacy-link {
  margin: 30px 0 0;
  color: #bcbdb9;
  text-align: center;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-panel h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.35rem);
}

.cta-panel p:last-child {
  margin-bottom: 0;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer {
  padding: 70px 0 28px;
  background: var(--black);
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
}

.site-footer img {
  width: 150px;
  height: 60px;
  object-fit: contain;
}

.site-footer h2 {
  margin: 0 0 15px;
  color: #b6b7b3;
  font-family: var(--font-condensed);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.site-footer__grid a {
  color: #eeeeeb;
  font-size: 0.88rem;
  text-decoration: none;
}

.site-footer__grid a:hover {
  text-decoration: underline;
  text-decoration-color: var(--red);
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid #333433;
  color: #8f908d;
  font-size: 0.74rem;
}

.page-hero {
  padding: 92px 0 80px;
  background: var(--black);
  color: var(--white);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.3rem, 7vw, 6rem);
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 26px 0 0;
  color: #c2c3c0;
  font-size: 1.12rem;
}

.content-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 70px;
}

.side-nav {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  background: var(--gray-100);
}

.side-nav a {
  padding: 7px 0;
  font-family: var(--font-condensed);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.side-nav a:hover {
  color: var(--red);
}

.content-card {
  padding-bottom: 44px;
  border-bottom: 1px solid var(--gray-200);
}

.content-card + .content-card {
  padding-top: 44px;
}

.content-card h2 {
  color: var(--black);
  font-size: 2.2rem;
}

.content-card h3 {
  margin-top: 30px;
  color: var(--black);
  font-size: 1.4rem;
}

.content-card p,
.content-card li {
  color: #505150;
}

.content-card a {
  color: var(--red-dark);
}

.status-banner {
  margin-bottom: 36px;
  padding: 18px 22px;
  border-left: 5px solid var(--red);
  background: var(--gray-100);
}

.status-banner strong,
.status-banner span {
  display: block;
}

.status-banner span {
  color: var(--muted);
  font-size: 0.88rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .menu-button {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: 116px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 116px);
    padding: 24px;
    overflow-y: auto;
    background: var(--black);
    border-top: 1px solid #303130;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.button) {
    padding: 16px 0;
    border-bottom: 1px solid #303130;
    font-size: 1.1rem;
  }

  .primary-nav .button {
    margin-top: 22px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-card {
    max-width: 720px;
  }

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

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

  .lane-card > p {
    min-height: 0;
  }

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

  .architecture__arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

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

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

  .utility-bar__inner {
    flex-direction: column;
    gap: 0;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .brand img {
    width: 116px;
    height: 47px;
  }

  .brand span {
    display: none;
  }

  .primary-nav {
    inset-block-start: 124px;
    max-height: calc(100vh - 124px);
  }

  .hero {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }

  .hero__actions,
  .hero__actions .button,
  .cta-panel__actions,
  .cta-panel__actions .button {
    width: 100%;
  }

  .capability-strip span {
    flex-basis: 50%;
  }

  .section {
    padding-block: 76px;
  }

  .section--intro {
    padding-block: 62px;
  }

  .intro-grid,
  .intake-grid,
  .booking-grid,
  .trust-intro,
  .content-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .workflow,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .workflow__item:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .workflow__item {
    grid-template-columns: 54px 1fr;
    min-height: 0;
    padding: 28px 22px;
  }

  .workflow__number {
    font-size: 1.75rem;
  }

  .notice {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

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

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

  .control-card h3 {
    margin-top: 26px;
  }

  .trust-library {
    padding: 28px 20px;
  }

  .document-item {
    grid-template-columns: 1fr;
  }

  .document-item__badge {
    justify-self: start;
  }

  .cta-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__legal {
    flex-direction: column;
  }

  .side-nav {
    position: static;
  }
}

@media (max-width: 500px) {
  .hero-card {
    padding: 28px 22px;
  }

  .capability-strip span {
    flex-basis: 100%;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .booking-frame,
  .site-footer,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 10pt;
  }

  .hero,
  .section--dark,
  .section--trust,
  .section--cta {
    background: #fff !important;
    color: #000 !important;
  }

  .section {
    padding: 30px 0;
  }

  .workflow,
  .lane-grid,
  .timeline-grid,
  .control-grid {
    display: block;
  }

  .workflow__item,
  .lane-card,
  .timeline-card,
  .control-card {
    page-break-inside: avoid;
    margin-bottom: 12px;
    color: #000;
    background: #fff;
    border: 1px solid #bbb;
  }
}
