* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1f2326;
  --muted: #5a636b;
  --accent: #2f6f6b;
  --accent-soft: #e0f0ec;
  --deep: #0f1f22;
  --sand: #f1e6d9;
  --card: #ffffff;
}

body {
  margin: 0;
  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;
}

img {
  display: block;
}

.page {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.header {
  padding: 28px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  background: var(--accent-soft);
  color: var(--deep);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  background-color: #2b3b3f;
  color: #f7f4ef;
  padding: 80px 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-hI08TetYw0g?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: min(780px, 100%);
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin: 0;
}

.hero p {
  margin: 0;
  color: #e9e5df;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  width: fit-content;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 68px 0;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--deep);
  color: #f2f0ec;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 320px;
  min-width: 280px;
}

.offset-block {
  flex: 1 1 320px;
  min-width: 260px;
  background: var(--card);
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(20, 25, 30, 0.12);
  transform: translateY(16px);
}

.offset-block.emphasis {
  background: var(--accent-soft);
  transform: translateY(-18px);
}

.media-frame {
  background-color: #d9d3c8;
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-small {
  height: 240px;
}

.media-tall {
  height: 320px;
}

.services-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.cta-row {
  margin-top: 24px;
}

.service-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 32px rgba(20, 25, 30, 0.08);
}

.service-card h3 {
  margin: 0;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--accent-soft);
  color: var(--deep);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.bg-recovery {
  background-image: url("https://images.unsplash.com/photo-F_EooJ3-uTs?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f4ef;
  position: relative;
}

.bg-recovery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 28, 0.65);
}

.bg-recovery .page {
  position: relative;
}

.form-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(20, 25, 30, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8cbd0;
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 50;
}

.footer {
  padding: 40px 0 60px;
  background: #12191c;
  color: #d8d7d2;
}

.footer a {
  color: #d8d7d2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #c4c2bd;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(20, 25, 30, 0.2);
  padding: 16px;
  display: none;
  gap: 16px;
  z-index: 60;
}

.cookie-banner.is-visible {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-hero {
  padding: 70px 0 60px;
  background: var(--deep);
  color: #f3f0ea;
}

.simple-hero .split {
  align-items: flex-start;
}

.callout {
  background: var(--accent-soft);
  padding: 20px;
  border-radius: 16px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-card {
  flex: 1 1 240px;
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(20, 25, 30, 0.08);
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-block {
  background: var(--card);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(20, 25, 30, 0.08);
}

.legal {
  padding: 48px 0;
}

.legal h2 {
  margin-top: 32px;
}

.legal p,
.legal li {
  color: var(--muted);
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }

  .hero {
    padding: 60px 0 70px;
  }

  .offset-block,
  .offset-block.emphasis {
    transform: none;
  }
}
