* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #575a62;
  --accent: #c14a2b;
  --accent-dark: #8f2e1a;
  --soft: #f7f2ee;
  --mist: #eef1f4;
  --edge: #d7dbe0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #ffffff;
  padding: 10px 16px;
  border: 1px solid var(--edge);
  z-index: 10;
}

.skip-link:focus {
  left: 10px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 8vw 12px;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-size: 0.95rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-size: 0.9rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 8vw 60px;
  background: var(--mist);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.8rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

.hero-copy {
  max-width: 560px;
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 60px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--soft);
}

.section.mist {
  background: var(--mist);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  border: 1px solid var(--edge);
  border-radius: 14px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.05rem;
}

.storyline {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  font-style: italic;
  color: var(--muted);
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-size: 1rem;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--edge);
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 24px;
  background: #ffffff;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.service-option {
  border: 1px solid var(--edge);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--mist);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--edge);
  border-radius: 8px;
  font: inherit;
  background: #ffffff;
}

.footer {
  padding: 40px 8vw;
  background: #141518;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--edge);
  padding: 10px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 50;
}

.sticky-cta a {
  font-weight: 600;
  color: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid var(--edge);
  border-radius: 14px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-header {
  padding: 40px 8vw 20px;
  background: var(--mist);
}

.simple-section {
  padding: 30px 8vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 820px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-inner {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .metrics {
    flex-direction: row;
  }

  .price-grid {
    flex-direction: row;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid .form-field {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}
