* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --accent: #1f5e5b;
  --accent-2: #d6c7b0;
  --panel: #ffffff;
  --soft: #efe9e2;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0 12px;
  background: var(--panel);
  border-bottom: 1px solid #e0d8ce;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  background: var(--soft);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
  padding: 64px 0;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--panel);
}

.section.soft {
  background: var(--soft);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > div {
  flex: 1 1 320px;
}

.img-wrap {
  background-color: #d8d2c9;
  border-radius: 18px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card .img-wrap {
  height: 160px;
}

.card h3 {
  font-size: 18px;
}

.card p {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-2);
  color: #3c2d1f;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.quote {
  background: var(--panel);
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 14px;
  color: var(--muted);
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e4dccf;
}

.price {
  font-size: 22px;
  font-weight: 700;
}

.form-panel {
  background: var(--panel);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d4cbbf;
  font-size: 15px;
}

.footer {
  background: #11110f;
  color: #e9e6e0;
  padding: 40px 0;
}

.footer a {
  color: #e9e6e0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  margin-top: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #c8c1b9;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--panel);
  border: 1px solid #d4cbbf;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.banner.hidden {
  display: none;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--soft);
  padding: 54px 0;
}

.page-hero .split {
  align-items: center;
}

.page-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-insight .container {
  background: rgba(247, 245, 242, 0.9);
  padding: 40px;
  border-radius: 20px;
}

.bg-stories {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-stories .container {
  background: rgba(255, 255, 255, 0.92);
  padding: 40px;
  border-radius: 20px;
}

.legal {
  padding: 40px 0 64px;
}

.legal h2 {
  margin-top: 24px;
  margin-bottom: 8px;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 32px;
  }
  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: center;
  }
}
