:root {
  --bg: #f6f4f1;
  --ink: #1f2328;
  --muted: #5b6570;
  --accent: #2f6f6d;
  --accent-dark: #245a58;
  --surface: #ffffff;
  --soft: #e6e1da;
  --warm: #d7c8b6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 6vw 16px;
  gap: 16px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-title {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px 6vw 40px;
}

.hero-split {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 24px;
  cursor: pointer;
}

.button.secondary {
  background: var(--soft);
  color: var(--ink);
}

.section {
  padding: 36px 6vw;
}

.section.alt {
  background: var(--surface);
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1;
}

.image-frame {
  background: var(--warm);
  padding: 10px;
  border-radius: 18px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 170px;
  width: 100%;
}

.service-price {
  font-weight: 600;
  color: var(--accent-dark);
}

.form-panel {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2b7;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 28px 6vw 40px;
  background: #e9e4dd;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--surface);
  border-radius: 16px;
  padding: 16px 20px;
  display: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 110px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  cursor: pointer;
  z-index: 10;
  border: none;
}

.inline-cta {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.notice {
  background: var(--soft);
  padding: 16px;
  border-radius: 14px;
}

.list-clean {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 960px) {
  .hero-split,
  .split,
  .split.reverse {
    flex-direction: column;
  }
  nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-cta {
    right: 16px;
  }
}
