* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1b1a;
  --muted: #6a5f5a;
  --sand: #f6f1ec;
  --stone: #e6ded7;
  --clay: #cbb7a6;
  --terra: #a36f5a;
  --forest: #2f4a3d;
  --accent: #b45a3c;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site {
  min-height: 100vh;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  background: var(--white);
  border-right: 1px solid var(--stone);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 260px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 500;
}

.nav a {
  padding: 6px 0;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
}

.button.primary:hover {
  background: #9a4d35;
}

.button.ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.button.ghost:hover {
  background: rgba(180, 90, 60, 0.12);
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.narrow {
  align-items: flex-start;
  max-width: 980px;
}

.section.alt {
  background: var(--white);
}

.section.dark {
  background: var(--forest);
  color: var(--white);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 18px 45px rgba(52, 40, 32, 0.08);
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 240px;
}

.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  background: var(--stone);
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--stone);
}

.card img {
  border-radius: 14px;
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: var(--white);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--stone);
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  font-size: 1rem;
  background: #fdfbf9;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--terra);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(45, 32, 24, 0.2);
  z-index: 10;
}

.footer {
  background: var(--stone);
  padding: 30px 6vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 320px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(25, 20, 18, 0.18);
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--stone);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 900px;
}

.page-title {
  font-size: 2.2rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notice {
  background: var(--stone);
  padding: 16px;
  border-radius: 12px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .feature-row,
  .cards,
  .pricing-grid,
  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature,
  .card,
  .price-card,
  .testimonial {
    flex: 1;
    min-width: 240px;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}

@media (max-width: 880px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--stone);
  }

  .sticky-cta {
    right: 12px;
  }
}
