.brand img,
.footer-grid img {
  object-fit: contain;
  object-position: center;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(6, 71, 42, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.site-header nav a {
  color: #fff;
  transition: color 0.25s ease;
}

.site-header.past-hero {
  background: rgba(255, 250, 240, 0.96);
  border-bottom-color: rgba(8, 102, 56, 0.1);
}

.site-header.past-hero nav a {
  color: var(--green-dark);
}

.split figure img,
.wide-illustration {
  width: 100%;
  object-fit: cover;
}

.frikandel-tip {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 24px;
  align-items: center;
}

.frikandel-tip img {
  width: 100%;
  border-radius: 12px;
}

.frikandel-tip p {
  margin: 6px 0 0;
}

footer a {
  color: #dceadf;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 0;
  background: #16271d;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 28, 17, 0.9) 0%, rgba(4, 28, 17, 0.74) 35%, rgba(4, 28, 17, 0.18) 68%, transparent 100%),
    linear-gradient(0deg, rgba(4, 28, 17, 0.35), transparent 45%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-grid {
  grid-template-columns: minmax(0, 720px);
  width: min(1180px, calc(100% - 40px));
  padding: calc(clamp(64px, 9vh, 110px) + var(--header-height, 86px)) 0 clamp(64px, 9vh, 110px);
}

.hero .hero-copy {
  padding: 0;
  color: #fff;
}

.hero h1,
.hero .eyebrow,
.hero .lead,
.hero .micro {
  color: #fff;
}

.hero h1 {
  font-size: clamp(3rem, 5.4vw, 5.5rem);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.24);
}

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

  .hero-background {
    object-position: 60% center;
  }

  .hero::after {
    background: rgba(4, 28, 17, 0.67);
  }
}

@media (max-width: 620px) {
  .frikandel-tip {
    grid-template-columns: 1fr;
  }

  .hero .hero-grid {
    width: min(100% - 24px, 1180px);
    padding: calc(70px + var(--header-height, 86px)) 0 70px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }
}
