:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #5b6670;
  --accent: #c46b2b;
  --accent-dark: #8f4b1e;
  --accent-soft: #f6e2d1;
  --sage: #1f5b56;
  --mist: #eef4f3;
  --cream: #fbf7f1;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(17, 24, 39, 0.16);
  --radius: 22px;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fdf9f4, #eef3f2 45%, #f7f1ea 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  margin: 0 0 12px;
}

p {
  margin: 0 0 16px;
  line-height: 1.7;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(16, 24, 32, 0.12));
}

.brand-name {
  display: block;
  font-weight: 700;
}

.brand-tag {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 6vw 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(196, 107, 43, 0.15), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(31, 91, 86, 0.18), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(251, 247, 241, 0.65));
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  animation: fadeUp 0.9s ease both;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--sage);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.08rem;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.trust-line {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-panel {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-cta {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.text-link {
  color: var(--sage);
  font-weight: 600;
}

.section {
  padding: 70px 6vw;
}

.section.accent {
  background: linear-gradient(120deg, rgba(31, 91, 86, 0.08), rgba(196, 107, 43, 0.15));
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 640px;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.checklist li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.checklist li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.inline-cta {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.assessment-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.assessment-form {
  display: grid;
  gap: 26px;
}

.step {
  background: rgba(255, 255, 255, 0.7);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 24, 32, 0.08);
}

.step h3 {
  margin-bottom: 18px;
}

.question {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.08);
  margin-bottom: 14px;
}

.question:last-child {
  margin-bottom: 0;
}

.question p {
  font-weight: 600;
}

.question input[type="text"],
.question input[type="email"],
.question input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(16, 24, 32, 0.2);
  font-family: inherit;
}

.question.missing {
  border: 1px solid rgba(196, 107, 43, 0.6);
  box-shadow: 0 0 0 2px rgba(196, 107, 43, 0.2);
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.options.wrap {
  flex-direction: column;
}

.options label {
  background: rgba(31, 91, 86, 0.08);
  border: 1px solid rgba(31, 91, 86, 0.2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.options input {
  margin-right: 6px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.form-error {
  background: rgba(196, 107, 43, 0.12);
  border: 1px solid rgba(196, 107, 43, 0.35);
  padding: 12px 16px;
  border-radius: 14px;
  color: var(--accent-dark);
  font-weight: 600;
}

.form-error.hidden {
  display: none;
}

.assessment-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.result {
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.result.hidden {
  display: none;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.result-tag {
  background: var(--sage);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.result-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 14px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.support-line {
  font-weight: 600;
  color: var(--sage);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(16, 24, 32, 0.2);
  font-family: inherit;
}

.lead-form label {
  font-weight: 600;
  display: grid;
  gap: 6px;
}

.cta-band {
  background: linear-gradient(120deg, rgba(196, 107, 43, 0.15), rgba(31, 91, 86, 0.15));
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(196, 107, 43, 0.3);
}

.btn-secondary {
  background: var(--sage);
  color: var(--white);
}

.btn-tertiary {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(16, 24, 32, 0.2);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(16, 24, 32, 0.18);
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 6vw;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 60px 6vw 70px;
  }

  .brand-logo {
    width: 130px;
  }
}
