* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1f24;
  --slate: #2e3a46;
  --sand: #f2efe9;
  --mist: #e6edf2;
  --copper: #b6672d;
  --steel: #6b7c8c;
  --accent: #1f6f8b;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 6vw 10px;
  background: var(--mist);
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--steel);
  border: 1px solid var(--steel);
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
}

.hero {
  background: var(--mist);
  padding: 40px 6vw 60px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-visual {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-content h1,
.split-content h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  line-height: 1.2;
}

.split-content p {
  font-size: 1rem;
  color: #2b2f36;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(31, 111, 139, 0.25);
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.deep {
  background: #0f2029;
  color: #ffffff;
}

.section.deep p,
.section.deep h2 {
  color: #ffffff;
}

.img-wrap {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
}

.img-wrap.slate {
  background: #2c3d4b;
}

.img-wrap.sand {
  background: #d8d3c7;
}

.img-wrap.steel {
  background: #556675;
}

.img-wrap.copper {
  background: #9e6b4b;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card .img-wrap {
  height: 180px;
  border-radius: 12px;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  background: #ffffff;
  border-left: 4px solid var(--copper);
  padding: 14px 16px;
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd6dc;
  font-size: 0.95rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta p {
  font-size: 0.85rem;
}

.footer {
  margin-top: auto;
  padding: 34px 6vw;
  background: #12161a;
  color: #d7dde3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
}

.footer a {
  color: #d7dde3;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .btn.secondary {
  border-color: var(--steel);
  color: var(--steel);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-box {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.muted {
  color: #5b6570;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #c8d0d8;
  width: fit-content;
  font-size: 0.9rem;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 12px;
    right: 12px;
  }
}
