*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1a1a;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 6vw 8px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: #1b1a1a;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 6vw 64px;
}

.hero .hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.15;
  margin: 0;
}

.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1b1a1a;
  background: #1b1a1a;
  color: #f7f5f2;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.light {
  background: transparent;
  color: #1b1a1a;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #f0ede8;
}

.section.dark {
  background: #1b1a1a;
  color: #f7f5f2;
}

.section-title {
  font-size: 24px;
  margin: 0;
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asym-row.reverse {
  flex-direction: column-reverse;
}

.floating-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.08);
}

.floating-card.dark {
  background: #292828;
}

.floating-card p,
.floating-card h3,
.floating-card h4 {
  margin: 0 0 12px;
}

.offset {
  align-self: flex-start;
  margin-left: 8%;
}

.offset-right {
  align-self: flex-end;
  margin-right: 8%;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.tag {
  padding: 6px 12px;
  background: #e3ded7;
  border-radius: 999px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards .card {
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards .price {
  font-size: 20px;
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.quote {
  font-size: 18px;
  font-style: italic;
}

.split-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3bb;
  background: #fdfcfb;
  font-family: inherit;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 20px;
  background: #b1251d;
  color: #f7f5f2;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 20;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 48px;
  background: #141414;
  color: #f7f5f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .top-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero h1 {
    font-size: 48px;
  }

  .asym-row {
    flex-direction: row;
    align-items: center;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .split-columns {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .cards .card {
    flex: 1;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 360px;
  }
}
