* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background-color: #f6f3ef;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:focus,
.nav a:active {
  border-bottom: 1px solid #3b4147;
}

.ad-label {
  font-size: 0.82rem;
  color: #5a5f63;
  max-width: 260px;
}

.main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.section-title {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5b6066;
  margin-bottom: 12px;
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.button {
  background-color: #1c1c1c;
  color: #f6f3ef;
}

.button-outline {
  border: 1px solid #1c1c1c;
  background-color: transparent;
  color: #1c1c1c;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 180px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: #d9d4cb;
}

.image-frame.tall img {
  height: 420px;
  width: 100%;
}

.image-frame.medium img {
  height: 320px;
  width: 100%;
}

.image-frame.short img {
  height: 220px;
  width: 100%;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.highlight {
  background-color: #e7e1d6;
  border-radius: 20px;
  padding: 32px;
}

.bg-section {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2f3338;
  color: #f6f3ef;
  position: relative;
}

.bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(28, 28, 28, 0.62);
}

.bg-section .split {
  position: relative;
  z-index: 1;
}

.form-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.form-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3ba;
  margin-bottom: 16px;
  font-family: inherit;
}

.footer {
  padding: 32px 6vw 44px;
  background-color: #1c1c1c;
  color: #f6f3ef;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c9c3ba;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #4a5c6c;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.muted {
  color: #6a6f75;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  background-color: #e7e1d6;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 760px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 48px 6vw;
  }

  .section-title {
    font-size: 2rem;
  }
}
