* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1c1c;
  --muted: #5f676e;
  --bg: #f7f4f1;
  --accent: #1f6f8b;
  --accent-dark: #15556a;
  --soft: #ffffff;
  --line: #e3ded8;
  --highlight: #f0e7da;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  color: var(--accent-dark);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 180px;
  text-align: right;
}

.section {
  padding: 68px 0;
}

.section.alt {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: flex;
  gap: 42px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.card {
  flex: 1 1 220px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.card h3 {
  margin-bottom: 12px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.media-frame {
  background: #d9d3cb;
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.stacked-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill {
  background: var(--highlight);
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.service-form {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-form label {
  font-weight: 600;
  color: var(--ink);
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row .field {
  flex: 1 1 220px;
}

.site-footer {
  background: #111;
  color: #f5f5f5;
  padding: 48px 0;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-inner p,
.footer-inner a {
  color: #d8d8d8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c4c4c4;
  max-width: 520px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 40;
}

.sticky-cta button,
.sticky-cta a {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #f5f5f5;
  padding: 16px 0;
  z-index: 50;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #fff;
  color: var(--ink);
}

.hidden {
  display: none;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-care {
  background-image: url("https://images.unsplash.com/photo-1507089947368-19c1da9775ae?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-soft {
  background: var(--highlight);
}

.bg-legal {
  background: #fdfbf8;
}

.bg-panel {
  padding: 32px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 18px;
}

.legal-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.legal-columns .panel {
  flex: 1 1 280px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.contact-block {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
