* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1f2b;
  --muted: #5a6477;
  --paper: #f7f4ef;
  --accent: #2f5d62;
  --accent-dark: #24464a;
  --soft: #e4e0d8;
  --sun: #e7c36a;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  background: var(--white);
  border-bottom: 1px solid var(--soft);
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav .links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav .ad-label {
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 18px;
  font-size: 0.78rem;
  color: var(--accent);
  white-space: nowrap;
}

.section {
  padding: 70px 5%;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .media {
  flex: 1 1 50%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--soft);
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 24px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: var(--soft);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sun);
  color: #3f320f;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-list div {
  padding: 14px 18px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--soft);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .card-media {
  height: 160px;
  background: var(--soft);
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.bg-section {
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
}

.bg-lease {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.bg-risks {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-clarity {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
}

.bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 32, 0.6);
}

.bg-section .split {
  position: relative;
  z-index: 1;
}

.form-wrap {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd4db;
  font-size: 1rem;
  width: 100%;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 30px 5% 50px;
  background: var(--white);
  border-top: 1px solid var(--soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--soft);
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
  display: none;
  gap: 12px;
  flex-direction: column;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  background: var(--soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.notice {
  padding: 16px;
  background: #f2f0ea;
  border-radius: 14px;
  border: 1px dashed var(--accent);
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

@media (max-width: 980px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
