/* Base */
:root {
  --ink: #1d232a;
  --muted: #4b5866;
  --accent: #d45a35;
  --accent-dark: #b24625;
  --sand: #f7f1ea;
  --sky: #e7eef5;
  --leaf: #eaf2ec;
  --line: #e1e6ea;
  --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;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--sky);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn.light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn.link {
  background: transparent;
  color: var(--accent);
  border: none;
  padding: 0;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(20, 26, 33, 0.05);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--sand);
}

.section.sky {
  background: var(--sky);
}

.section.leaf {
  background: var(--leaf);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

header {
  padding: 24px 0;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 10px 0 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.story-block {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(20, 26, 33, 0.08);
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .grid-cards {
    flex-direction: row;
  }
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

@media (min-width: 900px) {
  .service-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 900px) {
  .stats {
    flex-direction: row;
  }
}

.stat-card {
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--line);
}

.form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(20, 26, 33, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.sticky-cta a {
  box-shadow: 0 12px 25px rgba(212, 90, 53, 0.25);
}

footer {
  padding: 40px 0 60px;
  background: #11151a;
  color: #cfd6dd;
}

footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 900px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(20, 26, 33, 0.16);
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hero-image {
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
  color: var(--muted);
}
