/* Base */
:root {
  --bg: #f8f5f1;
  --ink: #201714;
  --accent: #b2422f;
  --accent-dark: #7f2c20;
  --muted: #6b5e57;
  --card: #ffffff;
  --sand: #efe6dd;
  --leaf: #2f5e3d;
  --shadow: 0 18px 35px rgba(32, 23, 20, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

header {
  padding: 26px 6vw 10px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
}

.cta-primary,
.cta-secondary,
.cta-outline {
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 25px rgba(178, 66, 47, 0.3);
}

.cta-secondary {
  background: var(--leaf);
  color: #fff;
}

.cta-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-outline:hover {
  transform: translateY(-1px);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 30px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  background: var(--sand);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section.alt {
  background: #fff;
}

.section.sand {
  background: var(--sand);
}

.section .section-title {
  font-size: 1.8rem;
  margin: 0;
}

.story-grid,
.trust-grid,
.benefits-grid,
.pricing-grid,
.faq-grid,
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: var(--card);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card strong {
  font-size: 1.1rem;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 12px;
}

.pricing-card {
  border: 1px solid rgba(32, 23, 20, 0.1);
}

.pricing-card .price {
  font-size: 1.6rem;
  font-weight: 700;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(178, 66, 47, 0.1);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-dark);
}

.image-stack {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.image-stack img {
  width: 130px;
}

.floating-note {
  background: var(--leaf);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  max-width: 280px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(32, 23, 20, 0.15);
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1c1412;
  color: #fff;
  padding: 14px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 20;
}

.sticky-cta p {
  margin: 0;
  font-size: 0.95rem;
}

.footer {
  background: #171110;
  color: #f8f5f1;
  padding: 40px 6vw 60px;
}

.footer a {
  color: #f4c9bf;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.12);
  padding: 18px 6vw;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.muted {
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.75);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(32, 23, 20, 0.08);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-list .card {
  flex-direction: column;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
  }

  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .story-grid,
  .trust-grid,
  .benefits-grid,
  .pricing-grid,
  .faq-grid,
  .footer-grid,
  .service-list {
    flex-direction: row;
  }

  .story-grid .card,
  .trust-grid .card,
  .benefits-grid .card,
  .pricing-grid .card,
  .faq-grid .card,
  .service-list .card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
    align-items: flex-start;
  }
}
