* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1e1b16;
  --muted: #5f5b57;
  --accent: #b55c32;
  --accent-dark: #8c3e1c;
  --paper: #f6f1ea;
  --mist: #efe7dc;
  --sand: #e5d6c4;
  --night: #1b1a1a;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.page-header {
  padding: 32px 0 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  background: linear-gradient(120deg, rgba(245, 236, 223, 0.8), rgba(238, 227, 213, 0.9)),
    url("https://images.unsplash.com/photo-1455885666463-23dc6e7c9d9b?auto=format&fit=crop&w=1400&q=80")
      center/cover;
  padding: 90px 0 100px;
  border-radius: 32px;
}

.hero-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 340px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  background: var(--accent);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--mist);
}

.section.dark {
  background: var(--night);
  color: #f7f1eb;
}

.section.dark .muted {
  color: rgba(247, 241, 235, 0.7);
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 320px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: white;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(35, 30, 24, 0.08);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.card h3 {
  margin: 0 0 8px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline-step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quote {
  padding: 26px;
  border-radius: 20px;
  background: var(--sand);
  font-style: italic;
}

.benefit-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.benefit {
  flex: 1 1 220px;
  background: white;
  border-radius: 20px;
  padding: 20px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: white;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--sand);
}

.price-card h3 {
  margin-top: 0;
}

.price {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-panel {
  background: var(--accent);
  color: white;
  padding: 30px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-panel.spaced {
  margin-top: 32px;
}

.cta-panel a {
  background: white;
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.form-wrap {
  background: white;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(29, 22, 16, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4c9bb;
  font-size: 15px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

.footer {
  padding: 40px 0 60px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(22, 15, 10, 0.2);
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 420px;
  background: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(29, 22, 16, 0.12);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: white;
}

.cookie-reject {
  background: #efe7dc;
  color: var(--ink);
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip img {
  width: 100%;
  flex: 1 1 200px;
  height: 180px;
  object-fit: cover;
}

.page-hero {
  background: var(--mist);
  padding: 60px 0;
}

.page-hero h1 {
  margin-bottom: 12px;
}

@media (max-width: 720px) {
  .cta-panel {
    justify-content: flex-start;
  }
  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
