:root {
  --ivoire: #f4f1ea;
  --papier: #faf9f6;
  --noir: #111111;
  --encre: #2d2b27;
  --pierre: #8a8881;
  --bronze: #9a7b4f;
  --ligne: rgba(17, 17, 17, 0.13);
  --ligne-soft: rgba(17, 17, 17, 0.07);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--noir);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.48), transparent 34%),
    var(--ivoire);
  background-size: 108px 108px, 108px 108px, auto, auto;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration-color: rgba(154, 123, 79, 0.58);
  text-underline-offset: 0.28em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

a:hover {
  color: var(--bronze);
  text-decoration-color: currentColor;
}

.page {
  display: grid;
  min-height: 100vh;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 72px);
}

.topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
}

.logo {
  display: block;
  width: min(246px, 58vw);
  height: auto;
}

.topline a {
  margin-top: 4px;
  color: #504d46;
  font-size: 0.86rem;
}

.hero {
  align-self: center;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  max-width: 1020px;
  padding: clamp(64px, 10vw, 128px) 0 clamp(44px, 7vw, 92px);
}

.eyebrow,
.label,
dt {
  color: var(--bronze);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0;
}

h1 {
  max-width: 1050px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 8.8vw, 8.6rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
}

.lead {
  max-width: 750px;
  margin: 0;
  color: #39362f;
  font-size: clamp(1.04rem, 1.35vw, 1.28rem);
  line-height: 1.78;
}

.status {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.15fr;
  border-top: 1px solid var(--ligne);
  border-bottom: 1px solid var(--ligne);
}

.status div {
  min-height: 126px;
  padding: 22px 26px 24px 0;
  border-right: 1px solid var(--ligne-soft);
}

.status div:last-child {
  border-right: 0;
}

.status span,
.status strong {
  display: block;
}

.status strong {
  margin-top: 18px;
  color: var(--encre);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.32rem, 2.1vw, 2.15rem);
  font-weight: 400;
  line-height: 1.12;
}

.details {
  padding: clamp(42px, 6vw, 82px) 0;
}

dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 44px;
  margin: 0;
}

dt {
  margin-bottom: 10px;
  color: var(--pierre);
}

dd {
  margin: 0;
  color: #24231f;
  font-size: 1rem;
  line-height: 1.58;
}

.legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 54px;
  border-top: 1px solid var(--ligne);
  padding-top: 28px;
  color: #4b4740;
}

.legal h2 {
  margin: 0 0 10px;
  color: var(--noir);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 400;
}

.legal p {
  max-width: 520px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.72;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 18px;
  color: var(--pierre);
}

@media (max-width: 900px) {
  .status,
  dl,
  .legal {
    grid-template-columns: 1fr 1fr;
  }

  .status div:nth-child(2) {
    border-right: 0;
  }

  .status div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--ligne-soft);
  }
}

@media (max-width: 620px) {
  .page {
    padding: 24px 20px 30px;
  }

  .topline {
    display: grid;
    gap: 18px;
    min-height: auto;
  }

  .hero {
    padding: 56px 0 42px;
  }

  h1 {
    font-size: clamp(2.78rem, 15vw, 4.8rem);
  }

  .status,
  dl,
  .legal {
    grid-template-columns: 1fr;
  }

  .status div,
  .status div:nth-child(2),
  .status div:last-child {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid var(--ligne-soft);
    padding: 20px 0;
  }

  .status div:first-child {
    border-top: 0;
  }
}
