:root {
  --bg: #101715;
  --text: #fff9ee;
  --muted: #eadfcf;
  --gold: #e4b85d;
  --gold-dark: #b9872f;
  --red: #d94a2f;
  --red-dark: #b83a24;
  --line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: var(--bg);
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  background-image: url("/assets/img/lahmer-frosch.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 18, 16, 0.94) 0%, rgba(12, 18, 16, 0.76) 34%, rgba(12, 18, 16, 0.28) 68%, rgba(12, 18, 16, 0.1) 100%),
    linear-gradient(0deg, rgba(12, 18, 16, 0.5) 0%, rgba(12, 18, 16, 0) 48%);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 18px clamp(20px, 5vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 16, 15, 0.82);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(320px, 68vw);
  text-decoration: none;
}

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

.hero__content {
  width: min(720px, calc(100% - 40px));
  margin: auto 0;
  padding: 132px 0 72px clamp(20px, 5vw, 58px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  margin: 28px 0 0;
  max-width: 680px;
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 700;
  line-height: 1.16;
}

.text {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button span {
  margin-right: 10px;
  font-size: 1.1em;
}

.button--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.button--primary:hover {
  background: var(--red-dark);
}

.button--outline {
  border-color: var(--gold);
  color: var(--text);
  background: rgba(12, 18, 16, 0.24);
}

.button--outline:hover {
  border-color: var(--gold-dark);
  background: rgba(12, 18, 16, 0.44);
}

.note {
  max-width: 600px;
  margin: 30px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(255, 249, 238, 0.78);
  font-size: 0.98rem;
}

@media (max-width: 760px) {
  .hero {
    min-height: 100svh;
  }

  .hero__image {
    background-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(12, 18, 16, 0.96) 0%, rgba(12, 18, 16, 0.82) 54%, rgba(12, 18, 16, 0.34) 100%),
      linear-gradient(0deg, rgba(12, 18, 16, 0.62) 0%, rgba(12, 18, 16, 0) 54%);
  }

  .site-header {
    min-height: 74px;
    padding: 14px 20px;
  }

  .brand {
    width: min(260px, 72vw);
  }

  .hero__content {
    width: min(100% - 40px, 600px);
    padding: 106px 0 42px 20px;
  }

  .lead {
    max-width: 14ch;
  }

  .text {
    max-width: 31ch;
  }

  .actions {
    gap: 12px;
  }

  .button {
    min-height: 54px;
    padding: 0 20px;
  }
}

@media (max-width: 460px) {
  .hero__content {
    width: calc(100% - 32px);
    padding-left: 16px;
  }

  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .button {
    width: 100%;
  }
}
