* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1a18;
  --soft-ink: #4d4a45;
  --sand: #f4f0ea;
  --olive: #2a3a2f;
  --moss: #4b5b4a;
  --clay: #d8c6b2;
  --gold: #b28a4b;
  --paper: #ffffff;
  --accent: #7d4631;
  --shadow: 0 20px 40px rgba(20, 16, 10, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  overflow-x: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  gap: 32px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.9rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 64px 6vw 84px;
  background: linear-gradient(120deg, rgba(244, 240, 234, 0.9), rgba(255, 255, 255, 0.95)), url("../img/hero-texture.svg");
  background-size: cover;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  max-width: 820px;
}

.hero p {
  max-width: 720px;
  font-size: 1.1rem;
  color: var(--soft-ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 12px 22px;
  border-radius: 32px;
  border: 1px solid var(--ink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: var(--ink);
  color: var(--paper);
}

.btn.ghost {
  border-color: var(--moss);
  color: var(--moss);
}

.section {
  padding: 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--olive);
  color: var(--paper);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-left: 4px solid var(--accent);
  background: rgba(125, 70, 49, 0.08);
}

.insight-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.insight-card {
  padding: 20px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-row span {
  font-weight: 600;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefits li {
  list-style: none;
  padding-left: 22px;
  position: relative;
}

.benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card {
  padding: 24px;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--paper);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.service-choice {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  border: 1px solid var(--clay);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.service-option.active {
  border-color: var(--accent);
  box-shadow: 0 12px 24px rgba(125, 70, 49, 0.18);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-fields label {
  font-size: 0.9rem;
  color: var(--soft-ink);
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  background: var(--accent);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.urgent-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px dashed var(--accent);
  padding: 24px;
  border-radius: 18px;
}

.footer {
  padding: 40px 6vw;
  background: #151310;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: var(--ink);
  color: var(--paper);
}

.simple-hero {
  padding: 68px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sand);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--clay);
  background: var(--paper);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 64px 6vw;
}

@media (min-width: 768px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .insight-grid,
  .pricing-grid,
  .service-options,
  .info-grid,
  .contact-grid {
    flex-direction: row;
  }

  .insight-card,
  .price-card,
  .service-option,
  .info-card {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .form-fields {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-fields .field {
    flex: 1 1 45%;
  }

  .form-fields .field.full {
    flex-basis: 100%;
  }

  .hero-actions {
    align-items: center;
  }
}
