:root {
  --ink: #191915;
  --paper: #fcfbf6;
  --white: #ffffff;
  --cream: #f3eee2;
  --sage: #dce3c8;
  --honey: #efc85b;
  --honey-bright: #f5b715;
  --muted: #68675f;
  --line: rgba(25, 25, 21, 0.16);
  --site-width: 1380px;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main, .site-header, footer { margin-inline: auto; max-width: var(--site-width); }
section[id] { scroll-margin-top: 110px; }

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -70px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 150px 1fr auto;
  min-height: 94px;
  padding: 15px clamp(34px, 6vw, 86px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand { display: block; width: 112px; }
.brand img, .footer-brand img { height: auto; width: 100%; }
.site-header nav { display: flex; gap: clamp(22px, 3vw, 48px); justify-content: center; }
.site-header nav a, .back-link {
  font-size: 13px;
  font-weight: 650;
  padding-block: 9px;
  position: relative;
}
.site-header nav a::after, .back-link::after {
  background: var(--honey-bright);
  bottom: 3px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}
.site-header nav a:hover::after, .site-header nav a:focus-visible::after,
.back-link:hover::after, .back-link:focus-visible::after { transform: scaleX(1); }
.back-link span { margin-left: 8px; }

.hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr);
  min-height: 590px;
}
.hero-copy {
  align-self: center;
  padding: clamp(90px, 10vw, 145px) clamp(30px, 6vw, 86px);
}
.eyebrow {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .15em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-weight: 450;
  letter-spacing: -.045em;
}
h1 {
  font-size: clamp(58px, 7vw, 96px);
  line-height: .98;
  margin: 0;
}
h2 {
  font-size: clamp(48px, 5.3vw, 72px);
  line-height: 1;
  margin: 0;
}
h3 {
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.16;
  margin: 0 0 18px;
}
.hero-lead {
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  margin: 34px 0 0;
  max-width: 610px;
}
.page-index {
  align-self: stretch;
  background: var(--cream);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 80px);
}
.index-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  margin: 0 0 25px;
  text-transform: uppercase;
}
.page-index a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 32px 1fr;
  padding: 20px 0;
}
.page-index a:last-of-type { border-bottom: 1px solid var(--line); }
.page-index a span { color: #9b6d11; font-size: 11px; font-weight: 800; }
.page-index a strong { font-size: 18px; font-weight: 500; }
.version { color: var(--muted); font-size: 11px; margin: 30px 0 0; }

.section { padding: clamp(90px, 10vw, 145px) clamp(30px, 6vw, 86px); }
.imprint {
  align-items: start;
  background: var(--honey);
  display: grid;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: .8fr 1.2fr;
}
.imprint-card {
  background: var(--paper);
  border: 1px solid rgba(25, 25, 21, .2);
  box-shadow: 0 30px 90px rgba(80, 66, 30, .1);
  padding: clamp(30px, 5vw, 60px);
}
.imprint-brand {
  border-bottom: 1px solid var(--line);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 500;
  letter-spacing: -.03em;
  margin: 0 0 28px;
  padding-bottom: 24px;
}
address { font-size: 18px; font-style: normal; line-height: 1.75; }
.contact-links { display: grid; margin-top: 32px; }
.contact-links a {
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  padding: 14px 0;
}
.contact-links a:last-child { border-bottom: 1px solid var(--line); }
.contact-links a:hover, .contact-links a:focus-visible { color: #805a0e; }

.privacy {
  align-items: start;
  background: var(--paper);
  display: grid;
  gap: clamp(60px, 9vw, 130px);
  grid-template-columns: .72fr 1.28fr;
}
.privacy-heading { position: sticky; top: 145px; }
.privacy-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
  margin: 30px 0 0;
  max-width: 330px;
}
.privacy-list { border-top: 1px solid var(--line); }
.privacy-list article {
  display: grid;
  gap: 24px;
  grid-template-columns: 38px 1fr;
  padding: clamp(34px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--line);
}
.article-number { color: #9b6d11; font-size: 11px; font-weight: 800; padding-top: 8px; }
.privacy-list p { color: var(--muted); margin: 0; }
.privacy-list p + p { margin-top: 16px; }
.privacy-list a { border-bottom: 1px solid currentColor; color: var(--ink); }
.highlight-article {
  background: var(--sage);
  margin-inline: clamp(-28px, -2.5vw, -16px);
  padding-inline: clamp(16px, 2.5vw, 28px) !important;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  font-size: 11px;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 125px;
  padding: 25px clamp(30px, 6vw, 86px);
}
.footer-brand { display: block; width: 92px; }
footer p { margin: 0; }
footer p:nth-child(2) { color: var(--muted); text-align: center; }
footer p:last-child { text-align: right; }

:focus-visible { outline: 3px solid #9b6d11; outline-offset: 4px; }

@media (max-width: 850px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 82px; padding: 12px 24px 0; }
  .brand { width: 102px; }
  .back-link { font-size: 12px; }
  .site-header nav {
    border-top: 1px solid var(--line);
    grid-column: 1 / -1;
    justify-content: flex-start;
    margin-top: 8px;
    padding: 9px 0;
  }
  .site-header nav a { font-size: 11px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 95px 28px 75px; }
  .page-index { border-left: 0; border-top: 1px solid var(--line); padding: 48px 28px; }
  .imprint, .privacy { grid-template-columns: 1fr; }
  .privacy-heading { position: static; }
  .privacy-heading > p:last-child { max-width: 540px; }
}

@media (max-width: 560px) {
  .site-header { padding-inline: 20px; }
  .back-link { max-width: 130px; text-align: right; }
  .hero-copy { padding: 78px 20px 62px; }
  h1 { font-size: clamp(48px, 15vw, 67px); }
  h2 { font-size: clamp(44px, 13vw, 58px); }
  .section { padding: 78px 20px; }
  .imprint { gap: 46px; }
  .imprint-card { padding: 28px 22px; }
  .privacy { gap: 55px; }
  .privacy-list article { gap: 12px; grid-template-columns: 30px 1fr; }
  .highlight-article { margin-inline: -8px; padding-inline: 8px !important; }
  footer { grid-template-columns: 1fr auto; gap: 20px; padding-inline: 20px; }
  footer p:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
