* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #201b1b;
  background-color: #f7f3f1;
}

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;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6%;
  background-color: #f7f3f1;
  border-bottom: 1px solid #eadfda;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  padding: 6px 10px;
  background-color: #f0d5c5;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 40px 6% 60px;
  background-color: #f3e7e2;
}

.hero-flex {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 360px;
  background-color: #cbb4a9;
  border-radius: 24px;
  overflow: hidden;
  transform: translateY(20px);
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  background-color: #f7f3f1;
  padding: 6px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 26px;
  background-color: #201b1b;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background-color: #f7f3f1;
  color: #201b1b;
  border: 1px solid #201b1b;
}

.section {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.offset {
  background-color: #fff;
}

.section.split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
}

.panel {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.media {
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #dbc4ba;
}

.panel.media img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(32, 27, 27, 0.08);
}

.card-media {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #e6d3cb;
}

.inline-cta {
  color: #8a4b3c;
  text-decoration: underline;
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #8a4b3c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  z-index: 10;
}

.form-wrap {
  background-color: #fff7f4;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-size: 0.9rem;
}

.form-wrap input,
.form-wrap select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8c7c0;
  font-size: 0.95rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  margin-top: auto;
  background-color: #1f1a1a;
  color: #f7f3f1;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.footer small {
  font-size: 0.85rem;
  color: #e0d1ca;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 6%;
  background-color: #fff7f4;
  border-top: 1px solid #e1d0c9;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 40px 6% 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-media {
  height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #cdb9b1;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #8a4b3c;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  background-color: #f0d5c5;
  border-radius: 16px;
  font-size: 0.85rem;
}

.notice {
  background-color: #f0d5c5;
  padding: 14px;
  border-radius: 14px;
}

.section-bg {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1503342217505-b0a15ec3261c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(32, 27, 27, 0.55);
}

.section-bg .section-bg-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}
