:root {
  --saddle: #2c2418;
  --parchment: #f7f3ed;
  --tan: #9c8b6e;
  --tan-light: #d4c4a8;
  --tan-dark: #5c4e38;
  --forest: #3d6b5e;
  --ember: #c4473a;
  --cream: #ede6da;
  --white: #ffffff;
  --max-width: 1160px;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--tan-dark);
  font-family: "Epilogue", "Avenir Next", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--tan);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

h1,
h2,
h3,
.brand-wordmark {
  color: var(--saddle);
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 9vw, 4.25rem);
  font-weight: 600;
  line-height: 0.96;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 6vw, 3rem);
  font-weight: 600;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.02;
}

p {
  margin-bottom: 0;
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(247, 243, 237, 0.98);
  border-bottom: 1px solid var(--tan-light);
}

.nav-shell {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

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

.brand-icon,
.footer-icon,
.about-icon {
  stroke: var(--saddle);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.brand-icon {
  width: 52px;
  height: 40px;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 5px;
}

.brand-wordmark {
  font-size: 2rem;
  font-weight: 600;
  line-height: 0.9;
}

.brand-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tan);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 1;
}

.brand-rule {
  width: 42px;
  height: 1px;
  background: var(--tan-light);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--tan-light);
  border-radius: 8px;
  background: transparent;
  color: var(--saddle);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  color: var(--saddle);
  font-size: 0.96rem;
  font-weight: 400;
}

.site-nav a {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--forest);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.96rem;
  font-weight: 400;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button-primary {
  background: var(--forest);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ember);
  color: var(--white);
}

.button-outline {
  border-color: var(--forest);
  color: var(--forest);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--forest);
  color: var(--white);
}

.nav-cta {
  margin-left: 0;
}

.section-hero {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 8px;
}

.hero-subhead {
  max-width: 560px;
  color: var(--tan-dark);
  font-size: 1.125rem;
  font-weight: 300;
}

.hero-workflows {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-workflow-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(156, 139, 110, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--saddle);
  font-size: 0.88rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.hero-path-note {
  max-width: 660px;
  margin-top: 18px;
  color: var(--tan-dark);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--saddle);
  font-size: 0.96rem;
  font-weight: 400;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(61, 107, 94, 0.3);
  border-radius: 999px;
  background: rgba(61, 107, 94, 0.1);
  color: var(--forest);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.hero-stats {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--tan-dark);
  font-size: 13px;
  font-weight: 400;
}

.hero-stats p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(156, 139, 110, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-circle-solid {
  top: -180px;
  right: -140px;
  width: 420px;
  aspect-ratio: 1;
  background: var(--cream);
}

.hero-circle-outline {
  left: -180px;
  bottom: -170px;
  width: 360px;
  aspect-ratio: 1;
  border: 1px solid var(--tan-light);
}

.section-path,
.section-services,
.section-about,
.section-results {
  background: var(--white);
}

.section-process {
  background: var(--cream);
  padding-top: 28px;
}

.section-who {
  background: var(--cream);
  padding-bottom: 24px;
}

.section-guarantee {
  background: var(--parchment);
}

.section-contact {
  background: var(--saddle);
}

.section-partners {
  background: var(--saddle);
}

.section-head {
  margin-bottom: 28px;
}

.centered-head {
  text-align: center;
}

.section-path h2,
.section-services h2,
.section-additional-services h2,
.section-about h2,
.section-results h2 {
  font-style: italic;
}

.section-who h2 {
  font-style: italic;
}

.section-subcopy {
  max-width: 600px;
  margin: 18px auto 0;
  color: var(--tan-dark);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
}

.section-helper-copy {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--tan);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.65;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.path-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(156, 139, 110, 0.22);
  border-radius: 16px;
  background: var(--parchment);
  box-shadow: var(--card-shadow);
}

.path-card-featured {
  border-color: rgba(61, 107, 94, 0.32);
  background: linear-gradient(180deg, rgba(61, 107, 94, 0.08), rgba(255, 255, 255, 0.94));
  transform: translateY(-2px);
}

.path-label {
  display: inline-flex;
  align-items: center;
  justify-self: flex-start;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(121, 99, 58, 0.12);
  color: var(--saddle);
  font-size: 12px;
  font-weight: 500;
}

.path-label-featured {
  background: var(--forest);
  color: var(--white);
}

.path-copy {
  margin: 0;
  color: var(--saddle);
  font-size: 1rem;
  line-height: 1.7;
}

.path-detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--tan-dark);
}

.path-detail-list li {
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.services-helper-note {
  margin-top: 18px;
}

.guarantee-shell {
  display: grid;
  gap: 22px;
}

.guarantee-copy h2 {
  margin-bottom: 18px;
}

.guarantee-body {
  max-width: 720px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}

.guarantee-callout {
  padding: 28px;
  border: 1px solid rgba(61, 107, 94, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(61, 107, 94, 0.14), rgba(255, 255, 255, 0.9));
  box-shadow: var(--card-shadow);
}

.guarantee-callout-label {
  margin-bottom: 14px;
  color: var(--tan);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.guarantee-callout-value {
  color: var(--saddle);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 6vw, 3rem);
  font-weight: 600;
  line-height: 0.98;
}

.guarantee-framework {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.guarantee-method-label {
  margin: 26px 0 0;
  color: var(--saddle);
  font-size: 1rem;
  font-weight: 500;
}

.framework-card {
  padding: 18px 20px;
  border: 1px solid rgba(156, 139, 110, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
}

.framework-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.framework-card p,
.guarantee-note,
.guarantee-callout-copy {
  color: var(--tan-dark);
  font-size: 0.98rem;
  font-weight: 300;
}

.guarantee-note {
  margin-top: 18px;
}

.guarantee-callout-copy {
  margin-top: 14px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px 112px 30px 24px;
  border: 1px solid var(--tan-light);
  border-radius: 12px;
  background: var(--parchment);
  box-shadow: var(--card-shadow);
}

.service-card-retainer {
  border-color: rgba(61, 107, 94, 0.3);
  background: linear-gradient(180deg, rgba(61, 107, 94, 0.08), rgba(255, 255, 255, 0.92));
}

.service-card-featured {
  border-color: rgba(61, 107, 94, 0.3);
  background: linear-gradient(180deg, rgba(61, 107, 94, 0.1), rgba(255, 255, 255, 0.96));
}

.section-additional-services {
  background: var(--cream);
  padding-top: 28px;
}

.services-grid-secondary .service-card {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.service-card-secondary {
  padding-right: 96px;
  border-color: rgba(156, 139, 110, 0.16);
}

.service-card-secondary .service-number {
  color: rgba(202, 188, 163, 0.8);
}

.service-number {
  position: absolute;
  top: 12px;
  right: 16px;
  color: var(--tan-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}

.service-meta,
.process-time {
  margin-bottom: 12px;
  color: var(--tan);
  font-size: 0.95rem;
  font-weight: 400;
}

.service-summary {
  margin-bottom: 16px;
  color: var(--saddle);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.service-detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.service-detail-list div {
  display: grid;
  gap: 4px;
}

.service-detail-list dt {
  color: var(--tan);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.service-detail-list dd {
  margin: 0;
  color: var(--tan-dark);
  font-size: 0.96rem;
  line-height: 1.6;
}

.popular-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
}

.focus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.focus-card {
  padding: 28px;
  border: 0.5px solid var(--tan-light);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.focus-card h3 {
  margin-top: 18px;
  font-size: 1.65rem;
}

.focus-kicker {
  margin-top: 12px;
  color: var(--saddle);
  font-size: 0.98rem;
}

.focus-list {
  padding-left: 18px;
  margin: 16px 0 0;
  color: var(--tan-dark);
}

.focus-list li {
  margin-bottom: 10px;
  line-height: 1.65;
}

.focus-icon {
  width: 32px;
  height: 32px;
  stroke: var(--forest);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.focus-note {
  max-width: 600px;
  margin: 32px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--tan-light);
  text-align: center;
}

.focus-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  margin-top: 24px;
}

.focus-note-label {
  margin-bottom: 12px;
  color: var(--tan);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.focus-note-copy {
  margin-bottom: 20px;
  color: var(--tan-dark);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.focus-note-link {
  display: inline-flex;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--tan-light);
  color: var(--forest);
  font-size: 14px;
  font-weight: 400;
}

.focus-note-link:hover,
.focus-note-link:focus-visible {
  border-bottom-color: var(--forest);
}

.results-grid-home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.result-card {
  padding: 28px;
  border: 0.5px solid var(--tan-light);
  border-radius: 12px;
  background: var(--parchment);
  box-shadow: var(--card-shadow);
}

.result-meta {
  margin-bottom: 12px;
  color: var(--tan);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.result-body {
  color: var(--tan-dark);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
}

.result-impact,
.results-footnote {
  color: var(--tan);
  font-size: 0.98rem;
  line-height: 1.7;
}

.result-impact {
  margin-top: 14px;
}

.results-footnote {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
}

.case-study-card {
  display: grid;
  gap: 14px;
}

.case-study-body {
  display: grid;
  gap: 12px;
}

.case-study-section {
  display: grid;
  gap: 6px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.process-line {
  display: none;
}

.process-step {
  position: relative;
  padding-right: 12px;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border: 1px solid var(--tan-light);
  border-radius: 50%;
  color: var(--saddle);
}

.process-icon span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-visual {
  min-height: 320px;
}

.about-placeholder {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  min-height: 320px;
  height: 100%;
  border: 1px solid var(--tan-light);
  border-radius: 18px;
  background: var(--parchment);
}

.about-placeholder.has-image {
  background: var(--cream);
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-icon {
  width: min(220px, 60%);
  height: auto;
  stroke: var(--tan);
}

.about-placeholder.has-image .about-icon {
  display: none;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--tan-light);
  border-radius: 999px;
  background: var(--parchment);
  color: var(--tan);
  font-size: 0.92rem;
}

.about-bullets {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.about-bullets p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--tan-dark);
}

.partners-shell {
  text-align: center;
}

.partners-copy {
  max-width: 760px;
  margin: 0 auto;
}

.section-partners .eyebrow {
  color: var(--tan);
}

.section-partners h2 {
  max-width: none;
  color: var(--parchment);
  font-size: clamp(2.7rem, 7vw, 3rem);
}

.partners-body {
  max-width: 540px;
  margin: 18px auto 0;
  color: var(--tan);
  font-size: 18px;
  font-weight: 300;
}

.partner-benefits-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.partner-benefit-card {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}

.partner-benefit-number {
  color: var(--tan);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.partner-benefit-copy {
  color: var(--parchment);
  font-size: 0.98rem;
  line-height: 1.65;
}

.button-partner-outline {
  margin-top: 28px;
  border-color: var(--parchment);
  color: var(--parchment);
}

.button-partner-outline:hover,
.button-partner-outline:focus-visible {
  background: var(--parchment);
  color: var(--saddle);
}

.section-contact h2 {
  color: var(--parchment);
  font-style: normal;
}

.section-closing-cta {
  padding-bottom: 34px;
}

.section-scheduler {
  padding-top: 0;
  background: var(--saddle);
}

.closing-cta-shell {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-cta-copy {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--tan);
  font-size: 1.06rem;
}

.closing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--parchment);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--parchment);
  color: var(--saddle);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 30px 26px;
  border: 1px solid rgba(212, 196, 168, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}

.contact-copy {
  max-width: 640px;
}

.contact-copy p {
  color: var(--tan);
  font-size: 1.05rem;
  font-weight: 300;
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 20px;
  margin-top: 28px;
  color: var(--tan);
}

.contact-trust p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
}

.checkmark {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.checkmark::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(42deg);
}

.contact-cta {
  margin-top: 28px;
  min-width: min(100%, 280px);
}

.contact-meta {
  margin-top: 24px;
  color: var(--tan);
  font-size: 0.96rem;
}

.contact-scheduler {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(212, 196, 168, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-scheduler-head {
  margin-bottom: 18px;
  text-align: left;
}

.contact-scheduler-head .eyebrow {
  margin-bottom: 10px;
}

.contact-scheduler-head h3 {
  margin-bottom: 10px;
  color: var(--parchment);
  font-size: 2rem;
}

.contact-scheduler-head p {
  color: var(--tan);
  font-size: 0.98rem;
  font-weight: 300;
}

.contact-scheduler .calendly-inline-widget {
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
}

.footer-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 196, 168, 0.26);
  color: var(--tan);
  font-size: 12px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tan);
}

.footer-icon {
  width: 34px;
  height: 26px;
  stroke: var(--tan);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--tan);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--parchment);
}

.footer-detail {
  color: var(--tan);
  line-height: 1.6;
}

.footer-detail a {
  color: var(--tan);
}

.footer-detail a:hover,
.footer-detail a:focus-visible {
  color: var(--parchment);
}

.mobile-cta-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
  padding: 12px 20px;
  background: var(--saddle);
  text-align: center;
  transform: translateY(100%);
  transition: transform 240ms ease;
}

.mobile-cta-bar p {
  margin-bottom: 8px;
  color: var(--tan);
  font-size: 11px;
  font-weight: 300;
}

.mobile-cta-bar.is-visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .nav-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-cta {
    margin-left: 6px;
  }

  .nav-toggle {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats p {
    padding: 14px 18px;
  }

  .path-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guarantee-shell {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: center;
  }

  .guarantee-framework {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-grid-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  }

  .partner-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 76px 0;
  }

  .section-who {
    padding-bottom: 32px;
  }

  .section-process {
    padding-top: 36px;
  }

  .site-header {
    padding: 24px 0;
  }

  .site-header.is-scrolled {
    padding: 12px 0;
  }

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-subhead {
    font-size: 20px;
  }

  .path-card {
    padding: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
  }

  .process-line {
    display: block;
    height: 1px;
    margin: 12px 0 32px;
    background: var(--tan-light);
  }

  .about-grid {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 44px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 92px;
  }

  .nav-shell {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .mobile-cta-bar {
    display: block;
  }
}
