@charset "UTF-8";

:root {
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --accent: #9a5b2f;
  --accent-dark: #733f1f;
  --sand: #f5efe7;
  --clay: #e4d5c6;
  --stone: #f0f0f0;
  --forest: #2f3a2f;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.page {
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw 16px;
  gap: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  text-decoration: none;
  color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 6vw 40px;
  background: linear-gradient(140deg, var(--sand), var(--white));
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(154, 91, 47, 0.08);
  border-radius: 50%;
  right: -120px;
  top: -60px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-contrast {
  background: var(--sand);
}

.section-dark {
  background: var(--forest);
  color: var(--white);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  padding: 20px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

.reveal-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--clay);
  border-radius: 12px;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  font-size: 1rem;
  font-family: inherit;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--stone);
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.pill.active {
  background: var(--accent);
  color: var(--white);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(154, 91, 47, 0.35);
  z-index: 20;
}

.footer {
  padding: 40px 6vw 60px;
  background: #111;
  color: #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f1f1f1;
  text-decoration: none;
  margin-right: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1d1d1d;
  color: #f1f1f1;
  padding: 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-reject {
  background: #3a3a3a;
  color: #f1f1f1;
}

.page-hero {
  padding: 40px 6vw;
  background: var(--sand);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-inner {
    flex: 1;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .reveal-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-tag {
    flex: 1;
    min-width: 240px;
  }

  .info-row {
    flex-direction: row;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid > div {
    flex: 1;
  }
}
