* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #2a1f1a;
  --muted: #6c5b52;
  --accent: #b15d4e;
  --accent-dark: #8f4436;
  --cream: #faf6f1;
  --sand: #f0e6db;
  --leaf: #47604d;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-header {
  padding: 28px 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 1.6rem;
  font-weight: 700;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-wrap a {
  padding: 4px 6px;
  border-bottom: 2px solid transparent;
}

.nav-wrap a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 28px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: url("images/texture-knit.svg") no-repeat right bottom / 220px;
}

.hero .hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--leaf);
}

.btn.light {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.section {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--sand);
}

.section header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-title {
  font-size: 1.6rem;
  line-height: 1.3;
}

.section-subtitle {
  color: var(--muted);
  max-width: 620px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.story-block {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(42, 31, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--leaf);
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.icon-card {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(42, 31, 26, 0.08);
}

.icon-card img {
  width: 60px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.metric {
  flex: 1 1 140px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.metric strong {
  font-size: 1.4rem;
  display: block;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  background: #fff;
  padding: 16px;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(42, 31, 26, 0.1);
}

.price-card strong {
  font-size: 1.3rem;
  color: var(--accent-dark);
}

.pill {
  display: inline-block;
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-band a {
  color: #fff;
  font-weight: 600;
}

.form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 14px 34px rgba(42, 31, 26, 0.1);
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e2d5c9;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-cta {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.banner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(42, 31, 26, 0.12);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 10;
}

.sticky-cta .btn {
  padding: 14px 18px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(42, 31, 26, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  padding: 28px 20px 60px;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #fff;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

@media (min-width: 780px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero .hero-media,
  .hero .hero-copy {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .pricing-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 220px;
  }

  .form-panel {
    padding: 32px;
  }

  .cookie-banner {
    max-width: 520px;
  }
}
