@font-face {
  font-family: "Instrument Sans Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 400 700;
  src: url("/fonts/instrument-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("/fonts/ibm-plex-mono-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("/fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
}

:root {
  font-family: "Instrument Sans Variable", "Helvetica Neue", Arial, sans-serif;
  color: #0a0a0a;
  background: #f6f6f3;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --black: #050505;
  --white: #f8f8f5;
  --paper: #f3f3ef;
  --line: rgba(10, 10, 10, 0.27);
  --line-light: rgba(255, 255, 255, 0.28);
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body[data-menu-open="true"] {
  overflow: hidden;
}

button {
  font: inherit;
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
figure,
ul {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 450;
  letter-spacing: -0.045em;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 12px 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 64px);
  color: var(--white);
  background: var(--black);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-size: 21px;
  font-weight: 540;
  letter-spacing: -0.045em;
}

.brand-endorsement {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.74;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.7vw, 44px);
  font-size: 14px;
}

.site-nav a,
.menu-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-nav a {
  padding-block: 12px;
  color: rgba(248, 248, 245, 0.78);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav .nav-contact {
  min-width: 82px;
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: var(--white);
  text-align: center;
}

.menu-button {
  display: none;
  min-width: 54px;
  min-height: 44px;
  padding: 0;
  color: var(--white);
  text-align: right;
}

.hero {
  min-height: 760px;
  padding-top: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  color: var(--white);
  background: var(--black);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 72px clamp(44px, 6vw, 104px) 76px clamp(32px, 5.2vw, 82px);
}

.micro-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-label {
  margin-bottom: 30px;
  color: rgba(248, 248, 245, 0.72);
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(60px, 6.4vw, 100px);
  line-height: 0.98;
}

.hero-line {
  display: block;
  overflow: hidden;
  margin-bottom: -0.08em;
  padding-bottom: 0.08em;
}

.hero-line > span {
  display: block;
}

.hero-summary {
  max-width: 560px;
  margin-top: 40px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.52;
  color: rgba(248, 248, 245, 0.78);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 540;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: transparent;
}

.inline-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  padding: 8px 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
}

.inline-link-light {
  color: rgba(248, 248, 245, 0.83);
}

.hero-media {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #d4d4d1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: grayscale(1) contrast(1.02);
}

.motion-enabled .hero-line > span,
.motion-enabled .hero-label,
.motion-enabled .hero-summary,
.motion-enabled .hero-actions,
.motion-enabled .hero-media img {
  opacity: 0;
}

.motion-enabled .hero-line > span {
  transform: translateY(108%);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 500ms ease;
}

.motion-enabled .hero-line:nth-child(2) > span {
  transition-delay: 90ms;
}

.motion-enabled .hero-line:nth-child(3) > span {
  transition-delay: 180ms;
}

.motion-enabled .hero-label,
.motion-enabled .hero-summary,
.motion-enabled .hero-actions {
  transform: translateY(14px);
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 620ms ease;
}

.motion-enabled .hero-label {
  transition-delay: 80ms;
}

.motion-enabled .hero-summary {
  transition-delay: 360ms;
}

.motion-enabled .hero-actions {
  transition-delay: 450ms;
}

.motion-enabled .hero-media img {
  transform: scale(1.035);
  transition: transform 1400ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 900ms ease;
}

.motion-enabled.is-page-ready .hero-line > span,
.motion-enabled.is-page-ready .hero-label,
.motion-enabled.is-page-ready .hero-summary,
.motion-enabled.is-page-ready .hero-actions,
.motion-enabled.is-page-ready .hero-media img {
  opacity: 1;
  transform: none;
}

.section-shell {
  width: min(100%, 1400px);
  margin-inline: auto;
  padding: clamp(88px, 9vw, 140px) clamp(28px, 6vw, 96px);
}

.section-shell h2,
.booking-section h2 {
  font-size: clamp(44px, 5.2vw, 78px);
  line-height: 1.03;
}

.vision-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  column-gap: clamp(60px, 8vw, 124px);
  row-gap: clamp(68px, 8vw, 112px);
}

.vision-intro {
  align-self: end;
  padding-bottom: clamp(10px, 2vw, 28px);
}

.vision-intro .micro-label {
  margin-bottom: 24px;
}

.vision-lead {
  max-width: 560px;
  margin-top: 30px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
  color: rgba(10, 10, 10, 0.66);
}

.vision-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 1.9 / 1;
  background: #d4d4d1;
}

.vision-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.035);
}

.vision-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 11px 14px;
  color: var(--white);
  background: var(--black);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vision-statements {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--line);
}

.vision-statements article {
  padding: 30px clamp(24px, 3vw, 44px) 40px 0;
}

.vision-statements article + article {
  padding-left: clamp(24px, 3vw, 44px);
  border-left: 1px solid var(--line);
}

.vision-statements h3 {
  margin-top: 30px;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.08;
}

.vision-statements article > p:last-child {
  max-width: 390px;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.58;
  color: rgba(10, 10, 10, 0.64);
}

.motion-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-enabled [data-reveal-delay="1"] {
  --reveal-delay: 100ms;
}

.motion-enabled [data-reveal-delay="2"] {
  --reveal-delay: 200ms;
}

.motion-enabled [data-reveal="image"] {
  transform: translateY(18px);
}

.motion-enabled [data-reveal="image"] img {
  transform: scale(1.045);
  transition: transform 1250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.motion-enabled [data-reveal="image"].is-visible img {
  transform: none;
}

.operating-section > .micro-label {
  margin-bottom: 24px;
}

.operating-section > h2 {
  max-width: 950px;
}

.operating-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(64px, 8vw, 112px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operating-grid article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 28px;
  padding: 46px clamp(24px, 4vw, 56px) 50px 0;
}

.operating-grid article + article {
  padding-left: clamp(24px, 4vw, 56px);
  border-left: 1px solid var(--line);
}

.section-index {
  padding-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.operating-grid .section-index {
  grid-row: 1 / 3;
}

.operating-grid h3,
.offering-row h3,
.workflow-grid h3 {
  font-size: clamp(28px, 2.6vw, 39px);
  line-height: 1.1;
}

.operating-grid article > p:last-child {
  max-width: 440px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.66);
}

.shared-principle {
  margin-top: 30px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.offering-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 1050px;
}

.section-heading .micro-label {
  margin-bottom: 24px;
}

.section-heading > p:last-child {
  max-width: 760px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.64);
}

.offering-list {
  margin-top: clamp(62px, 7vw, 100px);
  border-top: 1px solid var(--black);
}

.offering-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.5fr);
  gap: clamp(44px, 7vw, 104px);
  padding: 40px 0 46px;
  border-bottom: 1px solid var(--line);
}

.offering-title {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
}

.offering-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 5px;
}

.offering-body > p:not(.offering-tags) {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.56;
  color: rgba(10, 10, 10, 0.64);
}

.offering-tags,
.workflow-actions {
  font-size: 16px;
  line-height: 1.55;
}

.offering-tags span,
.workflow-actions span {
  margin-inline: 8px;
  color: rgba(10, 10, 10, 0.36);
}

.optional-label {
  margin-top: 9px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workflow-section {
  border-top: 1px solid var(--line);
}

.workflow-heading {
  max-width: 1100px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(60px, 9vw, 140px);
  margin-top: clamp(62px, 8vw, 110px);
}

.available-workflow,
.next-workflows {
  border-top: 1px solid var(--black);
  padding-top: 24px;
}

.available-workflow h3 {
  margin-top: 38px;
}

.workflow-actions {
  max-width: 620px;
  margin-top: 24px;
}

.review-note {
  max-width: 580px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.67);
}

.next-workflows ul {
  margin-top: 38px;
  padding: 0;
  list-style: none;
}

.next-workflows li {
  padding: 13px 0 11px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(56px, 8vw, 128px);
  max-width: 1600px;
  margin-inline: auto;
  padding: clamp(88px, 9vw, 140px) clamp(28px, 6vw, 96px);
  background: #fafaf7;
  border-top: 1px solid var(--line);
}

.booking-copy {
  align-self: start;
  padding-top: 18px;
}

.booking-copy h2 {
  max-width: 600px;
  margin-top: 26px;
}

.booking-copy > p:not(.micro-label, .privacy-note) {
  max-width: 520px;
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.64);
}

.privacy-note {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-panel {
  min-width: 0;
}

.booking-consent {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 6vw, 84px);
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
}

.booking-consent h3 {
  max-width: 650px;
  margin-top: 26px;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.06;
}

.booking-consent > p:not(.micro-label, .booking-consent-note) {
  max-width: 660px;
  margin-top: 26px;
  color: rgba(248, 248, 245, 0.7);
  font-size: 17px;
  line-height: 1.58;
}

.booking-consent-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.booking-consent-note {
  max-width: 660px;
  margin-top: 30px;
  color: rgba(248, 248, 245, 0.58);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.65;
  letter-spacing: 0.03em;
}

.booking-consent-note a {
  border-bottom: 1px solid currentColor;
  color: var(--white);
}

.booking-frame {
  display: block;
  width: 100%;
  height: 720px;
  border: 1px solid var(--line);
  background: #fff;
}

.booking-fallback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.booking-fallback a {
  border-bottom: 1px solid currentColor;
}

.booking-reset {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  padding: 30px clamp(24px, 4vw, 64px) 34px;
  color: var(--white);
  background: var(--black);
  font-size: 12px;
}

.site-footer p {
  color: rgba(248, 248, 245, 0.58);
}

.footer-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-bottom-color: var(--white);
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  position: absolute;
}

.legal-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.legal-navigation a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
}

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

.legal-hero-inner {
  width: min(100%, 1400px);
  min-height: 500px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 164px clamp(28px, 6vw, 96px) 82px;
}

.legal-hero h1 {
  margin-top: 24px;
  font-size: clamp(72px, 8.5vw, 126px);
  line-height: 0.92;
}

.legal-hero-inner > p:last-child {
  margin-top: 32px;
  color: rgba(248, 248, 245, 0.66);
  font-size: 16px;
  line-height: 1.5;
}

.legal-content {
  width: min(100%, 1400px);
  margin-inline: auto;
  padding: clamp(72px, 8vw, 116px) clamp(28px, 6vw, 96px)
    clamp(96px, 10vw, 148px);
}

.legal-status {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(32px, 6vw, 96px);
  margin-bottom: clamp(68px, 8vw, 108px);
  padding: 24px 0 28px;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--line);
}

.legal-status > p:last-child {
  max-width: 770px;
  font-size: 17px;
  line-height: 1.58;
  color: rgba(10, 10, 10, 0.66);
}

.legal-list {
  border-top: 1px solid var(--black);
}

.legal-row {
  display: grid;
  grid-template-columns: 64px minmax(220px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(24px, 4vw, 64px);
  padding: 40px 0 46px;
  border-bottom: 1px solid var(--line);
}

.legal-row .section-index {
  padding-top: 7px;
}

.legal-row h2 {
  font-size: clamp(27px, 2.4vw, 36px);
  line-height: 1.1;
}

.legal-details {
  max-width: 650px;
  padding-top: 4px;
  font-size: 17px;
  line-height: 1.62;
  color: rgba(10, 10, 10, 0.68);
}

.legal-details address {
  font-style: normal;
}

.legal-details a {
  border-bottom: 1px solid currentColor;
  color: var(--black);
  overflow-wrap: anywhere;
}

.legal-details > p + p,
.legal-details address + p {
  margin-top: 12px;
}

.legal-details .legal-company {
  margin-bottom: 12px;
  color: var(--black);
  font-size: 20px;
  font-weight: 540;
  line-height: 1.35;
}

.legal-details p + .legal-company {
  margin-top: 8px;
  margin-bottom: 0;
}

.legal-secondary {
  max-width: 520px;
}

.privacy-page .legal-hero h1 {
  font-size: clamp(64px, 7.4vw, 112px);
}

.privacy-list .legal-details {
  max-width: 760px;
}

.privacy-list .legal-row:target {
  scroll-margin-top: 24px;
}

.legal-details ul {
  margin-top: 14px;
  padding-left: 1.25em;
}

.legal-details li + li {
  margin-top: 7px;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
