* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background: #f6f3f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 6vw;
  background: #fdfbf9;
  border-bottom: 1px solid #e3ddd6;
}

.nav__brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav__label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #efe7df;
  border-radius: 999px;
}

main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section--layered {
  position: relative;
  overflow: hidden;
}

.section__background {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: #e9e1d9;
}

.section__content {
  position: relative;
  z-index: 1;
}

.section--soft {
  background: #fff7f0;
}

.section--light {
  background: #ffffff;
}

.section--dark {
  background: #222426;
  color: #f4f1ed;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1 1 320px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.15rem;
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1d1f24;
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: #3a3d43;
}

.btn--ghost {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f1d9c6;
  font-size: 0.85rem;
}

.image-frame {
  background: #d9d2cb;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.image-frame--tall {
  aspect-ratio: 3 / 4;
}

.image-frame--wide {
  aspect-ratio: 16 / 9;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card__title {
  font-weight: 600;
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
}

.muted {
  color: #6b6f76;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc7bf;
  font-size: 1rem;
  background: #fff;
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer {
  padding: 48px 6vw;
  background: #181a1d;
  color: #f5f1ec;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  padding: 18px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 10;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.banner-visible {
  display: flex;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  background: #efe7df;
  border-radius: 10px;
  font-size: 0.85rem;
}

.quote {
  padding: 18px;
  border-left: 4px solid #1d1f24;
  background: #fef7f1;
  border-radius: 12px;
}

.notice {
  padding: 14px 16px;
  background: #fff1e4;
  border-radius: 12px;
  border: 1px solid #e6cdb9;
}
