:root {
  --red: #b63227;
  --ink: #302a28;
  --paper: #f8f6f2;
  --line: #d8d3cc;
  --muted: #736d68;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    15px/1.45 "DM Sans",
    Arial,
    sans-serif;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -48px;
  z-index: 20;
  background: #fff;
  color: #000;
  padding: 8px;
}
.skip-link:focus {
  top: 12px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.site-header {
  height: 72px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 3vw;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #eee;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.78;
}
.brand img,
footer img {
  width: 32px;
  height: 32px;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.site-nav > a:not(.nav-cta):hover {
  color: var(--red);
}
.language-switch {
  border: 0;
  background: none;
  padding: 5px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}
.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 12px 16px;
}
.menu-toggle {
  display: none;
}
.hero {
  height: min(690px, calc(100vh - 72px));
  min-height: 540px;
  position: relative;
  overflow: hidden;
  background: #deddd8;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.68) brightness(1.13);
}
.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.58) 38%,
    rgba(255, 255, 255, 0.08) 70%
  );
}
.hero h1 {
  position: absolute;
  top: 7%;
  left: 3vw;
  right: 3vw;
  margin: 0;
  color: var(--red);
  font:
    600 clamp(44px, 6.2vw, 98px)/0.88 "Barlow Condensed",
    sans-serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
}
.hero h1 span:nth-child(2) {
  text-align: right;
}
.hero h1 span:nth-child(3) {
  text-align: right;
}
.hero-bottom {
  position: absolute;
  left: 3vw;
  right: 3vw;
  bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.proof {
  max-width: 200px;
  margin: 0;
  font-size: 11px;
}
.hero-actions {
  display: flex;
  gap: 6px;
}
.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 10px 18px;
  font:
    600 13px "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.07em;
  cursor: pointer;
}
.primary {
  background: var(--red);
  color: #fff;
}
.primary:hover {
  background: #8f211a;
}
.quiet {
  background: #fff;
}
.quiet:hover {
  background: #eae6df;
}
.services {
  display: grid;
  grid-template-columns: 34% 66%;
  background: #fff;
}
.service-rail {
  background: var(--red);
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}
.rail-intro {
  padding: 42px 28px 24px;
}
.rail-intro p,
.kicker {
  font:
    600 12px "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.rail-intro h2 {
  font:
    500 28px/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.rail-intro span {
  font-size: 12px;
  line-height: 1.4;
  display: block;
  max-width: 290px;
}
.tabs {
  margin-top: auto;
}
.service-tab {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
  color: #fff;
  padding: 18px 28px;
  font:
    600 15px "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.service-tab.active,
.service-tab:hover {
  background: #96271f;
}
.service-tab b {
  font: 400 23px/1 Arial;
}
.service-stage {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: #ddd;
}
.service-stage > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 0.25s ease,
    transform 0.35s ease;
}
.stage-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(500px, 72%);
  padding: 27px 30px 30px;
  background: rgba(48, 42, 40, 0.9);
  color: #fff;
}
.stage-copy p {
  margin: 0 0 10px;
}
.stage-copy #service-number {
  font:
    600 11px "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.12em;
  color: #e5a39e;
}
.stage-copy h3 {
  font:
    600 39px/0.95 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.stage-copy #service-description {
  max-width: 390px;
  font-size: 13px;
}
.stage-copy .button {
  margin-top: 8px;
}
.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 500px;
  background: #eeeae4;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
}
.about-copy {
  padding: clamp(48px, 8vw, 110px) 8vw 52px 5vw;
}
.about h2,
.locations h2,
.contact h2,
.faq h2,
.resources h2 {
  font:
    500 clamp(40px, 5vw, 70px)/0.91 "Barlow Condensed",
    sans-serif;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.about-copy > p:not(.kicker),
.locations p:not(.kicker),
.contact-heading > p:not(.kicker) {
  max-width: 390px;
  color: #5d5753;
}
.inline-link,
.whatsapp-link {
  display: inline-block;
  border-bottom: 2px solid var(--red);
  padding-bottom: 5px;
  margin-top: 25px;
  font:
    600 14px "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.08em;
}
.facility-strip {
  padding: 28px 3vw 31px;
  background: #fff;
  border-block: 1px solid var(--line);
}
.facility-strip p {
  margin: 0 0 18px;
  font: 600 12px "Barlow Condensed";
  letter-spacing: 0.1em;
  color: var(--muted);
}
.facility-strip div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font:
    500 clamp(22px, 3.1vw, 43px)/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.locations {
  background: #f0ede7;
  padding: 85px 9vw;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 65px;
  align-items: center;
}
.map {
  position: relative;
}
.map svg {
  width: 100%;
  height: auto;
  fill: #d8d3cb;
}
.map span {
  position: absolute;
  left: 48%;
  top: 47%;
  padding: 5px 7px;
  background: var(--red);
  color: #fff;
  font: 600 11px "Barlow Condensed";
  letter-spacing: 0.1em;
}
.contact {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 7vw;
  background: #302a28;
  color: #fff;
  padding: 80px 9vw;
}
.contact .kicker {
  color: #e2a49e;
}
.contact-heading > p:not(.kicker) {
  color: #ddd5d0;
}
.contact-heading small {
  display: block;
  color: #c4b8b0;
  font-size: 11px;
  margin-top: 11px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  align-content: start;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  color: #fff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #8a807b;
  padding: 8px 0;
  border-radius: 0;
  outline: none;
}
.contact-form option {
  color: #333;
}
.full {
  grid-column: 1/-1;
}
.contact-form .button {
  justify-self: start;
  margin-top: 8px;
}
.faq {
  padding: 82px 9vw;
  background: #fff;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 7vw;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
summary {
  cursor: pointer;
  list-style: none;
  font:
    500 25px/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
  padding-right: 28px;
  position: relative;
}
summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--red);
}
details[open] summary::after {
  content: "−";
}
details p {
  max-width: 570px;
  margin: 14px 35px 0 0;
  color: #655e59;
}
.resources {
  padding: 78px 3vw 85px;
  background: #eeeae4;
}
.resources-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 0 6vw 36px;
}
.resources-head h2 {
  margin-bottom: 0;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #c9c1ba;
}
.resource-grid a {
  min-height: 250px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.resource-grid a:hover {
  background: var(--red);
  color: #fff;
}
.resource-grid span,
.resource-grid b {
  font: 600 12px "Barlow Condensed";
  letter-spacing: 0.1em;
}
.resource-grid h3 {
  font: 500 32px/0.98 "Barlow Condensed";
  text-transform: uppercase;
  margin: 40px 0 auto;
}
.resource-grid b {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  align-self: start;
}
footer {
  padding: 56px 3vw 24px;
  background: #302a28;
  color: #fff;
  min-height: 350px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-content: space-between;
}
footer > div {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 600 15px "Barlow Condensed";
  letter-spacing: 0.08em;
}
footer h2 {
  grid-column: 1/-1;
  font: 500 clamp(44px, 7vw, 96px)/0.85 "Barlow Condensed";
  letter-spacing: -0.025em;
  margin: 45px 0;
}
footer > div:last-child {
  grid-column: 1/-1;
  justify-content: space-between;
  color: #b8aca6;
  font-size: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
@media (max-width: 700px) {
  .site-header {
    height: 62px;
    padding: 0 18px;
  }
  .site-nav {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a,
  .site-nav button {
    padding: 14px 18px;
    border-top: 1px solid #eee;
  }
  .site-nav .nav-cta {
    margin: 0;
  }
  .menu-toggle {
    margin-left: auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    background: none;
  }
  .menu-toggle i {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
  }
  .site-header .language-switch {
    order: 5;
    text-align: left;
  }
  .hero {
    height: 590px;
    min-height: 0;
  }
  .hero-image {
    object-position: 56% center;
  }
  .hero-wash {
    background: linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.93),
      rgba(255, 255, 255, 0.27)
    );
  }
  .hero h1 {
    top: 36px;
    left: 18px;
    right: 18px;
    font-size: 48px;
  }
  .hero h1 span:nth-child(2),
  .hero h1 span:nth-child(3) {
    text-align: left;
  }
  .hero-bottom {
    left: 18px;
    right: 18px;
    bottom: 20px;
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .proof {
    max-width: 230px;
  }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .button {
    flex: 1;
    padding-inline: 7px;
  }
  .services {
    display: block;
  }
  .service-rail {
    min-height: 0;
  }
  .rail-intro {
    padding: 35px 20px 25px;
  }
  .rail-intro h2 {
    font-size: 28px;
  }
  .tabs {
    display: flex;
    overflow: auto;
  }
  .service-tab {
    min-width: 195px;
    min-height: 70px;
    padding: 15px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
  }
  .service-stage {
    min-height: 450px;
  }
  .stage-copy {
    width: 88%;
    padding: 21px 20px 24px;
  }
  .stage-copy h3 {
    font-size: 34px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-photo {
    height: 300px;
  }
  .about-copy {
    padding: 50px 20px;
  }
  .facility-strip {
    padding: 23px 20px;
  }
  .facility-strip div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    font-size: 28px;
  }
  .locations {
    padding: 55px 20px;
    display: block;
  }
  .locations .map {
    margin-top: 35px;
  }
  .contact {
    display: block;
    padding: 54px 20px;
  }
  .contact-form {
    margin-top: 42px;
    gap: 18px;
  }
  .faq {
    padding: 55px 20px;
    display: block;
  }
  .faq-list {
    margin-top: 35px;
  }
  .resources {
    padding: 56px 20px;
  }
  .resources-head {
    display: block;
    margin: 0 0 28px;
  }
  .resource-grid {
    grid-template-columns: 1fr;
  }
  .resource-grid a {
    min-height: 190px;
  }
  .resource-grid h3 {
    font-size: 29px;
    margin: 30px 0 auto;
  }
  footer {
    padding: 44px 20px 20px;
    min-height: 300px;
    display: block;
  }
  footer h2 {
    font-size: 51px;
    margin: 60px 0;
  }
  footer > div:last-child {
    display: flex;
    justify-content: space-between;
  }
  .contact-heading h2,
  .faq h2,
  .resources h2 {
    font-size: 49px;
  }
}
.site-header {
  height: 76px;
  padding: 0 2.5vw;
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78),
    rgba(255, 255, 255, 0.08)
  );
}
.site-nav {
  gap: 2px;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.site-nav > a:not(.nav-cta),
.language-switch {
  background: rgba(248, 248, 248, 0.76);
  padding: 13px 20px;
}
.nav-cta {
  padding: 13px 20px;
}
.hero {
  height: max(700px, 100vh);
  min-height: 700px;
}
.hero-image {
  filter: saturate(0.75) brightness(0.88) contrast(1.05);
}
.hero-wash {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.36) 34%,
    rgba(255, 255, 255, 0.05) 56%,
    rgba(255, 255, 255, 0.18) 100%
  );
}
.hero h1 {
  top: 17%;
  left: 2.5vw;
  right: 2.5vw;
  font-size: clamp(57px, 5.6vw, 90px);
  line-height: 0.95;
}
.hero h1 span:first-child {
  max-width: 43%;
}
.hero h1 span:nth-child(2),
.hero h1 span:nth-child(3) {
  margin-left: 45%;
  text-align: right;
}
.hero-bottom {
  left: 2.5vw;
  right: 2.5vw;
}
.proof {
  max-width: 220px;
  font-size: 13px;
}
.proof strong {
  display: block;
  margin-top: 15px;
  color: var(--red);
  font: 600 12px "Barlow Condensed";
  letter-spacing: 0.09em;
}
.button {
  min-height: 49px;
  padding: 11px 22px;
  font-size: 14px;
}
.quiet {
  border: 1px solid #5d5451;
}
.services {
  grid-template-columns: 40% 60%;
}
.service-rail,
.service-stage {
  min-height: 590px;
}
.rail-intro {
  padding: 44px 32px 26px;
  min-height: 255px;
}
.rail-intro h2 {
  font-size: 30px;
  max-width: 380px;
}
.service-tab {
  padding: 18px 32px;
  font-size: 16px;
}
@media (max-width: 700px) {
  .site-header {
    background: #fff;
  }
  .site-nav a,
  .site-nav button {
    background: #fff !important;
    padding: 14px 18px !important;
  }
  .hero {
    height: 590px;
    min-height: 0;
  }
  .hero h1 {
    top: 86px;
    font-size: 48px;
  }
  .hero h1 span:first-child {
    max-width: none;
  }
  .hero h1 span:nth-child(2),
  .hero h1 span:nth-child(3) {
    margin-left: 0;
    text-align: left;
  }
  .hero-bottom {
    left: 18px;
    right: 18px;
    bottom: 20px;
    gap: 14px;
  }
  .proof strong {
    margin-top: 7px;
  }
  .rail-intro {
    min-height: 0;
  }
}
html,
body {
  overflow-x: hidden;
}
.hero h1 {
  max-width: 95vw;
}
.services,
.service-rail,
.service-stage {
  min-width: 0;
}
.map {
  padding-bottom: 45px;
}
.map .map-pin {
  position: absolute;
  left: 48%;
  top: 47%;
  padding: 5px 7px;
  background: var(--red);
  color: #fff;
  font: 600 11px "Barlow Condensed";
  letter-spacing: 0.1em;
}
.map-coverage {
  position: absolute;
  left: 7%;
  bottom: 0;
  display: grid;
  grid-template-columns: 30px auto;
  column-gap: 10px;
  align-items: center;
  color: var(--ink);
  max-width: 300px;
}
.map-coverage i {
  display: block;
  height: 1px;
  background: var(--red);
}
.map-coverage strong {
  font: 600 13px "Barlow Condensed";
  letter-spacing: 0.09em;
}
.map-coverage small {
  grid-column: 2;
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
  margin-top: 3px;
}
@media (max-width: 700px) {
  .map {
    padding-bottom: 52px;
  }
  .map-coverage {
    left: 0;
    max-width: 265px;
  }
  .map-coverage strong {
    font-size: 12px;
  }
}
.approach-panel {
  padding: 82px 9vw;
  background: #f0ede7;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 7vw;
}
.approach-head h2 {
  font: 500 clamp(40px, 5vw, 70px)/0.91 "Barlow Condensed";
  text-transform: uppercase;
  margin: 0 0 24px;
}
.approach-head > p:not(.kicker) {
  max-width: 360px;
  color: var(--muted);
}
.approach-steps {
  border-top: 1px solid var(--line);
}
.approach-steps article {
  display: grid;
  grid-template-columns: 55px 1fr 1.3fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.approach-steps span {
  color: var(--red);
  font: 600 15px "Barlow Condensed";
}
.approach-steps h3 {
  margin: 0;
  font: 500 26px/1 "Barlow Condensed";
  text-transform: uppercase;
}
.approach-steps p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 700px) {
  .approach-panel {
    padding: 55px 20px;
    display: block;
  }
  .approach-steps {
    margin-top: 35px;
  }
  .approach-steps article {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }
  .approach-steps p {
    grid-column: 2;
  }
  .approach-steps h3 {
    font-size: 24px;
  }
}
.approach-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 610px;
  background: #302a28;
  color: #fff;
}
.showcase-image {
  position: relative;
  overflow: hidden;
}
.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.72);
}
.showcase-image span {
  position: absolute;
  left: 26px;
  bottom: 25px;
  font: 600 12px "Barlow Condensed";
  letter-spacing: 0.1em;
}
.showcase-copy {
  padding: 75px 8vw 55px 5vw;
}
.showcase-copy .kicker {
  color: #e2a49e;
}
.showcase-copy h2 {
  margin: 0 0 23px;
  font: 500 clamp(48px, 5.4vw, 78px)/0.85 "Barlow Condensed";
  letter-spacing: -0.02em;
}
.showcase-copy h2 em {
  color: #e4a59d;
  font-style: normal;
}
.showcase-copy > p:not(.kicker) {
  max-width: 380px;
  color: #ddd5d0;
}
.showcase-copy ul {
  list-style: none;
  padding: 18px 0;
  margin: 26px 0;
  border-block: 1px solid #756a65;
}
.showcase-copy li {
  padding: 10px 0;
  font-size: 14px;
}
.showcase-copy li + li {
  border-top: 1px solid #5d534f;
}
@media (max-width: 700px) {
  .approach-showcase {
    grid-template-columns: 1fr;
  }
  .showcase-image {
    height: 310px;
  }
  .showcase-copy {
    padding: 50px 20px;
  }
  .showcase-copy h2 {
    font-size: 57px;
  }
}
.faq {
  align-items: start;
}
.faq-intro h2 {
  margin-bottom: 22px;
}
.faq-intro > p:not(.kicker) {
  max-width: 330px;
  color: var(--muted);
  margin: 0;
}
.faq-list {
  margin-top: 0;
}
@media (max-width: 700px) {
  .faq-intro .inline-link {
    margin-bottom: 34px;
  }
}
.contact-heading::after {
  content: "CLIENT NOTE\A\A “The process gave our team a much clearer picture of what to prioritize and how to keep routines consistent.”\A\A — Facilities operations leader";
  white-space: pre-line;
  display: block;
  max-width: 430px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid #736762;
  color: #fff;
  font:
    17px/1.38 "DM Sans",
    sans-serif;
}
.contact-heading::first-line {
  color: #e4a59d;
  font: 600 12px "Barlow Condensed";
  letter-spacing: 0.1em;
}
.contact {
  background: #a82f22;
  padding: 78px 3.5vw;
  gap: 5vw;
}
.contact-form {
  background: #fff;
  color: #302a28;
  border-radius: 22px;
  padding: 42px;
  gap: 24px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  color: #302a28;
  border: 2px solid #302a28;
  padding: 12px;
  background: #fff;
}
.contact-form .button {
  width: 100%;
  background: #fde1cf;
  color: #b63227;
  font-size: 20px;
}
.client-proof {
  max-width: 560px;
}
.proof-avatars img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  margin-right: -12px;
  border: 3px solid #a82f22;
  border-radius: 50%;
}
.client-proof blockquote {
  font-size: 24px;
  min-height: 112px;
}
.review-dots {
  display: flex;
  gap: 10px;
  margin-top: 34px;
}
.review-dots button {
  width: 15px;
  height: 15px;
  border: 0;
  border-radius: 50%;
  background: #d38a83;
  cursor: pointer;
}
.review-dots button.active {
  background: #fff;
}
@media (max-width: 700px) {
  body:not(:has(.menu-toggle)) .site-header {
    height: auto;
    min-height: 62px;
    background: #fff;
    position: relative;
    padding: 12px 18px;
    align-items: flex-start;
  }
  body:not(:has(.menu-toggle)) .site-nav {
    position: static;
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    justify-content: flex-end;
    border: 0;
    background: transparent;
  }
  body:not(:has(.menu-toggle)) .site-nav a {
    padding: 7px 9px !important;
    background: transparent !important;
    border: 0;
    font-size: 12px;
  }
  body:not(:has(.menu-toggle)) .site-nav .nav-cta {
    background: var(--red) !important;
    color: #fff;
  }
  body:not(:has(.menu-toggle)) .hero {
    min-height: 540px;
  }
  body:not(:has(.menu-toggle)) .hero h1 {
    top: 15%;
    font-size: 44px;
  }
  body:not(:has(.menu-toggle)) .contact {
    padding-top: 54px;
  }
}
@media (max-width: 700px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form label {
    grid-column: 1/-1;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    max-width: 100%;
  }
}
.services .service-stage {
  background: #ddd
    url("assets/images/procedure-review.webp")
    center/cover no-repeat;
}
.faq {
  padding: 66px 9vw 60px;
  min-height: 0;
}
.faq-intro h2 {
  font-size: clamp(42px, 4.3vw, 62px);
}
.resources {
  padding: 62px 3vw 72px;
  background: #fde1cf;
}
.resources-head {
  display: block;
  text-align: center;
  margin: 0 auto 38px;
}
.resources-head .kicker {
  margin-bottom: 10px;
}
.resources-head h2 {
  font-size: clamp(42px, 5vw, 68px);
}
.resource-grid {
  max-width: 1180px;
  margin: auto;
  gap: 28px;
  background: none;
}
.resource-grid a {
  min-height: 390px;
  padding: 0 0 22px;
  background: transparent;
}
.resource-grid a::before {
  content: "";
  display: block;
  height: 210px;
  background: center/cover no-repeat;
  border-radius: 7px;
}
.resource-grid a:nth-child(1)::before {
  background-image: url("assets/images/clinical-guidance.webp");
}
.resource-grid a:nth-child(2)::before {
  background-image: url("assets/images/facility-workplace.webp");
}
.resource-grid a:nth-child(3)::before {
  background-image: url("assets/images/clinical-facility.webp");
}
.resource-grid span {
  margin-top: 18px;
}
.resource-grid h3 {
  margin: 16px 0 auto;
  font-size: 29px;
}
.resource-grid a:hover {
  background: transparent;
  color: var(--ink);
}
@media (max-width: 700px) {
  .faq {
    padding: 52px 20px;
  }
  .resources {
    padding: 52px 20px;
  }
  .resource-grid {
    gap: 22px;
  }
  .resource-grid a {
    min-height: 330px;
  }
  .resource-grid a::before {
    height: 180px;
  }
}
.contact-heading::after {
  display: none;
}
.client-proof {
  max-width: 430px;
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid #736762;
}
.proof-label {
  margin: 0 0 12px;
  color: #e4a59d;
  font: 600 12px "Barlow Condensed";
  letter-spacing: 0.1em;
}
.proof-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatars {
  display: flex;
}
.proof-avatars span {
  width: 32px;
  height: 32px;
  margin-right: -7px;
  border: 2px solid #302a28;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e9d3c4;
  color: #302a28;
  font: 600 12px "Barlow Condensed";
}
.proof-rating b {
  display: block;
  color: #f5bf64;
  letter-spacing: 2px;
  font-size: 15px;
}
.proof-rating small {
  font-size: 11px;
  color: #d9ccc5;
}
.client-proof blockquote {
  margin: 17px 0 9px;
  font-size: 16px;
  line-height: 1.4;
}
.client-proof cite {
  font-size: 12px;
  color: #c9bdb6;
  font-style: normal;
}
.hero h1 {
  top: 19%;
  max-width: min(620px, 55vw);
}
.hero h1 span:first-child {
  max-width: none;
}
.hero h1 span:nth-child(2),
.hero h1 span:nth-child(3) {
  margin-left: 0;
  text-align: left;
}

/* Inner-page system: follows the same image-led, editorial rhythm as the reference site. */
.inner-page .site-header {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid #e3dfd9;
}
.inner-page .site-nav .active {
  color: var(--red);
}
.inner-hero {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: #d9d5cf;
}
.inner-hero > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.64) brightness(0.8);
}
.inner-hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.63) 39%,
    rgba(255, 255, 255, 0.06) 72%
  );
}
.inner-hero-copy {
  position: relative;
  z-index: 1;
  padding: 106px 8vw 80px;
  max-width: 760px;
}
.inner-hero-copy h1 {
  margin: 0;
  font: 600 clamp(58px, 7vw, 112px)/0.84 "Barlow Condensed";
  letter-spacing: -0.035em;
}
.inner-hero-copy > p:last-child {
  max-width: 400px;
  margin: 25px 0 0;
  color: #5d5753;
  font-size: 17px;
}
.service-explorer {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 680px;
  background: #fff;
}
.explorer-rail {
  display: flex;
  flex-direction: column;
  background: var(--red);
  color: #fff;
}
.explorer-rail > div:first-child {
  padding: 58px 48px 36px;
}
.explorer-rail h2 {
  margin: 0 0 23px;
  font: 500 clamp(36px, 4vw, 58px)/0.88 "Barlow Condensed";
  letter-spacing: -0.02em;
}
.explorer-rail p:last-child {
  max-width: 335px;
  margin: 0;
  color: #f7d7d2;
}
.explorer-tabs {
  margin-top: auto;
}
.explorer-tab {
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 20px 48px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  text-align: left;
  font: 600 18px "Barlow Condensed";
  letter-spacing: 0.035em;
  cursor: pointer;
}
.explorer-tab:hover,
.explorer-tab.is-active {
  background: #93251e;
}
.explorer-tab span {
  color: #f0a69e;
  font-size: 13px;
}
.explorer-tab i {
  font-style: normal;
  font: 400 24px/1 Arial;
}
.explorer-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #d3d0cb;
}
.explorer-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.58) brightness(0.8);
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.16s ease,
    transform 0.35s ease;
}
.explorer-stage > img.is-changing {
  opacity: 0.18;
  transform: scale(1.03);
}
.stage-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(42, 36, 33, 0.86),
    rgba(42, 36, 33, 0) 62%
  );
}
.stage-detail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 46px 44px;
  color: #fff;
  max-width: 650px;
}
.stage-detail .kicker {
  color: #e6aaa3;
}
.stage-detail h2 {
  margin: 0 0 14px;
  font: 600 clamp(45px, 5vw, 72px)/0.86 "Barlow Condensed";
  letter-spacing: -0.025em;
}
.stage-detail > p:not(.kicker) {
  max-width: 470px;
  margin: 0;
  font-size: 16px;
}
.stage-detail .button {
  margin-top: 25px;
}
.deliverables-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8vw;
  padding: 110px 9vw;
  background: #f0ede7;
}
.section-lead h2,
.service-path-copy h2 {
  margin: 0 0 26px;
  font: 500 clamp(46px, 5vw, 74px)/0.86 "Barlow Condensed";
  letter-spacing: -0.02em;
}
.section-lead > p:not(.kicker) {
  max-width: 355px;
  color: var(--muted);
  font-size: 16px;
}
.deliverable-list {
  border-top: 1px solid var(--line);
}
.deliverable-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.deliverable-list span,
.service-path-copy li > span {
  color: var(--red);
  font: 600 15px "Barlow Condensed";
}
.deliverable-list h3 {
  margin: 0 0 6px;
  font: 500 29px/1 "Barlow Condensed";
  text-transform: uppercase;
}
.deliverable-list p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
}
.sector-band {
  padding: 32px 3vw 38px;
  background: #fff;
  border-block: 1px solid var(--line);
}
.sector-band .kicker {
  color: var(--muted);
}
.sector-band div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font: 500 clamp(20px, 2.6vw, 38px)/1 "Barlow Condensed";
  white-space: nowrap;
}
.service-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
.service-path-photo {
  min-height: 690px;
}
.service-path-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.66);
}
.service-path-copy {
  padding: 84px 8vw 70px;
  background: #f8f6f2;
}
.service-path-copy > p:not(.kicker) {
  max-width: 355px;
  color: var(--muted);
  font-size: 16px;
}
.service-path-copy ol {
  padding: 0;
  margin: 45px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.service-path-copy li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.service-path-copy h3 {
  margin: 0 0 6px;
  font: 500 29px/1 "Barlow Condensed";
  text-transform: uppercase;
}
.service-path-copy li p {
  margin: 0;
  color: var(--muted);
}
.page-faq {
  padding-block: 105px;
}
.page-faq .faq-intro > p:not(.kicker) {
  max-width: 330px;
  color: var(--muted);
}
.page-faq .inline-link {
  margin-top: 25px;
}
@media (max-width: 700px) {
  .inner-page .site-header {
    height: 62px;
    min-height: 62px;
    padding: 0 18px;
    position: relative;
    align-items: center;
  }
  .inner-page .site-nav {
    top: 62px;
  }
  .inner-page .site-nav a {
    font-size: 15px;
  }
  .inner-hero,
  .inner-hero > img {
    min-height: 480px;
  }
  .inner-hero-copy {
    padding: 70px 20px;
    max-width: 520px;
  }
  .inner-hero-copy h1 {
    font-size: 60px;
  }
  .inner-hero-copy > p:last-child {
    font-size: 15px;
  }
  .service-explorer {
    display: block;
  }
  .explorer-rail > div:first-child {
    padding: 48px 20px 30px;
  }
  .explorer-rail h2 {
    font-size: 46px;
  }
  .explorer-tabs {
    display: flex;
    overflow: auto;
  }
  .explorer-tab {
    min-width: 220px;
    padding: 17px 20px;
    font-size: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
  }
  .explorer-stage {
    min-height: 490px;
  }
  .stage-detail {
    padding: 26px 20px 28px;
    max-width: 100%;
  }
  .stage-detail h2 {
    font-size: 49px;
  }
  .stage-detail > p:not(.kicker) {
    font-size: 15px;
  }
  .deliverables-section {
    display: block;
    padding: 62px 20px;
  }
  .section-lead h2,
  .service-path-copy h2 {
    font-size: 54px;
  }
  .deliverable-list {
    margin-top: 46px;
  }
  .deliverable-list article {
    grid-template-columns: 38px 1fr;
  }
  .deliverable-list h3 {
    font-size: 26px;
  }
  .sector-band {
    padding: 27px 20px;
  }
  .sector-band div {
    overflow: auto;
    font-size: 27px;
    padding-bottom: 3px;
  }
  .service-path {
    display: block;
  }
  .service-path-photo {
    min-height: 330px;
  }
  .service-path-copy {
    padding: 57px 20px;
  }
  .page-faq {
    padding: 60px 20px;
  }
  .page-faq .faq-list {
    margin-top: 40px;
  }
}
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  background: #302a28;
  color: #fff;
}
.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.76);
}
.about-story-copy {
  padding: 84px 8vw 70px;
}
.about-story-copy .kicker {
  color: #e4a59d;
}
.about-story-copy h2,
.page-cta h2 {
  margin: 0 0 25px;
  font: 500 clamp(48px, 5.4vw, 76px)/0.85 "Barlow Condensed";
  letter-spacing: -0.02em;
}
.about-story-copy > p:not(.kicker) {
  max-width: 430px;
  color: #ddd5d0;
  font-size: 16px;
}
.about-story-copy .button {
  margin-top: 18px;
}
.page-cta {
  padding: 105px max(9vw, 24px);
  background: #f8f6f2;
}
.page-cta .kicker {
  color: var(--red);
}
.page-cta p:not(.kicker) {
  max-width: 470px;
  color: var(--muted);
  font-size: 17px;
}
.page-cta .button {
  margin-top: 19px;
}
.resources-expanded .resources-head > p:last-child {
  max-width: 580px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
}
.resources-expanded .resource-grid a > p {
  margin: 17px 0 auto;
  color: var(--muted);
  font-size: 15px;
}
.resources-expanded .resource-grid a:hover > p {
  color: #ffe8de;
}
.resources-expanded .resource-grid a b {
  margin-top: 25px;
}
@media (max-width: 700px) {
  .about-story {
    display: block;
  }
  .about-story-image {
    height: 330px;
  }
  .about-story-copy {
    padding: 58px 20px;
  }
  .about-story-copy h2,
  .page-cta h2 {
    font-size: 56px;
  }
  .page-cta {
    padding: 65px 20px;
  }
  .resources-expanded .resources-head > p:last-child {
    font-size: 15px;
  }
}
.article-hero {
  padding: 88px 9vw 0;
  background: #f8f6f2;
}
.article-hero .kicker {
  color: var(--red);
}
.article-hero h1 {
  max-width: 850px;
  margin: 0;
  font: 600 clamp(58px, 7.2vw, 112px)/0.82 "Barlow Condensed";
  letter-spacing: -0.035em;
}
.article-dek {
  max-width: 560px;
  margin: 28px 0 48px;
  color: var(--muted);
  font-size: 19px;
}
.article-hero img {
  display: block;
  width: 100%;
  height: min(520px, 48vw);
  object-fit: cover;
  filter: saturate(0.66);
}
.article-body {
  display: grid;
  grid-template-columns: 220px minmax(0, 700px);
  justify-content: center;
  gap: 8vw;
  padding: 90px 9vw 110px;
  background: #fff;
}
.article-body aside {
  padding-top: 8px;
}
.article-body aside a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 13px;
}
.article-body aside a:hover {
  color: var(--red);
}
.article-body > div > p {
  font-size: 17px;
  line-height: 1.65;
}
.article-body .article-intro {
  margin: 0 0 47px;
  font-size: 24px;
  line-height: 1.43;
  color: #4a423f;
}
.article-body h2 {
  margin: 48px 0 15px;
  font: 500 45px/0.9 "Barlow Condensed";
  text-transform: uppercase;
}
.article-callout {
  margin: 40px 0;
  padding: 27px 30px;
  background: #f0ede7;
  border-left: 4px solid var(--red);
}
.article-callout p:last-child {
  margin: 0;
  font-size: 20px;
  line-height: 1.42;
}
.article-body .button {
  margin-top: 20px;
}
.article-next {
  padding: 70px 9vw;
  background: #fde1cf;
}
.article-next .kicker {
  color: var(--red);
}
.article-next a {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: 1050px;
  font: 500 clamp(44px, 6vw, 86px)/0.83 "Barlow Condensed";
  letter-spacing: -0.025em;
}
.article-next a span {
  color: var(--red);
}
@media (max-width: 700px) {
  .article-hero {
    padding: 62px 20px 0;
  }
  .article-hero h1 {
    font-size: 61px;
  }
  .article-dek {
    margin: 22px 0 32px;
    font-size: 16px;
  }
  .article-hero img {
    height: 300px;
    margin-inline: -20px;
    width: calc(100% + 40px);
  }
  .article-body {
    display: block;
    padding: 58px 20px 70px;
  }
  .article-body aside {
    display: none;
  }
  .article-body .article-intro {
    font-size: 21px;
  }
  .article-body h2 {
    font-size: 37px;
  }
  .article-body > div > p {
    font-size: 16px;
  }
  .article-callout {
    padding: 22px 20px;
  }
  .article-callout p:last-child {
    font-size: 18px;
  }
  .article-next {
    padding: 58px 20px;
  }
  .article-next a {
    font-size: 50px;
  }
}
.services-page .explorer-tabs {
  max-height: 465px;
  overflow-y: auto;
}
.services-page .explorer-tab {
  min-height: 48px;
}
@media (max-width: 700px) {
  .services-page .explorer-tabs {
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
}
@import url("shared-navigation.css?v=20260805-1");
