:root {
  --ink: #1c1c1a;
  --paper: #ffffff;
  --muted: #77766f;
  --line: #d3d1ca;
  --page: 1440px;
  --gutter: clamp(22px, 4.5vw, 72px);
  --space: clamp(90px, 12vw, 180px);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

p,
h1,
h2 {
  margin: 0;
}

a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 13px;
  transform: translateY(-160%);
}

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

.site-header,
.hero,
.statement,
.details,
.company,
.contact,
.site-footer {
  width: min(100%, var(--page));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  font-size: 13px;
}

.site-header > :last-child {
  justify-self: end;
}

.brand {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.site-header a,
.contact a,
.site-footer a {
  transition: opacity 150ms ease;
}

.site-header a:hover,
.contact a:hover,
.site-footer a:hover {
  opacity: 0.55;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100svh - 82px);
  padding-top: clamp(80px, 11vh, 140px);
  padding-bottom: clamp(42px, 7vh, 78px);
  border-top: 1px solid var(--line);
}

.hero h1 {
  max-width: 1200px;
  font-size: clamp(62px, 10vw, 148px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.hero > p {
  max-width: 560px;
  margin-left: auto;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.label {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.statement,
.company,
.contact {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1.58fr);
  gap: var(--gutter);
  padding-top: var(--space);
  padding-bottom: var(--space);
  border-top: 1px solid var(--line);
}

.statement__text {
  max-width: 1100px;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter);
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(52px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

.details > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1.58fr);
  gap: 24px;
}

.details__copy {
  max-width: 520px;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.company__content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
}

.company h2,
.contact h2 {
  font-size: clamp(46px, 6.2vw, 90px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.06em;
}

.company__content > p {
  color: #5f5e59;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.contact__content {
  display: grid;
  gap: clamp(72px, 10vw, 140px);
}

.contact a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(20px, 2.5vw, 36px);
  letter-spacing: -0.035em;
}

.arrow-icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 0.62em;
  height: 0.62em;
  margin-right: 0.08em;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.arrow-icon::after {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 0.88em;
  height: 1px;
  background: currentColor;
  content: "";
  transform: rotate(-45deg);
  transform-origin: right center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: center;
  min-height: 94px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }

  .site-header p {
    display: none;
  }

  .hero {
    min-height: calc(90svh - 70px);
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 100px);
  }

  .hero > p {
    margin-left: 0;
  }

  .statement,
  .company,
  .contact,
  .company__content {
    grid-template-columns: 1fr;
  }

  .statement,
  .company,
  .contact {
    gap: 46px;
  }

  .details {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .details > div {
    grid-template-columns: 110px 1fr;
  }

  .company__content {
    gap: 42px;
    align-items: start;
  }

  .company__content > p {
    max-width: 560px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media (max-width: 420px) {
  .details > div {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact h2 br {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
