* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1d1f;
  --muted: #5b646b;
  --sand: #f4f1ec;
  --sage: #dfe7de;
  --mist: #eef2f5;
  --clay: #e8ddd1;
  --accent: #2c6b5a;
  --accent-strong: #1f4a3f;
}

body {
  font-family: "Segoe UI", "Inter", "Arial", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
  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: center;
  justify-content: space-between;
  padding: 24px 6vw 18px;
  background: #fff;
  border-bottom: 1px solid #ececec;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 6vw 40px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
  padding: 12px 0;
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-panel {
  flex: 1 1 260px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  align-self: flex-end;
}

.hero-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-strong);
  border: 1px solid var(--accent-strong);
}

.btn.linky {
  background: transparent;
  color: var(--accent-strong);
  text-decoration: underline;
  padding: 0;
}

.asym-section {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 60px 6vw;
  flex-wrap: wrap;
}

.asym-section.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.asym-text h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.asym-text p {
  color: var(--muted);
  margin-bottom: 14px;
}

.img-frame {
  flex: 1 1 300px;
  background: var(--sage);
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.img-frame.tall {
  min-height: 360px;
}

.offset-card {
  background: var(--mist);
  padding: 26px;
  border-radius: 18px;
  margin-top: 18px;
  margin-left: 18px;
}

.services {
  background: var(--clay);
  padding: 70px 6vw;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.services-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.service-card h4 {
  font-size: 20px;
}

.price {
  font-weight: 700;
  color: var(--accent-strong);
}

.trust-band {
  background: var(--mist);
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trust-row {
  display: flex;
  flex-direction: row;
  gap: 22px;
  flex-wrap: wrap;
}

.trust-chip {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.form-section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  background: #fff;
}

.form-panel {
  flex: 1 1 320px;
  max-width: 520px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d3d3d3;
  font-size: 14px;
}

.form-helper {
  font-size: 12px;
  color: var(--muted);
}

.cta-strip {
  background: var(--accent);
  color: #fff;
  padding: 30px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-strip .btn.secondary {
  border-color: #fff;
  color: #fff;
}

.legal {
  padding: 50px 6vw;
  background: var(--mist);
}

.footer {
  margin-top: auto;
  background: #111;
  color: #f8f8f8;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #cfcfcf;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-strong);
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  padding: 16px;
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-title {
  padding: 50px 6vw 10px;
  font-size: 34px;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 6vw 60px;
}

.info-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #ececec;
}

.bg-care {
  background-image: url("https://images.unsplash.com/photo-1518791841217-8f162f1e1131?w=800&q=80");
  background-size: cover;
  background-position: center;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1507149833265-60c372daea22?w=800&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 860px) {
  .hero-text h1 {
    font-size: 34px;
  }

  .ad-label {
    text-align: left;
  }
}
