* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2428;
  --muted: #5d6973;
  --soft: #eef2f4;
  --accent: #2e6f6a;
  --accent-dark: #245854;
  --warm: #f7f1ec;
  --line: #d7dde2;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

header {
  border-bottom: 1px solid var(--line);
  padding: 24px 6vw;
  background: #ffffff;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.4px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 64px 6vw;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
  min-width: 280px;
}

.split.soft {
  background: var(--soft);
}

.split.warm {
  background: var(--warm);
}

.split.tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 12px 0;
  line-height: 1.2;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 12px 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.link-inline {
  font-weight: 600;
  color: var(--accent-dark);
}

.image-wrap {
  background-color: #dfe7ea;
  border-radius: 18px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.service-select {
  align-self: flex-start;
}

.form-shell {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: #ffffff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.form-message {
  font-size: 14px;
  color: #a04444;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--line);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 14px;
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.banner-note {
  font-size: 12px;
  color: var(--muted);
}

.bg-photo {
  position: relative;
  overflow: hidden;
}

.bg-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

.bg-photo .col {
  position: relative;
  z-index: 1;
}

.bg-calm {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.notice {
  padding: 16px 20px;
  border-left: 4px solid var(--accent);
  background: #f3f7f8;
  border-radius: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
