:root {
  --espresso: #352b27;
  --linen: #f1e8db;
  --atlantic: #25495c;
  --mist: #adc5ca;
  --clay: #be9d8a;
  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
}
html {
  scroll-padding-top: 108px;
}
body {
  background: var(--linen);
  color: var(--espresso);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1440px, calc(100% - 96px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: 10px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 12px 20px;
  background: var(--linen);
  color: var(--espresso);
}
.skip-link:focus {
  transform: none;
}
.design-bar {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  background: var(--atlantic);
  color: var(--linen);
  font-size: 10px;
}
.design-bar a {
  min-height: 32px;
  display: flex;
  align-items: center;
}
.design-bar :focus-visible {
  outline-color: var(--linen);
}
.site-header {
  position: absolute;
  inset: 32px 0 auto;
  z-index: 50;
  color: var(--linen);
  transition:
    background 0.3s,
    border-color 0.3s;
  border-bottom: 1px solid rgba(241, 232, 219, 0.2);
}
.header-inner {
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.site-header[data-scrolled] {
  position: fixed;
  top: 0;
  background: rgba(53, 43, 39, 0.96);
  backdrop-filter: blur(14px);
}
.site-header[data-scrolled] .header-inner {
  height: 80px;
}
.brand-lockup {
  flex-shrink: 0;
}
.brand-descriptor {
  white-space: nowrap;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 12px;
  font-weight: 600;
}
.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.site-header .header-contact {
  padding: 0 18px;
  border: 1px solid rgba(241, 232, 219, 0.65);
  gap: 32px;
  min-height: 46px;
  transition:
    background 0.2s,
    color 0.2s;
}
.site-header .header-contact:hover {
  background: var(--linen);
  color: var(--espresso);
}
.site-header :focus-visible {
  outline-color: var(--linen);
}
#menu-toggle {
  display: none;
}
#reading-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  background: var(--mist);
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}
.hero {
  height: calc(100svh - 32px);
  min-height: 730px;
  max-height: 1120px;
  position: relative;
  isolation: isolate;
  color: var(--linen);
  background: var(--linen);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  clip-path: inset(calc(var(--hero-progress, 0) * 28px) calc(var(--hero-progress, 0) * 28px) 0);
  background: var(--espresso);
}
.hero-media > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--pointer-x, 0px), var(--pointer-y, 0px), 0)
    scale(calc(1.035 + var(--hero-progress, 0) * 0.12));
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 23, 22, 0.6), rgba(53, 43, 39, 0.1) 47%, transparent 64%),
    linear-gradient(0deg, rgba(25, 23, 22, 0.72), transparent 25%);
}
.hero-content {
  padding-top: 174px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.hero-content a {
  pointer-events: auto;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}
.hero-kicker p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 600;
}
.tiny-cross {
  font-size: 21px;
  line-height: 1;
  color: var(--mist);
}
.hero h1 {
  font-size: clamp(88px, 9.6vw, 146px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  max-width: 900px;
}
.hero h1 em {
  color: var(--mist);
  font-style: italic;
}
.type-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.type-line > span {
  display: inline-block;
  animation: hero-type 1.05s var(--ease) both;
}
.type-line:nth-child(2) > span {
  animation-delay: 0.13s;
}
.hero-copy {
  margin-top: 36px;
  animation: hero-copy 0.9s 0.25s var(--ease) both;
}
.hero-copy > p {
  font-size: 16px;
  line-height: 1.75;
  max-width: 320px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 16px 24px;
  min-height: 56px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    background 0.25s,
    transform 0.25s,
    color 0.25s;
  position: relative;
}
.button span {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}
.button-light {
  background: var(--linen);
  color: var(--espresso);
}
.button-light:hover {
  background: var(--mist);
  transform: translateY(-3px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  min-height: 48px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.text-link span {
  font-size: 21px;
  transition: transform 0.25s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.hero :focus-visible {
  outline-color: var(--linen);
}
.hero-annotation {
  position: absolute;
  right: 48px;
  bottom: 174px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 10px;
  line-height: 1.7;
  text-shadow: 0 1px 9px rgba(0, 0, 0, 0.5);
}
.annotation-line {
  width: 60px;
  height: 1px;
  background: var(--linen);
  position: relative;
  margin-top: 8px;
}
.annotation-line:before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  left: -2px;
  top: -2px;
  border: 1px solid var(--linen);
  border-radius: 50%;
}
.hero-bottom {
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  gap: 34px;
  font-size: 10px;
}
.scroll-cue {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 44px;
}
.scroll-line {
  height: 32px;
  width: 1px;
  background: rgba(241, 232, 219, 0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 14px;
  background: var(--linen);
  animation: scroll-hint 2s 3 var(--ease);
}
#motion-toggle {
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(241, 232, 219, 0.3);
  padding: 0 0 0 30px;
  color: var(--linen);
  min-height: 44px;
  font-size: 10px;
}
.hero-location {
  margin-left: auto;
  color: var(--mist);
  font-size: 10px;
}
.service-ribbon {
  background: var(--atlantic);
  color: var(--linen);
}
.service-ribbon > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.service-ribbon i {
  color: var(--mist);
  font-style: normal;
  font-weight: 400;
  opacity: 0.7;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.7;
}
.expertise {
  padding: 112px 0 120px;
  background: var(--linen);
}
.expertise-top > .eyebrow {
  color: var(--atlantic);
  margin-bottom: 30px;
}
.expertise h2 {
  font-size: clamp(48px, 5.5vw, 84px);
  letter-spacing: -0.04em;
  line-height: 1.04;
}
.expertise h2 span {
  color: var(--atlantic);
}
.expertise-intro {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 44px;
  margin: 32px 0 68px;
}
.expertise-intro p {
  max-width: 385px;
  font-size: 15px;
  line-height: 1.8;
}
.large-arrow {
  font-size: 72px;
  font-weight: 400;
  line-height: 0.9;
  color: var(--atlantic);
}
.service-list {
  border-top: 1px solid rgba(53, 43, 39, 0.3);
}
.service-item {
  border-bottom: 1px solid rgba(53, 43, 39, 0.3);
}
.service-item summary {
  display: grid;
  grid-template-columns: 55px 1.1fr 0.8fr 28px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  list-style: none;
  cursor: pointer;
  transition: color 0.2s;
}
.service-item summary::-webkit-details-marker {
  display: none;
}
.service-item summary:hover {
  color: var(--atlantic);
}
.service-number {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: var(--atlantic);
}
.service-item h3 {
  font-size: clamp(25px, 2.6vw, 39px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.035em;
}
.service-subtitle {
  font-size: 13px;
  color: #675d55;
}
.expand-symbol {
  position: relative;
  width: 22px;
  height: 22px;
  justify-self: end;
}
.expand-symbol:before,
.expand-symbol:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 1px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s;
}
.expand-symbol:after {
  transform: rotate(90deg);
}
.service-item[open] .expand-symbol:after {
  transform: rotate(0);
}
.service-item[open] h3 {
  color: var(--atlantic);
}
.service-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 22px 52px;
  padding: 0 52px 32px 79px;
  animation: service-open 0.4s var(--ease) both;
}
.service-detail > p {
  font-size: 13px;
  line-height: 1.85;
  max-width: 420px;
}
.service-detail ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.8;
}
.service-detail li {
  margin-bottom: 7px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.service-detail li:before {
  content: "+";
  color: var(--atlantic);
}
.service-detail > a {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-height: 44px;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  color: var(--atlantic);
  border-bottom: 1px solid var(--atlantic);
}
.server-journey {
  height: 280svh;
  position: relative;
  background: var(--atlantic);
  color: var(--linen);
}
.journey-stage {
  position: sticky;
  top: 80px;
  height: calc(100svh - 80px);
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.journey-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--atlantic);
}
.journey-hardware {
  position: absolute;
  inset: 0;
  transform: translateX(var(--camera-x, 0%)) scale(var(--camera-scale, 1.03));
  will-change: transform;
  transform-origin: 66% 50%;
  opacity: 0.9;
}
.journey-hardware img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scaleX(-1);
}
.journey-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(37, 73, 92, 0.03),
      rgba(37, 73, 92, 0.25) 43%,
      rgba(37, 73, 92, 0.99) 65%
    ),
    linear-gradient(0deg, var(--atlantic), transparent 27%, transparent 75%, rgba(37, 73, 92, 0.84));
  transition: opacity 0.6s;
}
.scan-rule {
  position: absolute;
  left: 0;
  top: calc(16% + var(--journey-progress, 0) * 65%);
  width: 61%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(173, 197, 202, 0.8), transparent);
  opacity: 0.55;
}
.journey-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  gap: 24px;
}
.journey-instruction {
  font-size: 10px;
  color: var(--mist);
  display: flex;
  gap: 20px;
}
.journey-composition {
  display: grid;
  grid-template-columns: 1fr 0.77fr;
  gap: 80px;
  align-items: center;
  flex: 1;
  padding-block: 35px;
}
.journey-heading {
  align-self: flex-start;
  padding-top: 20px;
}
.journey-heading h2 {
  font-size: clamp(32px, 3.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 400px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.journey-heading h2 span {
  color: var(--mist);
}
.journey-heading > p {
  font-size: 11px;
  margin-top: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.journey-chapters {
  display: grid;
  min-width: 0;
}
.journey-chapter {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(28px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.65s var(--ease),
    visibility 0.45s;
  align-self: center;
  pointer-events: none;
}
.journey-chapter.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.chapter-index {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mist);
  display: block;
  margin-bottom: 25px;
}
.journey-chapter h3 {
  font-size: clamp(33px, 3.7vw, 58px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
.journey-chapter p {
  font-size: 14px;
  line-height: 1.85;
  margin-top: 24px;
  max-width: 350px;
  color: var(--linen);
}
.journey-chapter a {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  min-height: 48px;
  border-bottom: 1px solid rgba(241, 232, 219, 0.65);
  font-size: 12px;
  font-weight: 600;
  margin-top: 28px;
}
.journey-chapter a span {
  font-size: 23px;
}
.journey-bottom {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-bottom: 32px;
}
.chapter-nav {
  display: flex;
  gap: 28px;
  flex-shrink: 0;
}
.chapter-nav button {
  color: var(--mist);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(173, 197, 202, 0.35);
  padding: 13px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  min-width: 108px;
  transition:
    color 0.25s,
    border-color 0.25s;
}
.chapter-nav button > span {
  font-size: 9px;
  opacity: 0.7;
}
.chapter-nav button[aria-current="step"] {
  color: var(--linen);
  border-color: var(--linen);
}
.journey-meter {
  flex: 1;
  max-width: 300px;
  height: 1px;
  background: rgba(173, 197, 202, 0.3);
}
.journey-meter i {
  display: block;
  height: 1px;
  background: var(--linen);
  transform-origin: left;
  transform: scaleX(var(--journey-progress, 0));
  width: 100%;
}
.journey-caption {
  font-size: 10px;
  color: var(--mist);
  margin-left: auto;
}
.server-journey :focus-visible {
  outline-color: var(--linen);
}
.approach {
  background: var(--mist);
  padding: 110px 0;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 120px;
  align-items: start;
}
.approach .eyebrow {
  color: var(--atlantic);
  margin-bottom: 32px;
}
.approach h2 {
  font-size: clamp(43px, 5vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.approach h2 span {
  color: var(--atlantic);
}
.approach-lead {
  font-size: 19px;
  line-height: 1.65;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
}
.approach-step {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 25px;
  border-top: 1px solid rgba(53, 43, 39, 0.3);
  padding: 21px 0;
}
.approach-step > span {
  font-size: 10px;
  color: var(--atlantic);
  padding-top: 4px;
}
.approach-step h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.approach-step p {
  font-size: 12px;
  line-height: 1.85;
  margin-top: 8px;
  max-width: 360px;
}
.approach-content .text-link {
  color: var(--atlantic);
  margin-top: 12px;
}
.contact {
  background: var(--espresso);
  color: var(--linen);
  padding: 98px 0 100px;
  overflow: hidden;
}
.contact-heading .eyebrow {
  color: var(--clay);
  margin-bottom: 35px;
}
.contact h2 {
  font-size: clamp(76px, 10vw, 150px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  position: relative;
}
.contact h2 > span:not(.contact-arrow) {
  color: var(--mist);
}
.contact-arrow {
  position: absolute;
  right: 0;
  bottom: 5px;
  font-family: var(--ad-font-body);
  font-size: 150px;
  font-weight: 400;
  color: var(--mist);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 68px;
}
.contact-direct > p:first-child {
  font-size: 16px;
  line-height: 1.85;
  max-width: 370px;
  margin-bottom: 26px;
}
.contact-direct > a {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 48px;
  font-size: 18px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(241, 232, 219, 0.3);
  margin-bottom: 10px;
}
.contact-direct > a > span {
  font-size: 24px;
}
.contact-hours {
  font-size: 11px;
  line-height: 1.9;
  color: var(--clay);
  margin-top: 28px;
}
.contact-workspace {
  min-width: 0;
}
.contact-workspace fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.contact-workspace legend {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 17px;
}
.inquiry-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.inquiry-choices button {
  background: transparent;
  color: var(--linen);
  border: 1px solid rgba(241, 232, 219, 0.35);
  padding: 10px 14px;
  min-height: 44px;
  font-size: 11px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.inquiry-choices button:hover {
  border-color: var(--linen);
}
.inquiry-choices button[aria-pressed="true"] {
  background: var(--mist);
  color: var(--espresso);
  border-color: var(--mist);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 25px;
}
.contact-workspace label {
  display: block;
  font-size: 11px;
  font-weight: 600;
}
.contact-workspace label > span {
  font-size: 9px;
  font-weight: 400;
  color: var(--clay);
  margin-left: 7px;
}
.contact-workspace input,
.contact-workspace textarea {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--linen);
  border: 0;
  border-bottom: 1px solid rgba(241, 232, 219, 0.45);
  border-radius: 0;
  font-size: 14px;
  padding: 10px 0;
  min-height: 46px;
  line-height: 1.8;
  margin-top: 6px;
}
.contact-workspace textarea {
  resize: vertical;
  min-height: 106px;
}
.contact-workspace textarea::placeholder {
  color: var(--clay);
  font-size: 12px;
}
.prepare-button {
  width: 100%;
  margin-top: 26px;
  cursor: pointer;
}
.form-note {
  font-size: 10px;
  line-height: 1.7;
  color: var(--clay);
  margin-top: 13px;
}
.contact :focus-visible {
  outline-color: var(--linen);
}
.review-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.review-heading h3 {
  font-family: var(--ad-font-display);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.1;
}
.review-heading button,
#copy-inquiry {
  color: var(--linen);
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 5px;
  min-height: 44px;
  cursor: pointer;
}
.review-heading button {
  white-space: nowrap;
}
.inquiry-review pre {
  font: 12px/1.8 var(--ad-font-body);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  max-height: 300px;
  overflow: auto;
  padding: 20px 0;
  margin: 24px 0;
  border-block: 1px solid rgba(241, 232, 219, 0.3);
}
.inquiry-review .button {
  width: 100%;
}
#copy-inquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
}
#copy-status {
  font-size: 11px;
  color: var(--mist);
  line-height: 1.8;
}
footer {
  background: var(--espresso);
  color: var(--linen);
}
.footer-top {
  border-top: 1px solid rgba(241, 232, 219, 0.2);
  padding-block: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-top > p {
  font-size: 11px;
  color: var(--clay);
}
.back-top {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
  min-height: 44px;
}
.back-top span {
  font-size: 22px;
}
.footer-bottom {
  border-top: 1px solid rgba(241, 232, 219, 0.2);
  padding-block: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  color: var(--clay);
}
footer :focus-visible {
  outline-color: var(--linen);
}
[data-reveal].is-seen {
  animation: section-reveal 0.85s var(--ease) both;
}
.service-list[data-reveal].is-seen {
  animation-delay: 0.05s;
}
.hero-media img,
.journey-hardware {
  backface-visibility: hidden;
}
.wrap > *,
.hero-content > *,
.journey-composition > *,
.approach-grid > *,
.contact-grid > * {
  min-width: 0;
}
@keyframes hero-type {
  from {
    transform: translateY(115%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes hero-copy {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scroll-hint {
  0% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(46px);
  }
}
@keyframes service-open {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes section-reveal {
  from {
    opacity: 0.2;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1600px) {
  .hero-content {
    padding-top: 205px;
  }
  .hero-annotation {
    right: calc((100vw - 1440px) / 2);
  }
}
@media (max-width: 1200px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    min-height: 700px;
  }
  .hero-content {
    padding-top: 160px;
  }
  .hero h1 {
    font-size: 10vw;
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .hero-annotation {
    right: 32px;
    bottom: 150px;
  }
  .hero-location {
    max-width: 180px;
    text-align: right;
  }
  .expertise {
    padding: 90px 0;
  }
  .expertise-intro {
    margin-bottom: 48px;
  }
  .service-item summary {
    grid-template-columns: 40px 1.1fr 0.8fr 24px;
    gap: 18px;
  }
  .service-detail {
    padding-left: 58px;
    gap: 24px;
  }
  .journey-composition {
    gap: 50px;
    grid-template-columns: 1fr 0.85fr;
  }
  .journey-chapter h3 {
    font-size: 42px;
  }
  .journey-chapter p {
    font-size: 13px;
  }
  .journey-bottom {
    gap: 30px;
  }
  .journey-caption {
    display: none;
  }
  .approach-grid {
    gap: 65px;
  }
  .contact-grid {
    gap: 60px;
  }
  .contact-arrow {
    font-size: 120px;
  }
  .footer-top > p {
    max-width: 220px;
  }
}
@media (max-width: 900px) {
  html {
    scroll-padding-top: 100px;
  }
  .site-header nav {
    gap: 24px;
  }
  .hero {
    min-height: 720px;
    max-height: 900px;
  }
  .hero h1 {
    font-size: clamp(76px, 10.8vw, 98px);
  }
  .hero-content {
    padding-top: 180px;
  }
  .hero-copy {
    margin-top: 30px;
  }
  .hero-media > img {
    object-position: 58% center;
  }
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(25, 23, 22, 0.7), rgba(53, 43, 39, 0.15) 70%, transparent),
      linear-gradient(0deg, rgba(25, 23, 22, 0.8), transparent 35%);
  }
  .hero-annotation {
    display: none;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-actions {
    gap: 24px;
  }
  .hero-location {
    display: none;
  }
  .hero-bottom #motion-toggle {
    margin-left: auto;
  }
  .expertise h2 {
    font-size: 55px;
  }
  .expertise-intro {
    margin-top: 30px;
  }
  .service-item summary {
    grid-template-columns: 30px 1fr 24px;
  }
  .service-subtitle {
    display: none;
  }
  .service-detail {
    padding-left: 48px;
    grid-template-columns: 1fr 1fr;
  }
  .service-item h3 {
    font-size: 29px;
  }
  .server-journey {
    height: auto;
  }
  .journey-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }
  .journey-top {
    padding-top: 36px;
  }
  .journey-instruction {
    display: none;
  }
  .journey-backdrop {
    height: 650px;
  }
  .journey-hardware {
    transform: none;
    opacity: 0.85;
  }
  .journey-wash {
    background: linear-gradient(0deg, var(--atlantic), transparent 50%, rgba(37, 73, 92, 0.65));
  }
  .scan-rule {
    display: none;
  }
  .journey-composition {
    display: block;
    padding-top: 36px;
    padding-bottom: 24px;
  }
  .journey-heading {
    padding-top: 0;
    min-height: 355px;
  }
  .journey-heading h2 {
    font-size: 46px;
  }
  .journey-heading > p {
    font-size: 11px;
  }
  .journey-chapters {
    display: block;
    position: relative;
  }
  .journey-chapter,
  .journey-chapter.is-active {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    padding: 34px 0;
    border-top: 1px solid rgba(241, 232, 219, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 50px;
  }
  .chapter-index {
    grid-column: 1/-1;
    margin-bottom: 0;
  }
  .journey-chapter h3 {
    font-size: 38px;
  }
  .journey-chapter p {
    margin-top: 0;
    font-size: 13px;
    align-self: start;
    max-width: 400px;
  }
  .journey-chapter a {
    grid-column: 2;
    margin-top: 0;
    width: fit-content;
  }
  .journey-bottom {
    padding-bottom: 32px;
  }
  .chapter-nav {
    gap: 30px;
    flex: 1;
  }
  .chapter-nav button {
    flex: 1;
  }
  .journey-meter {
    display: none;
  }
  .approach {
    padding: 80px 0;
  }
  .approach-grid {
    gap: 45px;
  }
  .approach h2 {
    font-size: 46px;
  }
  .approach-lead {
    font-size: 17px;
  }
  .contact {
    padding: 80px 0;
  }
  .contact h2 {
    font-size: 94px;
  }
  .contact-arrow {
    font-size: 100px;
  }
  .contact-grid {
    gap: 45px;
  }
  .contact-direct > a {
    font-size: 16px;
    gap: 20px;
  }
  .contact-direct > p:first-child {
    font-size: 14px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-heading {
    flex-direction: column;
    gap: 10px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top > p {
    margin-left: auto;
  }
  .footer-bottom {
    font-size: 8px;
  }
}
@media (max-width: 680px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .design-bar {
    padding: 0 20px;
    font-size: 8px;
  }
  .header-inner {
    height: 88px;
  }
  .site-header[data-scrolled] .header-inner {
    height: 72px;
  }
  .site-header .brand-name {
    font-size: 25px;
  }
  .site-header .brand-descriptor {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 14px 20px 22px;
    background: var(--espresso);
    border-block: 1px solid rgba(241, 232, 219, 0.2);
  }
  .site-header nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-header .header-contact {
    border: 0;
    padding: 0;
    justify-content: space-between;
  }
  .site-header nav a {
    min-height: 48px;
  }
  #menu-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 44px;
    color: var(--linen);
    background: transparent;
    border: 0;
    padding: 5px 0 5px 10px;
    font-size: 11px;
  }
  #menu-toggle > span {
    font-size: 23px;
    font-weight: 400;
  }
  .hero {
    min-height: 790px;
    height: calc(100svh - 32px);
    max-height: 950px;
  }
  .hero-content {
    padding-top: 155px;
  }
  .hero-kicker {
    gap: 9px;
    margin-bottom: 24px;
  }
  .hero-kicker p {
    font-size: 8px;
    letter-spacing: 0.09em;
  }
  .hero h1 {
    font-size: clamp(52px, 14.5vw, 92px);
    line-height: 1;
  }
  .hero-media > img {
    object-position: 64% center;
    opacity: 1;
    transform: translate3d(var(--pointer-x, 0px), var(--pointer-y, 0px), 0) scale(1.035);
  }
  .hero-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(25, 23, 22, 0.56),
        rgba(53, 43, 39, 0.56) 43%,
        rgba(53, 43, 39, 0.02) 67%,
        rgba(25, 23, 22, 0.8)
      ),
      linear-gradient(90deg, rgba(25, 23, 22, 0.38), transparent);
  }
  .hero-copy {
    margin-top: 28px;
  }
  .hero-copy > p {
    font-size: 13px;
    line-height: 1.8;
  }
  .hero-actions {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 24px;
  }
  .button {
    min-height: 52px;
    padding: 14px 20px;
    font-size: 11px;
    gap: 30px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    min-height: 36px;
    gap: 20px;
  }
  .hero-bottom {
    bottom: 22px;
    font-size: 9px;
  }
  .scroll-cue {
    gap: 12px;
  }
  #motion-toggle {
    padding-left: 20px;
    font-size: 9px;
  }
  .service-ribbon > .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px 0;
    gap: 15px 20px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }
  .service-ribbon i {
    display: none;
  }
  .expertise {
    padding: 65px 0 70px;
  }
  .expertise-top > .eyebrow {
    font-size: 9px;
    margin-bottom: 24px;
  }
  .expertise h2 {
    font-size: clamp(35px, 7.5vw, 51px);
    line-height: 1.08;
  }
  .expertise-intro {
    justify-content: flex-start;
    gap: 24px;
    margin: 28px 0 42px;
  }
  .expertise-intro > p {
    font-size: 13px;
    max-width: 320px;
  }
  .large-arrow {
    font-size: 52px;
    flex-shrink: 0;
  }
  .service-item summary {
    padding: 22px 0;
    gap: 14px;
    grid-template-columns: 22px 1fr 20px;
  }
  .service-item h3 {
    font-size: 24px;
    letter-spacing: -0.04em;
  }
  .service-number {
    font-size: 9px;
  }
  .expand-symbol {
    width: 17px;
    height: 17px;
  }
  .expand-symbol:before,
  .expand-symbol:after {
    width: 16px;
    top: 8px;
  }
  .service-detail {
    display: block;
    padding: 0 0 26px 36px;
  }
  .service-detail > p {
    font-size: 12px;
  }
  .service-detail ul {
    font-size: 11px;
    margin-top: 18px;
  }
  .service-detail a {
    margin-top: 12px;
    font-size: 11px;
    gap: 16px;
  }
  .journey-top .eyebrow {
    font-size: 9px;
  }
  .journey-heading {
    min-height: 350px;
  }
  .journey-heading h2 {
    font-size: 40px;
  }
  .journey-backdrop {
    height: 550px;
  }
  .journey-hardware img {
    object-position: 35% center;
  }
  .journey-chapter,
  .journey-chapter.is-active {
    display: block;
    padding: 30px 0 34px;
  }
  .chapter-index {
    margin-bottom: 20px;
  }
  .journey-chapter h3 {
    font-size: 38px;
    line-height: 1.1;
  }
  .journey-chapter p {
    margin-top: 20px;
    max-width: 390px;
    font-size: 13px;
  }
  .journey-chapter a {
    margin-top: 18px;
    font-size: 11px;
    gap: 25px;
  }
  .chapter-nav {
    gap: 20px;
    min-width: 0;
  }
  .chapter-nav button {
    min-width: 0;
    gap: 12px;
    font-size: 10px;
  }
  .chapter-nav button > span {
    font-size: 8px;
  }
  .approach {
    padding: 66px 0;
  }
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .approach .eyebrow {
    margin-bottom: 24px;
    font-size: 9px;
  }
  .approach h2 {
    font-size: clamp(40px, 9vw, 55px);
    line-height: 1.05;
  }
  .approach-lead {
    font-size: 17px;
    margin-bottom: 24px;
  }
  .approach-step {
    gap: 20px;
    padding: 22px 0;
  }
  .approach-step h3 {
    font-size: 14px;
  }
  .approach-step p {
    font-size: 12px;
  }
  .approach-content .text-link {
    font-size: 11px;
  }
  .contact {
    padding: 65px 0 60px;
  }
  .contact-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 26px;
  }
  .contact h2 {
    font-size: clamp(57px, 13.6vw, 87px);
    line-height: 1;
  }
  .contact-arrow {
    font-size: 65px;
    bottom: 10px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 36px;
  }
  .contact-direct > p:first-child {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .contact-direct > a {
    font-size: 17px;
    min-height: 46px;
  }
  .contact-hours {
    font-size: 10px;
    margin-top: 20px;
  }
  .contact-workspace {
    border-top: 1px solid rgba(241, 232, 219, 0.3);
    padding-top: 30px;
  }
  .contact-workspace legend {
    font-size: 13px;
  }
  .inquiry-choices {
    gap: 7px;
    margin-bottom: 25px;
  }
  .inquiry-choices button {
    font-size: 10px;
    padding: 10px 12px;
  }
  .field-row {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .contact-workspace label > span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
  .contact-workspace input,
  .contact-workspace textarea {
    font-size: 16px;
  }
  .contact-workspace textarea {
    min-height: 120px;
  }
  .contact-workspace textarea::placeholder {
    font-size: 12px;
  }
  .form-note {
    font-size: 10px;
  }
  .review-heading h3 {
    font-size: 35px;
  }
  .inquiry-review pre {
    font-size: 12px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-block: 30px;
  }
  .footer-top > p {
    margin-left: 0;
    max-width: 240px;
    font-size: 11px;
  }
  .footer-top .brand-name {
    font-size: 27px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    font-size: 8px;
  }
}
@media (max-width: 359px) {
  .site-header .brand-name {
    font-size: 23px;
  }
  .site-header .brand-descriptor {
    font-size: 11px;
    letter-spacing: 0.035em;
  }
  .header-inner {
    gap: 12px;
  }
  .hero h1 {
    font-size: 51px;
  }
  .hero-content {
    padding-top: 150px;
  }
  .hero {
    min-height: 760px;
  }
  .hero-kicker p {
    font-size: 7px;
  }
  .contact h2 {
    font-size: 57px;
  }
  .contact-arrow {
    font-size: 45px;
    bottom: 14px;
  }
  .service-item h3 {
    font-size: 21px;
  }
  .expertise h2 {
    font-size: 34px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .chapter-nav {
    gap: 12px;
  }
  .chapter-nav button {
    gap: 8px;
  }
  .inquiry-choices button {
    font-size: 9px;
  }
}
/* A complete, readable story when motion is reduced or unavailable. */
.server-journey.is-reduced-motion {
  height: auto;
}
.is-reduced-motion .journey-stage {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
}
.is-reduced-motion .journey-composition {
  align-items: start;
}
.is-reduced-motion .journey-chapters {
  display: block;
}
.is-reduced-motion .journey-chapter {
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  display: block;
  padding: 30px 0;
  border-top: 1px solid rgba(241, 232, 219, 0.3);
}
.is-reduced-motion .journey-chapter:first-child {
  padding-top: 0;
  border: 0;
}
.is-reduced-motion .journey-chapter p {
  margin-top: 22px;
}
.is-reduced-motion .journey-chapter a {
  margin-top: 20px;
}
.is-reduced-motion .journey-meter {
  display: none;
}
.is-motion-paused .journey-chapter {
  transition: none;
}
.is-motion-paused .scan-rule {
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-media {
    clip-path: none;
  }
  .hero-media > img,
  .journey-hardware {
    transform: none !important;
    will-change: auto;
  }
  .type-line > span,
  .hero-copy,
  [data-reveal].is-seen {
    animation: none;
    transform: none;
    opacity: 1;
  }
  .scroll-line:after {
    animation: none;
  }
  .server-journey {
    height: auto;
  }
  .journey-stage {
    position: relative;
    top: auto;
    height: auto;
  }
  .journey-chapters {
    display: block;
  }
  .journey-chapter {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: block;
    padding: 30px 0;
  }
  .journey-chapter + .journey-chapter {
    border-top: 1px solid rgba(241, 232, 219, 0.3);
  }
  .journey-chapter p,
  .journey-chapter a {
    margin-top: 20px;
  }
  .scan-rule,
  .journey-meter {
    display: none;
  }
}

.site-header:not([data-scrolled]) {
  background: linear-gradient(180deg, rgba(25, 23, 22, 0.72), rgba(25, 23, 22, 0.25));
}
@media (min-width: 901px) {
  .hero-scrim {
    background:
      linear-gradient(
        90deg,
        rgba(25, 23, 22, 0.65),
        rgba(53, 43, 39, 0.42) 43%,
        rgba(53, 43, 39, 0.22) 53%,
        transparent 68%
      ),
      linear-gradient(0deg, rgba(25, 23, 22, 0.72), transparent 25%);
  }
  #server-journey {
    scroll-margin-top: -28px;
  }
}
.hero h1 {
  text-shadow: 0 2px 35px rgba(25, 23, 22, 0.3);
}
html:has(#motion-toggle[aria-pressed="true"]) {
  scroll-behavior: auto;
}
body:has(#motion-toggle[aria-pressed="true"]) .scroll-line:after,
body:has(#motion-toggle[aria-pressed="true"]) .type-line > span,
body:has(#motion-toggle[aria-pressed="true"]) .hero-copy,
body:has(#motion-toggle[aria-pressed="true"]) [data-reveal].is-seen {
  animation: none;
}
body:not(.has-motion) #motion-toggle,
body:not(.has-motion) .chapter-nav,
body:not(.has-motion) .journey-meter {
  display: none;
}
body:not(.has-motion) .server-journey {
  height: auto;
}
body:not(.has-motion) .journey-stage {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
}
body:not(.has-motion) .journey-chapters {
  display: block;
}
body:not(.has-motion) .journey-chapter {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  padding: 28px 0;
}
body:not(.has-motion) .journey-chapter p,
body:not(.has-motion) .journey-chapter a {
  margin-top: 20px;
}
@media (min-width: 901px) and (max-height: 650px) {
  .server-journey {
    height: auto;
  }
  .journey-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }
  .journey-chapters {
    display: block;
  }
  .journey-chapter {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    padding: 30px 0;
  }
  .journey-chapter p,
  .journey-chapter a {
    margin-top: 20px;
  }
  .journey-meter {
    display: none;
  }
}


/* Direction 09: real photography, restrained camera movement, and a business-led story. */
.hero {
  min-height: 740px;
  background: var(--espresso);
}
.hero-media > img {
  object-position: 55% 52%;
  filter: none;
  transform: translate3d(var(--pointer-x, 0px), var(--pointer-y, 0px), 0)
    scale(calc(1.035 + var(--hero-progress, 0) * 0.075));
}
.hero-scrim {
  background:
    linear-gradient(
      90deg,
      rgba(15, 22, 26, 0.88) 0%,
      rgba(15, 22, 26, 0.67) 31%,
      rgba(15, 22, 26, 0.13) 75%
    ),
    linear-gradient(
      0deg,
      rgba(15, 22, 26, 0.78),
      transparent 32%,
      transparent 78%,
      rgba(15, 22, 26, 0.2)
    );
}
.hero-content {
  padding-top: clamp(162px, 20vh, 215px);
}
.hero-copy > p {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.75;
  text-wrap: pretty;
}
.hero h1 {
  font-size: clamp(88px, 9vw, 138px);
}
.hero-annotation {
  bottom: 180px;
  right: 5vw;
}
.hero-annotation p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.hero-actions .button {
  background: var(--mist);
}
.hero-actions .button:hover {
  background: var(--linen);
}
.service-ribbon {
  background: var(--espresso);
  color: var(--linen);
  border-color: rgba(241, 232, 219, 0.2);
}
.service-ribbon > .wrap {
  color: var(--linen);
}
.server-journey {
  height: 300svh;
  background: var(--espresso);
}
.journey-stage {
  min-height: 640px;
  background: transparent;
}
.journey-backdrop {
  background: var(--espresso);
}
.journey-hardware {
  opacity: 1;
  transform-origin: 40% 50%;
}
.photo-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  clip-path: inset(0 5% 0 0);
  transition:
    opacity 0.85s cubic-bezier(0.25, 0.6, 0.3, 1),
    clip-path 1.1s var(--ease);
}
.photo-scene.is-active {
  opacity: 1;
  clip-path: inset(0);
}
.journey-hardware .photo-scene img {
  object-position: 32% center;
  transform: scale(calc(1.01 + var(--scene-progress, 0) * 0.025));
}
.photo-scene[data-photo="1"] img {
  object-position: 20% center;
}
.photo-scene[data-photo="2"] img {
  object-position: 38% center;
}
.journey-wash {
  background:
    linear-gradient(
      90deg,
      rgba(20, 31, 37, 0.06) 15%,
      rgba(20, 31, 37, 0.22) 38%,
      rgba(20, 31, 37, 0.93) 61%,
      rgba(20, 31, 37, 0.98)
    ),
    linear-gradient(
      0deg,
      rgba(20, 31, 37, 0.96),
      rgba(20, 31, 37, 0.72) 20%,
      transparent 55%,
      transparent 74%,
      rgba(20, 31, 37, 0.72)
    );
}
.journey-composition {
  grid-template-columns: 1.08fr 1fr;
  gap: 7vw;
  padding-block: 20px;
}
.journey-heading {
  align-self: end;
  padding-top: 0;
  padding-bottom: 18px;
}
.journey-heading h2 {
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.15;
}
.journey-heading p {
  font-size: 10px;
  letter-spacing: 0.03em;
}
.journey-chapter {
  transition:
    opacity 0.38s ease,
    transform 0.7s var(--ease),
    visibility 0.4s;
  transform: translateY(24px);
}
.journey-chapter h3 {
  font-size: clamp(32px, 3.2vw, 49px);
  line-height: 1.13;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.journey-chapter p {
  max-width: 420px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.75;
}
.chapter-index {
  margin-bottom: 20px;
}
.chapter-scope {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
  font-size: 11px;
  color: var(--mist);
}
.chapter-scope li {
  display: flex;
  gap: 10px;
  line-height: 1.6;
}
.chapter-scope li:before {
  content: "+";
  color: var(--clay);
}
.journey-chapter .chapter-prompt {
  font-size: 12px;
  margin-top: 26px;
  color: var(--mist);
}
.journey-chapter a {
  margin-top: 10px;
  padding-bottom: 6px;
  transition:
    color 0.25s,
    gap 0.25s;
}
.journey-chapter a:hover {
  color: var(--mist);
  gap: 42px;
}
.chapter-mobile-photo {
  display: none;
}
.journey-bottom {
  padding-bottom: 25px;
}
.journey-top {
  padding-top: 24px;
}
.journey-caption {
  max-width: 190px;
  line-height: 1.7;
}
.expertise {
  padding: 100px 0;
}
.contact h2 {
  font-size: clamp(66px, 8.5vw, 125px);
}
.contact-direct .contact-expectation {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 28px;
  max-width: 330px;
  color: var(--mist);
}
.contact-direct > p:first-child {
  max-width: 360px;
}
.inquiry-choices button {
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.contact-arrow {
  font-size: 110px;
}
.footer-bottom a {
  text-underline-offset: 3px;
  text-decoration: underline;
}
:root:has(#motion-toggle[aria-pressed="true"]) .photo-scene,
:root:has(#motion-toggle[aria-pressed="true"]) .journey-chapter {
  transition: none;
}
@media (max-width: 1100px) and (min-width: 901px) {
  .journey-composition {
    gap: 45px;
    grid-template-columns: 0.9fr 1fr;
  }
  .journey-chapter h3 {
    font-size: 35px;
  }
  .journey-chapter p {
    font-size: 13px;
  }
  .chapter-scope {
    font-size: 10px;
  }
}
/* In static layouts every chapter keeps its own photograph and usable contact link. */
@media (max-width: 900px), (prefers-reduced-motion: reduce), (max-height: 719px) {
  .server-journey {
    height: auto;
  }
  .journey-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }
  .journey-backdrop {
    display: none;
  }
  .journey-composition {
    display: block;
    padding-top: 36px;
    padding-bottom: 20px;
  }
  .journey-heading {
    min-height: 0;
    padding-bottom: 36px;
  }
  .journey-heading h2 {
    font-size: 40px;
    max-width: none;
  }
  .journey-heading p {
    margin-top: 12px;
  }
  .journey-chapters {
    display: block;
  }
  .journey-chapter,
  .journey-chapter.is-active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    padding: 36px 0;
    border-top: 1px solid rgba(241, 232, 219, 0.2);
  }
  .chapter-mobile-photo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    object-position: center;
  }
  .journey-chapter h3 {
    font-size: 34px;
  }
  .journey-chapter p {
    margin-top: 18px;
    font-size: 13px;
  }
  .journey-chapter a {
    margin-top: 8px;
  }
  .chapter-scope {
    margin-top: 18px;
  }
  .chapter-index {
    margin-bottom: 18px;
  }
  .journey-chapter .chapter-prompt {
    margin-top: 20px;
  }
  .journey-instruction,
  .journey-meter {
    display: none;
  }
  .journey-caption {
    max-width: 220px;
  }
}
body:not(.has-motion) .journey-backdrop {
  display: none;
}
body:not(.has-motion) .journey-heading {
  min-height: 0;
  padding-bottom: 30px;
}
body:not(.has-motion) .journey-chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
body:not(.has-motion) .chapter-mobile-photo {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .hero {
    min-height: 740px;
  }
  .hero h1 {
    font-size: clamp(74px, 10vw, 92px);
  }
  .hero-copy > p {
    max-width: 380px;
  }
  .hero-media > img {
    object-position: 58% 50%;
  }
  .contact h2 {
    font-size: clamp(62px, 8.7vw, 94px);
  }
  .contact-arrow {
    font-size: 80px;
  }
}
@media (max-width: 680px) {
  .hero {
    height: calc(100svh - 32px);
    min-height: 720px;
  }
  .hero-content {
    padding-top: 177px;
  }
  .hero h1 {
    font-size: clamp(63px, 12.8vw, 86px);
  }
  .hero-copy {
    margin-top: 28px;
  }
  .hero-copy > p {
    font-size: 13px;
    max-width: 335px;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 16px;
  }
  .hero-media > img {
    object-position: 58% center;
  }
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(15, 22, 26, 0.87), rgba(15, 22, 26, 0.3)),
      linear-gradient(0deg, rgba(15, 22, 26, 0.84), transparent 45%);
  }
  .journey-top {
    padding-top: 30px;
  }
  .journey-composition {
    padding-top: 28px;
  }
  .journey-heading {
    padding-bottom: 20px;
  }
  .journey-heading h2 {
    font-size: 36px;
  }
  .journey-chapter,
  .journey-chapter.is-active,
  body:not(.has-motion) .journey-chapter {
    display: block;
    padding: 28px 0 40px;
  }
  .chapter-mobile-photo,
  body:not(.has-motion) .chapter-mobile-photo {
    height: 230px;
    min-height: 0;
    margin-bottom: 28px;
  }
  .journey-chapter h3 {
    font-size: clamp(31px, 8.5vw, 40px);
  }
  .journey-chapter p {
    font-size: 13px;
  }
  .chapter-scope {
    font-size: 11px;
  }
  .chapter-nav {
    gap: 16px;
  }
  .chapter-nav button {
    gap: 10px;
  }
  .expertise {
    padding: 65px 0;
  }
  .contact h2 {
    font-size: clamp(46px, 11.2vw, 70px);
  }
  .contact-arrow {
    display: none;
  }
  .contact-direct .contact-expectation {
    margin-top: 20px;
    font-size: 12px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .journey-chapter a {
    font-size: 11px;
    gap: 18px;
  }
  .journey-chapter a:hover {
    gap: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .photo-scene,
  .journey-chapter {
    transition: none;
  }
  .journey-hardware,
  .hero-media > img {
    transform: none;
  }
}

/* Production: no design-review toolbar. */
.site-header { top: 0; }
.hero { height: 100svh; }
@media (max-width:680px) { .hero { height: 100svh; } }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.inner-page .site-header { position: relative; background: var(--espresso); }
.inner-page .site-header .header-inner { height: 90px; }
.inner-content { padding-block: clamp(60px,8vw,110px); min-height: 55vh; }
.inner-intro { padding-bottom: 50px; border-bottom: 1px solid var(--clay); }
.inner-intro h1 { font-size: clamp(44px,6vw,88px); line-height:1.05; max-width: 18ch; margin: 24px 0; }
.inner-intro p { max-width: 60ch; font-size: 17px; }
.inner-section { margin-top: 48px; max-width: 850px; }
.inner-section h2 { font-size:clamp(30px,3.5vw,46px); margin-bottom:20px; }
.inner-section p { margin:16px 0; }
.inner-section ul { padding-left: 22px; line-height: 2; }
.inner-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top:40px; }
.inner-card { padding:24px 0; border-top:1px solid var(--clay); }
.inner-card h2,.inner-card h3 { font-size:28px; margin-bottom:16px; }
.inner-card p { margin-bottom:20px; }
.inner-cta { margin-top:64px; padding:32px; background:var(--mist); }
.inner-cta .text-link { color:var(--espresso); }
@media(max-width:680px) { .inner-grid { grid-template-columns:1fr; gap:12px; } .inner-page .header-inner { flex-wrap:wrap; gap:16px; height:auto!important; padding-block:20px; } .inner-page .site-header nav { position:static; display:flex; flex-direction:row; background:none; padding:0; border:0; font-size:11px; gap:20px; } .inner-content { padding-top:48px; } }

.breadcrumbs { margin-bottom:32px; font-size:13px; }
.breadcrumbs ol { list-style:none; display:flex; flex-wrap:wrap; gap:10px; padding:0; }
.breadcrumbs li { display:inline; }
.breadcrumbs li + li::before { content:'/'; margin-right:10px; }
.breadcrumbs a { text-decoration:underline; text-underline-offset:4px; }
.service-page-links { display:flex; flex-wrap:wrap; gap:12px 24px; margin-block:20px; }
