*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f4f1;
  --bg-alt: #ffffff;
  --text: #1e1d1b;
  --muted: #5f5a54;
  --accent: #2f6f61;
  --accent-strong: #24564a;
  --surface: #efe9e3;
  --line: #ddd4cc;
  --shadow: 0 18px 45px rgba(26, 24, 21, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Arial", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  background: var(--surface);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.tight {
  padding: 40px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.image-frame {
  background: #d7d0c7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: var(--accent-strong);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: rgba(47, 111, 97, 0.08);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.inline-link:hover,
.inline-link:focus {
  text-decoration: underline;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  flex: 1 1 220px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: var(--bg-alt);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.bg-reno {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1505691723518-36a5ac3be353?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-reno::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.5);
}

.bg-reno .container {
  position: relative;
  z-index: 1;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.form-card {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.footer {
  padding: 40px 0 80px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-strong);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  width: min(320px, 90%);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1 1 auto;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
}

.cookie-btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.cookie-btn:hover,
.cookie-btn:focus {
  background: rgba(47, 111, 97, 0.08);
}

.cookie-btn.primary:hover,
.cookie-btn.primary:focus {
  background: var(--accent-strong);
}

.legal-hero {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.legal-hero .image-frame {
  flex: 1 1 260px;
}

.legal-hero .content {
  flex: 1 1 260px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
