*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1a14;
  --muted: #6c5f52;
  --cream: #faf4ee;
  --sand: #f0e6dc;
  --clay: #d9c9b8;
  --ember: #b34a2a;
  --olive: #4c5a3b;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(31, 26, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 7vw;
  background: rgba(250, 244, 238, 0.95);
  border-bottom: 1px solid var(--clay);
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 7vw 64px;
}

.hero-visual {
  position: relative;
  min-height: 280px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4));
}

.hero-card {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(255, 255, 255, 0.88);
  padding: 18px 22px;
  border-radius: 16px;
  max-width: 280px;
  box-shadow: var(--shadow);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 54px 7vw;
}

.section.alt {
  background: var(--sand);
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--clay);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.cta.primary {
  background: var(--ember);
  color: var(--white);
}

.cta.outline {
  border-color: var(--ember);
  color: var(--ember);
  background: transparent;
}

.cta.ghost {
  border-color: var(--olive);
  color: var(--olive);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
  max-height: 190px;
  object-fit: cover;
}

.quote {
  border-left: 3px solid var(--ember);
  padding-left: 16px;
  font-style: italic;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--clay);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-item strong {
  font-size: 1.1rem;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.form-shell label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--clay);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-shell button {
  align-self: flex-start;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  margin: 0 7vw 32px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.footer {
  margin-top: auto;
  padding: 32px 7vw;
  background: #1f1a14;
  color: #f7efe6;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-title {
  padding: 42px 7vw 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal {
  padding: 28px 7vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 980px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-visual {
    flex: 1;
  }

  .section.split {
    flex-direction: row;
    align-items: center;
  }

  .split-row {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .card,
  .pricing-item,
  .timeline-step {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .info-grid {
    flex-direction: row;
  }
}
