/* Base */
:root {
  color-scheme: light;
  --ink: #1d1b19;
  --muted: #6a625b;
  --sand: #f4eee8;
  --clay: #c98f6a;
  --forest: #1f4b3f;
  --stone: #e7dfd7;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(24, 19, 15, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

header {
  padding: 28px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.cta-mini {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 0.85rem;
}

.hero {
  padding: 22px 6vw 30px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-card {
  background: var(--sand);
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 14px;
}

.hero-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.primary {
  background: var(--forest);
  color: var(--white);
}

.button.ghost {
  border: 1px solid var(--ink);
  background: transparent;
}

.hero-image {
  position: relative;
  margin-left: 8vw;
  border-radius: 28px;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
}

.offset-panel {
  margin: 0 6vw;
  padding: 28px;
  background: var(--stone);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-panel h2 {
  margin: 0;
  font-size: 1.6rem;
}

.offset-panel .inline-link {
  font-weight: 600;
  color: var(--forest);
  text-decoration: underline;
}

.split-strip {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 6vw;
}

.split-strip .strip-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strip-card em {
  color: var(--forest);
  font-style: normal;
  font-weight: 600;
}

.service-deck {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 6vw;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: var(--sand);
  border-radius: 20px;
  position: relative;
}

.service-card img {
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
}

.price-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.service-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0 6vw;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-left: 6px solid var(--clay);
  padding: 24px 20px 24px 24px;
}

.story-block strong {
  font-size: 1.1rem;
}

.testimonial {
  background: var(--forest);
  color: var(--white);
  padding: 30px;
  border-radius: 26px;
}

.cta-band {
  margin: 0 6vw;
  padding: 30px;
  background: var(--clay);
  color: var(--white);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-band .button.ghost {
  border-color: var(--white);
  color: var(--white);
}

.form-section {
  padding: 0 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sand);
  padding: 26px;
  border-radius: 22px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0c6bb;
  font-family: inherit;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  padding: 24px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #101010;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--forest);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 16px;
  border-radius: 16px;
  width: min(320px, 90vw);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-hero {
  padding: 40px 6vw 24px;
  background: var(--sand);
  border-radius: 0 0 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 6vw;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy-section {
  padding: 10px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 820px) {
  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1.05;
  }

  .hero-image {
    flex: 0.95;
    align-self: flex-end;
  }

  .split-strip {
    flex-direction: row;
  }

  .split-strip .strip-card {
    flex: 1;
  }

  .service-deck {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 20px);
  }

  .story-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .story-block,
  .testimonial {
    flex: 1;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid > div {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-stack {
    flex-direction: row;
  }
}
