* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --sand: #f4f1ec;
  --clay: #e6ded3;
  --stone: #d8d0c6;
  --accent: #b96a38;
  --accent-dark: #7d3f1c;
  --sea: #2f5d62;
  --bg: #ffffff;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 6vw;
  background: var(--sand);
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: var(--accent-dark);
  background: var(--clay);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.cta-nav {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 6vw 60px;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  background: transparent;
  border: 1px solid #fff;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: var(--sand);
}

.section.story {
  padding-top: 40px;
}

.section-title {
  font-size: 30px;
  margin: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1 1 320px;
}

.img-frame {
  background: var(--clay);
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--stone);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--clay);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.service-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-actions .button {
  background: var(--sea);
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
  font-style: italic;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.form-shell {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--clay);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 14px;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
}

.footer {
  padding: 40px 6vw 70px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta .button {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--stone);
  padding: 16px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button.secondary {
  border: 1px solid var(--stone);
  color: var(--ink);
  background: #fff;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 740px;
}

.legal-block h1 {
  margin: 0;
  font-size: 32px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1542291026-7eec264c27ff?w=1400&q=80");
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80");
}

.bg-cta {
  background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1400&q=80");
}

.section.bg-panel {
  color: #fff;
  background-size: cover;
  background-position: center;
}

.section.bg-panel .button.secondary {
  border-color: #fff;
}
