* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d2327;
  --muted: #5a6570;
  --accent: #1b5e4a;
  --accent-soft: #e6f1ed;
  --sand: #f4f1ec;
  --sky: #eef4f8;
  --stone: #ece7e2;
  --border: #d7dadd;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  width: 100%;
}

.topbar {
  padding: 18px 6vw;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 320px;
}

.split {
  display: flex;
  gap: 40px;
  padding: 70px 6vw;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  min-width: 0;
}

.panel.narrow {
  flex: 0.9;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.headline {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 18px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
}

.button.secondary {
  background: var(--ink);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.img-frame {
  background: var(--stone);
  border-radius: 12px;
  overflow: hidden;
  height: 360px;
}

.img-frame.tall {
  height: 420px;
}

.img-frame.short {
  height: 280px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  background: var(--white);
  display: flex;
  gap: 16px;
}

.card-img {
  width: 110px;
  height: 110px;
  background: var(--sand);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.bg-ice {
  background: #dfe5e8;
}

.bg-clay {
  background: #ece9e2;
}

.bg-moss {
  background: #e9efe8;
}

.bg-fog {
  background: #f0f0ec;
}

.bg-mist {
  background: #e3eaec;
}

.bg-cloud {
  background: #e7ecef;
}

.bg-linen {
  background: #efe7e2;
}

.bg-sage {
  background: #e6ece9;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.layered {
  background: var(--accent-soft);
  position: relative;
}

.layered::after {
  content: "";
  position: absolute;
  right: 6vw;
  top: 18px;
  width: 120px;
  height: 120px;
  background: var(--sand);
  border-radius: 16px;
  z-index: 0;
}

.layered .panel {
  position: relative;
  z-index: 1;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  font-style: italic;
  color: var(--muted);
}

.form-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  background: var(--white);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 10px;
  margin: 0 6vw 20px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-cta button {
  background: var(--white);
  color: var(--ink);
}

.footer {
  padding: 40px 6vw 60px;
  border-top: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.disclaimer {
  font-size: 0.88rem;
}

.policy-hero {
  padding: 60px 6vw;
  background: var(--sky);
}

.policy-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.policy-body {
  padding: 50px 6vw 70px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.policy-body section {
  flex: 1;
  min-width: 260px;
}

.policy-body h2 {
  margin-bottom: 10px;
}

.policy-body p,
.policy-body li {
  color: var(--muted);
  margin-bottom: 10px;
}

.image-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-strip .img-frame {
  flex: 1;
  min-width: 200px;
  height: 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.contact-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  background: var(--white);
}

.cta-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
