:root {
  --ink: #090909;
  --muted: #55565a;
  --fine: #d8d8d8;
  --paper: #fbfbfa;
  --paper-soft: #f5f5f3;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 30%, rgba(0, 0, 0, 0.035), transparent 29rem),
    linear-gradient(115deg, rgba(0, 0, 0, 0.022), transparent 36%),
    var(--paper);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 124px;
  padding: 32px clamp(28px, 5.4vw, 72px);
  border-bottom: 1px solid var(--fine);
}

.brand {
  display: inline-flex;
  width: clamp(190px, 22vw, 255px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-height: 36px;
  color: #202124;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.language-switch span {
  width: 1px;
  height: 18px;
  background: var(--fine);
}

.language-option {
  appearance: none;
  min-width: 32px;
  min-height: 32px;
  padding: 4px 0 4px 0.18em;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  color: #76777a;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  line-height: 1;
  cursor: pointer;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--ink);
}

.language-option:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.language-option.is-active {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.page {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 202px);
  padding: clamp(100px, 15vh, 230px) clamp(28px, 8.75vw, 92px) 52px;
}

.page::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7), transparent 50%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.55), transparent 45%);
  z-index: 0;
}

.watermark {
  position: absolute;
  top: clamp(145px, 15vw, 185px);
  right: clamp(-430px, -38vw, -245px);
  width: clamp(760px, 86vw, 980px);
  height: auto;
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.intro,
.contact,
.statement {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.intro {
  min-height: 700px;
}

.intro-copy {
  width: min(100%, 690px);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-family: Didot, "Bodoni 72", "Bodoni 72 Smallcaps", "Baskerville", "Times New Roman", serif;
  font-size: clamp(4.8rem, 9.5vw, 7.3rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.rule {
  width: 88px;
  height: 1px;
  margin: 52px 0 36px;
  background: var(--ink);
}

.summary {
  max-width: 520px;
  color: #202124;
  font-size: clamp(1.25rem, 2vw, 1.52rem);
  line-height: 1.48;
}

.caption,
.contact-copy h2,
.statement {
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.caption {
  margin-top: 56px;
  color: #252525;
  font-size: 0.87rem;
  font-weight: 500;
}

.monogram {
  display: block;
  width: 84px;
  height: auto;
  margin-top: 82px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 8vw, 108px);
  align-items: start;
  padding-top: 20px;
}

.contact-item {
  display: grid;
  grid-template-columns: 52px 1px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.contact-item::before {
  width: 1px;
  min-height: 122px;
  background: var(--fine);
  content: "";
  grid-column: 2;
  grid-row: 1;
}

.icon {
  width: 34px;
  padding-top: 10px;
}

.icon svg {
  display: block;
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.contact-copy {
  grid-column: 3;
  min-width: 0;
}

.contact-copy h2 {
  margin-bottom: 18px;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
}

.contact-copy p {
  color: #26282b;
  font-size: 1rem;
  line-height: 1.75;
}

.contact-copy p::after {
  display: block;
  width: 55px;
  height: 1px;
  margin-top: 26px;
  background: var(--fine);
  content: "";
}

.contact-item:last-child .contact-copy p::after {
  display: none;
}

.statement {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) auto minmax(60px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  margin-top: clamp(78px, 8.75vw, 102px);
  margin-bottom: 14px;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}

.statement span {
  height: 1px;
  background: #8e8e8e;
}

.site-footer {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 24px clamp(28px, 5.4vw, 72px);
  border-top: 1px solid var(--fine);
  color: #333438;
  font-size: 0.94rem;
}

@media (max-width: 780px) {
  .site-header {
    min-height: 104px;
    gap: 18px;
  }

  .brand {
    width: clamp(168px, 52vw, 230px);
  }

  .page {
    padding-top: 72px;
  }

  .watermark {
    top: 150px;
    right: -370px;
    width: 690px;
    opacity: 0.04;
  }

  .intro {
    min-height: 530px;
  }

  h1 {
    font-size: clamp(3.65rem, 15vw, 5.1rem);
  }

  .rule {
    margin-top: 42px;
  }

  .summary {
    max-width: 440px;
  }

  .caption {
    max-width: 22rem;
    line-height: 1.85;
  }

  .monogram {
    width: 72px;
    margin-top: 66px;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-item {
    grid-template-columns: 44px 1px minmax(0, 1fr);
    gap: 22px;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 72px;
  }

  .statement span {
    width: min(220px, 62vw);
    margin-inline: auto;
  }
}

@media (max-width: 460px) {
  .site-header,
  .page,
  .site-footer {
    padding-inline: 22px;
  }

  .brand {
    width: min(178px, 54vw);
  }

  .language-switch {
    gap: 7px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .language-option {
    min-width: 28px;
  }

  .page {
    padding-bottom: 44px;
  }

  .intro {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3.1rem, 14vw, 3.9rem);
  }

  .summary {
    font-size: 1.12rem;
  }

  .caption {
    font-size: 0.78rem;
  }

  .contact {
    margin-top: 82px;
  }

  .contact-item {
    grid-template-columns: 36px 1px minmax(0, 1fr);
    gap: 16px;
  }

  .icon,
  .icon svg {
    width: 28px;
    height: 28px;
  }

  .contact-copy h2 {
    font-size: 0.76rem;
  }

  .contact-copy p {
    font-size: 0.96rem;
  }

  .statement {
    font-size: 0.92rem;
    line-height: 2;
  }

  .site-footer {
    font-size: 0.82rem;
  }
}
