* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4f2;
  --ink: #231f20;
  --muted: #6d5f5b;
  --accent: #b46f74;
  --accent-dark: #8c4d53;
  --soft: #fff7f4;
  --card: #ffffff;
  --border: #e3d8d3;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 16px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  list-style: none;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}

.hero {
  padding: 32px 0 40px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-soft {
  background: var(--soft);
  color: var(--accent-dark);
  border-color: var(--soft);
}

.media-block {
  background: #eadfda;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.section {
  padding: 52px 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
  margin-bottom: 16px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media-block {
  min-height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.bg-image {
  background-image: url("https://images.unsplash.com/photo-1773808605530-17926a0463e9?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(35, 31, 32, 0.55);
}

.bg-image .container {
  position: relative;
  z-index: 1;
}

.form-card {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  background: #fff;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}

.footer {
  padding: 36px 0 48px;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 12px;
}

.disclaimer {
  font-size: 0.92rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 38px 0 28px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
}
