* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f3ee;
  --ink: #1f1c18;
  --muted: #6d6258;
  --accent: #b2562e;
  --accent-soft: #f1d7c7;
  --paper: #ffffff;
  --shadow: 0 20px 45px rgba(31, 28, 24, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: var(--paper);
  padding: 18px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e6ddd4;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.brand h1,
.brand h2 {
  font-size: 22px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.story {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 60px 6vw 90px;
}

.story-section {
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 42px 6vw;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-section.narrow {
  max-width: 860px;
  margin: 0 auto;
}

.story-section.contrast {
  background: var(--ink);
  color: #fefcf9;
}

.story-section.soft {
  background: var(--accent-soft);
}

.story-section.pattern {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.88),
      rgba(255, 255, 255, 0.88)
    ),
    url("https://images.unsplash.com/photo-1485322551133-3a4c27a9d925?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

.story-section.contrast .eyebrow {
  color: #f5d5c1;
}

.headline {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.story-section.contrast .lead {
  color: #fefcf9;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  padding: 14px 18px;
  border-radius: 18px;
  background: #faf7f3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  padding: 20px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #eadfd4;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card h3 {
  font-size: 20px;
}

.service-card span {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid #ece2d6;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e2d8cc;
  font-size: 15px;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  align-self: flex-end;
  background: #fff4ec;
  border: 1px solid #f1c9b1;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  box-shadow: 0 12px 24px rgba(31, 28, 24, 0.12);
}

.sticky-cta button {
  background: var(--accent);
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.footer {
  padding: 40px 6vw 60px;
  background: #15120f;
  color: #fefcf9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer a {
  color: #f7e3d6;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  padding: 60px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 6vw 60px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 60px;
}

.legal {
  padding: 24px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal h2 {
  font-size: 20px;
}

@media (min-width: 900px) {
  .story-section {
    padding: 52px 7vw;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split .text {
    flex: 1;
  }

  .split .media {
    flex: 1;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 220px;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 360px;
  }
}
