* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1e24;
  --muted: #5d6677;
  --accent: #2f6f5f;
  --accent-2: #c9d8d0;
  --surface: #f6f4f1;
  --surface-2: #eef1f4;
  --sand: #e9e1d6;
  --line: #d7dbe2;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 32px 0 60px;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 260px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  align-items: center;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin: 40px 0 20px;
}

.hero-text,
.hero-media {
  flex: 1 1 320px;
  min-height: 320px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  background: var(--accent-2);
  color: var(--ink);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.mt-24 {
  margin-top: 24px;
}

.card {
  flex: 1 1 260px;
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.card-body {
  padding: 18px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.quote-strip {
  background: var(--surface-2);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-strip span {
  font-weight: 600;
}

.list-indent {
  margin-left: 18px;
}

.form-wrap {
  background: var(--sand);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 220px;
  font-size: 0.95rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.footer {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal {
  max-width: 540px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 10;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.notice {
  background: var(--surface-2);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.bg-hero {
  background-color: #d7e2dd;
}

.bg-sand {
  background-color: #e7e0d6;
}

.bg-sky {
  background-color: #e6e9ee;
}

.bg-cool {
  background-color: #dfe5ea;
}

.bg-mist {
  background-color: #e7e4dc;
}

.bg-card-1 {
  background-color: #dae4ef;
}

.bg-card-2 {
  background-color: #dfe6da;
}

.bg-card-3 {
  background-color: #efe7dd;
}

.bg-card-4 {
  background-color: #dfe2e9;
}

.bg-card-5 {
  background-color: #d6dfe3;
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
  }

  .hero {
    margin-top: 24px;
  }

  .sticky-cta {
    position: static;
    margin: 24px 0 0;
  }

  .cookie-banner {
    right: 18px;
  }
}
