/* Base */
:root {
  color-scheme: light;
  --ink: #1c1a18;
  --muted: #5a524b;
  --sand: #f6f0e9;
  --olive: #7a7b57;
  --terracotta: #d26a4a;
  --sky: #dfe9ee;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(28, 26, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  position: relative;
}

.muted {
  color: var(--muted);
}

.tag {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  border: 2px solid var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.alt {
  background: transparent;
  color: var(--ink);
}

.btn.olive {
  background: var(--olive);
  border-color: var(--olive);
}

.sticky-cta {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 5;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding: 2rem 0 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-width: 620px;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  width: min(520px, 100%);
}

.hero-media img {
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.offset-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.8rem;
}

.section {
  padding: 3.6rem 0;
  position: relative;
}

.section.soft {
  background: var(--sky);
}

.section.olive {
  background: #f0f0e2;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .column {
  flex: 1;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card img {
  border-radius: 14px;
}

.zigzag {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.zigzag-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.zigzag-row.alt {
  align-items: flex-end;
}

.quote {
  font-style: italic;
  background: var(--white);
  padding: 1.4rem 1.6rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--white);
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.service-price {
  font-weight: 700;
  color: var(--terracotta);
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #d7d0c8;
  font-size: 1rem;
}

.form-panel button {
  align-self: flex-start;
}

.footer {
  margin-top: auto;
  padding: 2.5rem 0;
  background: var(--ink);
  color: var(--white);
}

.footer .nav-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer .nav-links a:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--white);
  border-radius: 18px;
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow);
  display: none;
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill {
  padding: 0.5rem 1rem;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.overlap {
  margin-top: -3rem;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .zigzag-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .zigzag-row.alt {
    flex-direction: row-reverse;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(50% - 1rem);
  }

  .cookie-banner.active {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner .cookie-actions {
    justify-content: flex-end;
  }
}
