/* Base */
:root {
  --bg: #f6f4f1;
  --ink: #1f1f1f;
  --muted: #5a5a5a;
  --accent: #2f6d5d;
  --accent-2: #7a4f2a;
  --panel: #ffffff;
  --wash: #efe9e3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 20px;
  background: var(--panel);
  border-bottom: 1px solid #e2ddd8;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 4px;
  background: var(--wash);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding: 4px 8px;
  border: 1px dashed #c9c1ba;
  border-radius: 14px;
  background: #fffdfb;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin: 36px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > .col {
  flex: 1 1 320px;
  background: var(--panel);
  padding: 26px;
  border-radius: 14px;
  border: 1px solid #e5dfd8;
}

.split > .col.muted {
  background: var(--wash);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 28px;
}

.hero .text {
  flex: 1 1 320px;
  background: var(--panel);
  padding: 34px;
  border-radius: 18px;
}

.hero .visual {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  background: #fff8f1;
  border: 1px solid #e2d7cc;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5dfd8;
  overflow: hidden;
}

.service-card .thumb {
  width: 150px;
  flex: 0 0 150px;
}

.service-card .content {
  padding: 16px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-2);
}

.note {
  background: #fffdf6;
  border-left: 4px solid #d2b38a;
  padding: 14px 16px;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #cfc7bf;
  background: #fff;
}

.footer {
  margin-top: 40px;
  padding: 24px;
  background: var(--panel);
  border-radius: 12px;
  border: 1px solid #e5dfd8;
  font-size: 14px;
  color: var(--muted);
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta a {
  display: inline-flex;
  background: #1d5145;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #d8d0c9;
  border-radius: 12px;
  padding: 14px 16px;
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-block {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e5dfd8;
}

.small {
  font-size: 13px;
}

.bg-1 { background: #d9d2cb; }
.bg-2 { background: #dcd4cd; }
.bg-3 { background: #d4cbc4; }
.bg-4 { background: #d5cbc3; }
.bg-5 { background: #d8cec5; }
.bg-6 { background: #d1c7bf; }
.bg-7 { background: #d7cfc8; }
.bg-8 { background: #d2c8bf; }

.photo-panel {
  background-color: #4f4a45;
  background-image: url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 0;
  overflow: hidden;
}

.photo-panel .overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 26px;
  height: 100%;
}
