* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --bg-deep: #ece7e1;
  --ink: #1f1b16;
  --muted: #5f5a54;
  --accent: #c36a2d;
  --accent-dark: #9f5322;
  --line: #d7cfc5;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 10px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  background: #ffe9d6;
  color: #7a3e14;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1770656505795-350f37352c7a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 90px 0 70px;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 27, 22, 0.65);
}

.hero .container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  max-width: 680px;
  margin: 0;
}

.hero p {
  max-width: 620px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 26px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #fff;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--bg-deep);
}

.split {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background: #efe7de;
  border-radius: 18px;
  overflow: hidden;
  padding: 6px;
}

.story-steps {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.step-card {
  flex: 1 1 200px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.insight-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.insight {
  flex: 1 1 240px;
  padding: 20px;
  border-left: 3px solid var(--accent);
  background: #fff;
}

.trust {
  background-image: url("https://images.unsplash.com/photo-1760310936486-4dd450aab2a8?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 27, 22, 0.7);
}

.trust .container {
  position: relative;
}

.trust-metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.metric {
  flex: 1 1 200px;
  background: rgba(255, 255, 255, 0.14);
  padding: 18px;
  border-radius: 14px;
}

.testimonial-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--line);
}

.pricing-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 230px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.service-card .image-wrap {
  background: #e8e1d7;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.flow {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.flow-item {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px dashed var(--line);
}

.form-shell {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-box {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff6ee;
  border-top: 1px solid var(--line);
  padding: 16px 0;
  z-index: 2;
}

.sticky-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  background: #1f1b16;
  color: #f7f5f2;
  padding: 40px 0 60px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #d9cfc2;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  display: none;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.page-hero {
  padding: 60px 0 40px;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.simple-section {
  padding: 40px 0 60px;
}

.legal-block {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
}
