@font-face {
  font-family: "Google Sans Flex";
  src: url("fonts/google-sans-flex-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("fonts/eb-garamond-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("fonts/eb-garamond-italic-variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 400 800;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
}

body.slms-menu-open {
  overflow: hidden;
}

.slms-page {
  --slms-ink: #212322;
  --slms-wren: #40362a;
  --slms-shitake: #7a6856;
  --slms-ginger: #bca58d;
  --slms-feather: #b5ab9b;
  --slms-almond: #cfcabd;
  --slms-whitecap: #e4dace;
  --slms-cloud: #f1f0ea;
  --slms-blush: #f5dddc;
  --slms-blush-deep: #df9b9a;
  --slms-white: #fff;
  --slms-border: rgba(64, 54, 42, 0.16);
  --slms-container: 1240px;
  --slms-ease: cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 0;
  overflow: clip;
  color: var(--slms-ink);
  background: var(--slms-white);
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 16px;
  font-weight: 390;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

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

.slms-page a {
  color: inherit;
}

.slms-page button,
.slms-page summary {
  font: inherit;
}

.slms-page h1,
.slms-page h2,
.slms-page h3,
.slms-page p {
  margin: 0;
}

.slms-page h1,
.slms-page h2 {
  color: var(--slms-wren);
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 480;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.slms-page h1 {
  max-width: 690px;
  font-size: clamp(3.3rem, 5.5vw, 6.1rem);
}

.slms-page h2 {
  font-size: clamp(2.75rem, 4.7vw, 5rem);
}

.slms-page h1 em,
.slms-page h2 em {
  font-weight: 430;
}

.slms-page h3 {
  color: var(--slms-wren);
  font-size: 1.2rem;
  font-weight: 560;
  line-height: 1.25;
}

.slms-container {
  width: min(calc(100% - 64px), var(--slms-container));
  margin-inline: auto;
}

.slms-section {
  padding: 120px 0;
}

.slms-kicker {
  color: var(--slms-shitake);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.slms-skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  color: #fff;
  background: var(--slms-wren);
  text-decoration: none;
}

.slms-skip-link:focus {
  transform: translateY(0);
}

.slms-page :focus-visible {
  outline: 2px solid var(--slms-wren);
  outline-offset: 4px;
}

.slms-site-header {
  position: relative;
  z-index: 100;
  height: 71px;
  border-bottom: 1px solid rgba(33, 35, 34, 0.1);
  background: #fff;
}

.slms-header-inner {
  display: grid;
  width: min(calc(100% - 64px), 1280px);
  height: 70px;
  margin-inline: auto;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 24px;
}

.slms-logo {
  display: inline-flex;
  width: 168px;
}

.slms-logo img {
  width: 100%;
  height: auto;
}

.slms-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.slms-desktop-nav a {
  position: relative;
  font-size: 0.78rem;
  text-decoration: none;
  white-space: nowrap;
}

.slms-desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  content: "";
  transition: transform 280ms var(--slms-ease);
}

.slms-desktop-nav a:hover::after,
.slms-desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.slms-header-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}

.slms-icon-link,
.slms-icon-button {
  display: inline-grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border: 1px solid var(--slms-ink);
  border-radius: 50%;
  background: transparent;
  font-size: 0.61rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.slms-icon-link {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  border-color: #000;
  color: #69727d;
  background: #fff;
}

.slms-icon-button {
  width: 29px;
  height: 29px;
  flex-basis: 29px;
  border: 0;
  padding: 4px;
}

.slms-icon-button svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.slms-icon-link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.slms-menu-toggle {
  display: none;
}

.slms-mobile-panel {
  position: absolute;
  top: 80px;
  right: 0;
  left: 0;
  padding: 24px 24px 32px;
  border-top: 1px solid var(--slms-border);
  border-bottom: 1px solid var(--slms-border);
  background: #fff;
}

.slms-mobile-panel nav {
  display: grid;
  margin-bottom: 24px;
}

.slms-mobile-panel nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--slms-border);
  font-size: 1.1rem;
  text-decoration: none;
}

.slms-hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  background: var(--slms-blush);
}

.slms-hero-media {
  position: relative;
  min-height: 690px;
  overflow: hidden;
}

.slms-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.slms-image-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slms-hero-content {
  display: flex;
  padding: clamp(72px, 8vw, 128px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
}

.slms-hero-content .slms-kicker {
  margin-bottom: 0;
}

.slms-hero-copy {
  max-width: 590px;
  margin-top: 0;
  color: #554b45;
  font-size: 1.04rem;
  line-height: 1.78;
}

.slms-button-row {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.slms-hero-content > .slms-button-row {
  margin-top: 0;
}

.slms-button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slms-wren);
  border-radius: 2px;
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.105em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 280ms var(--slms-ease), background 280ms var(--slms-ease), opacity 280ms var(--slms-ease);
}

.slms-button.slms-button-dark {
  color: #fff;
  background: var(--slms-wren);
}

.slms-button-outline {
  background: transparent;
}

.slms-button:hover {
  color: #fff;
  background: var(--slms-shitake);
}

.slms-hero-note {
  margin-top: 0;
  color: var(--slms-shitake);
  font-size: 0.8rem;
}

.slms-anchor-nav {
  border-bottom: 1px solid var(--slms-border);
  background: #fff;
}

.slms-anchor-nav .slms-container {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.slms-anchor-nav span,
.slms-anchor-nav a {
  flex: 0 0 auto;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.slms-anchor-nav span {
  color: var(--slms-shitake);
  font-weight: 650;
}

.slms-anchor-nav a {
  color: #4f4d4b;
}

.slms-editorial-grid,
.slms-definition-grid,
.slms-section-heading,
.slms-details-grid,
.slms-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(64px, 9vw, 144px);
}

.slms-editorial-grid h2,
.slms-definition-grid h2,
.slms-details-grid h2,
.slms-faq-grid h2 {
  max-width: 600px;
  margin-top: 18px;
}

.slms-copy-column {
  align-self: end;
  max-width: 620px;
  color: #5a514a;
  font-size: 1.05rem;
}

.slms-copy-column p + p {
  margin-top: 22px;
}

.slms-definition-section {
  background: var(--slms-cloud);
}

.slms-definition-grid {
  grid-template-columns: 100px minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
}

.slms-definition-number {
  color: var(--slms-ginger);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 4.4rem;
  line-height: 1;
}

.slms-section-heading {
  margin-bottom: 60px;
  align-items: end;
}

.slms-section-heading h2 {
  margin-top: 18px;
}

.slms-section-heading > p {
  max-width: 560px;
  color: #5a514a;
}

.slms-type-grid {
  display: grid;
  border-top: 1px solid var(--slms-border);
  border-left: 1px solid var(--slms-border);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.slms-type-grid article {
  min-height: 285px;
  padding: 32px;
  border-right: 1px solid var(--slms-border);
  border-bottom: 1px solid var(--slms-border);
}

.slms-type-grid span,
.slms-treatment-index {
  color: var(--slms-ginger);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.2rem;
}

.slms-type-grid h3 {
  margin-top: 56px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 480;
}

.slms-type-grid p {
  margin-top: 16px;
  color: #655c54;
  font-size: 0.92rem;
}

.slms-cause-section {
  background: var(--slms-wren);
}

.slms-sticky-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 10vw, 160px);
}

.slms-sticky-copy {
  position: sticky;
  top: 42px;
  height: max-content;
}

.slms-cause-section .slms-kicker,
.slms-cause-section h2,
.slms-cause-section .slms-sticky-copy > p:last-child {
  color: var(--slms-cloud);
}

.slms-sticky-copy h2 {
  margin: 20px 0 30px;
}

.slms-sticky-copy > p:last-child {
  max-width: 500px;
  opacity: 0.72;
}

.slms-cause-list article {
  padding: 36px 0;
  border-top: 1px solid rgba(241, 240, 234, 0.2);
  color: var(--slms-cloud);
}

.slms-cause-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.slms-cause-list article span {
  display: block;
  margin-bottom: 10px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 2rem;
}

.slms-cause-list article p {
  max-width: 600px;
  opacity: 0.68;
}

.slms-callout {
  margin-top: 34px;
  padding-left: 22px;
  border-left: 1px solid var(--slms-ginger);
  color: var(--slms-cloud);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
}

.slms-image-story {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  background: var(--slms-cloud);
}

.slms-image-story figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.slms-image-story figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--slms-ease);
}

.slms-image-story figure:hover img {
  transform: scale(1.02);
}

.slms-image-story-large {
  grid-row: 1 / 3;
}

.slms-image-story > p {
  display: none;
}

.slms-treatments {
  background: var(--slms-cloud);
}

.slms-treatment-grid {
  display: grid;
  border-top: 1px solid var(--slms-border);
  border-left: 1px solid var(--slms-border);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.slms-treatment-card {
  display: flex;
  min-height: 390px;
  padding: 34px;
  flex-direction: column;
  border-right: 1px solid var(--slms-border);
  border-bottom: 1px solid var(--slms-border);
  background: rgba(255, 255, 255, 0.28);
}

.slms-treatment-card-featured {
  background: var(--slms-whitecap);
}

.slms-card-tag {
  margin-top: 40px;
  color: var(--slms-shitake);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.slms-treatment-card h3 {
  margin-top: 13px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 480;
}

.slms-treatment-card > p:last-of-type {
  margin-top: 20px;
  color: #655c54;
  font-size: 0.92rem;
}

.slms-treatment-card > a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 30px;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.slms-treatment-card > a span {
  font-size: 1.5rem;
  font-weight: 300;
}

.slms-treatment-cta {
  display: flex;
  padding: 32px 0 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.slms-treatment-cta p {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
}

.slms-details-section {
  background: #fff;
}

.slms-details-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

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

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

.slms-detail-list summary,
.slms-faq-list summary {
  position: relative;
  display: flex;
  padding: 28px 52px 28px 0;
  align-items: center;
  gap: 18px;
  color: var(--slms-wren);
  cursor: pointer;
  list-style: none;
}

.slms-detail-list summary {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.2;
}

.slms-detail-list summary::-webkit-details-marker,
.slms-faq-list summary::-webkit-details-marker,
.slms-site-footer summary::-webkit-details-marker {
  display: none;
}

.slms-detail-list summary::after,
.slms-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 300;
}

.slms-detail-list details[open] summary::after,
.slms-faq-list details.is-expanded summary::after {
  content: "−";
}

.slms-detail-list summary span {
  color: var(--slms-ginger);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1rem;
}

.slms-detail-list details > div,
.slms-faq-answer > div > p {
  max-width: 680px;
  padding: 0 52px 30px 36px;
  color: #655c54;
}

.slms-detail-list details > div p + p {
  margin-top: 16px;
}

.slms-detail-link {
  display: inline-flex;
  margin-top: 22px;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.slms-detail-link span {
  font-size: 1.35rem;
  font-weight: 300;
}

.slms-small-copy {
  font-size: 0.88rem;
}

.slms-results-section {
  background: var(--slms-cloud);
}

.slms-results-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 110px);
}

.slms-results-copy h2 {
  margin-top: 18px;
}

.slms-results-copy > p:not(.slms-kicker) {
  max-width: 470px;
  margin-top: 26px;
  color: #655c54;
}

.slms-results-copy > .slms-small-copy {
  margin-top: 16px;
}

.slms-results-figure {
  margin: 0;
  padding: clamp(10px, 1.4vw, 18px);
  border: 1px solid var(--slms-border);
  background: #fff;
}

.slms-results-figure img {
  width: 100%;
  height: auto;
}

.slms-care-section {
  background: var(--slms-blush);
}

.slms-care-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--slms-border);
  list-style: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.slms-care-list li {
  min-height: 260px;
  padding: 30px 26px;
  border-right: 1px solid var(--slms-border);
}

.slms-care-list li:last-child {
  border-right: 0;
}

.slms-care-list span {
  color: var(--slms-shitake);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1rem;
}

.slms-care-list p {
  margin-top: 76px;
  color: var(--slms-wren);
  font-size: 0.92rem;
}

.slms-faq-section {
  background: #fff;
}

.slms-faq-grid {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.slms-faq-list summary {
  font-size: 1rem;
  font-weight: 570;
}

.slms-faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
}

.slms-js-ready .slms-faq-answer {
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
}

.slms-faq-answer > div {
  overflow: hidden;
}

.slms-faq-answer > div > p {
  padding-left: 0;
}

.slms-js-ready .slms-faq-list details.is-expanded > .slms-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.slms-final-cta {
  padding: 126px 0;
  color: var(--slms-cloud);
  background: var(--slms-wren);
}

.slms-final-cta .slms-container {
  max-width: 900px;
  margin-left: max(32px, calc((100vw - var(--slms-container)) / 2));
}

.slms-final-cta .slms-kicker,
.slms-final-cta h2 {
  color: var(--slms-cloud);
}

.slms-final-cta h2 {
  margin-top: 18px;
}

.slms-final-cta > div > p:nth-of-type(2) {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(241, 240, 234, 0.72);
}

.slms-button.slms-button-light {
  border-color: var(--slms-cloud);
  color: var(--slms-wren);
  background: var(--slms-cloud);
}

.slms-text-link {
  display: inline-flex;
  padding: 12px 6px;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.slms-site-footer {
  position: relative;
  color: #4a4a4a;
  background: #fff;
}

.slms-site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(111, 111, 111, 0.07);
  content: "";
}

.slms-footer-desktop {
  display: flex;
  width: min(100% - 120px, 1280px);
  min-height: 482px;
  margin: 0 auto;
  padding: 66px 0 59px;
}

.slms-footer-desktop > div {
  width: 20%;
  padding: 10px;
}

.slms-footer-brand img {
  width: 123px;
  height: auto;
}

.slms-footer-brand p {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}

.slms-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slms-footer-desktop h2 {
  margin-bottom: 35px;
  color: #4a4a4a;
  font-family: "Google Sans Flex", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: underline;
  text-transform: uppercase;
}

.slms-footer-column > a {
  display: flex;
  width: 100%;
  min-height: 36px;
  padding: 8px 0;
  align-items: center;
  color: #333;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
}

.slms-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.slms-footer-social a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50%;
  color: #69727d;
  background: #fff;
  text-decoration: none;
}

.slms-footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.slms-footer-newsletter-title {
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  text-transform: none !important;
}

.slms-footer-connect > h2:first-child {
  margin-bottom: 50px;
}

.slms-newsletter-embed {
  width: 100%;
  min-height: 154px;
}

.slms-footer-bottom {
  display: block;
  min-height: 53px;
  padding: 23px max(20px, calc((100vw - 1280px) / 2 + 10px)) 18px;
  color: #d7d7d7;
  background: #da9189;
  font-size: 12px;
  font-weight: 300;
  line-height: 12px;
}

.slms-footer-bottom a {
  text-decoration: none;
}

.slms-footer-mobile-privacy {
  display: none;
}

.slms-footer-year-mobile {
  display: none;
}

.slms-footer-mobile {
  display: none;
}

.slms-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.slms-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 48px;
  padding: 10px 18px;
  align-items: center;
  gap: 9px;
  border-radius: 28px;
  color: #fff !important;
  background: var(--slms-blush-deep);
  box-shadow: 0 10px 28px rgba(64, 54, 42, 0.16);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.slms-whatsapp svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  fill: currentColor;
}

@media (max-width: 1180px) {
  .slms-header-inner {
    grid-template-columns: 190px 1fr auto;
  }

  .slms-desktop-nav {
    gap: 15px;
  }

  .slms-desktop-social {
    display: none;
  }

  .slms-hero-content {
    padding: 70px 56px;
  }

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

  .slms-care-list li {
    border-bottom: 1px solid var(--slms-border);
  }
}

@media (max-width: 900px) {
  .slms-container {
    width: min(calc(100% - 40px), var(--slms-container));
  }

  .slms-section {
    padding: 92px 0;
  }

  .slms-site-header,
  .slms-header-inner {
    height: 81px;
  }

  .slms-header-inner {
    width: calc(100% - 40px);
    grid-template-columns: 1fr auto;
  }

  .slms-logo {
    width: 138px;
  }

  .slms-desktop-nav,
  .slms-desktop-social {
    display: none;
  }

  .slms-menu-toggle {
    display: inline-grid;
  }

  .slms-header-actions {
    gap: 4px;
  }

  .slms-icon-button {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .slms-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .slms-hero-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .slms-hero-media img {
    object-position: 58% center;
  }

  .slms-hero-content {
    padding: 62px 24px 76px;
  }

  .slms-hero-copy {
    margin-top: 0;
  }

  .slms-anchor-nav .slms-container {
    width: calc(100% - 40px);
  }

  .slms-editorial-grid,
  .slms-section-heading,
  .slms-details-grid,
  .slms-results-grid,
  .slms-faq-grid,
  .slms-sticky-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .slms-definition-grid {
    grid-template-columns: 64px 1fr;
    gap: 30px;
  }

  .slms-definition-grid .slms-copy-column {
    grid-column: 2;
  }

  .slms-section-heading {
    margin-bottom: 46px;
  }

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

  .slms-sticky-copy {
    position: static;
  }

  .slms-image-story {
    min-height: 520px;
  }

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

  .slms-footer-desktop {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .slms-page {
    font-size: 15px;
  }

  .slms-page h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .slms-page h2 {
    font-size: clamp(2.6rem, 12vw, 3.65rem);
  }

  .slms-section {
    padding: 82px 0;
  }

  .slms-image-label {
    bottom: 14px;
    left: 14px;
  }

  .slms-button-row,
  .slms-treatment-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .slms-button-row .slms-button {
    width: 100%;
  }

  .slms-anchor-nav span {
    display: none;
  }

  .slms-editorial-grid,
  .slms-section-heading,
  .slms-details-grid,
  .slms-faq-grid,
  .slms-sticky-grid {
    gap: 38px;
  }

  .slms-definition-grid {
    grid-template-columns: 1fr;
  }

  .slms-definition-number {
    font-size: 3.3rem;
  }

  .slms-definition-grid .slms-copy-column {
    grid-column: auto;
  }

  .slms-type-grid,
  .slms-treatment-grid {
    display: flex;
    margin-right: -20px;
    padding-right: 20px;
    border: 0;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .slms-type-grid article,
  .slms-treatment-card {
    width: min(82vw, 330px);
    min-width: min(82vw, 330px);
    border: 1px solid var(--slms-border);
    scroll-snap-align: start;
  }

  .slms-type-grid article {
    min-height: 300px;
  }

  .slms-image-story {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 180px;
  }

  .slms-image-story-large {
    grid-row: 1;
    grid-column: 1 / 3;
  }

  .slms-treatment-card {
    min-height: 420px;
  }

  .slms-detail-list summary {
    padding-right: 40px;
    font-size: 1.4rem;
  }

  .slms-detail-list details > div,
  .slms-faq-answer > div > p {
    padding-right: 34px;
    padding-left: 0;
  }

  .slms-care-list {
    grid-template-columns: 1fr;
  }

  .slms-care-list li {
    display: grid;
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    grid-template-columns: 46px 1fr;
  }

  .slms-care-list p {
    margin-top: 0;
  }

  .slms-final-cta {
    padding: 92px 0;
  }

  .slms-final-cta .slms-container {
    width: calc(100% - 40px);
    margin-inline: auto;
  }

  .slms-footer-desktop {
    display: none;
  }

  .slms-footer-mobile {
    display: block;
    padding: 5px 0 60px;
    background: #fcfcfc;
  }

  .slms-footer-mobile details {
    border: 0;
  }

  .slms-footer-mobile summary,
  .slms-footer-mobile-row {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 51px;
    padding: 15px 44px 15px 20px;
    align-items: center;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
  }

  .slms-footer-mobile summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    content: "+";
    font-size: 14px;
    font-weight: 600;
  }

  .slms-footer-mobile details[open] summary::after {
    content: "−";
  }

  .slms-footer-mobile details > div {
    display: flex;
    padding: 0 20px 14px;
    flex-direction: column;
  }

  .slms-footer-mobile > details:last-of-type {
    margin-bottom: 20px;
  }

  .slms-footer-mobile details a {
    padding: 7px 0;
    color: #333;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    text-decoration: none;
  }

  .slms-footer-mobile-details {
    padding: 25px 20px 0;
    text-align: center;
  }

  .slms-footer-mobile-details h2 {
    margin: 0 0 20px;
    color: #000;
    font-family: "Google Sans Flex", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
  }

  .slms-footer-mobile-details h2:nth-of-type(2) {
    margin-top: 0;
  }

  .slms-footer-mobile-details p {
    margin: 0 0 40px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
  }

  .slms-footer-mobile-details .slms-newsletter-embed {
    height: 106px;
    min-height: 106px;
    text-align: left;
  }

  .slms-footer-mobile-details .slms-newsletter-embed iframe {
    height: 106px !important;
  }

  .slms-footer-mobile .slms-footer-social {
    margin-top: 10px;
    justify-content: center;
  }

  .slms-footer-mobile .slms-footer-social a {
    border: 1px solid #000;
  }

  .slms-site-footer {
    border-top: 0;
  }

  .slms-site-footer::before {
    display: none;
  }

  .slms-footer-bottom {
    min-height: 75px;
    padding: 23px 18px 18px;
    color: #000;
    background: transparent;
    text-align: center;
  }

  .slms-footer-bottom p {
    margin-bottom: 10px;
  }

  .slms-footer-year-desktop {
    display: none;
  }

  .slms-footer-year-mobile {
    display: block;
  }

  .slms-footer-mobile-privacy {
    display: block;
    color: #000;
  }

  .slms-whatsapp {
    right: 16px;
    bottom: 16px;
    min-height: 46px;
    padding: 9px 15px;
  }
}

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

  .slms-page *,
  .slms-page *::before,
  .slms-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
