* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f8f3ee;
  --ink: #1f1b18;
  --muted: #6d5f57;
  --accent: #c84d2f;
  --accent-2: #2f6b5f;
  --card: #ffffff;
  --line: #eadfd6;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--offset {
  background: #fff7f1;
}

.section--dark {
  background: #1f1b18;
  color: #f7f1ec;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0e3da;
  color: #533c2e;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.nav {
  padding: 20px 0;
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 72px;
  background-image: url("https://images.unsplash.com/photo-1729543502216-292f0bd63186?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 12, 10, 0.7), rgba(15, 12, 10, 0.25));
}

.hero-content {
  position: relative;
  max-width: 560px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  color: #efe7e1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--ghost {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.btn--outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > * {
  flex: 1 1 320px;
}

.split--reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(37, 26, 20, 0.08);
  margin-top: 36px;
}

.media {
  background: #f1e6dd;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 280px;
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.cta-band {
  padding: 60px 0;
  background-image: url("https://images.unsplash.com/photo-1506354666786-959d6d497f1a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 18, 16, 0.62);
}

.cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.footer {
  padding: 36px 0 84px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.legal {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.background-panel {
  background: #f9efe7;
  padding: 32px;
  border-radius: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 30;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  background: #f2e7de;
  padding: 64px 0;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.simple-card {
  flex: 1 1 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.muted {
  color: var(--muted);
}

.note {
  background: #fff2e9;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
}
