* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1d20;
  --muted: #5b5f66;
  --paper: #f7f4ef;
  --accent: #1a4b7a;
  --accent-2: #9b2d1f;
  --line: #e0d8cc;
  --shadow: rgba(15, 20, 25, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #faf8f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4vw;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-cta {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 4vw 2rem;
  background: #fff;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.cta {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-outline {
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
  background: transparent;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 3rem 4vw;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.section.alt {
  background: var(--paper);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.columns.two {
  gap: 2rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 10px 30px var(--shadow);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card h3 {
  font-size: 1.2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pull-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  font-style: italic;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-2);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.6rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

input,
select,
textarea {
  padding: 0.7rem 0.8rem;
  border-radius: 0.6rem;
  border: 1px solid #c9c1b7;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  background: #fff8f2;
  border: 1px solid var(--line);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 12px 28px var(--shadow);
}

.footer {
  padding: 2rem 4vw;
  background: #1b1f24;
  color: #f7f1e7;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  display: none;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 16px 40px var(--shadow);
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.notice {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
}

.legal {
  max-width: 60rem;
}

.hero-illustration,
.inline-illustration {
  background: #f1ede6;
  border-radius: 1.4rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
}

.wide-band {
  background: #f2f0ea;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1rem;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.muted {
  color: var(--muted);
}

@media (min-width: 800px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
  }

  .hero-text,
  .hero-illustration {
    flex: 1;
  }

  .columns.two {
    flex-direction: row;
  }

  .columns.two > * {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .pricing .card {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-grid .card {
    flex: 1 1 calc(50% - 1rem);
  }
}
