* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2329;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 8px;
}

.top-bar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.ad-disclosure {
  font-size: 0.9rem;
  background: #f5e2d5;
  color: #5a3a26;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 500;
  flex-wrap: wrap;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:focus,
.nav a:hover {
  border-bottom-color: #1f2329;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 6vw 40px;
  background: #f1ede7;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 680px;
}

.hero__media {
  display: flex;
  justify-content: center;
}

.hero__media .image-frame {
  width: min(900px, 100%);
  border-radius: 24px;
  overflow: hidden;
}

.image-frame {
  background-color: #d5d0c8;
  overflow: hidden;
  border-radius: 18px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f2329;
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
}

.primary-button {
  background: #1f2329;
  color: #fefefe;
}

.ghost-button {
  background: transparent;
  color: #1f2329;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--muted {
  background: #eee8e0;
}

.section--dark {
  background: #1f2329;
  color: #f5f2ee;
}

.section--image-one {
  background-image: linear-gradient(rgba(16, 18, 22, 0.75), rgba(16, 18, 22, 0.75)),
    url("https://images.pexels.com/photos/6740821/pexels-photo-6740821.jpeg");
  background-size: cover;
  background-position: center;
  color: #fefefe;
}

.section--image-two {
  background-image: linear-gradient(rgba(246, 244, 241, 0.9), rgba(246, 244, 241, 0.9)),
    url("https://images.pexels.com/photos/5750886/pexels-photo-5750886.jpeg");
  background-size: cover;
  background-position: center;
}

.section__split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split__text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split__media {
  flex: 1 1 280px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(20, 20, 20, 0.08);
}

.card--dark {
  background: #2c3138;
  color: #fefefe;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px;
  border-radius: 16px;
  background: #ffffff;
}

.pricing__item strong {
  font-size: 1.05rem;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 35px rgba(20, 20, 20, 0.12);
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc8be;
  font-size: 1rem;
  font-family: inherit;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

.footer {
  padding: 36px 6vw;
  background: #14161a;
  color: #e8e3db;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer__disclaimer {
  font-size: 0.9rem;
  max-width: 780px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 50;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 28px rgba(20, 20, 20, 0.18);
  padding: 16px;
  width: min(360px, 90vw);
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.85rem;
}

.centered {
  text-align: center;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.legal {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1,
.section h2 {
  margin: 0;
  font-weight: 700;
}

.section h3 {
  margin: 0;
}
