* {
  box-sizing: border-box;
}

:root {
  --bg: #0f1311;
  --bg-soft: #151b17;
  --card: #1b241f;
  --ink: #eef2ed;
  --muted: #c4cec5;
  --accent: #9ad0b1;
  --accent-strong: #7bbd98;
  --sand: #f4efe6;
  --dark: #0d1110;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 6vw 10px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.logo {
  font-size: 1.2rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw 60px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 30% 0;
  background: linear-gradient(120deg, rgba(122, 165, 139, 0.25), rgba(15, 19, 17, 0));
  pointer-events: none;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 0 0 16px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
}

.hero-image {
  flex: 1 1 320px;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: #2a342f;
  position: relative;
  z-index: 1;
}

.hero-image img {
  height: 100%;
}

.section {
  padding: 60px 6vw;
}

.section-alt {
  background: var(--bg-soft);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split-reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 300px;
  max-width: 520px;
}

.text-block h2,
.text-block h3 {
  margin-top: 0;
}

.img-frame {
  flex: 1 1 300px;
  border-radius: 24px;
  overflow: hidden;
  background: #29332f;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.offset-card {
  margin-top: -40px;
  background: var(--card);
  padding: 28px;
  border-radius: 22px;
  max-width: 520px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(154, 208, 177, 0.15);
  color: var(--accent);
  font-size: 0.9rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-body a {
  color: var(--accent);
  font-weight: 600;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: var(--card);
  padding: 18px;
  border-radius: 18px;
  min-width: 200px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

form {
  flex: 1 1 320px;
  background: var(--card);
  padding: 24px;
  border-radius: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #2d3a34;
  background: #0f1512;
  color: var(--ink);
  margin-bottom: 16px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: var(--dark);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer small {
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.legal-card {
  flex: 1 1 260px;
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
}

.bg-lake {
  position: relative;
  background-color: #1a2420;
  background-image: url("https://images.pexels.com/photos/2925315/pexels-photo-2925315.jpeg");
  background-size: cover;
  background-position: center;
}

.bg-lake::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 19, 17, 0.65);
}

.bg-lake .text-block,
.bg-lake .cards {
  position: relative;
  z-index: 1;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 40px 6vw 40px;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.page-hero .img-frame {
  max-width: 520px;
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-image {
    min-height: 280px;
  }

  .sticky-cta {
    position: static;
  }
}
