* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1c1e;
  --muted: #5a626d;
  --accent: #0b6b5d;
  --accent-soft: #e0f2ee;
  --warm: #f7f1e8;
  --rose: #f4e4e6;
  --sand: #f9f6f1;
  --shadow: 0 24px 60px rgba(16, 24, 40, 0.12);
  --radius: 20px;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfbfc;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav-shell {
  padding: 24px 0 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-row .brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-row .brand span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--ink);
}

.split-shell {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
}

.split-shell.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  min-width: 0;
}

.split-visual {
  flex: 1;
  min-width: 0;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 20px 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn.soft {
  background: var(--accent-soft);
  border-color: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 80px 0;
  position: relative;
}

.layered {
  background: var(--warm);
}

.layered::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 20%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.8;
}

.offset-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: -40px;
}

.grid-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: white;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
}

.price {
  font-weight: 700;
  font-size: 20px;
}

.highlight {
  background: var(--sand);
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  font-style: italic;
  color: var(--muted);
}

.process-step {
  flex: 1 1 220px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-shell {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-panel label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5d8de;
  margin-bottom: 16px;
  font-size: 15px;
}

.form-panel button {
  width: 100%;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  box-shadow: var(--shadow);
}

.image-stack {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.image-stack img {
  width: 100%;
  border-radius: 18px;
  flex: 1;
  object-fit: cover;
}

.footer {
  padding: 50px 0 70px;
  background: #15181b;
  color: #f2f4f7;
}

.footer a {
  color: #f2f4f7;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid #ccd2d9;
  background: white;
}

.cookie-actions .accept {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.subtle {
  color: var(--muted);
}

.page-header {
  padding: 70px 0 40px;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.content-block {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.content-block + .content-block {
  margin-top: 24px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: white;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 880px) {
  .split-shell,
  .split-shell.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
  }
}
