* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f3ef;
  --ink: #1f2328;
  --muted: #5d6670;
  --accent: #0f6b5f;
  --accent-2: #f5b454;
  --panel: #ffffff;
  --sand: #efe6d7;
  --steel: #e5eaef;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #d9e2e8;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 12px;
  background: var(--panel);
  border-bottom: 1px solid #e1e1e1;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--sand);
}

.section.steel {
  background: var(--steel);
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1;
  min-width: 260px;
}

.split .media-block {
  flex: 1;
  min-width: 260px;
  background: #d9e2e8;
  padding: 10px;
  border-radius: 18px;
}

.media-block img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
}

.hero-title {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 18px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-2);
  color: #3f2a05;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.stats-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.stat {
  background: var(--panel);
  padding: 16px 18px;
  border-radius: 14px;
  min-width: 160px;
}

.stat strong {
  display: block;
  font-size: 20px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background: var(--panel);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 26px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d7de;
  font-size: 15px;
  background: #fff;
}

button {
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.testimonial {
  background: var(--panel);
  padding: 18px;
  border-radius: 14px;
}

.testimonial + .testimonial {
  margin-top: 12px;
}

.contact-block {
  margin-top: 12px;
}

.site-footer {
  background: #101418;
  color: #e8eef3;
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-grid a {
  color: #e8eef3;
}

.footer-note {
  margin-top: 20px;
  font-size: 12px;
  color: #b9c3cc;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: var(--accent-2);
  color: #3f2a05;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button.secondary {
  background: #dfe7ee;
  color: #1f2328;
}

@media (max-width: 820px) {
  .split {
    flex-direction: column;
  }

  .media-block img {
    height: 240px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
