:root {
  --paper-bg: radial-gradient(
    1200px 600px at 20% 0%,
    rgba(251, 247, 239, 1) 0%,
    rgba(247, 242, 234, 1) 35%,
    rgba(243, 237, 229, 1) 100%
  );
  --ink: #241c14;
  --ink-soft: #5a4d40;
  --line: rgba(92, 72, 50, 0.1);
  --panel: rgba(255, 251, 244, 0.7);
  --panel-strong: #2a1e12;
  --hero-surface: rgba(255, 253, 249, 0.9);
  --hero-shadow: rgba(46, 31, 17, 0.14);
  --muted: #7b6a58;
  --primary: #2a1e12;
  --primary-hover: #3b2a19;
  --footer: #7f6f5d;
  --fade-duration: 0.75s;
  --fade-distance: 22px;
  --font-ui: "Sohne", "Söhne", "Inter", "Avenir Next", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-ui);
  background: var(--paper-bg);
  overflow-x: hidden;
}

.paper {
  min-height: 100vh;
}

.container {
  width: min(1080px, calc(100% - 3rem));
  margin-inline: auto;
}

.announcement {
  background: var(--panel-strong);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.7rem 1rem;
}

.announcement a {
  color: rgba(255, 255, 255, 0.92);
  margin-left: 0.6rem;
  text-underline-offset: 0.2rem;
}

.announcement a:hover,
.announcement a:focus-visible {
  color: #ffffff;
}

.hero-shell {
  padding-top: clamp(2.4rem, 6vw, 4.2rem);
  padding-bottom: clamp(4rem, 10vw, 7rem);
}

.hero {
  position: relative;
  max-width: 1040px;
  border: 1px solid var(--line);
  background: var(--hero-surface);
  border-radius: 18px;
  padding: clamp(3.2rem, 5vw, 4rem) clamp(2.2rem, 6vw, 4.5rem);
  box-shadow: 0 10px 28px -24px var(--hero-shadow);
}

.hero-logo {
  display: block;
  width: min(126px, 19.6vw);
  height: auto;
  margin: -1.35rem 0 0.85rem -14px;
}

.eyebrow {
  margin: 0 0 1rem;
  margin-left: 2px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  color: var(--muted);
}

h1 {
  margin: 0;
  margin-left: 2px;
  max-width: 14ch;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(2rem, 7.2vw, 4.5rem);
  line-height: 1.06;
  color: #2e2e2e;
}

.lede {
  margin: 2.1rem 0 0;
  margin-left: 2px;
  max-width: 68ch;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.lede-tight {
  margin-top: 1rem;
}

.actions {
  margin-top: 3.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-block;
  text-decoration: none;
  padding: 0.86rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
}

.button-primary-wide {
  width: min(320px, 100%);
  text-align: center;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-hover);
}

.button-secondary {
  background: transparent;
  color: #1f1b15;
  border: 1px solid #8d857a;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #f1ece3;
}

.site-footer {
  text-align: center;
  color: var(--footer);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem 1.4rem;
}

.site-footer p {
  margin: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(var(--fade-distance));
  animation: fade-up var(--fade-duration) ease forwards;
}

.fade-up:nth-child(2) {
  animation-delay: 0.12s;
}

.fade-up:nth-child(3) {
  animation-delay: 0.22s;
}

.fade-up:nth-child(4) {
  animation-delay: 0.32s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(var(--fade-distance));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1080px, calc(100% - 2rem));
  }

  .hero {
    border-radius: 18px;
    padding: 2.8rem 1.45rem 2.4rem;
  }

  .hero-logo {
    width: min(106px, 29.12vw);
  }

}
