:root {
  --ink: #26211d;
  --taupe: #6c6158;
  --sand-light: #faf5ee;
  --sand: #ede3d6;
  --clay: #b89475;
  --sunset: #c98758;
  --line: rgba(38, 33, 29, 0.12);
  --panel: rgba(250, 245, 238, 0.74);
  --font-display: "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --font-sans: "Inter", "Avenir Next", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --container: 74rem;
  --narrow: 42rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.7;
  background:
    radial-gradient(circle at 18% 12%, rgba(237, 227, 214, 0.9), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(201, 135, 88, 0.12), transparent 18%),
    linear-gradient(180deg, #f8f2ea 0%, #f5ede3 48%, #efe5d8 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: var(--narrow);
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0 0;
}

.header-inner {
  display: flex;
  justify-content: flex-end;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0 1rem;
  border: 1px solid rgba(38, 33, 29, 0.14);
  border-radius: 999px;
  background: rgba(250, 245, 238, 0.8);
  backdrop-filter: blur(14px);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.language-switch:hover {
  color: var(--ink);
  border-color: rgba(201, 135, 88, 0.35);
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100vh - 4.5rem);
  padding: 2rem 0 3rem;
}

.hero-container,
.hero-stage {
  min-height: inherit;
}

.hero-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 5.5rem;
  border-radius: 2.4rem;
  background:
    linear-gradient(135deg, rgba(250, 245, 238, 0.84), rgba(237, 227, 214, 0.46)),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.6), transparent 26%);
  overflow: hidden;
}

.hero-logo-shell {
  position: relative;
  z-index: 1;
  width: min(44rem, 92vw);
  aspect-ratio: 800 / 533;
  background-image: url("/static/img/bivholding-mark.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.section,
.page-hero {
  padding: 0 0 5rem;
}

.statement-section {
  padding-top: 0;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sunset);
}

.statement-section h2,
.page-hero h1,
.imprint-shell h2,
.content-card h2,
.content-card h3 {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -0.04em;
}

.statement-section h2,
.page-hero h1,
.imprint-shell h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  text-wrap: balance;
}

.lead {
  max-width: 38rem;
  color: var(--taupe);
  font-size: 1rem;
}

.statement-text,
.imprint-intro {
  max-width: 36rem;
}

.imprint-shell {
  padding: 1.25rem 0 0;
}

.imprint-list,
.content-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.75rem;
}

.content-card h2,
.content-card h3,
.imprint-item h3 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.content-card p,
.imprint-item p {
  margin-bottom: 0;
  color: var(--taupe);
}

.imprint-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(38, 33, 29, 0.08);
}

.page-hero {
  padding-top: 4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sunset), var(--clay));
  color: #fffdfa;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-minimal {
  display: flex;
  justify-content: center;
  color: var(--taupe);
  font-size: 0.82rem;
}

@media (min-width: 52rem) {
  .imprint-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 3rem;
  }
}

@media (max-width: 51.99rem) {
  .hero {
    min-height: calc(100svh - 4rem);
  }

  .hero-stage {
    padding: 3rem 1rem 3.5rem;
    border-radius: 1.75rem;
  }

  .hero-logo-shell {
    width: min(28rem, 96vw);
  }

  .section,
  .page-hero {
    padding-bottom: 4rem;
  }

  .imprint-shell {
    padding-top: 0.75rem;
  }
}
