* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1c1a;
  --muted: #5b5a57;
  --soft: #f3f1ed;
  --accent: #2b5b47;
  --accent-2: #8a5d2e;
  --line: #d8d3c9;
  --highlight: #fffae8;
  --shadow: 0 18px 40px rgba(18, 16, 14, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrap {
  width: min(1140px, 90%);
  margin: 0 auto;
}

.top-nav {
  padding: 24px 0 8px;
}

.top-nav .nav-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  padding: 40px 0 60px;
}

.hero .hero-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--highlight);
  color: var(--accent-2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-top: 12px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media .overlay-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 14px 16px;
  max-width: 220px;
  font-size: 0.9rem;
}

.story {
  background: var(--soft);
  padding: 60px 0;
}

.story .story-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.callout {
  border-left: 4px solid var(--accent-2);
  padding-left: 16px;
  font-style: italic;
  color: var(--muted);
}

.split {
  padding: 60px 0;
}

.split .split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .tile {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.split .tile h3 {
  margin-bottom: 8px;
}

.insight {
  padding: 60px 0;
  background: #fff;
}

.insight .insight-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.trust {
  padding: 60px 0;
  background: var(--soft);
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-card {
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.benefits {
  padding: 60px 0;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.benefit-item span {
  font-weight: 700;
  color: var(--accent);
}

.pricing {
  padding: 70px 0;
  background: #fff;
}

.pricing .pricing-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card {
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card strong {
  font-size: 1.2rem;
}

.pricing-card .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 50px 0;
}

.cta-band .cta-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-band a {
  color: #fff;
  text-decoration: underline;
}

.form-section {
  padding: 60px 0 80px;
  background: var(--soft);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  margin: 0 auto;
  width: min(920px, 88%);
  background: #fff;
  border-radius: 999px;
  padding: 10px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.sticky-cta p {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 40px 0 60px;
  background: #1c1a18;
  color: #d8d3c9;
  margin-top: auto;
}

.footer .footer-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #d8d3c9;
  font-size: 0.9rem;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-header {
  padding: 40px 0 20px;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.content-section {
  padding: 40px 0 60px;
}

.content-section .content-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-card {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  border-radius: 16px;
  padding: 20px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .top-nav .nav-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero .hero-row {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-text {
    flex: 1.1;
  }

  .hero-media {
    flex: 1;
  }

  .story .story-row,
  .split .split-row,
  .insight .insight-row,
  .trust-grid,
  .benefit-list,
  .pricing .pricing-row,
  .cta-band .cta-row,
  .form-wrapper,
  .content-section .content-row,
  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .story .story-row > div,
  .split .split-row > div,
  .insight .insight-row > div,
  .trust-card,
  .benefit-item,
  .pricing-card,
  .cta-band .cta-row > div,
  .content-card,
  .service-card,
  .contact-grid > div {
    flex: 1 1 45%;
  }

  .form-wrapper {
    flex-direction: row;
  }

  .form-wrapper > div,
  .form-wrapper form {
    flex: 1;
  }

  .footer .footer-row {
    flex-direction: row;
    justify-content: space-between;
  }
}
