* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1d1a;
  --muted: #5d574f;
  --accent: #b1412d;
  --accent-dark: #7b2b20;
  --sand: #f7f2ec;
  --fog: #ede6dd;
  --olive: #8a7a61;
  --stone: #2c2620;
  --cream: #fbf7f1;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: var(--sand);
  border-bottom: 1px solid #e4dccf;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 6vw 1rem;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 6vw 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1528701800489-20be3c9d6381?auto=format&fit=crop&w=1200&q=80") center/cover;
  opacity: 0.25;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: rgba(177, 65, 45, 0.08);
}

.section {
  padding: 3.2rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--stone);
  color: #f2ece3;
}

.section-title {
  font-size: 1.75rem;
  line-height: 1.2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--olive);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.4rem;
  background: var(--fog);
  border-radius: 1.2rem;
}

.quotes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote {
  padding: 1.1rem;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 0.8rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 0.9rem;
  height: 180px;
  object-fit: cover;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric {
  background: var(--fog);
  padding: 1rem;
  border-radius: 0.9rem;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-item {
  background: #fff;
  padding: 1.3rem;
  border-radius: 1rem;
  border: 1px solid #eadfcd;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  padding: 1.6rem;
  border-radius: 1.2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 0.8rem;
  border-radius: 0.8rem;
  border: 1px solid #d7c8b2;
  font-size: 1rem;
  font-family: inherit;
}

.service-preview {
  background: var(--fog);
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(177, 65, 45, 0.4);
  z-index: 100;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.footer {
  background: var(--stone);
  color: #f5efe6;
  padding: 2.5rem 6vw 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 120;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.page-hero {
  padding: 3rem 6vw 2rem;
  background: var(--sand);
}

.page-hero h1 {
  font-size: 2.1rem;
  margin-bottom: 0.7rem;
}

.page-section {
  padding: 2.5rem 6vw;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    max-width: 520px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .price-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .price-item {
    flex: 1 1 calc(33.333% - 1.2rem);
    min-width: 220px;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }

  .form-wrap {
    max-width: 520px;
  }

  .cookie-banner {
    left: auto;
    right: 2rem;
    max-width: 360px;
  }
}
