:root {
  color-scheme: light;
  --ink: #080808;
  --muted: #555555;
  --faint: #efefef;
  --paper: #ffffff;
  --soft: #f7f7f4;
  --line: #d9d9d3;
  --max: 1180px;
  --font-sans: Inter, "Inter var", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

button,
input,
textarea {
  font-family: var(--font-sans);
}

.site-header {
  --header-item-gap: 42px;
  --header-row: 40px;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Inter, "Inter var", var(--font-sans);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--header-item-gap);
  width: fit-content;
  max-width: calc(100% - 48px);
  margin: 0 auto;
  padding: 17px 28px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(217, 217, 211, 0.44);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header::after {
  content: none;
}

.is-scrolled .header-inner {
  background: rgba(255, 255, 255, 0.995);
  border-color: rgba(217, 217, 211, 0.54);
  box-shadow: 0 10px 24px rgba(8, 8, 8, 0.026);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  height: var(--header-row);
}

.brand[aria-current="page"] {
  color: var(--ink);
}

.brand-icon {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  transform: translateY(1px);
}

.brand-text {
  display: inline-block;
  height: var(--header-row);
  color: var(--ink);
  font-size: 22px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: var(--header-row);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--header-item-gap);
  min-height: var(--header-row);
  color: #303030;
  font-size: 17px;
  font-weight: 700;
  line-height: var(--header-row);
}

.nav a {
  position: relative;
  display: inline-block;
  height: var(--header-row);
  line-height: var(--header-row);
  transition: color 160ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
}

main {
  flex: 1;
  width: 100%;
  animation: page-enter 360ms ease both;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 68px;
  max-width: var(--max);
  min-height: 0;
  margin: 0 auto;
  padding: 68px 24px 74px;
}

.hero-copy {
  max-width: 820px;
}

.hero-copy .lead {
  margin-top: 28px;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 640;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-emphasis {
  font-weight: 780;
}

.lead {
  max-width: 690px;
  margin-bottom: 0;
  color: #202020;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 430;
  line-height: 1.35;
}

.actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.text-link {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  transition: color 160ms ease, border-color 160ms ease;
}

.text-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.hero-note {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.trust-mark {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
}

.trust-mark img {
  width: 82px;
  height: 82px;
}

.hero-note p {
  margin-bottom: 0;
  color: #2f2f2f;
  font-size: 20px;
  line-height: 1.5;
}

.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement p {
  margin-bottom: 0;
  color: #242424;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.42;
}

.principles {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 24px;
}

.section-band {
  border-top: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
}

.section-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 58px;
  text-align: center;
}

.section-lead {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.02;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-list.standalone {
  max-width: var(--max);
  margin: 0 auto 18px;
}

.principle-list article {
  min-height: 280px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.principle-list article:last-child {
  border-right: 0;
}

.principle-list span {
  display: block;
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.principle-list h3 {
  min-height: 76px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 620;
  letter-spacing: 0;
}

.principle-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.control-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.control-section h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.02;
}

.control-section p {
  margin-bottom: 0;
  color: #242424;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.42;
}

.label-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.label-list li {
  padding: 9px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.quiet {
  background: var(--ink);
  color: var(--paper);
}

.quiet-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 94px 24px;
}

.quiet-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 36px;
}

.quiet h2 {
  grid-column: 1;
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 590;
  letter-spacing: 0;
  line-height: 1.08;
}

.quiet-inner p {
  grid-column: 1;
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.55;
}

.quiet-inner .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 24px;
}

.centered-contact {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 820px;
  text-align: center;
}

.centered-contact .button {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.button:hover {
  background: var(--paper);
  color: var(--ink);
}

.button.light-button {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.button.light-button:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--paper);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 24px 132px;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
}

.wide-hero h1 {
  max-width: none;
  font-size: clamp(54px, 6.2vw, 88px);
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  gap: 64px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 24px 104px;
}

.contact-intro {
  max-width: 720px;
}

.contact-intro h1 {
  margin-bottom: 34px;
}

.email-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.email-note a {
  color: var(--ink);
  font-weight: 700;
}

.contact-form {
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: #222222;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #c8c8c2;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.contact-form button {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 750;
}

.contact-form button:hover {
  background: var(--paper);
  color: var(--ink);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 24px 42px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--faint);
}

footer p {
  margin-bottom: 0;
}

footer a {
  color: var(--ink);
  font-weight: 650;
}

@media (max-width: 820px) {
  .header-inner {
    align-items: center;
  }

  .nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero,
  .statement,
  .control-section,
  .contact,
  .quiet-inner,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 58px;
  }

  .hero-note {
    max-width: 520px;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 30px 0 0;
  }

  .statement,
  .control-section,
  .principles,
  .contact,
  .page-hero,
  .contact-page {
    padding-top: 46px;
    padding-bottom: 68px;
  }

  .control-section {
    text-align: center;
  }

  .control-section h2,
  .control-section p {
    margin-right: auto;
    margin-left: auto;
  }

  .label-list {
    justify-content: center;
  }

  .principle-list {
    grid-template-columns: 1fr;
  }

  .principle-list article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-list article:last-child {
    border-bottom: 0;
  }

  .principle-list h3 {
    min-height: 0;
  }

  .principle-list span {
    margin-bottom: 36px;
  }

  .quiet-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .quiet-inner {
    align-items: start;
  }

  .quiet-inner .button,
  .quiet h2,
  .quiet-inner p {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  main {
    animation: none;
  }
}

@media (max-width: 560px) {
  .header-inner {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) 18px;
    justify-items: center;
    gap: 10px;
    width: 100%;
    max-width: none;
    padding: 14px 0 15px;
  }

  .brand,
  .nav {
    grid-column: 2;
    justify-self: center;
  }

  .brand {
    grid-row: 1;
  }

  .nav {
    grid-row: 2;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: clamp(18px, 6vw, 28px);
  }

  .brand {
    gap: 8px;
    height: 34px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
  }

  .brand-text {
    height: 34px;
    font-size: 21px;
    line-height: 34px;
  }

  .nav {
    font-size: 14px;
    font-weight: 700;
    line-height: 32px;
    min-height: 32px;
  }

  .nav a {
    height: 32px;
    line-height: 32px;
  }

  .hero,
  .statement,
  .control-section,
  .principles,
  .contact,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 34px;
  }

  .lead,
  .statement p,
  .hero-note p {
    font-size: 19px;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .text-link {
    align-self: center;
    width: fit-content;
  }

  .contact-form {
    padding: 20px;
  }

  .hero-note {
    text-align: center;
  }

  .trust-mark {
    margin-right: auto;
    margin-left: auto;
  }

  footer {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
