:root {
  --bs-ink: #102238;
  --bs-navy: #0c2444;
  --bs-blue: #164a78;
  --bs-gold: #f5b94c;
  --bs-gold-soft: #ffe6ad;
  --bs-paper: #f5f0e6;
  --bs-paper-light: #fbf8f1;
  --bs-white: #fffdf8;
  --bs-muted: #657181;
  --bs-line: rgba(16, 34, 56, 0.15);
  --bs-line-light: rgba(255, 255, 255, 0.18);
  --bs-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --bs-sans: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
}

.bs-page,
.bs-page * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.bs-page {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bs-paper-light);
  color: var(--bs-ink);
  font-family: var(--bs-sans);
  font-size: 16px;
  line-height: 1.6;
}

.bs-page a {
  color: inherit;
  text-decoration: none;
}

.bs-page svg {
  display: block;
}

.bs-page h1,
.bs-page h2,
.bs-page h3,
.bs-page p {
  margin: 0;
}

.bs-page button,
.bs-page a,
.bs-page summary {
  -webkit-tap-highlight-color: transparent;
}

.bs-page :focus-visible {
  outline: 3px solid var(--bs-gold);
  outline-offset: 4px;
}

.bs-page .skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--bs-white);
  color: var(--bs-navy);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.bs-page .page-frame {
  width: 100%;
  min-height: 100vh;
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(16, 34, 56, 0.045) 1px),
    var(--bs-paper-light);
  background-size: min(9vw, 128px) 100%;
}

.bs-page .site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--bs-line);
}

.bs-page .site-nav {
  position: static;
  width: min(100% - 48px, 1280px);
  height: auto;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: transparent;
}

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

.bs-page .brand__mark {
  width: 40px;
  height: 40px;
}

.bs-page .brand__mark rect {
  fill: var(--bs-navy);
}

.bs-page .brand__mark path {
  fill: var(--bs-gold);
}

.bs-page .brand__name {
  font-family: var(--bs-serif);
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.bs-page .brand__name em {
  font-weight: 400;
}

.bs-page .site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  margin-left: auto;
}

.bs-page .site-nav__link {
  color: var(--bs-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.bs-page .site-nav__link:hover {
  color: var(--bs-navy);
}

.bs-page .button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: var(--bs-sans);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.bs-page .button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.bs-page .button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.8rem;
}

.bs-page .button--nav {
  margin-left: 6px;
  border-color: var(--bs-navy);
  color: var(--bs-navy);
}

.bs-page .button--nav:hover {
  background: var(--bs-navy);
  color: var(--bs-white);
}

.bs-page .button--primary {
  background: var(--bs-navy);
  color: var(--bs-white);
  box-shadow: 0 12px 30px rgba(12, 36, 68, 0.14);
}

.bs-page .button--primary:hover {
  background: var(--bs-blue);
}

.bs-page .button--gold {
  background: var(--bs-gold);
  color: var(--bs-navy);
}

.bs-page .button--gold:hover {
  background: var(--bs-gold-soft);
}

.bs-page .intro {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  padding: clamp(68px, 8vw, 118px) 0 clamp(64px, 8vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(58px, 8vw, 118px);
}

.bs-page .eyebrow,
.bs-page .section-kicker {
  color: var(--bs-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.bs-page .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.bs-page .eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--bs-gold);
}

.bs-page .intro h1 {
  max-width: 810px;
  font-family: var(--bs-serif);
  font-size: clamp(3.45rem, 6.6vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.bs-page .intro__lede {
  max-width: 650px;
  margin-top: 30px;
  color: #4f5e6e;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.bs-page .intro__actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.bs-page .intro__note {
  margin-top: 28px;
  color: var(--bs-muted);
  font-size: 0.76rem;
}

.bs-page .campaign-disclosure {
  max-width: 670px;
  margin-top: 18px;
  padding-left: 16px;
  border-left: 2px solid var(--bs-gold);
  color: #667382;
  font-size: 0.76rem;
  line-height: 1.65;
}

.bs-page .growth-map {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bs-navy);
  color: var(--bs-white);
  box-shadow: 28px 34px 0 var(--bs-gold-soft);
}

.bs-page .growth-map::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(245, 185, 76, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(245, 185, 76, 0.05), 0 0 0 84px rgba(245, 185, 76, 0.04);
}

.bs-page .growth-map__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--bs-line-light);
}

.bs-page .growth-map__head p {
  font-family: var(--bs-serif);
  font-size: 1.55rem;
  line-height: 1;
}

.bs-page .growth-map__head span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}

.bs-page .growth-map__steps {
  position: relative;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.bs-page .growth-map__steps li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--bs-line-light);
}

.bs-page .growth-map__steps li > span {
  color: var(--bs-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.bs-page .growth-map__steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.bs-page .growth-map__steps p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  line-height: 1.55;
}

.bs-page .growth-map__footer {
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
}

.bs-page .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bs-gold);
  box-shadow: 0 0 0 4px rgba(245, 185, 76, 0.13);
}

.bs-page .signal-strip {
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--bs-line);
  border-bottom: 1px solid var(--bs-line);
  background: rgba(255, 253, 248, 0.72);
}

.bs-page .signal-strip > div {
  min-height: 120px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--bs-line);
}

.bs-page .signal-strip > div:first-child {
  border-left: 1px solid var(--bs-line);
}

.bs-page .signal-strip span {
  color: var(--bs-muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bs-page .signal-strip strong {
  font-family: var(--bs-serif);
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  font-weight: 500;
  line-height: 1.2;
}

.bs-page .section-shell {
  width: min(100% - 48px, 1160px);
  margin: 0 auto;
  padding: clamp(88px, 10vw, 148px) 0;
}

.bs-page .handoff {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(54px, 9vw, 120px);
}

.bs-page .handoff__intro h2 {
  margin-top: 18px;
  font-family: var(--bs-serif);
  font-size: clamp(2.6rem, 5vw, 4.65rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.bs-page .handoff__intro > p:last-child {
  max-width: 500px;
  margin-top: 24px;
  color: var(--bs-muted);
  font-size: 0.95rem;
}

.bs-page .outline-card {
  border: 1px solid var(--bs-line);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 18px 20px 0 var(--bs-gold-soft);
}

.bs-page .outline-card__head {
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--bs-line);
}

.bs-page .outline-card__head span {
  color: var(--bs-blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bs-page .outline-card__head strong {
  font-family: var(--bs-serif);
  font-size: 1rem;
  font-weight: 500;
}

.bs-page .outline-card ul {
  margin: 0;
  padding: 0 26px;
  list-style: none;
}

.bs-page .outline-card li {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 14px;
  border-bottom: 1px solid var(--bs-line);
}

.bs-page .outline-card li span {
  color: var(--bs-gold);
  font-size: 0.7rem;
  font-weight: 700;
}

.bs-page .outline-card li p {
  font-family: var(--bs-serif);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.25;
}

.bs-page .outline-card__action {
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.bs-page .outline-card__action p {
  max-width: 30ch;
  color: var(--bs-muted);
  font-size: 0.76rem;
}

.bs-page .outline-card__action .button {
  flex: 0 0 auto;
}

.bs-page .section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.3fr);
  column-gap: clamp(44px, 8vw, 120px);
  row-gap: 20px;
}

.bs-page .section-intro .section-kicker {
  grid-row: span 2;
  padding-top: 13px;
}

.bs-page .section-intro h2,
.bs-page .fit-section h2,
.bs-page .contact-section h2 {
  font-family: var(--bs-serif);
  font-size: clamp(2.6rem, 5vw, 4.65rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.bs-page .section-intro > p:last-child {
  max-width: 650px;
  color: var(--bs-muted);
  font-size: 1rem;
}

.bs-page .capability-list {
  margin-top: 72px;
  border-top: 1px solid var(--bs-line);
}

.bs-page .capability {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 32px;
  align-items: start;
  gap: 24px;
  border-bottom: 1px solid var(--bs-line);
}

.bs-page .capability__number {
  color: var(--bs-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.bs-page .capability > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 6vw, 88px);
}

.bs-page .capability h3 {
  font-family: var(--bs-serif);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.1;
}

.bs-page .capability p {
  max-width: 56ch;
  color: var(--bs-muted);
  font-size: 0.93rem;
}

.bs-page .capability__glyph {
  color: var(--bs-gold);
  font-family: var(--bs-serif);
  font-size: 1.6rem;
}

.bs-page .fit-section {
  padding: clamp(88px, 9vw, 132px) max(24px, calc((100vw - 1160px) / 2));
  background: var(--bs-blue);
  color: var(--bs-white);
}

.bs-page .section-kicker--light {
  color: var(--bs-gold);
}

.bs-page .fit-section__heading {
  max-width: 840px;
}

.bs-page .fit-section h2 {
  margin-top: 20px;
}

.bs-page .fit-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--bs-line-light);
  border-bottom: 1px solid var(--bs-line-light);
}

.bs-page .fit-grid article {
  padding: 34px 34px 36px 0;
}

.bs-page .fit-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--bs-line-light);
}

.bs-page .fit-grid article > span {
  color: var(--bs-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.bs-page .fit-grid h3 {
  margin-top: 46px;
  font-family: var(--bs-serif);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
}

.bs-page .fit-grid p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.bs-page .section-intro--compact {
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1.4fr);
}

.bs-page .process__steps {
  max-width: 920px;
  margin: 78px 0 0 auto;
  padding: 0;
  list-style: none;
}

.bs-page .process__steps li {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding-bottom: 58px;
}

.bs-page .process__steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 42px;
  bottom: 0;
  left: 20px;
  width: 1px;
  background: var(--bs-line);
}

.bs-page .process__marker {
  position: relative;
  z-index: 1;
}

.bs-page .process__marker span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bs-line);
  border-radius: 50%;
  background: var(--bs-paper-light);
  color: var(--bs-blue);
  font-size: 0.75rem;
  font-weight: 700;
}

.bs-page .process__timing {
  margin-bottom: 8px;
  color: var(--bs-blue);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bs-page .process__steps h3 {
  font-family: var(--bs-serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.1;
}

.bs-page .process__steps li > div:last-child > p:last-child {
  max-width: 660px;
  margin-top: 14px;
  color: var(--bs-muted);
  font-size: 0.92rem;
}

.bs-page .principles__grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bs-page .principles__grid article {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--bs-line);
  background: rgba(255, 253, 248, 0.58);
}

.bs-page .principles__grid svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--bs-gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.bs-page .principles__grid h3 {
  margin-top: 64px;
  font-family: var(--bs-serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.bs-page .principles__grid p {
  margin-top: 12px;
  color: var(--bs-muted);
  font-size: 0.86rem;
}

.bs-page .faq {
  padding-top: 10px;
}

.bs-page .faq__list {
  max-width: 920px;
  margin: 70px 0 0 auto;
  border-top: 1px solid var(--bs-line);
}

.bs-page .faq details {
  border-bottom: 1px solid var(--bs-line);
}

.bs-page .faq summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--bs-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2;
}

.bs-page .faq summary::-webkit-details-marker {
  display: none;
}

.bs-page .faq summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 2px;
  color: var(--bs-blue);
  font-family: var(--bs-sans);
  font-size: 1.5rem;
  font-weight: 400;
}

.bs-page .faq details[open] summary::after {
  content: "−";
}

.bs-page .faq details p {
  max-width: 720px;
  padding: 0 48px 26px 0;
  color: var(--bs-muted);
  font-size: 0.92rem;
}

.bs-page .contact-section {
  margin-top: 100px;
  padding: clamp(70px, 8vw, 110px) max(24px, calc((100vw - 1160px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
  background: var(--bs-blue);
  color: var(--bs-white);
}

.bs-page .contact-section h2 {
  max-width: 760px;
  margin-top: 18px;
}

.bs-page .contact-section > div:first-child > p:last-child {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.bs-page .contact-section__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

.bs-page .contact-section__brand {
  align-self: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.77rem;
}

.bs-page .booking-section {
  scroll-margin-top: 24px;
}

.bs-page .cal-embed-shell {
  height: 760px;
  margin-top: 58px;
  overflow: hidden;
  border: 1px solid var(--bs-line);
  border-radius: 8px;
  background: var(--bs-white);
  box-shadow: 18px 20px 0 var(--bs-gold-soft);
}

.bs-page .cal-embed {
  width: 100%;
  height: 100%;
  overflow: auto;
  background: var(--bs-white);
}

.bs-page .booking-fallback {
  margin-top: 24px;
  color: var(--bs-muted);
  font-size: 0.82rem;
}

.bs-page .booking-fallback a {
  color: var(--bs-navy);
  font-weight: 700;
  text-underline-offset: 3px;
}

.bs-page .site-footer {
  min-height: auto;
  padding: 34px max(24px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  border-top: 0;
  background: #091c35;
  color: rgba(255, 255, 255, 0.65);
}

.bs-page .brand--footer {
  color: var(--bs-white);
}

.bs-page .brand--footer .brand__mark rect {
  fill: rgba(255, 255, 255, 0.08);
}

.bs-page .site-footer__details,
.bs-page .site-footer__legal {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.68rem;
}

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

@media (max-width: 1040px) {
  .bs-page .site-nav__links {
    display: none;
  }

  .bs-page .intro {
    grid-template-columns: 1fr;
  }

  .bs-page .growth-map {
    width: min(100% - 24px, 650px);
    margin-left: 0;
  }

  .bs-page .signal-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .bs-page .signal-strip > div:nth-child(2) {
    border-right: 0;
  }

  .bs-page .signal-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--bs-line);
  }

  .bs-page .contact-section,
  .bs-page .handoff {
    grid-template-columns: 1fr;
  }

  .bs-page .contact-section__actions {
    width: min(100%, 390px);
  }

  .bs-page .outline-card {
    width: min(100% - 18px, 680px);
  }

  .bs-page .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .bs-page .site-footer__legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .bs-page .page-frame {
    background-size: 72px 100%;
  }

  .bs-page .site-nav,
  .bs-page .intro,
  .bs-page .section-shell {
    width: min(100% - 36px, 1280px);
  }

  .bs-page .site-nav {
    padding: 16px 0;
  }

  .bs-page .brand__mark {
    width: 36px;
    height: 36px;
  }

  .bs-page .brand__name {
    font-size: 1.05rem;
  }

  .bs-page .button--nav {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  .bs-page .button--nav svg {
    display: none;
  }

  .bs-page .intro {
    padding-top: 56px;
    gap: 52px;
  }

  .bs-page .intro h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .bs-page .intro__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .bs-page .growth-map {
    width: calc(100% - 14px);
    padding: 22px;
    box-shadow: 14px 16px 0 var(--bs-gold-soft);
  }

  .bs-page .signal-strip {
    padding: 0 18px;
    grid-template-columns: 1fr;
  }

  .bs-page .signal-strip > div,
  .bs-page .signal-strip > div:first-child {
    min-height: 96px;
    padding: 20px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--bs-line);
    border-left: 1px solid var(--bs-line);
  }

  .bs-page .signal-strip > div:last-child {
    border-bottom: 0;
  }

  .bs-page .section-intro,
  .bs-page .section-intro--compact {
    grid-template-columns: 1fr;
  }

  .bs-page .section-intro .section-kicker {
    grid-row: auto;
    padding-top: 0;
  }

  .bs-page .section-intro h2,
  .bs-page .fit-section h2,
  .bs-page .contact-section h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .bs-page .capability-list {
    margin-top: 50px;
  }

  .bs-page .outline-card {
    width: calc(100% - 12px);
    box-shadow: 12px 14px 0 var(--bs-gold-soft);
  }

  .bs-page .outline-card__head,
  .bs-page .outline-card__action {
    align-items: flex-start;
    flex-direction: column;
  }

  .bs-page .outline-card__head,
  .bs-page .outline-card ul,
  .bs-page .outline-card__action {
    padding-right: 20px;
    padding-left: 20px;
  }

  .bs-page .outline-card__action .button {
    width: 100%;
  }

  .bs-page .capability {
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    gap: 12px;
  }

  .bs-page .capability > div {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bs-page .fit-section,
  .bs-page .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .bs-page .fit-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .bs-page .fit-grid article,
  .bs-page .fit-grid article + article {
    padding: 28px 0;
    border-left: 0;
  }

  .bs-page .fit-grid article + article {
    border-top: 1px solid var(--bs-line-light);
  }

  .bs-page .fit-grid h3 {
    margin-top: 24px;
  }

  .bs-page .process__steps,
  .bs-page .faq__list {
    margin-top: 52px;
  }

  .bs-page .process__steps li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .bs-page .principles__grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .bs-page .principles__grid article {
    min-height: 220px;
  }

  .bs-page .principles__grid h3 {
    margin-top: 44px;
  }

  .bs-page .contact-section {
    margin-top: 60px;
  }

  .bs-page .cal-embed-shell {
    height: 700px;
    margin-top: 44px;
    box-shadow: 10px 12px 0 var(--bs-gold-soft);
  }

  .bs-page .site-footer {
    padding: 34px 18px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bs-page .site-footer__details,
  .bs-page .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .bs-page .site-footer__legal {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .bs-page .site-nav {
    gap: 12px;
  }

  .bs-page .site-header .brand__name em {
    display: none;
  }

  .bs-page .button--nav {
    flex: 0 0 auto;
  }
}

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

  .bs-page *,
  .bs-page *::before,
  .bs-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
