:root {
  --ink: #17352d;
  --green: #173f35;
  --green-2: #245f50;
  --paper: #f7f2e9;
  --ivory: #fffdf8;
  --sand: #e9dfd0;
  --line: #d8cdbd;
  --copper: #bd7b42;
  --copper-light: #e9c9a8;
  --muted: #63716b;
  --white: #fff;
  --shadow: 0 24px 70px #17352d1f;
  --radius: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.035em;
  font-weight: 600;
  line-height: 1.05;
}
h1 {
  font-size: clamp(2.85rem, 5.4vw, 5.25rem);
}
h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
}
h3 {
  line-height: 1.22;
}
::selection {
  background: var(--copper-light);
  color: var(--ink);
}
.container {
  width: min(1180px, 100% - 40px);
  margin: 0 auto;
}
.section {
  padding: 120px 0;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.9rem;
}
.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
.skip-link {
  background: var(--white);
  z-index: 200;
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 10px 16px;
  position: fixed;
  top: -60px;
  left: 18px;
}
.skip-link:focus {
  top: 18px;
}
.icon {
  flex: none;
  width: 1.25em;
  height: 1.25em;
}
.site-header {
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #17352d1a;
  position: sticky;
  top: 0;
}
.header-inner {
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  min-height: 78px;
  display: flex;
}
.brand {
  font-family: var(--serif);
  white-space: nowrap;
  align-items: center;
  gap: 11px;
  font-size: 1.1rem;
  display: inline-flex;
}
.brand img {
  border-radius: 10px;
}
.brand strong {
  font-weight: 700;
}
.main-nav {
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 650;
  display: flex;
}
.main-nav > a:not(.button) {
  position: relative;
}
.main-nav > a:not(.button):after {
  content: "";
  background: var(--copper);
  height: 1px;
  transition: right 0.25s;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 100%;
}
.main-nav > a:hover:after,
.main-nav > a.active:after {
  right: 0;
}
.menu-toggle {
  background: 0 0;
  border: 0;
  padding: 9px;
  display: none;
}
.button {
  border: 1px solid var(--green);
  background: var(--green);
  min-height: 52px;
  color: var(--white);
  cursor: pointer;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  font-weight: 750;
  transition:
    transform 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  display: inline-flex;
}
.button:hover {
  background: #0f332a;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px #173f352e;
}
.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.84rem;
}
.button-wide {
  width: 100%;
}
.button-outline {
  color: var(--green);
  background: 0 0;
}
.button-outline:hover {
  color: var(--white);
}
.button-accent {
  background: var(--copper-light);
  border-color: var(--copper-light);
  color: var(--ink);
}
.button-accent:hover {
  background: #f2d8bd;
}
.button-ghost {
  color: var(--green);
  background: 0 0;
}
.text-link {
  border-bottom: 1px solid var(--copper);
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  font-weight: 750;
  display: inline-flex;
}
.text-link .icon {
  transition: transform 0.2s;
}
.text-link:hover .icon {
  transform: translate(4px);
}
.eyebrow {
  color: #8b572e;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 0.76rem;
  font-weight: 800;
  display: flex;
}
.eyebrow span {
  background: var(--copper);
  width: 28px;
  height: 1px;
}
.section-heading {
  max-width: 740px;
  margin-bottom: 52px;
}
.section-heading h2 {
  margin-bottom: 22px;
}
.section-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}
.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading.centered .eyebrow {
  justify-content: center;
}
.section-heading.centered > p:last-child {
  margin-left: auto;
  margin-right: auto;
}
.hero {
  background:
    radial-gradient(circle at 86% 12%, #bd7b4224, transparent 30%), var(--paper);
  padding: 80px 0 76px;
  overflow: hidden;
}
.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(50px, 7vw, 90px);
  display: grid;
}
.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 28px;
}
.lead {
  color: #4e6159;
  max-width: 680px;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.7;
}
.hero-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  display: flex;
}
.hero-proof {
  border-top: 1px solid var(--line);
  color: var(--muted);
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
  padding-top: 25px;
  font-size: 0.8rem;
  display: flex;
}
.hero-proof span {
  flex-direction: column;
  display: flex;
}
.hero-proof strong {
  color: var(--ink);
  font-size: 1rem;
}
.hero-visual {
  position: relative;
}
.image-frame {
  box-shadow: var(--shadow);
  background: #ffffff73;
  border: 1px solid #bd7b4259;
  border-radius: 180px 180px 24px 24px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.image-frame img {
  aspect-ratio: 1/1.04;
  object-fit: cover;
  border-radius: 166px 166px 16px 16px;
  width: 100%;
  display: block;
}
.floating-card {
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #fffdf8f0;
  border-radius: 14px;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 16px 18px;
  display: flex;
  position: absolute;
  bottom: 34px;
  left: -36px;
  box-shadow: 0 16px 45px #17352d29;
}
.floating-card .icon {
  width: 30px;
  height: 30px;
  color: var(--copper);
}
.floating-card div {
  flex-direction: column;
  font-size: 0.86rem;
  display: flex;
}
.floating-card span {
  color: var(--muted);
}
.problem-section {
  background: var(--ivory);
}
.problem-grid {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
.problem-card {
  border-right: 1px solid var(--line);
  padding: 34px 26px 30px;
  transition:
    background 0.25s,
    transform 0.25s;
}
.problem-card:first-child {
  border-left: 1px solid var(--line);
}
.problem-card:hover {
  background: var(--paper);
  transform: translateY(-5px);
}
.problem-card > span {
  color: var(--copper);
  font-family: var(--serif);
  margin-bottom: 42px;
  font-size: 1.25rem;
  display: block;
}
.problem-card h3 {
  min-height: 50px;
  margin-bottom: 14px;
  font-size: 1.16rem;
}
.problem-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.94rem;
}
.solution-section {
  background: var(--green);
  color: var(--white);
}
.solution-section .eyebrow {
  color: var(--copper-light);
}
.solution-section .section-heading > p:last-child {
  color: #bdd0c9;
}
.solution-section .text-link {
  color: var(--white);
  border-color: var(--copper-light);
}
.solution-grid {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 90px;
  display: grid;
}
.solution-sticky {
  position: sticky;
  top: 130px;
}
.outcome-list {
  border-top: 1px solid #fff3;
}
.outcome-list article {
  border-bottom: 1px solid #fff3;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 34px 0;
  display: grid;
}
.outcome-list article > span {
  color: var(--copper-light);
  font-family: var(--serif);
  font-size: 1.2rem;
}
.outcome-list h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}
.outcome-list p {
  color: #bdd0c9;
  margin: 0;
}
.founder-section {
  background: var(--paper);
}
.founder-grid {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 90px;
  display: grid;
}
.portrait-wrap {
  position: relative;
}
.portrait-wrap > img {
  width: 100%;
  box-shadow: var(--shadow);
  border-radius: 200px 200px 24px 24px;
  display: block;
}
.portrait-caption {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  flex-direction: column;
  padding: 15px 20px;
  display: flex;
  position: absolute;
  bottom: 28px;
  right: -30px;
  box-shadow: 0 12px 35px #17352d26;
}
.portrait-caption span {
  color: var(--muted);
  font-size: 0.82rem;
}
.founder-copy .section-heading {
  margin-bottom: 30px;
}
.founder-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}
.founder-copy blockquote {
  border-left: 2px solid var(--copper);
  font-family: var(--serif);
  margin: 34px 0;
  padding: 8px 0 8px 24px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
}
.process-section {
  background: var(--ivory);
}
.process-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  display: grid;
  position: relative;
}
.process-grid:before {
  content: "";
  background: var(--line);
  height: 1px;
  position: absolute;
  top: 27px;
  left: 12%;
  right: 12%;
}
.process-grid article {
  text-align: center;
  padding: 0 26px 30px;
  position: relative;
}
.process-grid article > span {
  z-index: 1;
  border: 1px solid var(--copper);
  background: var(--ivory);
  width: 54px;
  height: 54px;
  color: var(--copper);
  font-family: var(--serif);
  border-radius: 50%;
  place-items: center;
  margin-bottom: 30px;
  display: inline-grid;
  position: relative;
}
.process-grid h3 {
  font-size: 1.26rem;
}
.process-grid p {
  color: var(--muted);
}
.audit-section {
  background: var(--green);
  color: var(--white);
  padding: 95px 0;
}
.audit-grid {
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 90px;
  display: grid;
}
.audit-section .section-heading {
  margin: 0;
}
.audit-section .eyebrow {
  color: var(--copper-light);
}
.audit-section .section-heading > p:last-child {
  color: #bdd0c9;
}
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  border-bottom: 1px solid #ffffff2e;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  font-weight: 650;
  display: flex;
}
.check-list .icon {
  color: var(--copper-light);
}
.packages-section {
  background: var(--paper);
}
.package-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
  display: grid;
}
.package-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  flex-direction: column;
  padding: 34px;
  display: flex;
  position: relative;
}
.package-card.featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}
.badge {
  background: var(--copper-light);
  color: var(--ink);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 0.75rem;
  font-weight: 800;
  position: absolute;
  top: -15px;
  left: 28px;
}
.package-name {
  color: #8b572e;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 0.79rem;
  font-weight: 800;
}
.package-card h3 {
  font-family: var(--serif);
  margin-bottom: 18px;
  font-size: 2rem;
}
.package-card > p:not(.package-name) {
  color: var(--muted);
}
.package-duration {
  margin: -4px 0 0;
  font-size: 0.86rem;
}
.package-card ul {
  border-top: 1px solid var(--line);
  flex: 1;
  margin: 20px 0 30px;
  padding: 20px 0 0;
  list-style: none;
}
.package-card li {
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  display: flex;
}
.package-card li .icon {
  color: var(--green-2);
}
.price-note {
  max-width: 760px;
  color: var(--muted);
  text-align: center;
  margin: 34px auto 0;
  font-size: 0.86rem;
}
.support-section {
  background: var(--ivory);
}
.support-grid {
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 90px;
  display: grid;
}
.support-grid .section-heading {
  margin: 0;
}
.support-card {
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px;
}
.support-card > .icon {
  width: 42px;
  height: 42px;
  color: var(--copper);
  margin-bottom: 24px;
}
.support-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
}
.support-card p {
  color: var(--muted);
}
.insights-section {
  background: var(--paper);
}
.heading-row {
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  display: flex;
}
.heading-row .section-heading {
  margin-bottom: 42px;
}
.heading-row > .text-link {
  margin-bottom: 52px;
}
.article-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  display: grid;
}
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  flex-direction: column;
  min-height: 340px;
  padding: 30px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
}
.article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.article-card > span {
  color: #8b572e;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
}
.article-card h3 {
  font-family: var(--serif);
  margin: 26px 0 16px;
  font-size: 1.55rem;
}
.article-card p {
  color: var(--muted);
  flex: 1;
}
.article-card > div {
  border-top: 1px solid var(--line);
  color: var(--muted);
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  font-size: 0.84rem;
  display: flex;
}
.article-card > div a {
  color: var(--ink);
}
.faq-section {
  background: var(--ivory);
}
.faq-grid {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
  display: grid;
}
.faq-grid .section-heading {
  position: sticky;
  top: 130px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  justify-content: space-between;
  gap: 18px;
  padding: 23px 0;
  font-weight: 750;
  list-style: none;
  display: flex;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--copper);
  font-size: 1.3rem;
  transition: transform 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  color: var(--muted);
  padding: 0 42px 22px 0;
}
.contact-section {
  background: var(--green);
  color: var(--white);
  padding: 110px 0;
}
.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 80px;
  display: grid;
}
.contact-section .eyebrow {
  color: var(--copper-light);
}
.contact-section .section-heading > p:last-child {
  color: #bdd0c9;
}
.contact-trust {
  gap: 15px;
  display: grid;
}
.contact-trust span {
  color: #dce7e3;
  align-items: center;
  gap: 12px;
  display: flex;
}
.contact-trust .icon {
  color: var(--copper-light);
}
.contact-form {
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--ink);
  padding: 38px;
  box-shadow: 0 25px 65px #0000002b;
}
.contact-form.compact {
  box-shadow: none;
  border: 1px solid var(--line);
}
.selected-context {
  border-left: 3px solid var(--copper);
  color: var(--green);
  background: #f3ece3;
  border-radius: 8px;
  margin: 0 0 20px;
  padding: 12px 14px;
  font-size: 0.88rem;
}
.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  display: grid;
}
.contact-form label {
  gap: 7px;
  margin-bottom: 17px;
  font-size: 0.86rem;
  font-weight: 700;
  display: grid;
}
.contact-form label span {
  color: #a64232;
}
.contact-form label small {
  color: var(--muted);
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c8beb0;
  border-radius: 9px;
  outline: none;
  padding: 13px 14px;
  transition:
    border 0.2s,
    box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 3px #245f501f;
}
.contact-form textarea {
  resize: vertical;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  font-weight: 500 !important;
  display: flex !important;
}
.checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  margin-top: 3px;
}
.checkbox a {
  text-decoration: underline;
}
.form-note {
  color: var(--muted);
  align-items: start;
  gap: 9px;
  font-size: 0.78rem;
  display: flex;
}
.form-note .icon {
  margin-top: 2px;
}
.form-error {
  color: #7b2e24;
  background: #faeeeb;
  border-left: 3px solid #a64232;
  padding: 10px 12px;
  font-size: 0.86rem;
}
.contact-form button:disabled {
  opacity: 0.65;
  cursor: wait;
}
.microcopy {
  color: var(--muted);
  text-align: center;
  margin: 13px 0 0;
  font-size: 0.76rem;
}
.site-footer {
  color: var(--white);
  background: #102d26;
  padding: 70px 0 24px;
}
.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 0.6fr;
  gap: 60px;
  padding-bottom: 55px;
  display: grid;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.35rem;
}
.footer-grid .muted {
  color: #9fb8ae;
  max-width: 350px;
}
.footer-label {
  color: var(--copper-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
}
.footer-grid > div {
  flex-direction: column;
  align-items: start;
  gap: 7px;
  display: flex;
}
.footer-grid a,
.footer-link {
  color: #dce7e3;
  cursor: pointer;
  background: 0 0;
  border: 0;
  padding: 0;
}
.footer-grid a:hover,
.footer-link:hover {
  color: var(--white);
  text-decoration: underline;
}
.footer-bottom {
  color: #8fa99f;
  border-top: 1px solid #ffffff21;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  font-size: 0.78rem;
  display: flex;
}
.consent {
  z-index: 300;
  border: 1px solid var(--line);
  max-width: 1080px;
  color: var(--ink);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #fffdf8fa;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  margin: auto;
  padding: 22px 24px;
  display: flex;
  position: fixed;
  bottom: 22px;
  left: 24px;
  right: 24px;
  box-shadow: 0 25px 80px #17352d40;
}
.consent strong {
  margin-bottom: 4px;
  display: block;
}
.consent p {
  max-width: 700px;
  color: var(--muted);
  margin: 0;
  font-size: 0.84rem;
}
.consent a {
  font-size: 0.78rem;
  text-decoration: underline;
}
.consent-actions {
  flex: none;
  gap: 10px;
  display: flex;
}
.consent-actions .button {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.82rem;
}
.page-hero {
  background: radial-gradient(circle at 88% 10%, #bd7b4226, #0000 28%);
  padding: 100px 0 90px;
}
.page-hero-inner {
  max-width: 850px;
}
.page-hero h1 {
  margin-bottom: 26px;
}
.page-hero .lead {
  max-width: 760px;
}
.page-hero-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  display: flex;
}
.inner-section {
  background: var(--ivory);
  padding: 100px 0;
}
.inner-section.alt {
  background: var(--paper);
}
.content-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  display: grid;
}
.contact-options {
  grid-template-columns: repeat(3, 1fr);
}
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  padding: 34px;
}
.inner-section:not(.alt) .content-card {
  background: var(--paper);
}
.content-card .icon {
  width: 36px;
  height: 36px;
  color: var(--copper);
  margin-bottom: 20px;
}
.content-card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
}
.content-card p {
  color: var(--muted);
}
.narrow {
  max-width: 820px;
}
.prose {
  font-size: 1.05rem;
}
.prose h2 {
  margin-top: 65px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.prose h3 {
  margin-top: 38px;
  font-size: 1.25rem;
}
.prose p,
.prose li {
  color: #4f625a;
}
.prose a {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--copper);
  text-decoration-color: var(--copper);
  text-underline-offset: 3px;
}
.prose-box {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 14px;
  padding: 25px;
}
.article-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.article-meta {
  color: var(--muted);
  font-size: 0.88rem;
}
.article-body {
  max-width: 760px;
  margin: 60px auto 0;
}
.article-body > p {
  color: #465a52;
  font-family: var(--serif);
  margin-bottom: 28px;
  font-size: 1.2rem;
  line-height: 1.8;
}
.article-body > h2 {
  margin: 64px 0 22px;
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
}
.article-body > h3 {
  margin: 42px 0 16px;
  font-size: 1.32rem;
}
.article-body > ul {
  color: #465a52;
  margin: 0 0 30px;
  padding-left: 24px;
}
.article-body > ul li {
  margin-bottom: 10px;
  padding-left: 5px;
}
.article-cta {
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  margin-top: 55px;
  padding: 32px;
}
.article-cta p {
  color: #c8d8d2;
}
.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
  padding: 50px;
}
.contact-page-grid {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 70px;
  display: grid;
}
.contact-details {
  gap: 18px;
  display: grid;
}
.contact-details a {
  align-items: center;
  gap: 12px;
  font-weight: 750;
  display: flex;
}
.thank-you {
  place-items: center;
  min-height: 68vh;
  padding: 90px 0;
  display: grid;
}
.thank-you-card {
  border: 1px solid var(--line);
  background: var(--ivory);
  max-width: 780px;
  box-shadow: var(--shadow);
  text-align: center;
  border-radius: 28px;
  padding: 55px;
}
.success-mark {
  width: 72px;
  height: 72px;
  color: var(--green);
  background: #dcece5;
  border-radius: 50%;
  place-items: center;
  margin: 0 auto 28px;
  display: grid;
}
.success-mark .icon {
  width: 35px;
  height: 35px;
}
.thank-you-card h1 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}
.thank-you-steps {
  text-align: left;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 36px 0;
  display: grid;
}
.thank-you-steps div {
  background: var(--paper);
  border-radius: 12px;
  padding: 17px;
  font-size: 0.82rem;
}
.thank-you-steps strong {
  margin-bottom: 4px;
  font-size: 0.95rem;
  display: block;
}
.not-found {
  text-align: center;
  place-items: center;
  min-height: 65vh;
  padding: 80px 20px;
  display: grid;
}
.not-found strong {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 5rem;
}
.quiz-hero {
  padding-bottom: 150px;
}
.quiz-facts {
  color: var(--green);
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
}
.quiz-facts span {
  align-items: center;
  gap: 7px;
  display: inline-flex;
}
.quiz-facts .icon {
  color: var(--copper);
}
.quiz-section {
  padding-top: 0;
}
.quiz-shell {
  z-index: 2;
  max-width: 920px;
  margin-top: -82px;
  position: relative;
}
.quiz-card,
.quiz-result {
  border: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: clamp(28px, 6vw, 58px);
}
.quiz-progress > div:first-child {
  color: var(--muted);
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 750;
  display: flex;
}
.quiz-progress-track {
  background: var(--sand);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}
.quiz-progress-track span {
  border-radius: inherit;
  background: var(--copper);
  height: 100%;
  transition: width 0.35s;
  display: block;
}
.quiz-question {
  margin-top: 42px;
}
.quiz-question h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.quiz-question > p {
  color: var(--muted);
  margin-bottom: 28px;
}
.quiz-options {
  gap: 12px;
  margin-top: 30px;
  display: grid;
}
.quiz-options button {
  border: 1px solid var(--line);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
  border-radius: 13px;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 18px 20px;
  transition:
    border 0.2s,
    background 0.2s,
    transform 0.2s;
  display: flex;
}
.quiz-options button:hover,
.quiz-options button:focus-visible {
  border-color: var(--copper);
  background: #fff9f0;
  outline: none;
  transform: translate(4px);
}
.quiz-options button span {
  font-weight: 680;
}
.quiz-options button .icon {
  color: var(--copper);
}
.quiz-back,
.quiz-restart {
  border: 0;
  border-bottom: 1px solid var(--copper);
  color: var(--green);
  cursor: pointer;
  background: 0 0;
  margin-top: 26px;
  padding: 4px 0;
  font-weight: 720;
}
.quiz-result-eyebrow {
  color: #8b572e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
}
.quiz-result > h2 {
  max-width: 790px;
  margin-bottom: 24px;
}
.quiz-result-text {
  max-width: 730px;
  color: var(--muted);
  font-size: 1.08rem;
}
.quiz-tips {
  background: var(--paper);
  border-radius: 16px;
  margin: 38px 0;
  padding: 30px;
}
.quiz-tips h3 {
  font-family: var(--serif);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.quiz-tips ol {
  margin: 0;
  padding-left: 24px;
}
.quiz-tips li {
  margin-bottom: 13px;
  padding-left: 6px;
}
.quiz-result-actions {
  flex-wrap: wrap;
  gap: 13px;
  display: flex;
}
.quiz-privacy {
  max-width: 700px;
  color: var(--muted);
  text-align: center;
  margin: 22px auto 0;
  font-size: 0.78rem;
}
.audit-action .button {
  margin-top: 26px;
}
@media (max-width: 1020px) {
  .hero-grid,
  .founder-grid,
  .solution-grid,
  .audit-grid,
  .support-grid,
  .faq-grid,
  .contact-grid,
  .contact-page-grid {
    gap: 55px;
  }
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .problem-card:nth-child(3) {
    border-left: 1px solid var(--line);
  }
  .problem-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .package-card {
    padding: 26px;
  }
  .package-card h3 {
    font-size: 1.7rem;
  }
}
@media (max-width: 860px) {
  .section {
    padding: 86px 0;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .main-nav {
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 20px 30px;
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    box-shadow: 0 18px 45px #17352d1f;
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav > a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding: 13px 6px;
  }
  .main-nav .button {
    margin-top: 17px;
  }
  .hero-grid,
  .solution-grid,
  .founder-grid,
  .audit-grid,
  .support-grid,
  .faq-grid,
  .contact-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 55px;
  }
  .hero-visual {
    width: min(620px, 94%);
    margin: 0 auto;
  }
  .solution-sticky,
  .faq-grid .section-heading {
    position: static;
  }
  .founder-grid {
    max-width: 680px;
  }
  .portrait-wrap {
    width: min(470px, 90%);
    margin: 0 auto;
  }
  .process-grid,
  .package-grid,
  .article-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
  }
  .process-grid:before {
    display: none;
  }
  .process-grid article {
    text-align: left;
    grid-template-columns: 58px 1fr;
    column-gap: 20px;
    display: grid;
  }
  .process-grid article > span {
    grid-row: span 2;
  }
  .package-card.featured {
    transform: none;
  }
  .heading-row {
    align-items: start;
  }
  .content-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }
  .quiz-hero {
    padding-bottom: 125px;
  }
  .contact-copy .section-heading {
    margin-bottom: 35px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 72px 0;
  }
  h1 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }
  h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }
  .header-inner {
    min-height: 70px;
  }
  .main-nav {
    top: 70px;
  }
  .brand {
    font-size: 0.96rem;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .hero {
    padding: 42px 0 60px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .button,
  .hero-actions .text-link {
    justify-content: center;
    width: 100%;
  }
  .hero-proof {
    gap: 12px;
  }
  .hero-proof span {
    width: calc(50% - 8px);
  }
  .hero-visual {
    width: 100%;
  }
  .floating-card {
    min-width: 0;
    bottom: 18px;
    left: 12px;
    right: 12px;
  }
  .image-frame {
    border-radius: 110px 110px 20px 20px;
    padding: 9px;
  }
  .image-frame img {
    border-radius: 102px 102px 14px 14px;
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem-card,
  .problem-card:nth-child(3) {
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .problem-card:last-child {
    border-bottom: 0;
  }
  .problem-card > span {
    margin-bottom: 22px;
  }
  .problem-card h3 {
    min-height: 0;
  }
  .outcome-list article {
    grid-template-columns: 40px 1fr;
  }
  .portrait-caption {
    right: -8px;
  }
  .process-grid article {
    padding-left: 0;
    padding-right: 0;
  }
  .audit-section {
    padding: 72px 0;
  }
  .package-card,
  .support-card,
  .contact-form {
    padding: 25px 20px;
  }
  .heading-row {
    display: block;
  }
  .heading-row > .text-link {
    margin: -15px 0 38px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-section {
    padding: 80px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .consent {
    padding: 18px;
    display: block;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  .consent-actions {
    margin-top: 14px;
  }
  .consent-actions .button {
    flex: 1;
  }
  .page-hero {
    padding: 70px 0 65px;
  }
  .thank-you-card {
    padding: 35px 20px;
  }
  .thank-you-steps {
    grid-template-columns: 1fr;
  }
  .quiz-card,
  .quiz-result {
    border-radius: 20px;
  }
  .quiz-result-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .quiz-result-actions .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  :before,
  :after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
