* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f4f1;
  --ink: #1f1c1a;
  --accent: #d94f2a;
  --accent-dark: #b63f20;
  --muted: #6e655f;
  --panel: #ffffff;
  --soft: #efe7e0;
  --shadow: 0 20px 40px rgba(31, 28, 26, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: 24px 0 80px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn.outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: column;
}

.split .panel {
  background: var(--panel);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.split .panel.soft {
  background: var(--soft);
  box-shadow: none;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--panel);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: var(--radius-sm);
}

.inline-cta {
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
}

.story-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #231f1d, #3b2d25);
  color: #fff;
}

.story-strip span {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.quote {
  font-size: 1.05rem;
  font-style: italic;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  background: var(--panel);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  box-shadow: var(--shadow);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing .price-card {
  background: var(--panel);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
}

.form-wrap {
  background: var(--panel);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #c7b8ae;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid #d6c8be;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  align-self: flex-start;
  background: #fff4ef;
  border: 1px solid #e6b9aa;
  padding: 16px;
  border-radius: var(--radius-md);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #1f1c1a;
  color: #fff;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  background: #fff;
  color: #1f1c1a;
}

.cookie-actions .btn.outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wide-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .metrics {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }

  .cookie-banner {
    max-width: 520px;
  }
}
