/* Base */
:root {
  --ink: #1f252b;
  --ink-soft: #4f5b66;
  --sand: #f6f2ec;
  --clay: #e7ded2;
  --moss: #3e5c4e;
  --copper: #b36b4a;
  --stone: #d7d0c7;
  --night: #101417;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-soft {
  background: var(--clay);
}

.section-dark {
  background: var(--night);
  color: var(--white);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--ink-soft);
}

.headline-xl {
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  margin: 12px 0 16px;
}

.headline-lg {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  margin: 0 0 18px;
}

.headline-md {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin: 0 0 12px;
}

.muted {
  color: var(--ink-soft);
}

.nav {
  padding: 26px 0;
}

.nav-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.78rem;
  background: var(--stone);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 40px 0 110px;
}

.hero-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.hero-content {
  flex: 1 1 320px;
  padding: 24px 20px 40px 10px;
}

.hero-card {
  flex: 1 1 360px;
  background: var(--white);
  padding: 22px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(17, 22, 28, 0.08);
  transform: translateY(18px);
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  background: #d4cbc2;
}

.hero-image img {
  width: 100%;
  height: 320px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  border: none;
  background: var(--moss);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-light {
  background: var(--white);
  color: var(--moss);
  border: 1px solid var(--moss);
}

.btn-copper {
  background: var(--copper);
  color: var(--white);
}

.link-inline {
  color: var(--moss);
  text-decoration: underline;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.offset-card {
  flex: 1 1 280px;
  background: var(--white);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(17, 22, 28, 0.08);
}

.offset-card.shift-up {
  transform: translateY(-28px);
}

.stacked-band {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.stacked-text {
  flex: 1 1 320px;
}

.stacked-image {
  flex: 1 1 320px;
  background: #d6cdc2;
  border-radius: 20px;
  overflow: hidden;
  transform: translateX(30px);
}

.stacked-image img {
  width: 100%;
  height: 320px;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 280px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 36px rgba(17, 22, 28, 0.06);
}

.service-card img {
  width: 100%;
  height: 190px;
}

.service-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--moss);
}

.service-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.testimonial {
  padding: 18px 22px;
  background: var(--white);
  border-left: 4px solid var(--copper);
  border-radius: 14px;
  margin: 16px 0;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bc;
  font-size: 1rem;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 120px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  background: var(--night);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.sticky-cta button {
  background: var(--copper);
  color: var(--white);
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.footer {
  padding: 40px 0 70px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-card {
  flex: 1 1 220px;
  background: var(--white);
  padding: 20px;
  border-radius: 14px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--moss);
  color: var(--white);
}

.cookie-reject {
  background: var(--stone);
}

.banner-image {
  background: #d5ccc1;
  border-radius: 18px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 260px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 0.85rem;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-col > div {
  flex: 1 1 280px;
}

.section-gap {
  margin-top: 32px;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid var(--moss);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--stone);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.notice {
  background: var(--white);
  padding: 18px;
  border-radius: 12px;
  border-left: 3px solid var(--moss);
}

.text-block {
  max-width: 680px;
}

.page-hero {
  padding: 70px 0 40px;
}

.page-hero .headline-lg {
  margin-bottom: 10px;
}

.simple-card {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
}

.spacer {
  height: 30px;
}

@media (max-width: 900px) {
  .hero-card {
    transform: none;
  }

  .stacked-image {
    transform: none;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
