@font-face {
  font-family: Cormorant;
  src: url(cormorant-regular.8048ac209bec741e.woff2) format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url(cormorant-italic.e48e58027030df56.woff2) format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url(manrope-regular.849290ef12a2eeb9.woff2) format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
/* One architectural world: limestone by day, obsidian by night. */
:root {
  --bg: #f3efe6;
  --surface: #eae3d6;
  --ink: #29251f;
  --muted: #645b4e;
  --accent: #78572d;
  --line: #c9bda7;
  --bronze: #78552d;
  --bronze-hover: #60411f;
  --metal-ink: #fff7e9;
  --header: rgba(243, 239, 230, 0.97);
  --veil: #f3efe6;
  --glass: rgba(243, 239, 230, 0.95);
  --shadow: rgba(72, 49, 23, 0.12);
  --world-day: block;
  --world-night: none;
  --serif: Cormorant, Georgia, serif;
  --sans: Manrope, Arial, sans-serif;
  --gutter: clamp(24px, 5.5vw, 96px);
  color-scheme: light;
}
:root[data-theme="dark"] {
  --bg: #171614;
  --surface: #211e1a;
  --ink: #f0e8d9;
  --muted: #c0b4a2;
  --accent: #d8b67d;
  --line: #5d4e39;
  --bronze: #b68b50;
  --bronze-hover: #d0a76a;
  --metal-ink: #201911;
  --header: rgba(23, 22, 20, 0.97);
  --veil: #171614;
  --glass: rgba(23, 22, 20, 0.95);
  --shadow: rgba(0, 0, 0, 0.35);
  --world-day: none;
  --world-night: block;
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #171614;
    --surface: #211e1a;
    --ink: #f0e8d9;
    --muted: #c0b4a2;
    --accent: #d8b67d;
    --line: #5d4e39;
    --bronze: #b68b50;
    --bronze-hover: #d0a76a;
    --metal-ink: #201911;
    --header: rgba(23, 22, 20, 0.97);
    --veil: #171614;
    --glass: rgba(23, 22, 20, 0.95);
    --shadow: rgba(0, 0, 0, 0.35);
    --world-day: none;
    --world-night: block;
    color-scheme: dark;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
button:disabled {
  cursor: default;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
img,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(62px, 6.5vw, 104px);
}
h2 {
  font-size: clamp(44px, 4.5vw, 70px);
}
h3 {
  font-size: 36px;
}
em {
  font-weight: 400;
  color: var(--accent);
}
p {
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
.section {
  padding: 110px var(--gutter);
  max-width: 1800px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--accent);
  margin-bottom: 24px;
}
.label-rule {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border: 1px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
  vertical-align: 0.08em;
}
.ui-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  vertical-align: -0.2em;
  color: inherit;
}
.skip {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  transform: translateY(-160%);
}
.skip:focus {
  transform: translateY(0);
}
/* The entablature: navigation and bronze instrument controls. */
.site-header {
  height: 88px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--header);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow:
    0 4px 0 var(--bg),
    0 5px 0 var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 22px;
  letter-spacing: 0.14em;
  line-height: 1;
  min-height: 44px;
}
.brand svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.3;
}
.brand-dot {
  color: var(--accent);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
}
.desktop-nav a {
  padding: 14px 0;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 7px;
  left: 0;
  right: 100%;
  background: var(--accent);
  transition: right 0.2s;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  right: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.theme-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: radial-gradient(circle, var(--bg) 54%, var(--surface) 56%);
  box-shadow:
    inset 0 0 0 4px var(--bg),
    inset 0 0 0 5px var(--line);
  position: relative;
}
.theme-toggle::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  top: 3px;
  border-radius: 50%;
}
.theme-toggle:hover {
  background: var(--surface);
}
.theme-toggle svg {
  height: 18px;
  width: 18px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.3;
}
.theme-toggle .sun {
  display: none;
}
[data-theme="dark"] .theme-toggle .sun {
  display: block;
}
[data-theme="dark"] .theme-toggle .moon {
  display: none;
}
.header-contact {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  border-bottom: 1px solid var(--accent);
}
.header-contact span {
  font-size: 20px;
  color: var(--accent);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 11px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  width: 20px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.mobile-nav {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  padding: 20px var(--gutter) 28px;
  background: var(--bg);
  border-bottom: 3px double var(--accent);
  box-shadow: 0 24px 32px var(--shadow);
}
.mobile-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}
.mobile-nav a[aria-current="page"] {
  color: var(--accent);
}
/* The atrium is the canvas, not an image beside a template. */
.world-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.world-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.world-image .world-day {
  display: var(--world-day);
}
.world-image .world-night {
  display: var(--world-night);
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  min-height: min(900px, calc(100svh - 88px));
  padding-top: 90px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
}
.hero-world {
  z-index: -2;
}
.hero-world img {
  object-position: 64% center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--veil) 0%, var(--glass) 29%, transparent 78%),
    linear-gradient(0deg, var(--veil), transparent 28%);
}
.hero-copy {
  position: relative;
  width: min(690px, 60%);
  padding: 25px 0 35px;
}
.hero-copy h1 {
  white-space: nowrap;
}
.hero .eyebrow {
  margin-bottom: 32px;
}
.hero-description {
  font-size: 15px;
  line-height: 1.9;
  max-width: 500px;
  margin: 27px 0 22px;
  color: var(--ink);
}
.hero-intent {
  font-size: 12px;
  line-height: 1.9;
  margin-bottom: 28px;
}
.hero-buttons {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 21px;
  min-height: 56px;
  font-size: 11px;
  line-height: 1.75;
  letter-spacing: 0.025em;
  background: var(--bronze);
  color: var(--metal-ink);
  border: 1px solid var(--bronze);
  box-shadow:
    inset 0 0 0 3px var(--bronze),
    inset 0 0 0 4px currentColor,
    0 3px 0 var(--shadow);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.button:hover {
  background: var(--bronze-hover);
  border-color: var(--bronze-hover);
}
.button span {
  font-size: 21px;
  line-height: 1;
  padding-left: 14px;
  border-left: 1px solid currentColor;
}
.button.secondary {
  background: var(--glass);
  color: var(--accent);
  border-color: var(--line);
  box-shadow:
    inset 0 0 0 3px var(--bg),
    inset 0 0 0 4px var(--line),
    0 3px 0 var(--shadow);
}
.button.secondary:hover {
  background: var(--surface);
  border-color: var(--accent);
}
.hero-inscription {
  position: absolute;
  right: var(--gutter);
  top: 56px;
  bottom: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #fff5e2;
  line-height: 1.7;
  text-shadow: 0 1px 8px #171614;
}
.hero-inscription span {
  padding: 9px 13px;
  background: #171614b8;
  border-left: 1px solid #cba972;
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  border-top: 1px solid var(--accent);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
  letter-spacing: 0.02em;
  min-height: 44px;
}
.hero-bottom a span {
  font-size: 23px;
  color: var(--accent);
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}
.section-heading > p {
  max-width: 365px;
  font-size: 13px;
  padding-bottom: 5px;
}
.service-grid {
  display: grid;
  gap: 34px;
}
.service-card {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  border: 1px solid var(--line);
  position: relative;
  background: var(--surface);
  transition: border-color 0.2s;
  box-shadow:
    0 5px 0 var(--bg),
    0 6px 0 var(--line);
}
.service-card:hover {
  border-color: var(--accent);
}
.service-opening {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}
.service-opening::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid #d2b98999;
  pointer-events: none;
}
.service-world img {
  object-position: 70% center;
  transition: transform 0.7s;
  filter: var(--service-light, none);
}
:root[data-theme="dark"] {
  --service-light: brightness(0.7) saturate(0.8);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --service-light: brightness(0.7) saturate(0.8);
  }
}
.amazon-world img {
  object-position: 25% center;
  transform: scale(1.12);
}
.service-card:hover .service-world img {
  transform: scale(1.04);
}
.service-card:hover .amazon-world img {
  transform: scale(1.16);
}
.opening-label,
.opening-coordinate {
  position: absolute;
  z-index: 1;
  left: 29px;
  color: #f9efde;
  background: #211b14e8;
  padding: 8px 12px;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.opening-label {
  top: 29px;
}
.opening-coordinate {
  bottom: 29px;
  border-left: 1px solid #d8b67d;
}
.card-copy {
  padding: 40px clamp(28px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  color: var(--accent);
}
.card-number {
  font: 32px var(--serif);
}
.pill {
  font-size: 10px;
  color: var(--muted);
}
.card-top > span:last-child {
  margin-left: auto;
  font-size: 24px;
}
.card-copy h3 {
  font-size: clamp(38px, 3.8vw, 58px);
  margin-bottom: 21px;
}
.card-copy > p {
  font-size: 13px;
  max-width: 440px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 17px;
  font-size: 9px;
  margin-top: 23px;
  color: var(--muted);
}
.card-tags span + span::before {
  content: "·";
  margin-right: 17px;
  color: var(--accent);
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 28px;
  font-size: 11px;
  color: var(--accent);
}
.card-link span {
  font-size: 24px;
}
.amazon-card .service-opening {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--line);
}
.amazon-card {
  grid-template-columns: 1fr 1.12fr;
}
.principle {
  display: grid;
  grid-template-columns: 180px 1fr 70px;
  gap: 60px;
  align-items: center;
  background: var(--surface);
  border-block: 1px solid var(--line);
  position: relative;
}
.principle::before,
.principle::after {
  content: "";
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  height: 5px;
  border-block: 1px solid var(--line);
}
.principle::before {
  top: 16px;
}
.principle::after {
  bottom: 16px;
}
.principle-mark {
  font-family: var(--serif);
  font-size: 150px;
  line-height: 1;
  color: var(--accent);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 9px var(--surface),
    0 0 0 10px var(--line);
}
.principle p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 25px;
  font-size: 14px;
}
.principle-side {
  writing-mode: vertical-rl;
  justify-self: end;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.working-together {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.working-image {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.working-image img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
  object-position: 50% 45%;
}
.working-image figcaption {
  font-size: 9px;
  line-height: 1.7;
  color: var(--muted);
  padding: 13px 5px 2px;
}
.steps article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.steps article:last-child {
  border-bottom: 1px solid var(--line);
}
.step-number {
  font: 28px var(--serif);
  color: var(--accent);
}
.steps h3 {
  font-size: 34px;
  margin-bottom: 12px;
}
.steps p {
  font-size: 13px;
}
.step-caption {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-top: 16px;
}
.about {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(55px, 8vw, 125px);
  align-items: center;
  padding-top: 40px;
}
.portrait-frame {
  max-width: 480px;
  width: 100%;
  justify-self: center;
  padding: 11px;
  border: 1px solid var(--line);
  position: relative;
  background: var(--surface);
  box-shadow:
    0 7px 0 var(--bg),
    0 8px 0 var(--line);
}
.portrait-frame > img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 30%;
}
.portrait-caption {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 15px 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.9;
}
.portrait-caption small {
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.about-monogram {
  font: 54px var(--serif);
  color: var(--accent);
  border-right: 1px solid var(--line);
  padding-right: 20px;
  line-height: 1;
}
.about-copy > p {
  margin-top: 24px;
  max-width: 590px;
}
.about-copy .eyebrow {
  margin-top: 0;
}
.about-copy .lead {
  font-size: 18px;
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 48px;
  font-size: 12px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  margin-top: 25px;
}
.text-link span {
  font-size: 22px;
}
/* The apse: a quiet destination with a native email action. */
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding-block: 105px 80px;
}
.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  width: 50px;
  border-inline: 1px solid var(--line);
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 8px,
    var(--line) 9px,
    transparent 10px
  );
  opacity: 0.5;
  z-index: -1;
}
.contact-section::before {
  left: var(--gutter);
}
.contact-section::after {
  right: var(--gutter);
}
.contact-orbit {
  position: absolute;
  z-index: -1;
  width: 710px;
  height: 710px;
  max-width: 95%;
  border: 1px solid var(--line);
  border-radius: 50% 50% 0 0;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  box-shadow:
    0 0 0 13px var(--surface),
    0 0 0 14px var(--line);
  opacity: 0.7;
}
.contact-inner {
  position: relative;
  max-width: 680px;
  margin: auto;
}
.contact-inner > p:not(.eyebrow):not(.contact-note):not(.copy-status) {
  margin: 26px auto;
  font-size: 14px;
}
.contact-inner > .button {
  margin: 8px 0 26px;
}
.email-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
}
.email-row > a {
  border-bottom: 1px solid var(--line);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.copy-email {
  min-height: 44px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--line);
  font-size: 10px;
  color: var(--accent);
}
.copy-email:hover {
  border-color: var(--accent);
}
.contact-note {
  font-size: 10px;
  line-height: 1.9;
  margin: 18px auto 0;
  max-width: 490px;
}
.copy-status {
  font-size: 11px;
  min-height: 25px;
  margin-top: 13px;
  color: var(--ink);
}
.site-footer {
  padding: 58px var(--gutter) 25px;
  max-width: 1800px;
  margin: auto;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}
.footer-wordmark {
  font-size: clamp(35px, 5.5vw, 78px);
  line-height: 1;
  letter-spacing: 0.1em;
}
.footer-wordmark span {
  color: var(--accent);
}
.footer-top p {
  font: italic 25px/1.2 var(--serif);
}
.back-top {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 10px;
  color: var(--accent);
}
.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 25px 0;
  font-size: 10px;
}
.footer-links > span {
  color: var(--muted);
}
.footer-links nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 8px;
  letter-spacing: 0.035em;
  color: var(--muted);
}
/* Service wings retain the material language of the atrium. */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 36px;
}
.service-hero {
  padding-top: 38px;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-hero h1 {
  font-size: clamp(56px, 5.5vw, 84px);
}
.service-hero .hero-description {
  margin-bottom: 30px;
  max-width: 550px;
  font-size: 14px;
}
.audience {
  font-size: 11px;
  max-width: 460px;
  margin-top: 22px;
}
.service-seal {
  position: relative;
  min-height: 540px;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--accent);
  border-radius: 240px 240px 0 0;
  box-shadow:
    0 0 0 9px var(--bg),
    0 0 0 10px var(--line);
  align-self: stretch;
}
.service-seal::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid #d2b98999;
  border-radius: inherit;
  pointer-events: none;
}
.service-seal > span {
  position: absolute;
  z-index: 1;
  bottom: 30px;
  left: 26px;
  right: 26px;
  padding: 14px;
  background: #211b14ef;
  color: #f6ead6;
  border-top: 1px solid #d8b67d;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-align: center;
}
.service-seal .world-image img {
  object-position: 69% center;
}
.amazon-seal .world-image img {
  object-position: 28% center;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.capability {
  padding: 30px 26px 35px;
  border-right: 1px solid var(--line);
}
.capability:first-child {
  padding-left: 0;
}
.capability:last-child {
  border-right: 0;
  padding-right: 0;
}
.capability .step-caption {
  margin: 0 0 28px;
}
.capability h3 {
  font-size: 31px;
  line-height: 1.1;
  min-height: 100px;
}
.capability p {
  font-size: 12px;
  margin-top: 20px;
}
.workflow-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  background: var(--surface);
  border-block: 1px solid var(--line);
  align-items: center;
}
.workflow-section p:not(.eyebrow) {
  font-size: 13px;
  margin-top: 28px;
  max-width: 550px;
}
.workflow {
  list-style: none;
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
}
.workflow li {
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  font-size: 14px;
  position: relative;
}
.workflow li:last-child {
  border-bottom: 0;
}
.workflow li span {
  font: 27px var(--serif);
  color: var(--accent);
  width: 32px;
  text-align: center;
  font-variant-numeric: lining-nums tabular-nums;
}
.workflow li:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 16px);
  width: 32px;
  height: 20px;
  background: var(--surface);
  z-index: 1;
}
.workflow li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background: var(--surface);
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  transform: rotate(45deg);
  z-index: 1;
}
.engagement {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.engagement p:not(.eyebrow) {
  font-size: 13px;
  margin-top: 25px;
  max-width: 550px;
}
.engagement .button {
  margin-top: 30px;
}
.deliverables {
  border: 1px solid var(--line);
  padding: 40px;
  background: var(--surface);
  box-shadow:
    inset 0 0 0 7px var(--bg),
    inset 0 0 0 8px var(--line);
}
.deliverables ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.deliverables li {
  font-size: 13px;
  padding: 17px 0 17px 23px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.deliverables li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.deliverables .fine-print {
  font-size: 10px !important;
}
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 80px;
  padding-top: 30px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  padding: 23px 0;
  font-size: 13px;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 23px;
  color: var(--accent);
  flex-shrink: 0;
}
details[open] summary span {
  transform: rotate(45deg);
}
details > p {
  font-size: 13px;
  padding: 0 28px 26px 0;
  max-width: 650px;
}
.cross-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 32px;
  border-top: 1px solid var(--line);
}
.cross-service p {
  font-size: 12px;
}
.cross-service a {
  font: 34px var(--serif);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-height: 44px;
}
.legal {
  max-width: 1080px;
  padding-top: 40px;
}
.legal > .eyebrow {
  margin-top: 10px;
}
.legal h1 {
  font-size: clamp(62px, 7vw, 94px);
}
.legal-date {
  font-size: 11px;
  margin: 24px 0 55px;
}
.legal-body {
  border-top: 1px solid var(--line);
  padding-top: 35px;
}
.legal-body h2 {
  font-size: 33px;
  line-height: 1.15;
  margin: 42px 0 16px;
  text-wrap: initial;
}
.legal-body p {
  font-size: 14px;
  margin: 18px 0;
}
.legal-body .legal-lead {
  font: 29px/1.3 var(--serif);
  color: var(--ink);
}
.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.legal-body code {
  font-size: 12px;
}
.reset-theme {
  margin-top: 12px;
}
.reset-status {
  min-height: 26px;
}
.not-found {
  min-height: 560px;
  padding-top: 100px;
}
.not-found > p:not(.eyebrow) {
  margin: 30px 0;
  max-width: 530px;
}
@media (min-width: 1800px) {
  body {
    background-image: linear-gradient(
      90deg,
      transparent calc(50% - 901px),
      var(--line) calc(50% - 900px),
      transparent calc(50% - 899px),
      transparent calc(50% + 899px),
      var(--line) calc(50% + 900px),
      transparent calc(50% + 901px)
    );
  }
}
@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
    font-size: 10px;
  }
  .header-actions {
    gap: 15px;
  }
  .brand {
    font-size: 20px;
  }
  .hero {
    min-height: 750px;
  }
  .hero-copy {
    width: 70%;
  }
  .hero::before {
    background:
      linear-gradient(90deg, var(--veil), var(--glass) 30%, transparent 90%),
      linear-gradient(0deg, var(--veil), transparent 30%);
  }
  .hero-copy h1 {
    font-size: clamp(65px, 7.6vw, 92px);
  }
  .hero-inscription {
    bottom: 115px;
  }
  .service-opening {
    min-height: 400px;
  }
  .card-copy {
    padding: 32px;
  }
  .principle {
    grid-template-columns: 130px 1fr 20px;
    gap: 40px;
  }
  .principle-mark {
    width: 130px;
    height: 130px;
    font-size: 110px;
  }
  .working-together {
    gap: 35px;
  }
  .working-image img {
    aspect-ratio: 0.85;
  }
  .about {
    gap: 55px;
  }
  .service-hero-grid {
    gap: 40px;
  }
  .service-seal {
    min-height: 480px;
  }
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .capability {
    padding: 30px !important;
  }
  .capability:nth-child(2) {
    border-right: 0;
  }
  .capability:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .capability h3 {
    min-height: 68px;
  }
  .workflow-section,
  .engagement,
  .faq {
    gap: 45px;
  }
  .footer-links {
    align-items: flex-start;
  }
  .footer-links nav {
    gap: 12px 20px;
  }
}
@media (max-width: 800px) {
  :root {
    --gutter: 28px;
  }
  html {
    scroll-padding-top: 90px;
  }
  .site-header {
    height: 76px;
    gap: 12px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .brand {
    font-size: 20px;
  }
  .header-actions {
    gap: 12px;
  }
  .header-contact {
    display: none;
  }
  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .hero {
    display: flex;
    min-height: 820px;
    align-items: flex-start;
    padding-top: 64px;
    padding-bottom: 330px;
  }
  .hero-copy {
    width: 100%;
    max-width: 590px;
    padding: 0;
  }
  .hero-copy h1 {
    font-size: clamp(58px, 9.5vw, 78px);
  }
  .hero-world {
    top: 260px;
  }
  .hero-world img {
    object-position: 68% 60%;
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      var(--veil) 0%,
      var(--veil) 34%,
      var(--glass) 45%,
      transparent 75%,
      var(--veil) 96%
    );
  }
  .hero-description {
    max-width: 500px;
    font-size: 14px;
    margin-top: 24px;
  }
  .hero-intent {
    display: none;
  }
  .hero .eyebrow {
    margin-bottom: 25px;
  }
  .hero-buttons {
    margin-top: 24px;
  }
  .hero-inscription {
    top: auto;
    bottom: 116px;
    left: var(--gutter);
    right: var(--gutter);
    flex-direction: row;
    align-items: flex-end;
  }
  .hero-inscription span {
    font-size: 8px;
  }
  .hero-inscription span:first-child {
    display: none;
  }
  .hero-bottom {
    min-height: 70px;
  }
  .hero-bottom > span {
    font-size: 8px;
    max-width: 190px;
  }
  .section-heading {
    gap: 22px;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 36px;
  }
  .section-heading > p {
    font-size: 13px;
    max-width: 480px;
  }
  .service-card,
  .amazon-card {
    grid-template-columns: 1fr;
  }
  .service-opening {
    min-height: 300px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .amazon-card .service-opening {
    order: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-world img {
    object-position: center 55%;
  }
  .card-copy {
    padding: 32px;
  }
  .card-copy h3 {
    font-size: 48px;
  }
  .card-copy > p {
    max-width: 550px;
  }
  .card-top {
    margin-bottom: 20px;
  }
  .service-grid {
    gap: 32px;
  }
  .principle {
    grid-template-columns: 85px 1fr;
    gap: 32px;
  }
  .principle-mark {
    width: 85px;
    height: 85px;
    font-size: 75px;
    align-self: start;
    margin-top: 50px;
  }
  .principle-side {
    display: none;
  }
  .principle h2 {
    font-size: 45px;
  }
  .working-together {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .working-image img {
    aspect-ratio: 1.4;
    object-position: 50% 43%;
  }
  .steps {
    display: grid;
    grid-template-columns: 1fr;
  }
  .steps article {
    padding: 25px 0;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 0;
  }
  .portrait-frame {
    max-width: 430px;
  }
  .about-copy {
    max-width: 600px;
    margin: auto;
  }
  .contact-section::before,
  .contact-section::after {
    width: 25px;
    opacity: 0.28;
  }
  .contact-section::before {
    left: 12px;
  }
  .contact-section::after {
    right: 12px;
  }
  .contact-inner {
    max-width: 600px;
  }
  .contact-orbit {
    max-width: 85%;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 25px;
  }
  .footer-top p {
    font-size: 23px;
  }
  .footer-wordmark {
    font-size: 47px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .footer-links nav {
    gap: 4px 25px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .site-footer {
    padding-top: 42px;
  }
  .service-hero {
    padding-top: 28px;
  }
  .breadcrumb {
    margin-bottom: 28px;
  }
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .service-hero h1 {
    font-size: clamp(51px, 7.5vw, 72px);
    max-width: 640px;
  }
  .service-hero .hero-description {
    max-width: 600px;
  }
  .service-seal {
    min-height: 380px;
    border-radius: 180px 180px 0 0;
    margin: 0 10px;
  }
  .service-seal .world-image img {
    object-position: center 58%;
  }
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }
  .capability h3 {
    font-size: 30px;
  }
  .workflow-section,
  .engagement,
  .faq {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .workflow-section p:not(.eyebrow),
  .engagement p:not(.eyebrow) {
    max-width: 620px;
  }
  .faq {
    padding-top: 0;
  }
  .cross-service {
    padding-block: 28px;
  }
  .cross-service a {
    font-size: 30px;
    gap: 15px;
  }
  .legal {
    padding-top: 25px;
  }
  .legal h1 {
    font-size: 65px;
  }
  .legal-date {
    margin-bottom: 35px;
  }
  .not-found {
    padding-top: 80px;
    min-height: 500px;
  }
}
@media (max-width: 480px) {
  :root {
    --gutter: 22px;
  }
  body {
    font-size: 14px;
  }
  .site-header {
    height: 72px;
  }
  .brand {
    font-size: 18px;
    gap: 7px;
  }
  .brand svg {
    width: 25px;
    height: 25px;
  }
  .header-actions {
    gap: 8px;
  }
  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.13em;
    margin-bottom: 20px;
  }
  .label-rule {
    margin-right: 5px;
  }
  h1 {
    font-size: 54px;
  }
  h2 {
    font-size: 43px;
  }
  h3 {
    font-size: 32px;
  }
  .hero {
    padding-top: 48px;
    padding-bottom: 345px;
    min-height: 840px;
  }
  .hero-copy h1 {
    font-size: clamp(47px, 11.8vw, 59px);
    white-space: normal;
    text-wrap: initial;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.8;
    margin: 21px 0;
  }
  .hero-description br {
    display: none;
  }
  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 340px;
    margin-top: 23px;
  }
  .button {
    min-height: 54px;
    padding: 14px 18px;
    font-size: 11px;
  }
  .hero-world {
    top: 330px;
  }
  .hero-world img {
    object-position: 67% center;
  }
  .hero::before {
    background: linear-gradient(
      180deg,
      var(--veil) 0%,
      var(--veil) 42%,
      var(--glass) 49%,
      transparent 70%,
      transparent 82%,
      var(--veil) 97%
    );
  }
  .hero-inscription {
    bottom: 112px;
  }
  .hero-inscription span {
    font-size: 7px;
  }
  .hero-bottom {
    gap: 16px;
    min-height: 74px;
  }
  .hero-bottom > span {
    max-width: 135px;
    font-size: 7px;
    line-height: 1.8;
  }
  .hero-bottom a {
    font-size: 10px;
    gap: 14px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading > p br {
    display: none;
  }
  .service-opening {
    min-height: 255px;
  }
  .service-opening::after {
    inset: 10px;
  }
  .opening-label,
  .opening-coordinate {
    left: 20px;
    font-size: 7px;
    padding: 8px;
  }
  .opening-label {
    top: 20px;
  }
  .opening-coordinate {
    bottom: 20px;
  }
  .card-copy {
    padding: 26px 22px;
  }
  .card-copy h3 {
    font-size: 41px;
  }
  .card-top {
    gap: 13px;
  }
  .card-number {
    font-size: 29px;
  }
  .pill {
    font-size: 9px;
  }
  .card-copy > p {
    font-size: 12px;
  }
  .card-tags {
    gap: 6px 12px;
    font-size: 8px;
  }
  .card-tags span + span::before {
    margin-right: 12px;
  }
  .card-link {
    font-size: 10px;
  }
  .principle {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .principle-mark {
    width: 68px;
    height: 68px;
    font-size: 59px;
    margin-top: 0;
    text-align: left;
  }
  .principle h2 {
    font-size: 43px;
  }
  .principle p:not(.eyebrow) {
    font-size: 13px;
  }
  .working-image {
    padding: 8px;
  }
  .working-image img {
    aspect-ratio: 1.04;
    object-position: 50% center;
  }
  .working-image figcaption {
    font-size: 8px;
    padding: 11px 3px 2px;
  }
  .steps article {
    grid-template-columns: 32px 1fr;
    gap: 14px;
  }
  .steps p {
    font-size: 12px;
  }
  .step-caption {
    font-size: 8px;
  }
  .about {
    padding-top: 0;
    gap: 40px;
  }
  .portrait-caption {
    padding: 14px 8px 4px;
    gap: 15px;
    font-size: 10px;
  }
  .portrait-caption small {
    font-size: 7px;
  }
  .about-copy .lead {
    font-size: 17px;
  }
  .about-copy > p {
    font-size: 13px;
  }
  .text-link {
    font-size: 11px;
    gap: 16px;
  }
  .contact-section {
    padding-top: 76px;
    padding-bottom: 48px;
  }
  .contact-section::before,
  .contact-section::after {
    display: none;
  }
  .contact-inner h2 {
    font-size: 44px;
  }
  .contact-inner > p:not(.eyebrow):not(.contact-note):not(.copy-status) {
    font-size: 12px;
  }
  .contact-inner > p br {
    display: none;
  }
  .contact-orbit {
    top: 25px;
    max-width: 94%;
    height: 640px;
    opacity: 0.45;
  }
  .contact-note {
    font-size: 9px;
    max-width: 310px;
  }
  .email-row {
    gap: 8px;
    font-size: 11px;
  }
  .copy-email {
    font-size: 9px;
  }
  .contact-inner > .button {
    max-width: 100%;
    gap: 20px;
  }
  .footer-top {
    position: relative;
    padding-bottom: 25px;
  }
  .footer-wordmark {
    font-size: 39px;
  }
  .footer-top p {
    font-size: 21px;
  }
  .back-top {
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 10px;
  }
  .footer-links nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    width: 100%;
    font-size: 9px;
  }
  .footer-bottom {
    font-size: 7px;
  }
  .service-hero {
    padding-top: 24px;
    padding-bottom: 58px;
  }
  .service-hero h1 {
    font-size: clamp(45px, 11.8vw, 57px);
  }
  .service-hero .hero-description {
    font-size: 13px;
  }
  .audience {
    font-size: 10px;
  }
  .service-seal {
    min-height: 320px;
    margin-inline: 8px;
  }
  .service-seal > span {
    left: 20px;
    right: 20px;
    bottom: 22px;
    font-size: 7px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 0 !important;
  }
  .capability:last-child {
    border-bottom: 0;
  }
  .capability h3 {
    min-height: 0;
    font-size: 32px;
    max-width: 310px;
  }
  .capability .step-caption {
    margin-bottom: 17px;
  }
  .capability p {
    font-size: 12px;
    margin-top: 16px;
  }
  .workflow li {
    font-size: 12px;
    padding: 21px 8px;
    gap: 18px;
  }
  .deliverables {
    padding: 29px 25px;
  }
  .deliverables li {
    font-size: 12px;
  }
  .faq {
    padding-top: 0;
  }
  .faq summary {
    font-size: 12px;
    padding: 21px 0;
  }
  .faq details > p {
    font-size: 12px;
    padding-right: 0;
  }
  .cross-service {
    padding-block: 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .cross-service a {
    font-size: 32px;
  }
  .legal {
    padding-top: 25px;
  }
  .legal h1 {
    font-size: 56px;
  }
  .legal-body h2 {
    font-size: 30px;
  }
  .legal-body p {
    font-size: 13px;
  }
  .legal-body .legal-lead {
    font-size: 26px;
  }
  .legal-date {
    font-size: 9px;
  }
  .not-found {
    padding-top: 75px;
  }
  .not-found h1 {
    font-size: 51px;
  }
  .not-found > p:not(.eyebrow) {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media (forced-colors: active) {
  .button,
  .theme-toggle,
  .menu-toggle {
    border: 1px solid ButtonText;
  }
  .world-image {
    opacity: 0.25;
  }
  .hero::before {
    background: Canvas;
  }
  .opening-label,
  .opening-coordinate {
    background: Canvas;
    color: CanvasText;
  }
  .service-seal > span {
    background: Canvas;
    color: CanvasText;
  }
  a:focus-visible,
  button:focus-visible,
  summary:focus-visible {
    outline: 2px solid Highlight;
  }
}
