* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --bg: #f7f4ef;
  --accent: #b45f06;
  --accent-soft: #f3d4b2;
  --panel: #ffffff;
  --deep: #1f2a2e;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--ink);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6vw 12px;
  background: var(--panel);
  border-bottom: 1px solid #ece2d8;
}

.topbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 8px 12px;
  border-radius: 8px;
}

.container {
  width: min(1120px, 88vw);
  margin: 0 auto;
}

.hero {
  padding: 56px 0;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
  background: #e3ddd3;
  border-radius: 20px;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  margin-bottom: 16px;
  line-height: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--accent);
}

.btn:hover {
  background: #8f4b05;
}

.btn.secondary:hover {
  background: var(--accent-soft);
}

.section {
  padding: 56px 0;
}

.section.deep {
  background: var(--deep);
  color: #f8f2ea;
}

.bg-insight {
  background-image:
    linear-gradient(90deg, rgba(31, 42, 46, 0.92), rgba(31, 42, 46, 0.7)),
    url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-focus {
  background-image:
    linear-gradient(90deg, rgba(31, 42, 46, 0.94), rgba(31, 42, 46, 0.75)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.soft {
  background: #fff7ee;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid #f0e2d6;
}

.inline-image {
  display: flex;
  gap: 24px;
  align-items: center;
}

.inline-image .media {
  flex: 0 0 40%;
  border-radius: 16px;
  overflow: hidden;
  background: #e3ddd3;
}

.inline-image .text {
  flex: 1;
}

.pillars {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.pillar {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #f0e2d6;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #f0e2d6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .media {
  border-radius: 12px;
  overflow: hidden;
  background: #e3ddd3;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.flow-step span {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-box {
  flex: 1 1 320px;
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #f0e2d6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8ccc0;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #f0e2d6;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--deep);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  background: #fff;
  color: var(--deep);
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.sticky-cta button:hover {
  background: var(--accent-soft);
}

.footer {
  background: #f1ebe3;
  padding: 40px 6vw;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0 20px;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e2d6ca;
  width: min(340px, 88vw);
  display: none;
  z-index: 30;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff0df;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.simple-hero {
  padding: 48px 0;
}

.simple-hero h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 8px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.info-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #f0e2d6;
}

.legal-block {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #f0e2d6;
}

.spacer {
  height: 10px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse,
  .inline-image {
    flex-direction: column;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: space-between;
  }
}
