:root {
  --paper: #eee7da;
  --paper-bright: #f7f2e9;
  --paper-deep: #d8ccbb;
  --ink: #102a21;
  --forest: #123c2f;
  --forest-dark: #0c2b22;
  --clay: #9b482d;
  --brass: #c5a777;
  --sage: #a9bea2;
  --muted: #59655e;
  --rule: rgba(16, 42, 33, 0.23);
  --rule-light: rgba(244, 239, 230, 0.25);
  --display: "Newsreader", Georgia, serif;
  --sans: "IBM Plex Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --shadow: 0 20px 55px rgba(12, 43, 34, 0.11);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

::selection {
  color: var(--paper-bright);
  background: var(--forest);
}

.shell {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--paper-bright);
  background: var(--forest-dark);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--clay);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--brass);
}

.service-bar {
  min-height: 31px;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: rgba(247, 242, 233, 0.82);
  background: var(--forest-dark);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.service-bar span + span {
  padding-left: 15px;
  border-left: 1px solid var(--rule-light);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: var(--ink);
  background: rgba(238, 231, 218, 0.96);
  border-bottom: 1px solid var(--rule);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header__inner > p {
  display: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.header-link {
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  min-height: 760px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--forest-dark);
  border-bottom: 1px solid var(--rule-light);
}

.hero__layout {
  min-height: 760px;
  position: relative;
  z-index: 2;
  display: flex;
}

.hero__copy {
  width: 100%;
  max-width: 690px;
  padding: 52px 8px 205px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-shadow: 0 2px 28px rgba(2, 18, 12, 0.36);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 13vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.91;
}

.hero__lede {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(247, 242, 233, 0.86);
  font-size: 0.94rem;
  line-height: 1.62;
}

.hero__actions {
  margin-top: 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero__actions p {
  margin: 0;
  color: rgba(247, 242, 233, 0.72);
  font-size: 0.73rem;
  line-height: 1.6;
}

.hero__actions p i {
  margin-inline: 5px;
  color: var(--brass);
  font-style: normal;
}

.button {
  min-height: 52px;
  padding: 13px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.button span[aria-hidden="true"] {
  font-size: 0.95rem;
  font-weight: 400;
}

.button-light {
  color: var(--forest-dark);
  background: var(--paper-bright);
  border-color: var(--paper-bright);
}

.button-dark {
  color: var(--paper-bright);
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}

.button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero__feature {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  background: var(--sage);
}

.hero__feature figure {
  position: absolute;
  inset: 0;
  margin: 0;
  background: #dce2d2 url("/public/video/lennox-hero-poster.jpg") 60% center / cover no-repeat;
}

.hero__feature figure video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(0.84) contrast(1.05) brightness(0.82);
}

.hero__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 29, 21, 0.28) 0%, rgba(5, 29, 21, 0.24) 28%, rgba(5, 29, 21, 0.76) 69%, rgba(5, 29, 21, 0.96) 100%),
    linear-gradient(90deg, rgba(5, 29, 21, 0.58), rgba(5, 29, 21, 0.04) 86%);
}

.hero__feature-copy {
  z-index: 2;
  position: absolute;
  right: 16px;
  bottom: 18px;
  left: 16px;
  padding: 15px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ink);
  background: rgba(247, 242, 233, 0.92);
  border: 1px solid rgba(247, 242, 233, 0.55);
  box-shadow: 0 14px 35px rgba(12, 43, 34, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero__feature-copy > span {
  color: var(--clay);
  font-family: var(--mono);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__feature-copy strong {
  margin-top: 9px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 9vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero__feature-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.71rem;
}

.hero__feature-copy b {
  display: block;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 600;
}

.goal-nav {
  padding: 31px 0 32px;
  background: var(--paper-bright);
  border-bottom: 1px solid var(--rule);
}

.goal-nav__layout {
  display: grid;
  gap: 20px;
}

.goal-nav__layout > * {
  min-width: 0;
}

.goal-nav h2 {
  max-width: 510px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.15rem, 9vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.goal-chips {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 1px 16px 9px 1px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: inline proximity;
}

.goal-chips::-webkit-scrollbar {
  display: none;
}

.goal-chips button {
  flex: 0 0 auto;
  min-height: 43px;
  padding: 9px 14px;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  scroll-snap-align: start;
}

.goal-chips button:hover,
.goal-chips button[aria-pressed="true"] {
  color: var(--paper-bright);
  background: var(--forest);
  border-color: var(--forest);
}

.goal-status {
  min-height: 1.2em;
  margin: 12px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.treatments {
  padding: 52px 0 56px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.section-heading {
  padding-bottom: 35px;
  display: grid;
  gap: 20px;
  border-bottom: 1px solid var(--ink);
}

.section-heading h2,
.education h2,
.trust h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.55rem, 11vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.92;
}

.section-heading > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.7;
}

.treatment-grid {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.treatment-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--paper-bright);
  border: 1px solid var(--rule);
  box-shadow: 0 0 0 transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.treatment-card.is-match {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(155, 72, 45, 0.14), var(--shadow);
  transform: translateY(-3px);
}

.treatment-card__media {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background: #dce2d2;
  border-bottom: 1px solid var(--rule);
}

.treatment-card__media > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.treatment-card__media--duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.treatment-card__media--duo > img {
  width: 100%;
  height: 100%;
  position: static;
  object-fit: cover;
}

.treatment-card__media--duo > img + img {
  border-left: 1px solid var(--rule);
}

.offer-badge,
.format-label {
  z-index: 2;
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  color: var(--paper-bright);
  background: var(--forest-dark);
  border: 1px solid rgba(247, 242, 233, 0.3);
  font-family: var(--mono);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-badge {
  color: var(--forest-dark);
  background: var(--brass);
  border-color: var(--brass);
}

.treatment-card__body {
  min-height: 100%;
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
}

.treatment-card__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 15px;
  color: var(--clay);
  font-family: var(--mono);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.treatment-card__topline span + span {
  color: var(--muted);
}

.treatment-card h3 {
  margin: 13px 0 0;
  font-family: var(--display);
  font-size: clamp(2.45rem, 11vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.93;
}

.price {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.price strong {
  margin-left: 4px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.price span {
  margin-left: 3px;
  color: var(--ink);
}

.price--options strong {
  margin-left: 0;
  font-size: 1.4rem;
}

.overview {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.benefit-list {
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.benefit-list li {
  min-height: 45px;
  padding: 11px 0 10px 22px;
  position: relative;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  font-size: 0.79rem;
  line-height: 1.45;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  top: 11px;
  left: 0;
  color: var(--clay);
  font-family: var(--mono);
  font-size: 0.71rem;
  font-weight: 600;
}

.founding-note {
  margin-top: 16px;
  padding: 13px;
  background: rgba(197, 167, 119, 0.2);
  border-left: 3px solid var(--brass);
}

.founding-note strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.founding-note p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.treatment-card__actions {
  margin-top: 18px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 11px;
}

.treatment-card__actions > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.catalog-disclaimer {
  max-width: 930px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.education {
  padding: 56px 0;
  color: var(--paper-bright);
  background: var(--forest-dark);
  border-bottom: 1px solid var(--rule-light);
}

.education__layout {
  display: grid;
  gap: 32px;
}

.education header > p:last-child,
.trust__copy > p,
.faq header > p {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(247, 242, 233, 0.65);
  font-size: 0.87rem;
  line-height: 1.7;
}

.education-list {
  border-top: 1px solid var(--rule-light);
}

.education-list details {
  border-bottom: 1px solid var(--rule-light);
}

.education-list summary,
.faq-list summary {
  cursor: pointer;
  list-style: none;
}

.education-list summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}

.education-list summary {
  min-height: 68px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.education-list summary span {
  display: flex;
  align-items: center;
  gap: 17px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 8vw, 2.65rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.education-list summary b {
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
}

.education-list summary i,
.faq-list summary i {
  width: 22px;
  height: 22px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid var(--rule-light);
  border-radius: 50%;
}

.education-list summary i::before,
.education-list summary i::after,
.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  width: 8px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.education-list summary i::after,
.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.education-list details[open] summary i::after,
.faq-list details[open] summary i::after {
  display: none;
}

.education-panel {
  padding: 4px 0 22px;
  display: grid;
  gap: 12px;
}

.education-panel > div {
  padding: 15px;
  background: rgba(247, 242, 233, 0.05);
  border: 1px solid var(--rule-light);
}

.education-panel h3 {
  margin: 0;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.education-panel p {
  margin: 9px 0 0;
  color: rgba(247, 242, 233, 0.7);
  font-size: 0.78rem;
  line-height: 1.65;
}

.education-cta {
  grid-column: 1 / -1;
  min-height: 54px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--forest-dark);
  background: var(--brass);
  border: 1px solid var(--brass);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.education-cta:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.education-cta i {
  font-size: 0.9rem;
  font-style: normal;
}

.process {
  padding: 56px 0;
  background: var(--paper-bright);
  border-bottom: 1px solid var(--rule);
}

.process-grid {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  list-style: none;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.process-grid li {
  min-height: 0;
  padding: 21px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.process-grid span,
.trust-grid span {
  color: var(--clay);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.process-grid h3,
.trust-grid h3 {
  margin: 25px 0 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 8vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.process-grid p,
.trust-grid p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.trust {
  padding: 56px 0;
  color: var(--paper-bright);
  background: var(--forest);
  border-bottom: 1px solid var(--rule-light);
}

.trust__layout {
  display: grid;
  gap: 43px;
}

.trust__verification {
  width: max-content;
  max-width: 100%;
  margin-top: 25px;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--rule-light);
}

.trust__verification img {
  width: 55px;
  height: auto;
}

.trust__verification span {
  display: flex;
  flex-direction: column;
  color: rgba(247, 242, 233, 0.65);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust__verification b {
  margin-bottom: 4px;
  color: var(--paper-bright);
  font-size: 0.66rem;
}

.trust__verification i {
  font-style: normal;
}

.trust-grid {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
  border-top: 1px solid var(--rule-light);
  border-left: 1px solid var(--rule-light);
}

.trust-grid li {
  min-height: 0;
  padding: 20px;
  border-right: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}

.trust-grid span {
  color: var(--brass);
}

.trust-grid h3 {
  margin-top: 21px;
  font-size: clamp(1.65rem, 7vw, 2.15rem);
}

.trust-grid p {
  color: rgba(247, 242, 233, 0.62);
}

.faq {
  padding: 56px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.faq__layout {
  display: grid;
  gap: 32px;
}

.faq header > p {
  color: var(--muted);
}

.faq header a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--rule);
}

.faq-list summary {
  min-height: 68px;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 6vw, 1.9rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.faq-list summary i {
  border-color: var(--rule);
}

.faq-list details p {
  max-width: 730px;
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.final-cta {
  padding: 54px 0;
  color: var(--paper-bright);
  background: var(--clay);
  border-bottom: 1px solid var(--rule-light);
}

.final-cta__layout {
  display: grid;
  gap: 28px;
}

.final-cta__layout > div:last-child p {
  max-width: 550px;
  margin: 0 0 22px;
  color: rgba(247, 242, 233, 0.83);
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer {
  padding: 48px 0 94px;
  color: var(--paper-bright);
  background: var(--forest-dark);
}

.site-footer__main {
  padding-bottom: 34px;
  display: grid;
  gap: 31px;
  border-bottom: 1px solid var(--rule-light);
}

.brand--light {
  color: var(--paper-bright);
}

.site-footer__main > div > p {
  max-width: 320px;
  margin: 17px 0 0;
  color: rgba(247, 242, 233, 0.61);
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.25;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.site-footer nav > span {
  margin-bottom: 5px;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: rgba(247, 242, 233, 0.7);
  font-size: 0.75rem;
}

.site-footer nav a:hover {
  color: var(--paper-bright);
  text-decoration: underline;
}

.site-footer__legal {
  padding-top: 22px;
  display: grid;
  gap: 17px;
}

.site-footer__legal p,
.site-footer__legal span {
  margin: 0;
  color: rgba(247, 242, 233, 0.48);
  font-size: 0.64rem;
  line-height: 1.65;
}

.mobile-cta {
  min-height: 55px;
  position: fixed;
  z-index: 1200;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper-bright);
  background: var(--forest-dark);
  border: 1px solid rgba(247, 242, 233, 0.32);
  box-shadow: 0 13px 35px rgba(12, 43, 34, 0.29);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(120%);
}

.mobile-cta i {
  font-size: 1rem;
  font-style: normal;
}

  @media (min-width: 560px) {
  .shell {
    width: min(1240px, calc(100% - 48px));
  }

  .site-header__inner > p {
    display: block;
  }

  .hero__feature {
    min-height: 0;
  }

  .goal-chips button {
    min-height: 46px;
    padding-inline: 17px;
  }

  .goal-chips {
    flex-wrap: wrap;
    margin-right: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .treatment-grid,
  .education-panel,
  .process-grid,
  .trust-grid,
  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatment-card__media {
    min-height: 310px;
  }

  .treatment-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .treatment-card--featured .treatment-card__media {
    min-height: 650px;
    border-right: 1px solid var(--rule);
    border-bottom: 0;
  }

  .treatment-card__body {
    padding: 30px 26px 26px;
  }

  .site-footer__main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 800px) {
  html {
    scroll-padding-top: 92px;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .brand {
    font-size: 1.75rem;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .hero__layout {
    min-height: 680px;
  }

  .hero__copy {
    max-width: 800px;
    padding: 82px 0 118px;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 7.8vw, 7.2rem);
  }

  .hero__lede {
    font-size: 1.04rem;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .hero__actions p {
    max-width: 280px;
  }

  .hero__feature {
    min-height: 0;
  }

  .hero__feature figure {
    background-position: 58% center;
  }

  .hero__feature figure video {
    object-position: 58% center;
  }

  .hero__feature::after {
    background:
      linear-gradient(90deg, rgba(3, 23, 16, 0.94) 0%, rgba(3, 23, 16, 0.82) 38%, rgba(3, 23, 16, 0.24) 68%, rgba(3, 23, 16, 0.38) 100%),
      linear-gradient(180deg, rgba(3, 23, 16, 0.12) 52%, rgba(3, 23, 16, 0.82) 100%);
  }

  .hero__feature-copy {
    width: 360px;
    right: max(24px, calc((100vw - 1240px) / 2));
    bottom: 30px;
    left: auto;
    padding: 18px 21px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 3px 22px;
  }

  .hero__feature-copy > span,
  .hero__feature-copy strong {
    grid-column: 1;
  }

  .hero__feature-copy p {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .goal-nav {
    padding-block: 33px;
  }

  .goal-nav__layout {
    grid-template-columns: minmax(270px, 0.48fr) minmax(0, 1.52fr);
    align-items: end;
    gap: 50px;
  }

  .goal-nav h2 {
    font-size: 2.8rem;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: end;
    gap: 70px;
  }

  .treatments,
  .education,
  .process,
  .trust,
  .faq {
    padding-block: 84px;
  }

  .treatment-grid {
    gap: 20px;
  }

  .treatment-card--featured {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .treatment-card--featured .treatment-card__media {
    min-height: 635px;
  }

  .treatment-card__media {
    min-height: 370px;
  }

  .treatment-card h3 {
    font-size: 3.7rem;
  }

  .education__layout,
  .trust__layout,
  .faq__layout {
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
    gap: 70px;
  }

  .education header,
  .trust__copy,
  .faq header {
    position: sticky;
    top: 105px;
    align-self: start;
  }

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

  .process-grid li {
    min-height: 235px;
  }

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

  .trust-grid li:last-child {
    grid-column: 1 / -1;
    min-height: 170px;
  }

  .faq-list summary {
    min-height: 79px;
  }

  .final-cta {
    padding-block: 78px;
  }

  .final-cta__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: end;
    gap: 70px;
  }

  .site-footer {
    padding-bottom: 32px;
  }

  .site-footer__main {
    grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(140px, 0.5fr));
  }

  .site-footer__main > div:first-child {
    grid-column: auto;
  }

  .site-footer__legal {
    grid-template-columns: 1fr auto;
    gap: 40px;
  }

  .site-footer__legal span {
    text-align: right;
  }

  .mobile-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__feature figure video {
    display: none;
  }
}

@media (min-width: 1120px) {
  .treatment-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .treatment-card--featured {
    grid-column: 1 / -1;
  }

  .treatment-card:not(.treatment-card--featured) .treatment-card__media {
    min-height: 285px;
  }

  .treatment-card:not(.treatment-card--featured) .treatment-card__body {
    padding: 24px 20px 22px;
  }

  .treatment-card:not(.treatment-card--featured) h3 {
    font-size: 3.05rem;
  }

  .treatment-card:not(.treatment-card--featured) .overview {
    font-size: 0.84rem;
  }

  .treatment-card:not(.treatment-card--featured) .benefit-list li {
    font-size: 0.73rem;
  }

  .education__layout,
  .trust__layout,
  .faq__layout {
    gap: 100px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
