:root {
  --paper: #eeeae1;
  --ink: #1b1d1c;
  --iron: #343938;
  --gold: #a77b24;
  --line: rgba(27, 29, 28, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 48px;
  background:
    linear-gradient(rgba(238, 234, 225, 0.86), rgba(238, 234, 225, 0.86)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(27, 29, 28, 0.08) 25%
    );
}

.hero::before {
  position: absolute;
  top: 0;
  left: clamp(24px, 5vw, 72px);
  width: 1px;
  height: clamp(80px, 18vh, 180px);
  background: var(--gold);
  content: "";
}

.hero__frame {
  position: absolute;
  inset: clamp(24px, 5vw, 72px);
  border: 1px solid var(--line);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow,
.legal-form,
.label,
.section-number {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 2rem;
  color: var(--gold);
}

h1 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.14em;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.ampersand {
  color: var(--gold);
  font-size: 0.66em;
  font-style: italic;
}

.legal-form {
  margin-top: 2rem;
  color: var(--iron);
}

.imprint-link {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: clamp(24px, 5vw, 72px);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.imprint-link span {
  color: var(--gold);
  font-size: 1.1rem;
}

.imprint {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(56px, 10vw, 180px);
  min-height: 100svh;
  padding: clamp(80px, 12vw, 170px) clamp(24px, 9vw, 140px);
  background: var(--iron);
  color: var(--paper);
}

.imprint__heading {
  display: grid;
  align-content: start;
  grid-template-columns: auto 1fr;
  gap: 24px;
}

.section-number {
  padding-top: 0.65rem;
  color: #d2ae63;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.imprint__content {
  display: grid;
  align-content: start;
  border-top: 1px solid rgba(238, 234, 225, 0.25);
}

.imprint__block {
  padding: 32px 0 36px;
  border-bottom: 1px solid rgba(238, 234, 225, 0.25);
}

.imprint__block p {
  margin: 0;
}

.imprint__block .label {
  margin-bottom: 15px;
  color: #d2ae63;
}

.imprint__block--pending {
  color: #f2dba9;
}

@media (max-width: 820px) {
  .hero {
    padding: 24px;
  }

  .hero__frame {
    inset: 20px;
  }

  .hero::before {
    left: 20px;
    height: 92px;
  }

  h1 {
    flex-direction: column;
    align-items: center;
    gap: 0.05em;
    font-size: clamp(4.6rem, 24vw, 7.5rem);
  }

  .ampersand {
    margin: -0.14em 0;
  }

  .imprint-link {
    right: 26px;
    bottom: 28px;
  }

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

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