* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f2ee;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --accent: #1f4b99;
  --accent-soft: #e6eefc;
  --sand: #f0e6dc;
  --stone: #2f2a25;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-bar {
  padding: 24px 0;
  border-bottom: 1px solid #e0d6cc;
  background: #fffaf6;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  color: #7a4b1f;
  background: #f8eddc;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 64px 0 48px;
}

.hero-layout {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 360px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 0 16px;
}

.hero-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button.ghost {
  background: transparent;
  border: 1px solid #c9d6f5;
  color: var(--accent);
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #ddd3c7;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.section {
  padding: 56px 0;
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 32px);
}

.section p {
  color: var(--muted);
  margin: 0 0 12px;
}

.section--contrast {
  background: var(--sand);
}

.section--dark {
  background: var(--stone);
  color: #f5efe9;
}

.section--dark p {
  color: #efe5db;
}

.section--background {
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.section--background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 245, 239, 0.9);
}

.section--background .container {
  position: relative;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric-card {
  flex: 1 1 160px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #efe4d9;
}

.inline-testimonials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.inline-testimonials p {
  flex: 1 1 260px;
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #efe4d9;
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  width: fit-content;
}

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #efe4d9;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8d0c8;
  font: inherit;
}

footer {
  padding: 48px 0 80px;
  background: #111;
  color: #f1e8df;
}

footer a {
  color: #f1e8df;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 13px;
  color: #d3c5b8;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  border: 1px solid #e6ddd3;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.page-hero {
  padding: 48px 0 32px;
}

.page-hero h1 {
  margin: 0 0 12px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.muted {
  color: var(--muted);
}
