:root {
  color: #111;
  background: #f8f6f0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f8f6f0;
}

a {
  color: inherit;
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 4;
  background: rgba(248, 246, 240, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e6dfd2;
}

.brand {
  font-size: 28px;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
}

.nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  font-weight: 700;
}

.button,
button {
  background: #111;
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  padding: 12px 18px;
  text-decoration: none;
}

.ghost {
  background: #fff;
  border: 1px solid #ded8cc;
  color: #111;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  min-height: calc(100svh - 89px);
}

.hero-copy {
  align-self: center;
  padding: clamp(40px, 8vw, 96px);
}

.eyebrow {
  color: #567568;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
  max-width: 760px;
}

h2 {
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 18px;
}

h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

p,
li {
  color: #3d3932;
  font-size: 17px;
}

.lead {
  font-size: 22px;
  max-width: 650px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-image {
  background:
    linear-gradient(90deg, rgba(248, 246, 240, 0.06), rgba(17, 17, 17, 0.18)),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1800&q=85") center/cover;
  min-height: 560px;
}

section,
.legal-page {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.band {
  background: #fff;
  border-block: 1px solid #e6dfd2;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.item {
  border-top: 1px solid #dcd5c8;
  padding-top: 20px;
}

.price {
  background: #111;
  border-radius: 8px;
  color: #fff;
  padding: 28px;
}

.price p,
.price li {
  color: #efeae1;
}

.price strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  margin: 12px 0;
}

.legal-page {
  margin-inline: auto;
  max-width: 920px;
}

.legal-page h1 {
  font-size: clamp(40px, 7vw, 76px);
}

.legal-box {
  background: #fff;
  border: 1px solid #e3ded3;
  border-radius: 8px;
  margin: 28px 0;
  padding: 22px;
}

footer {
  background: #111;
  color: #fff;
  padding: 42px clamp(20px, 5vw, 72px);
}

footer p,
footer a {
  color: #efeae1;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
}

.cookie-banner {
  align-items: center;
  background: #fff;
  border: 1px solid #dcd5c8;
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.16);
  display: none;
  gap: 16px;
  left: 18px;
  max-width: 680px;
  padding: 16px;
  position: fixed;
  z-index: 8;
}

.cookie-banner.show {
  display: flex;
}

@media (max-width: 860px) {
  .hero,
  .grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-image {
    min-height: 360px;
    order: -1;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    right: 18px;
  }
}
