* {
  box-sizing: border-box;
}

:root {
  --ink: #1e1e1b;
  --muted: #5b5b55;
  --paper: #f6f3ee;
  --accent: #6b4f3f;
  --accent-soft: #e7d9cf;
  --highlight: #f1e7dd;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #fff;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e3ddd5;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 20px;
}

.ad-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  background: var(--highlight);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  padding: 8px 12px;
  background: var(--accent-soft);
  border-radius: 10px;
}

.nav-cta {
  margin-top: auto;
  padding: 14px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  text-align: center;
}

.content {
  flex: 1;
  padding: 36px 56px 80px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 22px;
}

.hero-media {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.img-box {
  background: var(--accent-soft);
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
}

.img-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-row.spaced {
  margin-top: 16px;
}

.btn {
  padding: 12px 18px;
  border-radius: 10px;
  border: 0;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  margin: 40px 0;
}

.section-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1;
  min-width: 240px;
}

.card-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--accent-soft);
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

.muted {
  color: var(--muted);
}

.highlight-box {
  background: var(--highlight);
  border-radius: 20px;
  padding: 26px;
}

.form-wrap {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
}

.highlight-target {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6cec5;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  left: 280px;
  right: 20px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #ded6cc;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  max-width: 360px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.page-hero {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero img {
  width: 100%;
  max-width: 360px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--accent-soft);
}

.legal {
  max-width: 820px;
}

.contact-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  flex: 1;
  min-width: 220px;
}

@media (max-width: 960px) {
  .site {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e3ddd5;
  }

  .sticky-cta {
    left: 20px;
  }
}
