:root {
  color-scheme: light;
  --background: #f5f5f2;
  --surface: #ffffff;
  --text: #121212;
  --muted: #6d6d68;
  --line: #d9d9d3;
  --danger: #a52a2a;
  --success: #1d6536;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 280px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.page,
.site-footer {
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
}

.page {
  min-height: calc(100svh - 65px);
  padding-top: 24px;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.header-main,
.header-meta,
.contact-heading,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-main {
  min-height: 42px;
}

.header-meta {
  min-height: 38px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.wordmark {
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.language-switcher a {
  min-width: 34px;
  padding: 5px 7px;
  color: var(--muted);
  text-align: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}

.language-switcher a:hover,
.language-switcher .is-active {
  color: var(--surface);
  background: var(--text);
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  content: "/";
}

.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.launch-status > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
}

.above-fold {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
  padding: clamp(48px, 7vh, 72px) 0 52px;
}

.project {
  min-width: 0;
  padding-top: 8px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 560;
  letter-spacing: -0.052em;
  line-height: 0.99;
  text-wrap: balance;
}

.description {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  text-wrap: pretty;
}

.contact {
  min-width: 0;
  padding-left: clamp(28px, 4vw, 48px);
  border-left: 1px solid var(--line);
}

.contact-heading {
  align-items: flex-start;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-heading h2 {
  max-width: 190px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.phone-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 620;
  white-space: nowrap;
}

.field-group {
  min-width: 0;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

input,
textarea,
button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
}

input,
textarea {
  display: block;
  padding: 13px 14px;
  color: var(--text);
  background: var(--surface);
  outline: none;
}

input {
  min-height: 50px;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #999993;
  opacity: 1;
}

input:focus,
textarea:focus {
  border-color: var(--text);
  box-shadow: inset 0 0 0 1px var(--text);
}

.field-group.has-error input,
.field-group.has-error textarea {
  border-color: var(--danger);
}

.field-error {
  min-height: 18px;
  margin: 5px 0 4px;
  color: var(--danger);
  font-size: 11px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 15px;
  color: var(--surface);
  background: var(--text);
  border-color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

button:hover {
  background: #333;
  border-color: #333;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.form-status {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.site-footer {
  min-height: 65px;
  padding: 20px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

@media (max-width: 800px) {
  .page,
  .site-footer {
    width: min(100% - 36px, 1120px);
  }

  .page {
    padding-top: 16px;
  }

  .above-fold {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 36px 0 42px;
  }

  .project {
    padding-top: 0;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(38px, 11vw, 52px);
  }

  .description {
    font-size: 17px;
  }

  .contact {
    padding: 26px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-heading {
    margin-bottom: 22px;
  }
}

@media (max-width: 420px) {
  .header-main {
    gap: 10px;
  }

  .header-meta {
    gap: 12px;
  }

  .breadcrumbs li:first-child {
    display: none;
  }

  .breadcrumbs li + li::before {
    display: none;
  }

  .contact-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
