* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1d22;
  --muted: #5b6472;
  --accent: #ff7a2f;
  --accent-dark: #d85d1c;
  --cool: #1f3b6d;
  --soft: #f3f5f8;
  --sun: #f7e9d2;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 0;
}

.nav-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.06em;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cta-button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 30px 6vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.asym {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px;
  border-radius: 28px;
  background: var(--soft);
  box-shadow: 0 18px 40px rgba(20, 28, 43, 0.08);
}

.section.sun {
  background: var(--sun);
}

.section.cool {
  background: #edf2ff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.floating-card {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(18, 26, 43, 0.1);
  max-width: 360px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-row .card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 32px rgba(14, 20, 33, 0.08);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  border: 1px solid #e2e6ed;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e6e9ef;
}

.service-item strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--cool);
}

.accent-line {
  height: 4px;
  width: 64px;
  background: var(--accent);
  border-radius: 999px;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(16, 23, 38, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(15, 22, 36, 0.12);
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7dbe2;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-panel button {
  width: 100%;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dfe3ea;
  font-size: 0.85rem;
}

.offset-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offset-media .overlay {
  margin-left: 12px;
  margin-top: -36px;
  background: #ffffff;
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 14px 24px rgba(12, 20, 36, 0.1);
}

footer {
  padding: 40px 6vw 60px;
  background: #0f1522;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #fff;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(12, 20, 36, 0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.muted {
  color: var(--muted);
}

.stacked-columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wide-callout {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #e1e5ec;
}

.highlight {
  color: var(--accent-dark);
  font-weight: 700;
}

.legal-page {
  padding: 30px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-page h1 {
  font-size: 2rem;
}

.legal-page h2 {
  margin-top: 18px;
  font-size: 1.2rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e4e8ef;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-placeholder {
  background: linear-gradient(135deg, #dae2f3, #f7efe4);
  border-radius: 22px;
  padding: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(33% - 18px);
  }

  .stacked-columns {
    flex-direction: row;
  }

  .stacked-columns > * {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
