* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d221f;
  --muted: #5b6a5f;
  --accent: #2f6f54;
  --accent-soft: #e6efe9;
  --sand: #f6f4ef;
  --stone: #e4e0d6;
  --leaf: #cfe3d6;
  --dark: #0f1512;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
  border-bottom: 1px solid var(--stone);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 6vw 80px;
}

.split-section {
  display: flex;
  gap: 6vw;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.split-content h1,
.split-content h2,
.split-content h3 {
  line-height: 1.2;
}

.split-content h1 {
  font-size: 44px;
}

.split-content h2 {
  font-size: 32px;
}

.split-content h3 {
  font-size: 22px;
}

.split-media {
  flex: 1;
  background: var(--leaf);
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
}

.media-sage {
  background: #cfe3d6;
}

.media-mist {
  background: #d9e6d3;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  width: fit-content;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  color: #ffffff;
  background: var(--accent);
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.section-bg {
  padding: 40px;
  border-radius: 20px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-bg.with-image {
  background-color: #27352b;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #f8f8f4;
}

.section-bg.with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 21, 18, 0.55);
}

.section-bg.with-image > * {
  position: relative;
  z-index: 1;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  border: 1px solid var(--stone);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: #dfe6de;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.testimonial {
  padding: 16px;
  background: var(--accent-soft);
  border-radius: 12px;
  color: var(--ink);
}

.form-panel {
  padding: 26px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 13px;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--stone);
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--stone);
  background: #fdfcf9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-hero {
  padding: 24px;
  border-radius: 16px;
  background: var(--leaf);
  display: flex;
  align-items: center;
  gap: 20px;
}

.legal-hero img {
  width: 160px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
}

.legal-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-balcony {
  background-image: url("https://images.unsplash.com/photo-1477511801984-4ad318ed9846?w=1400&q=80");
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1498842812179-c81beecf902c?w=1400&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1546058462-508cbfd3f0c5?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwxMXx8VmVydGlrYWxlJTIwQmFsa29uZyVDMyVBNHJ0ZW4lMkMlMjBkaWUlMjBkZW4lMjBBbGx0YWclMjBzcCVDMyVCQ3JiYXIlMjBnciVDMyVCQ25lciUyMG1hY2hlbi58ZGV8MHwwfHx8MTc4NDI4NTEzM3ww&ixlib=rb-4.1.0&q=80&w=1080");
}

.bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1502741338009-cac2772e18bc?w=1400&q=80");
}

.bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1446071103084-c257b5f70672?w=1400&q=80");
}

.bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=1400&q=80");
}

.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.muted {
  color: var(--muted);
}

.reference-list a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .split-content h1 {
    font-size: 36px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
