* {
  box-sizing: border-box;
}

:root {
  --ink: #13201b;
  --muted: #53625c;
  --leaf: #2f7a6f;
  --moss: #215c4d;
  --sand: #f6f7f3;
  --cloud: #eef1ec;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(17, 24, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: var(--moss);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(47, 122, 111, 0.4);
  outline-offset: 2px;
}

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--cloud);
}

.section-tight {
  padding: 48px 0;
}

.hero {
  padding-top: 40px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
}

h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.media-frame {
  background: #dfe5df;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--moss);
  font-weight: 600;
  color: var(--moss);
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: var(--moss);
  color: var(--white);
}

.btn.ghost {
  border-color: rgba(33, 92, 77, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--leaf);
  color: var(--white);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  flex: 1 1 220px;
  min-width: 240px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--moss);
  font-size: 1.1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(33, 92, 77, 0.08);
  color: var(--moss);
  font-weight: 600;
  font-size: 0.85rem;
}

.background-panel {
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: 28px;
  overflow: hidden;
}

.panel-content {
  background: rgba(15, 29, 24, 0.78);
  padding: 48px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 160px;
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(19, 32, 27, 0.2);
  font-family: inherit;
  font-size: 1rem;
}

.inline-cta {
  font-size: 0.95rem;
}

.footer {
  background: #111c17;
  color: #d7e2dc;
  padding: 40px 0 60px;
}

.footer a {
  color: #d7e2dc;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #b4c2bb;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hidden {
  display: none;
}

.bg-skyline {
  background-image: url("https://images.unsplash.com/photo-1775743241025-5d354dcefcd6?w=1400&q=80");
}

@media (max-width: 860px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    position: static;
    margin-top: 24px;
  }

  .panel-content {
    padding: 28px;
  }
}
