:root {
  --green: #3a4a3f;
  --green-dark: #34463a;
  --gold: #bca771;
  --gold-deep: #7f6a39;
  --stone: #76746d;
  --muted: #5d6a60;
  --border: #e8e4dc;
  --white: #ffffff;
  --serif: "PT Sans", "Segoe UI", Tahoma, sans-serif;
  --display: "Gilda Display", Georgia, serif;
  --top-chrome-height: 201px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #000;
  background: var(--white);
  font-family: var(--serif);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 0;
  z-index: 20;
  transform: translateY(-120%);
  background: var(--green);
  color: var(--white);
  padding: 0.65rem 1rem;
}

.skip-link:focus {
  top: 1rem;
  transform: translateY(0);
}

.announcement {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 3.2rem;
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.announcement.is-hidden {
  display: none;
}

.announcement a {
  text-decoration: none;
}

.bar-close {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--white);
  border-bottom: 1px solid rgba(188, 167, 113, 0.28);
  box-shadow: 0 12px 28px rgba(58, 74, 63, 0);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-condensed {
  border-color: rgba(188, 167, 113, 0.38);
  box-shadow: 0 12px 28px rgba(58, 74, 63, 0.1);
}

.header-inner {
  min-height: 148px;
  display: grid;
  grid-template-columns: minmax(128px, 168px) minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(1.5rem, 3vw, 3rem);
  padding: 0.95rem clamp(1.4rem, 3vw, 3rem);
  transition: min-height 180ms ease, padding 180ms ease;
}

.site-header.is-condensed .header-inner {
  min-height: 86px;
  padding-block: 0.45rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 168px;
  max-width: 100%;
  height: auto;
  display: block;
  transition: width 180ms ease;
}

.site-header.is-condensed .brand img {
  width: 116px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--green);
  font-size: 1rem;
}

.desktop-nav > a,
.nav-folder > button {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  line-height: 1;
  transition: color 180ms ease;
}

.desktop-nav > a,
.desktop-nav > .nav-folder {
  position: relative;
  padding-inline: clamp(0.68rem, 1.08vw, 1.12rem);
}

.desktop-nav > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 38px;
  transform: translateY(-50%);
  background: linear-gradient(
    to bottom,
    rgba(232, 228, 220, 0),
    rgba(188, 167, 113, 0.52),
    rgba(232, 228, 220, 0)
  );
}

.nav-title {
  display: block;
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.05;
}

.nav-subtitle {
  display: block;
  max-height: 1.8rem;
  margin-top: 0.28rem;
  padding-bottom: 0.18rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-style: italic;
  line-height: 1.4;
  opacity: 0.9;
  overflow: visible;
  transition: max-height 180ms ease, margin 180ms ease, padding 180ms ease, opacity 180ms ease;
}

.site-header.is-condensed .nav-subtitle {
  max-height: 0;
  margin-top: 0;
  padding-bottom: 0;
  opacity: 0;
  overflow: hidden;
}

.desktop-nav > a[aria-current="page"],
.nav-folder:has(.nav-dropdown a[aria-current="page"]) > button {
  color: var(--green-dark);
}

.desktop-nav > a[aria-current="page"]::after,
.nav-folder:has(.nav-dropdown a[aria-current="page"]) > button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.76rem;
  width: min(78px, calc(100% - 0.8rem));
  height: 2px;
  transform: translateX(-50%);
  background: var(--gold);
}

.site-header.is-condensed .desktop-nav > a[aria-current="page"]::after,
.site-header.is-condensed .nav-folder:has(.nav-dropdown a[aria-current="page"]) > button::after {
  bottom: -0.42rem;
  width: min(62px, calc(100% - 0.8rem));
}

.desktop-nav > a:hover,
.nav-folder > button:hover,
.desktop-nav > a:focus-visible,
.nav-folder > button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.nav-folder {
  position: relative;
}

.nav-folder::after {
  content: "";
  position: absolute;
  left: 0.35rem;
  right: 0.35rem;
  top: 100%;
  height: 0.8rem;
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 0.52rem);
  width: max-content;
  max-width: 330px;
  display: none;
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.72rem;
  border: 1px solid rgba(188, 167, 113, 0.32);
  border-radius: 8px;
  background: var(--white);
  color: var(--green);
  line-height: 1.25;
  box-shadow: 0 18px 36px rgba(58, 74, 63, 0.13);
  z-index: 25;
}

.nav-folder-wide .nav-dropdown {
  width: 290px;
}

.nav-folder:hover .nav-dropdown,
.nav-folder:focus-within .nav-dropdown {
  display: flex;
}

.nav-dropdown a {
  display: block;
  padding: 0.48rem 0.58rem;
  border-radius: 6px;
  font-size: 0.98rem;
  white-space: normal;
  text-decoration: none;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: #f8f6f0;
  color: var(--green-dark);
}

.nav-dropdown a[aria-current="page"] {
  background: #f8f6f0;
  color: var(--green-dark);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--green);
}

.instagram {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  text-decoration: none;
}

.instagram svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pill-button,
.hero-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1.45rem;
  border: 3px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.pill-button:hover,
.pill-button:focus-visible,
.hero-button:hover,
.hero-button:focus-visible {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.header-book {
  min-width: 168px;
  min-height: 54px;
  gap: 1.15rem;
  padding-inline: 1.9rem 1.35rem;
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  font-size: 1.18rem;
}

.header-book::after {
  content: "\2192";
  color: var(--gold);
  font-size: 1.08rem;
  line-height: 1;
  transform: translateY(0.02em);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--green);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  flex-direction: column;
  background: #f8f6f1;
  color: #000;
  pointer-events: none;
}

.mobile-menu.is-open {
  display: flex;
  pointer-events: auto;
}

.mobile-menu-head {
  display: flex;
  flex: none;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.3rem 0.85rem 1.8rem;
  border-bottom: 1px solid rgba(188, 167, 113, 0.28);
  background: var(--white);
}

.mobile-menu-head .brand img {
  width: 96px;
}

.menu-close {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
}

.mobile-nav {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 1.5rem;
  padding: 1.3rem 1.8rem 1.6rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-nav a {
  color: #000;
  text-decoration: none;
}

.mobile-nav a[aria-current="page"] {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.16em;
}

.mobile-nav .mobile-nav-finder {
  display: block;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(188, 167, 113, 0.55);
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(188, 167, 113, 0.2), rgba(188, 167, 113, 0.08));
  color: var(--green-dark);
  font-weight: 700;
}

.mobile-nav-finder .mobile-nav-finder-title::after {
  content: "\2192";
  margin-left: 0.45em;
  color: var(--gold-deep);
}

.mobile-nav-finder .mobile-nav-finder-sub {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
}

.mobile-nav-label {
  margin: 0 0 0.6rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.mobile-nav-grid a {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 0.95rem;
  line-height: 1.3;
}

.mobile-nav-grid a[aria-current="page"] {
  border-color: var(--gold);
  background: rgba(188, 167, 113, 0.14);
  text-decoration: none;
}

.mobile-nav-primary {
  display: grid;
  gap: 1.15rem;
  padding-top: 0.35rem;
  font-family: var(--display);
}

.mobile-nav-primary a {
  width: fit-content;
}

.mobile-nav-title {
  display: block;
  font-size: clamp(1.85rem, 6.4vw, 2.2rem);
  line-height: 1.1;
}

.mobile-nav-sub {
  display: block;
  margin-top: 0.12rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
}

.mobile-nav-about {
  display: grid;
  gap: 0.85rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(188, 167, 113, 0.28);
}

.mobile-nav-about a {
  width: fit-content;
  color: var(--green);
  font-size: 1.05rem;
}

.mobile-actions {
  display: flex;
  flex: none;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.8rem calc(0.9rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(188, 167, 113, 0.28);
  background: var(--white);
}

.mobile-actions .instagram {
  width: 48px;
  height: 48px;
  flex: none;
}

.mobile-actions .instagram svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.7;
}

.mobile-actions .pill-button {
  flex: 1 1 auto;
  min-height: 56px;
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  font-size: 1.35rem;
}

.mobile-actions .pill-button::after {
  content: "\2192";
  margin-left: 0.55em;
  color: var(--gold);
  font-size: 0.92em;
}

@media (prefers-reduced-motion: no-preference) {
  .mobile-menu.is-open .mobile-nav > * {
    animation: mobile-nav-rise 300ms ease backwards;
  }

  .mobile-menu.is-open .mobile-nav > :nth-child(2) {
    animation-delay: 50ms;
  }

  .mobile-menu.is-open .mobile-nav > :nth-child(3) {
    animation-delay: 100ms;
  }

  .mobile-menu.is-open .mobile-nav > :nth-child(4) {
    animation-delay: 150ms;
  }

  .mobile-menu.is-open .mobile-actions {
    animation: mobile-nav-rise 300ms ease 150ms backwards;
  }
}

@keyframes mobile-nav-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

.hero {
  position: relative;
  min-height: clamp(560px, calc(100svh - var(--top-chrome-height)), 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(188, 167, 113, 0.24);
  background: #f8f6f1;
}

.hero-media,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  display: block;
}

.hero-image {
  display: block;
  object-fit: cover;
  object-position: 68% 22%;
  opacity: 1;
  filter: saturate(1.18) contrast(1.08) brightness(1.04);
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.95) 31%,
      rgba(255, 255, 255, 0.48) 45%,
      rgba(255, 255, 255, 0.08) 58%,
      rgba(255, 255, 255, 0) 68%
    ),
    linear-gradient(
      180deg,
      rgba(248, 246, 241, 0) 58%,
      rgba(248, 246, 241, 0.72) 100%
    );
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: start;
  gap: 1rem;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.4rem, 7vw, 5.5rem);
  color: var(--green-dark);
  text-align: left;
  text-shadow: none;
}

.hero-copy h1 {
  margin: 0;
  max-width: 560px;
  font-family: var(--display);
  font-size: clamp(4rem, 6.4vw, 6.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-eyebrow {
  margin: 0;
  color: #1f2f27;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-rule {
  width: 70px;
  height: 1px;
  margin: 0.4rem 0 0.55rem;
  background: var(--gold);
}

.hero-text {
  max-width: 470px;
  margin: 0;
  color: #171717;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1.2rem;
}

.hero-button {
  min-height: 54px;
  gap: 1.15rem;
  border-width: 1px;
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  padding-inline: 1.7rem 1.35rem;
  text-shadow: none;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(52, 70, 58, 0.16);
}

.hero-button::after {
  content: "\2192";
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.hero-button-secondary {
  border-color: rgba(58, 74, 63, 0.32);
  background: rgba(255, 255, 255, 0.6);
  color: var(--green);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.home-values {
  padding: clamp(2.5rem, 4.5vw, 4.2rem) 1.5rem;
  background: var(--white);
  border-bottom: 1px solid rgba(188, 167, 113, 0.2);
}

.home-values-grid {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-value {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.9rem;
  padding: 0.75rem clamp(1.4rem, 3vw, 3rem);
  text-align: center;
}

.home-value + .home-value::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  width: 1px;
  height: 84%;
  background: rgba(188, 167, 113, 0.32);
}

.home-value-icon,
.home-plan-icon,
.home-service-icon,
.newsletter-perk-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #f1ede6;
  color: var(--green);
}

.home-value-icon {
  width: 70px;
  height: 70px;
}

.home-value-icon svg,
.home-plan-icon svg,
.home-service-icon svg,
.newsletter-perk-icon svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-service-icon svg {
  width: 68%;
  height: 68%;
  stroke-width: 1.75;
}

.home-value-icon svg,
.home-plan-icon svg {
  width: 66%;
  height: 66%;
}

.home-value h2 {
  max-width: 290px;
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.18;
}

.home-value p {
  max-width: 330px;
  margin: 0;
  color: #171717;
  font-size: 0.94rem;
  line-height: 1.58;
}

.newsletter {
  padding: 0;
  background: #fbf9f4;
}

.newsletter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 760px;
}

.newsletter-copy {
  display: grid;
  align-content: center;
  padding: clamp(3.5rem, 7vw, 6.6rem) clamp(1.5rem, 7vw, 5.6rem);
}

.newsletter h2 {
  max-width: 680px;
  margin: 0 0 1.25rem;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(3.25rem, 3.65vw, 4.2rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.newsletter-intro {
  max-width: 660px;
  margin: 0 0 2rem;
  color: #171717;
  font-size: 1.04rem;
  line-height: 1.65;
}

.newsletter-form {
  width: min(660px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.newsletter-email-field,
.newsletter-form .pill-button {
  grid-column: 1 / -1;
}

.newsletter-form .cf-turnstile,
.newsletter-form .form-message {
  grid-column: 1 / -1;
}

.newsletter-form .cf-turnstile {
  min-height: 65px;
}

.newsletter-form .form-message {
  margin: 0;
}

.newsletter-form label {
  display: block;
}

.newsletter-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.newsletter-form input {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(58, 74, 63, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0 1.35rem;
  color: #111;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: #77736b;
}

.newsletter-form .pill-button {
  min-height: 64px;
  border-width: 1px;
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  letter-spacing: 0;
  padding-inline: 1.7rem;
  white-space: nowrap;
}

.newsletter-form .pill-button::after {
  content: "\2192";
  margin-left: 1.1rem;
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1;
}

.newsletter-disclaimer {
  width: min(660px, 100%);
  margin: 0.95rem 0 0;
  color: #171717;
  font-size: 0.78rem;
  line-height: 1.55;
}

.form-message {
  min-height: 1.4rem;
  margin: 0.85rem 0 0;
  color: var(--green);
  font-weight: 700;
}

.newsletter-perks {
  width: min(720px, 100%);
  margin-top: clamp(2rem, 4vw, 3.3rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(188, 167, 113, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.newsletter-perks > div {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  align-content: start;
  padding: 1.25rem 1rem;
  text-align: center;
}

.newsletter-perks > div + div {
  border-left: 1px solid rgba(188, 167, 113, 0.28);
}

.newsletter-perk-icon {
  width: 50px;
  height: 50px;
}

.newsletter-perks h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.18;
}

.newsletter-perks p {
  margin: 0;
  color: #171717;
  font-size: 0.86rem;
  line-height: 1.45;
}

.newsletter-media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.newsletter-media img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 44%;
}

.route-page {
  background: var(--white);
}

.route-hero {
  position: relative;
  min-height: clamp(320px, 34vw, 480px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--gold);
  background: #f8f6f0;
  color: var(--green);
  text-align: center;
}

.route-hero.no-image {
  min-height: clamp(260px, 24vw, 350px);
}

.route-hero img,
.route-hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(248, 246, 240, 0.86) 0%,
      rgba(248, 246, 240, 0.92) 100%
    );
}

.route-page--gives-back .route-hero {
  min-height: clamp(360px, 38vw, 540px);
}

.route-page--gives-back .route-hero img {
  object-position: 50% 50%;
}

.route-page--gives-back .route-hero::after {
  display: none;
}

.route-page--gives-back .route-hero-copy {
  margin-left: 8.5vw;
  margin-right: auto;
  width: min(500px, 38vw);
  text-align: left;
}

.route-page--gives-back .route-hero h1 {
  font-size: clamp(3.6rem, 5.8vw, 6.1rem);
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 1px 18px rgba(248, 246, 240, 0.68);
}

.route-page--gives-back .route-hero p {
  width: min(460px, 100%);
  margin: 1.35rem 0 0;
  color: #314338;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.48;
  text-shadow: 0 1px 12px rgba(248, 246, 240, 0.78);
}

.cookie-consent {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  width: min(420px, calc(100vw - 2.5rem));
  padding: 1.5rem 1.6rem 1.4rem;
  border-radius: 8px;
  border-top: 3px solid var(--gold);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(52, 70, 58, 0.35);
  outline: none;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-heading {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.24rem;
  line-height: 1.2;
}

.cookie-consent-body {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-consent-policy {
  display: inline-block;
  margin: 0.65rem 0 1.1rem;
  color: var(--gold);
  font-size: 0.85rem;
  text-underline-offset: 0.22em;
}

.cookie-consent-policy:hover,
.cookie-consent-policy:focus-visible {
  color: var(--white);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.cookie-consent-actions button {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 0.5rem 1.1rem;
  border: 2px solid var(--gold);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  line-height: 1.15;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.cookie-consent-accept {
  background: var(--gold);
  color: var(--green-dark);
}

.cookie-consent-accept:hover,
.cookie-consent-accept:focus-visible {
  border-color: var(--white);
  background: var(--white);
}

.cookie-consent-decline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.cookie-consent-decline:hover,
.cookie-consent-decline:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 720px) {
  .cookie-consent {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    width: auto;
    padding: 1.25rem 1.3rem 1.2rem;
  }
}

/* Header bag button */

.cart-button {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  transition: color 180ms ease;
}

.cart-button:hover,
.cart-button:focus-visible {
  color: var(--green-dark);
}

.cart-button svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button-count {
  position: absolute;
  top: -1px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #24312a;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.cart-button-count.is-bumped {
  animation: cart-count-bump 360ms ease;
}

.cart-button-count[hidden],
.cart-empty[hidden] {
  display: none;
}

@keyframes cart-count-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Product page: add to bag */

.add-to-bag {
  min-width: 208px;
  gap: 0.85rem;
  border-width: 1px;
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.add-to-bag::after {
  content: "\2192";
  color: var(--gold);
  font-size: 1.02rem;
  line-height: 1;
}

.add-to-bag:hover,
.add-to-bag:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.add-to-bag[data-state="adding"] {
  opacity: 0.72;
  cursor: progress;
}

.add-to-bag[data-state="added"]::after {
  content: "\2713";
}

.pill-button-quiet {
  border-width: 1px;
  border-color: rgba(58, 74, 63, 0.32);
  color: var(--green);
}

/* Scrim + drawer */

.cart-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(31, 47, 39, 0.46);
  opacity: 0;
  transition: opacity 240ms ease;
}

.cart-scrim.is-visible {
  opacity: 1;
}

body.cart-open {
  overflow: hidden;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 61;
  width: min(432px, 100%);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-left: 1px solid rgba(188, 167, 113, 0.32);
  box-shadow: -28px 0 64px rgba(58, 74, 63, 0.2);
  transform: translateX(103%);
  transition: transform 320ms cubic-bezier(0.32, 0.72, 0.28, 1);
  visibility: hidden;
}

.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.cart-drawer:focus {
  outline: none;
}

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.55rem 1.7rem 1.15rem;
  border-bottom: 1px solid rgba(188, 167, 113, 0.32);
}

.cart-head h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1.05;
}

.cart-head-count {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: italic;
}

.cart-close {
  width: 48px;
  height: 48px;
  margin: -0.4rem -0.7rem 0 0;
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 1;
  transition: color 180ms ease;
}

.cart-close:hover,
.cart-close:focus-visible {
  color: var(--green-dark);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.15rem 1.7rem;
}

.cart-error {
  margin: 0 0 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(150, 60, 50, 0.3);
  border-radius: 8px;
  background: #fbf3f1;
  color: #7d3a30;
  font-size: 0.9rem;
}

/* Empty state */

.cart-empty {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: 3.4rem 1rem 2rem;
  text-align: center;
}

.cart-empty-icon {
  width: 84px;
  height: 84px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #f1ede6;
  color: var(--green);
}

.cart-empty-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-empty-title {
  margin: 0.3rem 0 0;
  color: var(--green);
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.15;
}

.cart-empty-text {
  max-width: 250px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cart-empty-link {
  margin-top: 0.7rem;
  border-width: 1px;
  border-color: var(--green);
  color: var(--green);
  font-size: 0.95rem;
}

/* Line items */

.cart-lines {
  margin: 0;
  padding: 0;
  list-style: none;
  transition: opacity 180ms ease;
}

.cart-lines.is-busy {
  opacity: 0.55;
  pointer-events: none;
}

.cart-line {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 1.05rem;
  padding: 1.05rem 0;
}

.cart-line + .cart-line {
  border-top: 1px solid var(--border);
}

.cart-line-media {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8f6f0;
}

.cart-line-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-line-main {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.cart-line-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.9rem;
}

.cart-line-name {
  margin: 0;
  color: #171717;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}

.cart-line-name a {
  text-decoration: none;
}

.cart-line-name a:hover,
.cart-line-name a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.cart-line-price {
  color: var(--green-dark);
  font-size: 0.98rem;
  white-space: nowrap;
}

.cart-line-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(58, 74, 63, 0.26);
  border-radius: 999px;
}

.cart-qty button {
  width: 36px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  transition: color 180ms ease;
}

.cart-qty button:hover,
.cart-qty button:focus-visible {
  color: var(--green-dark);
}

.cart-qty span {
  min-width: 2ch;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.cart-line-remove {
  border: 0;
  padding: 0.35rem 0;
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 180ms ease;
}

.cart-line-remove:hover,
.cart-line-remove:focus-visible {
  color: var(--green-dark);
}

/* Footer */

.cart-foot {
  padding: 1.2rem 1.7rem 1.45rem;
  border-top: 1px solid rgba(188, 167, 113, 0.32);
  background: #fbf9f4;
}

.cart-subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-subtotal span:first-child {
  color: #171717;
  font-size: 0.95rem;
}

.cart-subtotal span:last-child {
  color: var(--green-dark);
  font-family: var(--display);
  font-size: 1.4rem;
}

.cart-checkout {
  width: 100%;
  min-height: 56px;
  gap: 1rem;
  border-width: 1px;
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  font-size: 1.05rem;
}

.cart-checkout::after {
  content: "\2192";
  color: var(--gold);
  font-size: 1.02rem;
  line-height: 1;
}

.cart-checkout:hover,
.cart-checkout:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.cart-checkout[disabled] {
  opacity: 0.72;
  cursor: progress;
}

.cart-foot-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
}

.cart-foot-link {
  color: var(--green-dark);
  text-underline-offset: 0.18em;
}

.cart-foot-link:hover,
.cart-foot-link:focus-visible {
  color: var(--green);
}

/* Free-shipping progress */

.cart-shipping {
  margin-bottom: 1rem;
}

.cart-shipping[hidden] {
  display: none;
}

.cart-shipping-note {
  margin: 0 0 0.55rem;
  color: var(--green-dark);
  font-size: 0.85rem;
  line-height: 1.4;
}

.cart-shipping-note.is-complete {
  font-weight: 700;
}

.cart-shipping-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(58, 74, 63, 0.14);
  overflow: hidden;
}

.cart-shipping-bar[hidden] {
  display: none;
}

.cart-shipping-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transition: width 320ms cubic-bezier(0.32, 0.72, 0.28, 1);
}

/* Persistent screen-reader announcer for quantity/removal updates */

.cart-live {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.cart-button:focus-visible,
.cart-close:focus-visible,
.cart-qty button:focus-visible,
.cart-line-remove:focus-visible,
.cart-checkout:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .cart-drawer {
    width: 100%;
    border-left: 0;
  }

  .cart-head {
    padding: 1.3rem 1.4rem 1rem;
  }

  .cart-body {
    padding: 1rem 1.4rem;
  }

  .cart-foot {
    padding: 1.1rem 1.4rem calc(1.25rem + env(safe-area-inset-bottom));
  }

  .cart-line {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.9rem;
  }

  .cart-line-media {
    width: 64px;
    height: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-drawer,
  .cart-scrim,
  .cart-lines,
  .cart-shipping-fill {
    transition: none;
  }

  .cart-button-count.is-bumped {
    animation: none;
  }
}
/* Treatment finder (/find-your-treatment) + homepage concern band.
   The finder renders three ways from one DOM:
   - no JS: every concern stacked and open, rail and toggles stay hidden;
   - [data-finder-mode="atlas"] (desktop, JS): sticky concern rail + one
     visible panel;
   - [data-finder-mode="accordion"] (mobile, JS): tap-to-expand rows. */

/* ---- Page hero --------------------------------------------------------- */

/* The hero band reuses the shared .route-hero/.treatment-hero pattern
   (full-bleed image, standard scrim, white copy). Only the
   concern/treatment tally line is finder-specific. */

.finder-hero-fact {
  margin: 1.6rem 0 0;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(188, 167, 113, 0.55);
  width: fit-content;
  color: rgba(255, 253, 248, 0.8);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* ---- Atlas layout ------------------------------------------------------ */

.finder-atlas {
  border-top: 1px solid var(--border);
  background: var(--white);
  scroll-margin-top: calc(var(--top-chrome-height) + 0.5rem);
}

.finder-atlas-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.6rem) 1.5rem clamp(3rem, 5vw, 4.5rem);
}

/* Rail hidden until JS removes the attribute; shown only in atlas mode. */
.finder-rail {
  display: none;
}

[data-finder-mode="atlas"] .finder-atlas-inner {
  display: grid;
  grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: start;
}

[data-finder-mode="atlas"] .finder-rail {
  display: grid;
  position: sticky;
  top: calc(var(--top-chrome-height) + 1.4rem);
  gap: 0;
  padding-right: clamp(1.4rem, 2.5vw, 2.4rem);
  border-right: 1px solid rgba(188, 167, 113, 0.38);
}

.finder-rail-title {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.finder-rail-item {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.72rem 0.6rem 0.72rem 0.75rem;
  border: 0;
  border-left: 2px solid transparent;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, padding-left 160ms ease;
}

.finder-rail-item + .finder-rail-item {
  border-top: 1px solid rgba(232, 228, 220, 0.85);
  border-left: 2px solid transparent;
}

.finder-rail-item .finder-num {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.finder-rail-label {
  font-family: var(--display);
  font-size: 1.12rem;
  line-height: 1.22;
}

.finder-rail-count {
  min-width: 1.55rem;
  align-self: center;
  padding: 0.12rem 0.4rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--stone);
  font-size: 0.72rem;
  line-height: 1.3;
  text-align: center;
}

.finder-rail-item:hover,
.finder-rail-item:focus-visible {
  background: #faf8f3;
  padding-left: 1rem;
}

.finder-rail-item.is-active {
  border-left-color: var(--gold);
  background: #f7f4ee;
  padding-left: 1rem;
}

.finder-rail-item.is-active .finder-rail-label {
  color: var(--green-dark);
  font-weight: 400;
}

.finder-rail-item.is-active .finder-rail-count {
  border-color: rgba(188, 167, 113, 0.6);
  color: var(--green);
}

/* ---- Panels ------------------------------------------------------------ */

.finder-panel {
  scroll-margin-top: calc(var(--top-chrome-height) + 0.8rem);
}

/* Stacked (no-JS) rhythm between open sections. */
.finder-panels > .finder-panel + .finder-panel {
  margin-top: 2.6rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(188, 167, 113, 0.34);
}

.finder-panel-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "num indicator"
    "title indicator"
    "prompt indicator";
  align-items: center;
  column-gap: 1rem;
}

.finder-panel-head .finder-num {
  grid-area: num;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.finder-panel-title {
  grid-area: title;
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

.finder-panel-prompt {
  grid-area: prompt;
  margin: 0.7rem 0 0;
  color: var(--stone);
  font-size: clamp(0.94rem, 1.1vw, 1.05rem);
  font-style: italic;
  line-height: 1.5;
}

.finder-panel-indicator {
  display: none;
}

.finder-panel-toggle {
  display: none;
}

.finder-panel-body-inner {
  min-height: 0;
}

.finder-panel-intro {
  max-width: 640px;
  margin: 1.35rem 0 0;
  color: #171717;
  font-size: 1rem;
  line-height: 1.62;
}

/* ---- Match cards ------------------------------------------------------- */

.finder-matches {
  display: grid;
  gap: 1rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.finder-match-link {
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfaf7;
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.finder-match-link:hover,
.finder-match-link:focus-visible {
  border-color: rgba(58, 74, 63, 0.45);
  box-shadow: 0 18px 42px rgba(52, 70, 58, 0.1);
  transform: translateY(-2px);
}

.finder-match-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f3f2ee;
}

.finder-match-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.finder-match-link:hover .finder-match-media img {
  transform: scale(1.03);
}

.finder-match-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.55rem;
  padding: 1.3rem 1.35rem 1.35rem;
}

.finder-match-badge {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.finder-match-badge-quiet {
  color: var(--stone);
}

.finder-match-name strong {
  display: block;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(1.4rem, 1.9vw, 1.85rem);
  font-weight: 400;
  line-height: 1.14;
}

.finder-match-name em {
  display: block;
  margin-top: 0.2rem;
  color: var(--stone);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.4;
}

.finder-match-why {
  color: #171717;
  font-size: 0.96rem;
  line-height: 1.58;
}

.finder-match-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.15rem;
}

.finder-match-meta span {
  padding: 0.18rem 0.62rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--stone);
  font-size: 0.74rem;
  line-height: 1.4;
  white-space: nowrap;
}

.finder-match-cta {
  margin-top: 0.3rem;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}

.finder-match-cta [aria-hidden] {
  color: var(--gold);
}

/* Primary match: gold top rule, image beside copy on wide screens. */
.finder-match-primary .finder-match-link {
  border-top: 3px solid var(--gold);
  background: var(--white);
}

@media (min-width: 640px) {
  .finder-match-primary .finder-match-link {
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  }

  .finder-match-primary .finder-match-media img {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .finder-match-primary .finder-match-media {
    min-height: 230px;
  }

  .finder-match-primary .finder-match-copy {
    padding: 1.6rem 1.7rem;
  }

  /* Supporting options pair up beneath the primary card. */
  .finder-matches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .finder-match-primary {
    grid-column: 1 / -1;
  }

  .finder-match:not(.finder-match-primary) .finder-match-media {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 639px) {
  .finder-match-media {
    aspect-ratio: 16 / 8;
  }
}

/* ---- Atlas mode (desktop, JS) ------------------------------------------ */

[data-finder-mode="atlas"] .finder-panel {
  display: none;
}

[data-finder-mode="atlas"] .finder-panel.is-active {
  display: block;
  animation: finder-panel-in 320ms ease both;
}

[data-finder-mode="atlas"] .finder-panels > .finder-panel + .finder-panel {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

@keyframes finder-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Accordion mode (mobile, JS) --------------------------------------- */

[data-finder-mode="accordion"] .finder-panels {
  border-top: 1px solid rgba(188, 167, 113, 0.4);
}

[data-finder-mode="accordion"] .finder-panels > .finder-panel + .finder-panel {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

[data-finder-mode="accordion"] .finder-panel {
  border-bottom: 1px solid rgba(188, 167, 113, 0.4);
}

[data-finder-mode="accordion"] .finder-panel-head {
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  grid-template-areas:
    "num title indicator"
    "num prompt indicator";
  align-items: baseline;
  padding: 1.15rem 0.15rem;
}

[data-finder-mode="accordion"] .finder-panel-head .finder-num {
  margin-bottom: 0;
  font-size: 0.78rem;
}

[data-finder-mode="accordion"] .finder-panel-title {
  font-size: clamp(1.5rem, 5.4vw, 1.85rem);
  line-height: 1.12;
}

[data-finder-mode="accordion"] .finder-panel-prompt {
  margin-top: 0.3rem;
  font-size: 0.86rem;
}

[data-finder-mode="accordion"] .finder-panel-toggle {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
}

[data-finder-mode="accordion"] .finder-panel-indicator {
  display: block;
  position: relative;
  align-self: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(188, 167, 113, 0.55);
  border-radius: 50%;
}

[data-finder-mode="accordion"] .finder-panel-indicator::before,
[data-finder-mode="accordion"] .finder-panel-indicator::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--green);
  transform: translate(-50%, -50%);
  transition: transform 240ms ease;
}

[data-finder-mode="accordion"] .finder-panel-indicator::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

[data-finder-mode="accordion"] .finder-panel.is-open .finder-panel-indicator::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

[data-finder-mode="accordion"] .finder-panel.is-open .finder-panel-indicator {
  background: #f7f4ee;
}

[data-finder-mode="accordion"] .finder-panel-body {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  transition: grid-template-rows 300ms ease, visibility 0s 300ms;
}

[data-finder-mode="accordion"] .finder-panel-body-inner {
  overflow: hidden;
}

[data-finder-mode="accordion"] .finder-panel.is-open .finder-panel-body {
  grid-template-rows: 1fr;
  visibility: visible;
  transition: grid-template-rows 300ms ease, visibility 0s;
}

[data-finder-mode="accordion"] .finder-panel.is-open .finder-panel-body-inner {
  padding-bottom: 1.8rem;
}

[data-finder-mode="accordion"] .finder-panel-intro {
  margin-top: 0.4rem;
}

/* ---- Consult band ------------------------------------------------------ */

.finder-consult {
  border-top: 1px solid var(--border);
  background: #f8f6f1;
}

.finder-consult-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(2.4rem, 4.5vw, 3.8rem) 1.5rem;
}

.finder-consult-heading {
  margin: 0 0 0.25rem;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
}

.finder-browse-link {
  margin: 1.35rem 0 0;
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.finder-browse-link a {
  color: var(--green);
  font-weight: 700;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.18em;
}

/* ---- Homepage treatment-explorer band ----------------------------------- */

.finder-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(148deg, #34463a 0%, #2b3a30 62%, #26332b 100%);
  color: #fffdf8;
  text-align: center;
}

.finder-cta::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -7rem;
  width: 24rem;
  height: 24rem;
  background: url("/assets/fingerprinted/brand/sunburst-mark.333b77288a49.png") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.finder-cta .home-section-inner {
  position: relative;
  z-index: 1;
}

.home-section.finder-cta > .home-section-inner > .section-eyebrow {
  color: #cdb883;
}

.home-section.finder-cta h2 {
  color: #fffdf8;
}

.home-section.finder-cta > .home-section-inner > p {
  color: rgba(255, 253, 248, 0.88);
}

.finder-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 56px;
  margin-top: 0.4rem;
  padding: 0.6rem 2.3rem;
  border-radius: 999px;
  background: var(--gold);
  color: #26332b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  transition: background 180ms ease, transform 180ms ease;
}

.finder-cta-button span {
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform 180ms ease;
}

.finder-cta-button:hover,
.finder-cta-button:focus-visible {
  background: #cdb883;
  transform: translateY(-1px);
}

.finder-cta-button:hover span,
.finder-cta-button:focus-visible span {
  transform: translateX(3px);
}

.home-section.finder-cta > .home-section-inner > .finder-cta-note {
  max-width: 620px;
  margin: 1.6rem auto 0;
  color: rgba(255, 253, 248, 0.8);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ---- Nav entries ------------------------------------------------------- */

.nav-dropdown .nav-dropdown-finder {
  margin-bottom: 0.45rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(188, 167, 113, 0.55);
  border-radius: 8px;
  background: linear-gradient(120deg, rgba(188, 167, 113, 0.2), rgba(188, 167, 113, 0.08));
  color: var(--green-dark);
  font-weight: 700;
}

.nav-dropdown-finder .nav-dropdown-finder-title::after {
  content: "\2192";
  margin-left: 0.45em;
  color: var(--gold-deep);
}

.nav-dropdown-finder .nav-dropdown-finder-sub {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.nav-dropdown .nav-dropdown-finder:hover,
.nav-dropdown .nav-dropdown-finder:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.nav-dropdown .nav-dropdown-finder:hover .nav-dropdown-finder-title::after,
.nav-dropdown .nav-dropdown-finder:focus-visible .nav-dropdown-finder-title::after {
  color: var(--gold);
}

.nav-dropdown .nav-dropdown-finder:hover .nav-dropdown-finder-sub,
.nav-dropdown .nav-dropdown-finder:focus-visible .nav-dropdown-finder-sub {
  color: rgba(255, 253, 248, 0.82);
}

/* The mobile menu's finder card is styled with the rest of the mobile menu
   in 20-components.css. */

/* ---- Responsive + motion ----------------------------------------------- */

@media (max-width: 900px) {
  .finder-cta-button {
    width: min(360px, 100%);
  }
}

@media (max-width: 520px) {
  .finder-atlas-inner,
  .finder-consult-inner {
    padding-inline: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .finder-rail-item,
  .finder-match-link,
  .finder-match-media img,
  .finder-cta-button,
  .finder-cta-button span,
  [data-finder-mode="accordion"] .finder-panel-body,
  [data-finder-mode="accordion"] .finder-panel-indicator::before,
  [data-finder-mode="accordion"] .finder-panel-indicator::after {
    transition: none;
  }

  [data-finder-mode="atlas"] .finder-panel.is-active {
    animation: none;
  }

  .finder-match-link:hover .finder-match-media img {
    transform: none;
  }
}
/*
 * Blog / editorial article styling.
 * Introduced with the first blog article (botox-for-depression-research).
 * Reuses the site tokens (--green, --gold, --border, --muted, --serif,
 * --display) and composes with .route-shell.narrow + .content-block for the
 * body measure and typography; only adds article-specific chrome here.
 */

.article-hero {
  width: min(760px, 100%);
  margin: 0 auto 2.6rem;
  text-align: center;
}

.article-hero h1 {
  margin: 0.4rem 0 1.1rem;
  color: var(--green);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
}

.article-standfirst {
  margin: 0 auto 1.6rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.55;
}

.article-byline {
  margin: 0;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.article-byline strong {
  color: #171717;
  font-weight: 700;
}

/* Draft / pending-review notice. Remove the element (and page noindex) once a
 * luma physician has reviewed and the byline is filled in. */
.article-note {
  width: min(900px, 100%);
  margin: 0 auto 2rem;
  padding: 1rem 1.2rem;
  background: #f4ead0;
  border: 1px solid #e6d3a2;
  border-left: 4px solid var(--gold);
  color: #4a4636;
  font-size: 0.92rem;
  line-height: 1.55;
}

.article-note strong {
  color: #3d3a2c;
}

/* Disclaimer + crisis callout. Prominence is deliberate (CPSA: disclaimers as
 * prominent as the rest of the message). */
.article-callout {
  margin: 0 0 1.8rem;
  padding: 1.25rem 1.4rem;
  background: #f1f4ef;
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  color: #1f2a22;
}

.article-callout > :first-child {
  margin-top: 0;
}

.article-callout > :last-child {
  margin-bottom: 0;
}

.article-callout h2 {
  margin: 0 0 0.6rem;
  color: var(--green);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.15;
}

.article-callout p {
  font-size: 0.98rem;
  line-height: 1.62;
}

.article-callout--crisis {
  border-left-color: var(--gold);
}

.article-crisis-line {
  font-weight: 700;
}

/* Key-takeaways card. */
.article-takeaways {
  margin: 1.5rem 0 0;
  padding: 1.4rem 1.6rem;
  background: #f7f5ef;
  border: 1px solid var(--border);
}

.article-takeaways h2 {
  margin: 0 0 0.8rem;
}

.article-takeaways ul {
  margin: 0;
  padding-left: 1.2rem;
}

.article-takeaways li {
  margin-bottom: 0.6rem;
}

.article-takeaways li:last-child {
  margin-bottom: 0;
}

/* Reference list — smaller, with a hanging indent for readability. */
.article-refs {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: ref;
}

.article-refs li {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 2rem;
  color: #3a3a3a;
  font-size: 0.86rem;
  line-height: 1.5;
}

.article-refs li::before {
  counter-increment: ref;
  content: counter(ref) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
  font-weight: 700;
}

.article-refs cite {
  font-style: italic;
}

.article-refs .doi {
  color: var(--muted);
  word-break: break-word;
}

.article-review-footnote {
  margin-top: 2.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
/* Skin Shop discovery: search, brand/type filters, grid-list view toggle,
   empty state, and the "Pair products with your treatments" shop links.

   One DOM, two presentations. The controls live in .shop-rail inside
   .shop-browse. Below 1100px the rail is a slim sticky toolbar above the grid
   (search + Filters disclosure + view toggle on one row; the Brand/Type chip
   groups live in .shop-rail-panels, collapsed until the Filters button adds
   .is-open). From 1100px up, .shop-browse becomes a two-column layout and the
   rail is a sticky sidebar with the panels always expanded as vertical option
   lists with per-option counts.

   Everything stays hidden until script.js adds .is-ready / .is-enhanced, so
   the grid renders every product with JS off. Sticky offsets assume the
   condensed site header — the header condenses after 24px of scroll, long
   before the grid is reached. */

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.product-shop-page {
  --shop-sticky-top: 87px;
}

@media (max-width: 900px) {
  .product-shop-page {
    --shop-sticky-top: 73px;
  }
}

/* ---- Shared controls ---- */

.shop-filter {
  display: none;
  width: 100%;
  margin: 0;
  gap: 0.75rem;
}

.shop-filter.is-ready {
  display: grid;
}

.shop-filter-search {
  position: relative;
  display: flex;
  align-items: center;
}

.shop-filter-search-icon {
  position: absolute;
  left: 1.1rem;
  display: grid;
  place-items: center;
  color: var(--gold);
  pointer-events: none;
}

.shop-filter-input {
  width: 100%;
  min-height: 48px;
  padding: 0 1.15rem 0 2.85rem;
  border: 1px solid rgba(188, 167, 113, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1.2;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.shop-filter-input::placeholder {
  color: var(--stone);
}

.shop-filter-input:focus-visible {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58, 74, 63, 0.16);
}

.shop-view-toggle {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(188, 167, 113, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  justify-self: end;
}

.shop-view-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.25rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  font-family: var(--serif);
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.shop-view-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(58, 74, 63, 0.16);
}

.shop-view-button.is-active {
  background: var(--green);
  color: var(--white);
}

.shop-rail-label {
  margin: 0;
  color: #b18a49;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0.4rem 1.05rem;
  border: 1px solid rgba(188, 167, 113, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-family: var(--serif);
  font-size: 0.88rem;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.shop-chip:hover,
.shop-chip:focus-visible {
  border-color: var(--green);
  color: var(--green-dark);
}

.shop-chip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(58, 74, 63, 0.16);
}

.shop-chip.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.shop-chip-count {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 400;
}

.shop-rail-brand-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}

.shop-rail-brand-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.shop-rail-brand-link:hover,
.shop-rail-brand-link:focus-visible {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.shop-rail-brand-link:hover::after,
.shop-rail-brand-link:focus-visible::after {
  transform: translateX(3px);
}

.shop-rail-reset {
  justify-self: start;
  border: 0;
  padding: 0;
  background: none;
  color: var(--green);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.shop-rail-reset:hover,
.shop-rail-reset:focus-visible {
  color: var(--green-dark);
}

/* The hidden attribute must win over the display values set above. */
.shop-rail-brand-link[hidden],
.shop-rail-reset[hidden] {
  display: none;
}

.shop-filter-count {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.shop-filter-count:empty {
  display: none;
}

.product-card.is-filtered-out {
  display: none;
}

.shop-empty {
  display: none;
  margin: 0.75rem 0 0;
  padding: 2.6rem 1.5rem;
  border: 1px dashed rgba(188, 167, 113, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  text-align: center;
  font-size: 1rem;
  line-height: 1.55;
}

.shop-empty.is-visible {
  display: block;
}

.shop-empty-clear {
  border: 0;
  padding: 0;
  background: none;
  color: var(--green);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.shop-empty-clear:hover,
.shop-empty-clear:focus-visible {
  color: var(--green-dark);
}

/* ---- Toolbar mode (below the sidebar breakpoint) ---- */

@media (max-width: 1099px) {
  .shop-browse.is-enhanced .shop-rail {
    position: sticky;
    top: calc(var(--shop-sticky-top) + 0.4rem);
    z-index: 12;
    margin: 0 0 1.7rem;
  }

  .shop-filter.is-ready {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 0.55rem;
    row-gap: 0;
    align-items: center;
    padding: 0.6rem 0.7rem;
    border: 1px solid rgba(188, 167, 113, 0.34);
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.94);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 26px rgba(52, 70, 58, 0.05);
    transition: box-shadow 200ms ease, border-color 200ms ease;
  }

  .shop-filter.is-ready.is-stuck {
    border-color: rgba(188, 167, 113, 0.52);
    box-shadow: 0 18px 40px rgba(52, 70, 58, 0.14);
  }

  .shop-filter-input {
    min-height: 44px;
  }

  .shop-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.25rem 1rem;
    border: 1px solid rgba(188, 167, 113, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--green);
    font-family: var(--serif);
    font-size: 0.88rem;
    line-height: 1;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
  }

  .shop-filter-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 74, 63, 0.16);
  }

  .shop-filter.is-open .shop-filter-toggle {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
  }

  .shop-filter-toggle-count {
    display: inline-grid;
    place-items: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: #b18a49;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
  }

  .shop-filter-toggle-count[hidden] {
    display: none;
  }

  /* Disclosure panel: the 0fr -> 1fr grid-row trick animates open/closed
     without measuring heights. visibility flips after the collapse so the
     chips leave the tab order while hidden. */
  .shop-rail-panels {
    grid-column: 1 / -1;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 240ms ease;
  }

  .shop-filter.is-open .shop-rail-panels {
    grid-template-rows: 1fr;
  }

  .shop-rail-panels-inner {
    display: grid;
    gap: 0.95rem;
    min-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: visibility 0s linear 240ms;
  }

  .shop-filter.is-open .shop-rail-panels-inner {
    max-height: min(60dvh, 520px);
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: visible;
    transition-delay: 0s;
  }

  .shop-rail-panels-inner > :first-child {
    padding-top: 0.95rem;
  }

  .shop-rail-group {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
  }

  .shop-rail-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .shop-chip {
    min-height: 38px;
  }

  .shop-chip-count {
    display: none;
  }
}

@media (max-width: 559px) {
  .shop-view-button {
    padding: 0.25rem 0.7rem;
  }

  .shop-view-button-text {
    display: none;
  }

  .shop-filter-toggle {
    padding: 0.25rem 0.8rem;
  }

  .shop-filter-toggle-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-rail-panels,
  .shop-rail-panels-inner {
    transition: none;
  }
}

/* ---- Sidebar mode ---- */

@media (min-width: 1100px) {
  .shop-browse.is-enhanced {
    display: grid;
    grid-template-columns: 246px minmax(0, 1fr);
    column-gap: 2.75rem;
    align-items: start;
  }

  .shop-browse.is-enhanced .shop-rail {
    position: sticky;
    top: calc(var(--shop-sticky-top) + 0.9rem);
    max-height: calc(100dvh - var(--shop-sticky-top) - 1.8rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(188, 167, 113, 0.45) transparent;
    padding: 0.15rem 0.35rem 1rem 0.15rem;
  }

  .shop-filter {
    gap: 0.95rem;
  }

  /* The Filters disclosure only exists in toolbar mode; the sidebar shows
     the panels permanently. */
  .shop-filter-toggle {
    display: none;
  }

  .shop-rail-panels {
    display: grid;
  }

  .shop-rail-panels-inner {
    display: grid;
    gap: 0.95rem;
  }

  .shop-view-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-self: stretch;
  }

  .shop-rail-group {
    display: grid;
    gap: 0.5rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(188, 167, 113, 0.32);
  }

  .shop-rail-options {
    display: grid;
    gap: 2px;
  }

  .shop-rail .shop-chip {
    position: relative;
    justify-content: space-between;
    width: 100%;
    min-height: 32px;
    padding: 0.24rem 0.55rem 0.24rem 0.9rem;
    border: 0;
    border-radius: 6px;
    background: transparent;
    font-size: 0.88rem;
    text-align: left;
    white-space: normal;
  }

  .shop-rail .shop-chip::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 58%;
    border-radius: 2px;
    background: var(--gold);
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 160ms ease;
  }

  .shop-rail .shop-chip:hover,
  .shop-rail .shop-chip:focus-visible {
    background: rgba(188, 167, 113, 0.14);
    color: var(--green-dark);
  }

  .shop-rail .shop-chip.is-active {
    background: rgba(58, 74, 63, 0.08);
    color: var(--green-dark);
    font-weight: 700;
  }

  .shop-rail .shop-chip.is-active::before {
    opacity: 1;
  }

  .shop-rail .shop-chip.is-active .shop-chip-count {
    color: #b18a49;
    font-weight: 700;
  }
}

/* ---- View toggle: list rows (default card layout is stacked tiles) ---- */

@media (min-width: 521px) {
  .product-shop-page .product-grid[data-view="list"] {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.95rem;
  }

  .product-shop-page .product-grid[data-view="list"] .product-card {
    grid-template-columns: clamp(108px, 15vw, 148px) minmax(0, 1fr);
    grid-template-rows: none;
    align-items: center;
    gap: 1.35rem;
  }

  .product-shop-page .product-grid[data-view="list"] .product-card h3 {
    font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  }

  .product-shop-page .product-grid[data-view="list"] .product-card p {
    font-size: 0.92rem;
  }
}

/* ---- View toggle: compact tiles on small screens (default is rows) ---- */

@media (max-width: 520px) {
  .product-shop-page .product-grid[data-view="grid"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.05rem 0.85rem;
  }

  .product-shop-page .product-grid[data-view="grid"] .product-card {
    grid-template-columns: none;
    grid-template-rows: auto 1fr;
    align-items: start;
    gap: 0.7rem;
  }

  .product-shop-page .product-grid[data-view="grid"] .product-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }

  .product-shop-page .product-grid[data-view="grid"] .product-card p {
    display: none;
  }

  .product-shop-page .product-grid[data-view="grid"] .product-card .product-price {
    display: block;
    margin-top: 0.2rem;
  }
}

@media (max-width: 760px) {
  .route-page--gives-back .route-hero {
    min-height: clamp(390px, 82vw, 470px);
  }

  .route-page--gives-back .route-hero img {
    object-position: 28% 50%;
  }

  .route-page--gives-back .route-hero-copy {
    width: min(58vw, 290px);
    margin-left: 1.4rem;
    margin-right: auto;
    text-align: left;
  }

  .route-page--gives-back .route-hero h1 {
    font-size: clamp(2.7rem, 10.5vw, 3.6rem);
  }

  .route-page--gives-back .route-hero p {
    margin-right: 0;
    margin-left: 0;
    font-size: 0.98rem;
    line-height: 1.42;
  }
}

.route-hero.no-image::after {
  display: none;
}

.route-hero-copy {
  position: relative;
  z-index: 1;
  width: min(920px, 88vw);
  padding: 4rem 0;
}

.route-kicker {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.route-hero p {
  width: min(760px, 100%);
  margin: 1.45rem auto 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.route-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.2rem;
  margin-top: 1.7rem;
}

.treatment-page .route-shell {
  width: min(1180px, calc(100% - 3rem));
}

.treatment-hero {
  min-height: clamp(440px, 44vw, 640px);
  place-items: end center;
  background: #2f3d34;
  color: var(--white);
  text-align: left;
}

.treatment-hero.no-image {
  min-height: clamp(340px, 31vw, 460px);
  place-items: center;
  background:
    linear-gradient(135deg, rgba(52, 70, 58, 0.96), rgba(94, 96, 77, 0.92)),
    #34463a;
  text-align: center;
}

.treatment-hero-image {
  object-position: var(--hero-position, 50% 50%);
}

.treatment-hero-video {
  object-position: var(--hero-position, 50% 50%);
}

.treatment-video-hero {
  background: #2f3d34 url("/assets/fingerprinted/routes/radiesse/treatment-poster.452600177544.webp") center / cover no-repeat;
}

.video-hero-toggle {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(47, 61, 52, 0.72);
  color: var(--white);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.video-hero-toggle[hidden] {
  display: none;
}

.video-hero-toggle:hover,
.video-hero-toggle:focus-visible {
  border-color: var(--white);
  background: rgba(47, 61, 52, 0.88);
  transform: translateY(-1px);
}

.video-hero-toggle-icon {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
}

.video-hero-toggle-icon::before,
.video-hero-toggle-icon::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
}

.video-hero-toggle-icon::before {
  left: 0.22rem;
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.72rem solid currentColor;
}

.video-hero-toggle-icon::after {
  display: none;
}

.video-hero-toggle[data-video-state="playing"] .video-hero-toggle-icon::before,
.video-hero-toggle[data-video-state="playing"] .video-hero-toggle-icon::after {
  width: 0.26rem;
  height: 1rem;
  border: 0;
  background: currentColor;
}

.video-hero-toggle[data-video-state="playing"] .video-hero-toggle-icon::before {
  left: 0.18rem;
}

.video-hero-toggle[data-video-state="playing"] .video-hero-toggle-icon::after {
  right: 0.18rem;
  display: block;
}

.treatment-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(47, 61, 52, 0.9) 0%,
      rgba(47, 61, 52, 0.64) 45%,
      rgba(47, 61, 52, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(47, 61, 52, 0.58) 0%,
      rgba(47, 61, 52, 0) 52%
    );
}

.treatment-hero.no-image::after {
  display: none;
}

.treatment-hero .route-hero-copy {
  width: min(1120px, calc(100% - 3rem));
  padding: 5.25rem 0;
}

.treatment-hero.no-image .route-hero-copy {
  width: min(900px, calc(100% - 3rem));
}

.treatment-hero .route-kicker,
.treatment-hero h1,
.treatment-hero p {
  color: var(--white);
}

.treatment-hero .route-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.treatment-hero h1 {
  max-width: 920px;
}

.treatment-hero p {
  margin-right: 0;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.92);
}

.treatment-hero.no-image p {
  margin-right: auto;
  margin-left: auto;
}

.treatment-hero .route-hero-actions {
  justify-content: flex-start;
}

.treatment-hero.no-image .route-hero-actions {
  justify-content: center;
}

.treatment-hero .pill-button {
  border-color: var(--white);
  background: var(--white);
  color: var(--green);
}

.treatment-hero .pill-button:hover,
.treatment-hero .pill-button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green-dark);
}

.treatment-hero .secondary-link {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 0.22em;
}

.treatment-page--lip {
  --hero-position: 50% 46%;
}

.treatment-page--microneedling {
  --hero-position: 52% 45%;
}

.treatment-page--dermal-filler,
.treatment-page--prp-prf {
  --hero-position: 50% 42%;
}

.treatment-page--botox {
  --hero-position: 56% 42%;
}

.treatment-page--sculptra {
  --hero-position: 50% 50%;
}

.treatment-page--lasers {
  --hero-position: 50% 39%;
}

.treatment-page--pro-yellow {
  --hero-position: 50% 50%;
}

.treatment-page--facials {
  --hero-position: 56% 10%;
}

.route-shell {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 3.5rem 0 6rem;
}

.route-shell.narrow {
  width: min(860px, calc(100% - 3rem));
}

.content-block {
  width: min(900px, 100%);
  margin: 0 auto 2.6rem;
  color: #171717;
}

.content-block h1,
.content-block h2,
.content-block h3 {
  margin: 2.5rem 0 1rem;
  color: var(--green);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
}

.content-block h1 {
  font-size: clamp(2.8rem, 4.7vw, 5rem);
  text-align: center;
}

.content-block h2 {
  font-size: clamp(2.25rem, 3.4vw, 3.8rem);
}

.content-block h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
}

.content-block p,
.content-block li {
  font-size: 1rem;
  line-height: 1.65;
}

.content-block ul,
.content-block ol {
  padding-left: 1.35rem;
}

.content-block a {
  color: var(--green);
  font-weight: 700;
  text-underline-offset: 0.16em;
}

.content-block > :first-child {
  margin-top: 0;
}

.charity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin: 0 auto;
}

.charity-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffdf8;
}

.charity-logo-frame {
  display: grid;
  place-items: center;
  padding: 1.8rem;
  border-bottom: 1px solid var(--border);
  background: #f8f5ed;
}

.charity-logo-frame img {
  display: block;
  width: 100%;
  max-width: 360px;
  max-height: 160px;
  object-fit: contain;
}

.charity-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.6rem;
}

.charity-card h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 400;
  line-height: 1.12;
}

.charity-card p {
  margin: 0;
  color: #171717;
  font-size: 1rem;
  line-height: 1.65;
}

.charity-card .pill-button {
  margin-top: auto;
}

.treatment-intro-feature {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: 2.6rem;
  margin-bottom: 3rem;
}

.treatment-intro-copy {
  max-width: 640px;
}

.treatment-media-card {
  position: relative;
  margin: 0;
}

.treatment-media-card::before {
  content: "";
  position: absolute;
  inset: 1rem -0.8rem -0.8rem 1rem;
  z-index: 0;
  border: 1px solid rgba(188, 167, 113, 0.68);
  border-radius: 8px;
}

.treatment-media-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(52, 70, 58, 0.14);
}

.treatment-media-card.is-square img {
  aspect-ratio: 1 / 1;
}

.treatment-media-card.is-portrait img {
  aspect-ratio: 4 / 5;
}

.treatment-media-card.is-wide img {
  aspect-ratio: 16 / 10;
}

.treatment-page--pro-yellow .treatment-intro-feature {
  grid-template-columns: 1fr;
}

.treatment-page--pro-yellow .treatment-intro-copy {
  max-width: 820px;
}

.treatment-page--pro-yellow .pro-yellow-info-graphic {
  width: min(920px, 100%);
  justify-self: center;
}

.treatment-page--pro-yellow .pro-yellow-info-graphic::before {
  display: none;
}

.treatment-page--pro-yellow .pro-yellow-info-graphic img {
  aspect-ratio: 1206 / 935;
  object-fit: contain;
  height: auto;
  background: #ffffff;
}

.treatment-page--smooth-brilliant .smooth-brilliant-intro-media img {
  object-position: 50% 48%;
}

.smooth-brilliant-context-media {
  width: min(420px, 100%);
  margin: -0.25rem auto 3rem;
}

.smooth-brilliant-context-media img {
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 34px rgba(52, 70, 58, 0.12);
}

.treatment-page--microneedling .microneedling-intro-media img {
  object-position: 50% 50%;
}

.treatment-page--botox .treatment-intro-feature {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.86fr);
}

.treatment-page--botox .botox-intro-media img {
  aspect-ratio: 5 / 4;
  object-position: 50% 50%;
}

.facials-intro-copy-column {
  display: grid;
  align-content: center;
  gap: 2.8rem;
}

.facials-intro-copy-column .facials-callout {
  width: 100%;
  margin: 0;
}

.treatment-page--facials .facials-intro-media img {
  aspect-ratio: auto;
}

.treatment-media-grid {
  width: min(1080px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.8rem auto 3.2rem;
}

.treatment-media-grid .treatment-media-card::before {
  display: none;
}

.treatment-media-grid .treatment-media-card img {
  height: 100%;
  min-height: 250px;
  box-shadow: none;
}

.treatment-media-grid--duo {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
}

.treatment-media-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

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

.treatment-proof-block {
  width: min(1080px, 100%);
}

.treatment-page .patient-panel {
  background: var(--white);
  box-shadow: 0 14px 34px rgba(52, 70, 58, 0.07);
}

.treatment-page .patient-panel::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  display: block;
  background: #c9a198;
}

.treatment-page .quick-facts div {
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 8px;
  background: #fbfaf7;
}

.treatment-page .route-video {
  width: min(1080px, 100%);
  margin-bottom: 3.4rem;
}

.treatment-page .route-video video {
  box-shadow: 0 20px 55px rgba(52, 70, 58, 0.13);
}

.facials-callout {
  width: min(1040px, 100%);
  margin-bottom: 3rem;
  padding: 1.15rem 0 1.15rem 1.3rem;
  border-left: 3px solid var(--gold);
}

.facials-callout p {
  max-width: 850px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.route-video {
  width: min(960px, 100%);
  margin: 0 auto 3rem;
}

.route-video video {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f3f2ee;
  box-shadow: 0 18px 45px rgba(52, 70, 58, 0.12);
}

.video-transcript {
  margin-top: 0.95rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid var(--border);
  color: #171717;
}

.video-transcript summary {
  color: var(--green);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
}

.video-transcript p {
  margin: 0.75rem 0 0.9rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.patient-grid,
.home-info-grid,
.home-service-grid,
.related-link-grid,
.product-care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-info-grid,
.home-service-grid,
.product-care-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.patient-panel,
.home-info-panel,
.home-service-card,
.related-link-card,
.product-care-panel {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfaf7;
}

.home-service-card,
.related-link-card {
  color: var(--green);
  text-decoration: none;
}

.home-service-card:hover,
.home-service-card:focus-visible,
.related-link-card:hover,
.related-link-card:focus-visible {
  border-color: var(--green);
}

.patient-panel h3,
.home-info-panel h3,
.home-service-card h3,
.related-link-card h3,
.product-care-panel h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.16;
}

.patient-panel p,
.home-info-panel p,
.home-service-card p,
.related-link-card p,
.product-care-panel p {
  margin: 0;
  color: #171717;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.quick-facts div {
  padding: 1rem;
  border-top: 1px solid var(--border);
  color: #171717;
}

.quick-facts strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

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

.faq-list summary {
  color: var(--green);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
}

.faq-list p {
  margin: 0.7rem 0 0;
}

.related-services {
  margin-top: 3.2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.home-section {
  padding: clamp(4.4rem, 7vw, 6.8rem) 1.5rem;
}

#explore-treatments {
  scroll-margin-top: 7rem;
}

.home-section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.home-section h2 {
  margin: 0 0 1.1rem;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(2.9rem, 4.6vw, 4.9rem);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
  letter-spacing: 0;
}

.home-section > .home-section-inner > p {
  max-width: 780px;
  margin: 0 auto 2rem;
  color: #171717;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.home-plan {
  background: #f7f4ee;
}

.home-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2.2rem;
}

.home-plan-card {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(188, 167, 113, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(52, 70, 58, 0.06);
}

.home-plan-copy {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.75rem;
  padding: 1.65rem 1.45rem 1.75rem;
  text-align: center;
}

.home-plan-icon {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
}

.home-plan-card h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.16;
}

.home-plan-card p {
  margin: 0;
  color: #171717;
  font-size: 0.94rem;
  line-height: 1.58;
}

.home-plan-card img {
  display: block;
  width: 100%;
  /* height:auto so the intrinsic width/height attributes set ratio, not size */
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-eyebrow {
  margin: 0 auto 0.7rem;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.home-section > .home-section-inner > .section-eyebrow {
  max-width: none;
  margin: 0 auto 0.7rem;
  color: var(--gold-deep);
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: center;
}

.newsletter .section-eyebrow {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-ornament {
  position: relative;
  display: block;
  width: min(430px, 72vw);
  height: 36px;
  margin: 0.55rem auto 1.35rem;
  background:
    linear-gradient(var(--gold), var(--gold)) left 50% / calc(50% - 36px) 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 50% / calc(50% - 36px) 1px no-repeat;
}

.section-ornament::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: repeating-conic-gradient(
    from -4deg,
    transparent 0deg 6deg,
    var(--gold) 6deg 10deg,
    transparent 10deg 18deg
  );
  -webkit-mask: radial-gradient(circle, transparent 0 5px, #000 5.5px 16px, transparent 16.5px);
  mask: radial-gradient(circle, transparent 0 5px, #000 5.5px 16px, transparent 16.5px);
}

.section-ornament::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: #fffdf9;
}

.treatment-explorer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fffdfa 0%, #f8f4ed 100%);
}

.treatment-explorer .home-section-inner {
  width: min(1260px, 100%);
}

.treatment-explorer h2 {
  margin-bottom: 0;
  font-size: clamp(4rem, 7vw, 6.8rem);
}

.treatment-explorer .home-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.treatment-explorer .home-service-card {
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 1.35rem;
  min-height: 166px;
  padding: 1.45rem;
  border-color: rgba(188, 167, 113, 0.3);
  background: rgba(255, 255, 255, 0.66);
  color: var(--green);
  box-shadow: 0 14px 32px rgba(52, 70, 58, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.treatment-explorer .home-service-card:hover,
.treatment-explorer .home-service-card:focus-visible {
  border-color: rgba(58, 74, 63, 0.45);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(52, 70, 58, 0.08);
  transform: translateY(-2px);
}

.home-service-icon {
  width: 72px;
  height: 72px;
}

.home-service-copy {
  display: grid;
  gap: 0.65rem;
}

.treatment-explorer .home-service-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

.treatment-explorer .home-service-card p {
  max-width: 330px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.home-service-link {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
}

.treatment-consult {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.4rem;
  padding: 1.35rem 1.6rem;
  border: 1px solid rgba(188, 167, 113, 0.3);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(58, 74, 63, 0.08), rgba(255, 255, 255, 0.72));
}

.treatment-consult-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
}

.treatment-consult h3 {
  margin: 0 0 0.25rem;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 400;
}

.treatment-consult p {
  margin: 0;
  color: #171717;
  font-size: 0.96rem;
  line-height: 1.5;
}

.treatment-consult .pill-button {
  min-height: 54px;
  border-width: 1px;
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  letter-spacing: 0;
  white-space: nowrap;
}

.treatment-consult .pill-button::after {
  content: "\2192";
  margin-left: 1.1rem;
  color: var(--gold);
}

.team-shell {
  width: min(1180px, calc(100% - 3rem));
}

.team-intro {
  width: min(850px, 100%);
  text-align: center;
}

.team-roster-note {
  color: var(--green);
  font-weight: 700;
}

.practitioner-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 3.4rem;
}

.practitioner-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  scroll-margin-top: calc(var(--top-chrome-height) + 1rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.practitioner-card-media {
  min-height: 100%;
  background: #f3f2ee;
}

.practitioner-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 10 / 13;
  object-fit: cover;
}

.practitioner-card-body {
  padding: 2rem;
}

.practitioner-card h3 {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.08;
}

.practitioner-role {
  margin: 0.45rem 0 1.1rem;
  color: var(--green);
  font-weight: 700;
}

.practitioner-card p {
  font-size: 1rem;
  line-height: 1.62;
}

.practitioner-services {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.practitioner-services p {
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-weight: 700;
}

.practitioner-services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.practitioner-services a {
  color: var(--green);
  font-weight: 700;
  text-underline-offset: 0.16em;
}

.practitioner-book {
  margin: 1.5rem 0 0;
}

.practitioner-book .pill-button {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.practitioner-book .pill-button:hover,
.practitioner-book .pill-button:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.content-block th,
.content-block td {
  border-bottom: 1px solid var(--border);
  padding: 0.8rem;
  text-align: left;
  vertical-align: top;
}

.route-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.4rem;
}

.route-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f2ee;
}

.route-gallery img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: block;
  object-fit: cover;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--green);
}

.cta-band p {
  margin: 0;
  font-size: 1.1rem;
}

.contact-hero {
  background: #efeee9;
}

.contact-hero img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 50% 52%;
}

.contact-section,
.contact-intro {
  padding: 4.8rem 1.5rem;
}

.contact-intro {
  padding-bottom: 2.6rem;
}

.contact-section-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.contact-intro-copy {
  width: min(820px, 100%);
  text-align: center;
}

.contact-intro h1,
.contact-section h2,
.contact-band h2 {
  margin: 0 0 1.25rem;
  color: var(--green);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
}

.contact-intro h1 {
  color: #000;
  font-size: 5rem;
}

.contact-section h2,
.contact-band h2 {
  font-size: 3.9rem;
}

.contact-intro p,
.contact-section p,
.contact-band p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-intro p:last-child,
.contact-section p:last-child,
.contact-band p:last-child {
  margin-bottom: 0;
}

.contact-section a,
.contact-band a {
  font-weight: 700;
  text-underline-offset: 0.14em;
}

.route-page--contact a[href^="tel:"] {
  white-space: nowrap;
}

.contact-map-section {
  padding-top: 1.2rem;
}

.contact-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 2rem;
  align-items: start;
}

.contact-map-panel h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-map-panel iframe {
  display: block;
  width: 100%;
  min-height: 450px;
  aspect-ratio: 16 / 9;
  background: #e4e2dc;
}

.contact-map-link {
  margin-top: 0.85rem;
  text-align: center;
}

.contact-map-panel address,
.contact-hours-list {
  width: min(100%, 720px);
  margin-right: auto;
  margin-left: auto;
}

.contact-map-panel address {
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(188, 167, 113, 0.5);
  color: var(--green);
  font-style: normal;
  text-align: center;
}

.contact-hours-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1.5rem;
  margin-top: 1.25rem;
}

.contact-hours-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(188, 167, 113, 0.35);
  color: var(--green);
  font-size: 0.98rem;
  line-height: 1.25;
}

.contact-hours-row dt,
.contact-hours-row dd {
  margin: 0;
}

.contact-hours-row dt {
  font-weight: 700;
}

.contact-parking {
  display: grid;
  gap: 2.1rem;
}

.contact-parking img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: 50% 46%;
}

.contact-parking h2 {
  margin-bottom: 1.25rem;
  color: #000;
  font-size: 2.85rem;
}

.contact-band {
  padding: 5.6rem 1.5rem;
  background: var(--green);
  color: var(--white);
  text-align: center;
}

.contact-band h2 {
  color: var(--white);
}

.contact-returning h2 {
  font-size: 4.25rem;
}

.contact-returning p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.pill-button-light {
  margin-top: 1.45rem;
  border-color: var(--white);
  color: var(--white);
}

.pill-button-light:hover,
.pill-button-light:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--green);
}

.contact-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 4rem;
  align-items: start;
}

.contact-new-patient h2,
.contact-referral h2 {
  font-size: 4rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.contact-form label,
.contact-form span {
  display: block;
}

.contact-form span {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.35;
}

.contact-form em {
  color: var(--stone);
  font-style: normal;
  font-size: 0.88em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfcac0;
  background: #fbfaf7;
  color: #111;
}

.contact-form input {
  min-height: 52px;
  padding: 0.75rem 0.9rem;
}

.contact-form textarea {
  min-height: 160px;
  padding: 0.9rem;
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid rgba(188, 167, 113, 0.45);
  outline-offset: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-form .pill-button {
  justify-self: start;
  min-height: 48px;
}

.contact-form .form-message {
  min-height: 1.45rem;
  margin: -0.35rem 0 0;
  color: var(--green);
  font-weight: 700;
}

/* Reserve the Turnstile widget's normal size so it doesn't shift the form
   when it renders. */
.contact-form .cf-turnstile {
  min-height: 65px;
}

.contact-faq {
  text-align: left;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.contact-faq h2 {
  margin-top: 1rem;
}

.contact-faq-list {
  display: grid;
}

.contact-faq-list details {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-faq-list details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-faq-list summary {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  gap: 1.2rem;
  align-items: baseline;
  padding: 1.45rem 0;
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.2;
  list-style: none;
}

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

.contact-faq-list summary::before {
  content: "+";
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.contact-faq-list details[open] summary::before {
  content: "-";
}

.contact-faq-list p {
  max-width: 780px;
  margin: -0.4rem 0 1.35rem 2.45rem;
  color: rgba(255, 255, 255, 0.92);
}

.contact-referral {
  min-height: 620px;
}

.contact-two-column--wide {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.shop-intro {
  width: min(780px, 100%);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.shop-intro h2,
.shop-section-heading h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(2.15rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
}

.shop-intro p:not(.route-kicker),
.shop-section-heading p {
  margin: 1rem auto 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.shop-intro .secondary-link {
  margin-top: 0.85rem;
}

.shop-section-heading {
  margin-bottom: 2.1rem;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.35rem;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.9rem;
  color: #111;
  text-decoration: none;
}

.product-card-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f2ee;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 1rem;
}

.product-card-media--placeholder img {
  padding: 28%;
  opacity: 0.42;
}

.product-card h3 {
  margin: 0 0 0.45rem;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.16;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-price {
  margin-top: 0.65rem;
  color: #111;
  font-weight: 700;
}

.product-card .product-price {
  color: #111;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.product-detail-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 2.4rem;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 700;
}

.product-detail-nav a {
  text-underline-offset: 0.15em;
}

.product-detail-nav span {
  color: var(--stone);
  font-weight: 400;
}

/* The brand pack shots arrive on slightly different whites, so the photo is
   blended (multiply) into one warm gradient surface instead of sitting as a
   mismatched white rectangle on a flat grey box. */
.product-detail-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(188, 167, 113, 0.26);
  border-radius: 18px;
  background: linear-gradient(160deg, #fdfcf8, #f1ebdf);
  box-shadow: 0 20px 44px rgba(52, 70, 58, 0.07);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-detail-media--placeholder img {
  padding: 28%;
  opacity: 0.42;
}

.product-detail-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.product-detail-thumb {
  width: clamp(64px, 7vw, 84px);
  aspect-ratio: 1 / 1;
  padding: 0.45rem;
  border: 1px solid rgba(188, 167, 113, 0.3);
  border-radius: 12px;
  background: #fbf8f1;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.product-detail-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-detail-thumb:hover,
.product-detail-thumb:focus-visible {
  border-color: rgba(58, 74, 63, 0.45);
  transform: translateY(-1px);
}

.product-detail-thumb[aria-current="true"] {
  border-color: var(--green);
  box-shadow: 0 6px 16px rgba(52, 70, 58, 0.12);
}

/* On phones the single-column square image otherwise fills the first viewport
   and pushes the product name, price, and Add-to-bag below the fold. Shrink
   the square box (width-capped so the photo keeps filling it edge to edge)
   so the buy-box sits on the first screen. Tablet/desktop is unchanged. */
@media (max-width: 520px) {
  .product-detail-media {
    max-width: min(100%, 44vh);
    margin-inline: auto;
  }

  .product-detail-thumbs {
    justify-content: center;
  }
}

.product-detail-copy h1 {
  margin: 0 0 1rem;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  font-weight: 400;
  line-height: 1.04;
}

.product-detail-copy p {
  line-height: 1.62;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
  color: var(--green);
}

.product-detail-shipping-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.product-detail-shipping-note a {
  color: inherit;
  text-underline-offset: 0.18em;
}

.product-detail-shipping-note a:hover,
.product-detail-shipping-note a:focus-visible {
  color: var(--green);
}

.product-key-ingredients {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 2.2rem;
}

.product-key-ingredients strong {
  color: var(--green);
}

@media (max-width: 760px) {
  .product-key-ingredients {
    grid-template-columns: 1fr;
  }
}

.product-inci {
  margin-top: 1.7rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(188, 167, 113, 0.28);
}

.product-inci summary {
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
}

.product-inci p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.product-inci-note {
  font-style: italic;
  font-size: 0.85rem;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--green);
  font-weight: 700;
}

.not-found {
  min-height: 52vh;
  display: grid;
  place-items: center;
  padding: 5rem 1.5rem;
  text-align: center;
}

.site-footer {
  background: #14281f;
  color: var(--white);
  overflow: hidden;
}

.footer-booking {
  border-block: 1px solid rgba(188, 167, 113, 0.36);
  background: #fbfaf5;
  color: var(--green);
}

.footer-booking-inner {
  width: min(1120px, calc(100% - 2rem));
  min-height: 156px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3.4rem);
  margin: 0 auto;
}

.footer-booking-mark {
  width: 86px;
  height: auto;
  padding-right: clamp(1.2rem, 2.6vw, 2.4rem);
  border-right: 1px solid rgba(188, 167, 113, 0.54);
}

.site-footer .footer-booking p {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.35rem, 2.1vw, 1.65rem);
  line-height: 1.35;
}

.footer-booking-button {
  min-width: 190px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 0.65rem 1.8rem;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: var(--green);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-booking-button span[aria-hidden="true"] {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.footer-booking-button:hover,
.footer-booking-button:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.footer-main {
  position: relative;
  overflow: hidden;
  padding: clamp(4.8rem, 7vw, 6.2rem) clamp(1.4rem, 6vw, 5rem) clamp(2.8rem, 5vw, 4.1rem);
  background:
    radial-gradient(circle at 92% 10%, rgba(188, 167, 113, 0.1), transparent 26rem),
    linear-gradient(135deg, #20382e 0%, #14291f 52%, #0e2119 100%);
}

.footer-main::before {
  content: "";
  position: absolute;
  right: clamp(-16rem, -12vw, -9rem);
  top: clamp(-1.75rem, -1.2vw, -0.75rem);
  width: clamp(25rem, 32vw, 34rem);
  aspect-ratio: 917 / 1715;
  background: url("/assets/fingerprinted/brand/footer-botanical-overlay.62c5b5343e3b.png") center / contain no-repeat;
  opacity: 0.42;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  width: min(1260px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr) minmax(0, 1.12fr);
  gap: clamp(3rem, 7vw, 7rem);
  margin: 0 auto;
  text-align: left;
}

.footer-panel {
  max-width: 430px;
}

.footer-panel-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.footer-panel-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer h3 {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.03rem;
  line-height: 1.55;
}

.site-footer p {
  margin: 0 0 0.85rem;
}

.site-footer address {
  margin: 0;
  font-style: normal;
}

.site-footer address span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  text-underline-offset: 0.14em;
}

.footer-rule {
  width: 88px;
  height: 1px;
  margin: 2rem 0 1.55rem;
  background: rgba(188, 167, 113, 0.72);
}

.footer-note-label {
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-hours-list {
  margin: 0;
}

.footer-hours-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: baseline;
  padding: 0.58rem 0;
  border-bottom: 1px solid rgba(188, 167, 113, 0.34);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  line-height: 1.25;
}

.footer-hours-row:first-child {
  padding-top: 0;
}

.footer-hours-row dt,
.footer-hours-row dd {
  margin: 0;
}

.footer-phone {
  margin: 0 0 1.35rem;
}

.footer-phone a {
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--display);
  font-size: clamp(2.15rem, 3vw, 3rem);
  line-height: 1.1;
  text-decoration: none;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  margin: 1.7rem 0 2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

/* Separators are overlays in the column gap rather than borders on the items,
   so hiding one never changes item widths (which could re-trigger wrapping).
   script.js marks each wrapped line's first item with .is-line-start; without
   JS every non-first item keeps its pipe. */
.footer-legal > * {
  position: relative;
}

.footer-legal > :not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.9rem;
  border-left: 1px solid rgba(188, 167, 113, 0.72);
}

.footer-legal > .is-line-start::before {
  content: none;
}

.footer-legal button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.footer-social {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.footer-social svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social:hover,
.footer-social:focus-visible {
  background: var(--gold);
  color: #14281f;
}

.footer-value-strip {
  position: relative;
  z-index: 1;
  width: min(1260px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 0;
  margin: clamp(3.6rem, 6vw, 4.7rem) auto 0;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(188, 167, 113, 0.62);
}

.footer-value-item {
  min-height: 78px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
  padding: 0 1.7rem;
  border-right: 1px solid rgba(188, 167, 113, 0.34);
}

.footer-value-item:first-child {
  padding-left: 0;
}

.footer-value-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-value-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.footer-value-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-value-icon--sun img {
  width: 56px;
  height: auto;
}

.footer-wordmark {
  min-width: 156px;
  display: block;
  margin-left: 2.1rem;
  text-decoration: none;
}

.footer-wordmark img {
  width: 168px;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1080px) {
  .header-inner {
    column-gap: 1.35rem;
    grid-template-columns: minmax(118px, 140px) minmax(0, 1fr) auto;
    padding-inline: 1.25rem;
  }

  .desktop-nav > a,
  .desktop-nav > .nav-folder {
    padding-inline: 0.68rem;
  }

  .nav-title {
    font-size: 1.08rem;
  }

  .nav-subtitle {
    font-size: 0.68rem;
  }

  .header-actions {
    gap: 1rem;
  }

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

  .brand img {
    width: 140px;
  }

  .header-book {
    min-width: 104px;
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  :root {
    --top-chrome-height: 159px;
  }

  .announcement {
    min-height: 60px;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.25;
    white-space: normal;
  }

  .header-inner {
    min-height: 96px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 0.6rem;
    padding: 0.85rem 1.8rem;
  }

  .site-header.is-condensed .header-inner {
    min-height: 72px;
    padding-block: 0.55rem;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions .instagram,
  .header-actions .header-book {
    display: none;
  }

  .brand img {
    width: 96px;
  }

  .site-header.is-condensed .brand img {
    width: 80px;
  }

  .menu-toggle {
    display: grid;
    align-content: center;
  }

  .hero {
    min-height: max(560px, calc(100svh - var(--top-chrome-height)));
    align-items: end;
  }

  .hero-image {
    object-position: 62% 20%;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.3) 34%,
        rgba(255, 255, 255, 0.94) 66%,
        rgba(255, 255, 255, 0.98) 100%
      );
  }

  .hero-copy {
    width: 100%;
    gap: 0.85rem;
    padding: 14rem 1.35rem 2.1rem;
    /* Cream scrim anchored to the copy block so the headline zone stays
       readable over the photo at any viewport height; the text itself
       starts 14rem down, past the fade. */
    background:
      linear-gradient(
        180deg,
        rgba(248, 246, 241, 0) 8.75rem,
        rgba(248, 246, 241, 0.55) 11.75rem,
        rgba(248, 246, 241, 0.94) 13.5rem,
        rgba(248, 246, 241, 0.96) 100%
      );
  }

  .hero-copy h1 {
    max-width: calc(100vw - 2.7rem);
    font-size: clamp(3.25rem, 13vw, 4.7rem);
    line-height: 1;
  }

  .hero-text {
    max-width: 420px;
    font-size: 1rem;
  }

  .hero-button {
    width: min(360px, 100%);
    min-height: 56px;
    font-size: 0.78rem;
    line-height: 1.15;
    padding-inline: 1.25rem;
    text-align: center;
    white-space: normal;
  }

  .hero-actions {
    width: 100%;
  }

  .home-values-grid,
  .home-plan-grid,
  .newsletter-layout {
    grid-template-columns: 1fr;
  }

  .home-value {
    padding: 1.6rem 0;
  }

  .home-value + .home-value::before {
    top: 0;
    left: 50%;
    width: min(340px, 100%);
    height: 1px;
    transform: translateX(-50%);
  }

  .newsletter-copy {
    padding: 4rem 1.35rem;
  }

  .newsletter h2 {
    font-size: clamp(2.85rem, 10vw, 4rem);
  }

  .newsletter-form,
  .newsletter-perks,
  .treatment-consult,
  .treatment-consult-copy {
    grid-template-columns: 1fr;
  }

  .treatment-explorer .home-service-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form .pill-button {
    width: 100%;
  }

  .newsletter-perks > div + div {
    border-top: 1px solid rgba(188, 167, 113, 0.28);
    border-left: 0;
  }

  .newsletter-media {
    min-height: 520px;
  }

  .route-shell {
    width: min(100% - 2rem, 760px);
    padding: 3.5rem 0 5.25rem;
  }

  .treatment-page .route-shell {
    width: min(100% - 2rem, 760px);
  }

  .treatment-hero {
    min-height: 520px;
  }

  .treatment-hero .route-hero-copy {
    width: min(100% - 2rem, 760px);
    padding: 4.2rem 0 3.4rem;
  }

  .treatment-intro-feature {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .treatment-intro-copy {
    max-width: none;
  }

  .treatment-media-card {
    width: min(560px, 100%);
  }

  .smooth-brilliant-context-media {
    width: min(340px, 100%);
    margin-bottom: 2.6rem;
  }

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

  .team-shell {
    width: min(100% - 2rem, 760px);
  }

  .practitioner-card {
    grid-template-columns: 1fr;
  }

  .practitioner-card-media img {
    aspect-ratio: 10 / 11;
  }

  .practitioner-card-body {
    padding: 1.5rem;
  }

  .route-gallery,
  .charity-grid,
  .product-detail,
  .patient-grid,
  .home-info-grid,
  .home-service-grid,
  .related-link-grid,
  .product-care-grid,
  .quick-facts {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 1.1rem;
  }

  .route-gallery img {
    min-height: 220px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-hero img {
    height: 420px;
  }

  .contact-intro h1 {
    font-size: 4rem;
  }

  .contact-section h2,
  .contact-band h2,
  .contact-new-patient h2,
  .contact-referral h2,
  .contact-returning h2 {
    font-size: 3.2rem;
  }

  .contact-map-grid,
  .contact-two-column,
  .contact-two-column--wide,
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-two-column,
  .contact-two-column--wide,
  .contact-faq-grid {
    gap: 2.4rem;
  }

  .contact-map-panel iframe {
    min-height: 380px;
  }

  .contact-parking img {
    height: 420px;
  }

  .contact-referral {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3.4rem;
  }

  .footer-panel {
    max-width: 720px;
  }

  .footer-value-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.3rem;
  }

  .footer-value-item:nth-child(2) {
    border-right: 0;
  }

  .footer-value-item:nth-child(3) {
    padding-left: 0;
  }

  .footer-wordmark {
    grid-column: 1 / -1;
    justify-self: center;
    margin: 1.1rem 0 0;
  }

}

@media (max-width: 720px) {
  .footer-booking-inner {
    width: min(100% - 2rem, 420px);
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.25rem;
    padding: 2.35rem 0;
    text-align: center;
  }

  .footer-booking-mark {
    width: 76px;
    padding-right: 0;
    border-right: 0;
  }

  .footer-booking-button {
    min-width: 172px;
  }

  .footer-main {
    padding: 4rem 1.35rem 2.8rem;
  }

  .footer-main::before {
    right: -21.5rem;
    top: 7.5rem;
    width: 34rem;
    opacity: 0.22;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-panel {
    max-width: 100%;
  }

  .footer-panel-icon,
  .footer-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-hours-list {
    max-width: 430px;
    margin: 0 auto;
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-social {
    margin: 0 auto;
  }

  .footer-value-strip {
    grid-template-columns: 1fr;
    padding-top: 1.35rem;
  }

  .footer-value-item,
  .footer-value-item:first-child,
  .footer-value-item:nth-child(3) {
    min-height: 0;
    grid-template-columns: 54px minmax(0, 16rem);
    justify-content: center;
    padding: 1.1rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(188, 167, 113, 0.32);
    text-align: left;
  }

  .footer-value-item:nth-child(4) {
    border-bottom: 0;
  }

  .footer-wordmark {
    margin-top: 1.3rem;
  }
}

@media (max-width: 520px) {
  :root {
    --top-chrome-height: 153px;
  }

  .announcement {
    padding-inline: 1rem 2.35rem;
    font-size: 0.86rem;
  }

  .bar-close {
    right: 0.8rem;
  }

  .header-inner {
    min-height: 92px;
    padding-inline: 1.4rem;
  }

  .hero {
    min-height: max(580px, calc(100svh - var(--top-chrome-height)));
  }

  .hero-copy h1 {
    /* 16vw let "rejuvenation" overflow the padding box on ~390px screens */
    font-size: clamp(2.75rem, 14.5vw, 4.25rem);
  }

  .hero-eyebrow {
    font-size: 0.72rem;
  }

  .hero-text {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .mobile-menu-head {
    min-height: 72px;
    padding-inline: 1.05rem 1.4rem;
  }

  .mobile-nav {
    padding-inline: 1.4rem;
  }

  .mobile-actions {
    padding-inline: 1.4rem;
  }

  .treatment-image {
    aspect-ratio: 1 / 1.08;
  }

  .newsletter h2 {
    font-size: clamp(2.55rem, 11vw, 3.25rem);
  }

  .home-section {
    padding-inline: 1.2rem;
    padding-bottom: 4.8rem;
  }

  .home-values {
    padding-inline: 1.2rem;
  }

  .home-plan-copy {
    padding-inline: 1.2rem;
  }

  .treatment-explorer h2 {
    font-size: clamp(3.2rem, 15vw, 4.15rem);
  }

  .section-ornament {
    width: min(260px, 72vw);
  }

  .treatment-explorer .home-service-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 1rem;
    min-height: 0;
    padding: 1.05rem;
  }

  .home-service-icon {
    width: 58px;
    height: 58px;
  }

  .treatment-consult {
    padding: 1.2rem;
  }

  .newsletter-copy {
    padding-inline: 1.2rem;
  }

  .newsletter-media {
    min-height: 420px;
  }

  .route-hero {
    min-height: 330px;
  }

  .route-hero-copy {
    padding: 2.7rem 0;
  }

  .route-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
  }

  .route-hero p {
    font-size: 1rem;
    line-height: 1.48;
  }

  .route-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .treatment-hero .pill-button {
    width: min(280px, 100%);
  }

  .treatment-media-card::before {
    inset: 0.75rem -0.45rem -0.45rem 0.75rem;
  }

  .treatment-media-grid,
  .treatment-media-grid--duo,
  .treatment-media-grid--lip {
    grid-template-columns: 1fr;
  }

  .treatment-media-grid .treatment-media-card {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .product-card {
    grid-template-columns: minmax(94px, 34vw) 1fr;
    grid-template-rows: none;
    align-items: center;
    gap: 0.9rem;
  }

  .product-card h3 {
    font-size: clamp(1.18rem, 5.8vw, 1.45rem);
  }

  .product-card p {
    font-size: 0.9rem;
    line-height: 1.38;
  }

  .product-card .product-price {
    margin-top: 0.45rem;
  }

  .product-card-media img {
    padding: 0.45rem;
  }

  .contact-hero img {
    height: 310px;
  }

  .contact-section,
  .contact-intro,
  .contact-band {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .contact-section,
  .contact-band {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
  }

  .contact-intro {
    padding-top: 3.2rem;
    padding-bottom: 1.7rem;
  }

  .contact-intro h1 {
    font-size: 3.2rem;
  }

  .contact-section h2,
  .contact-band h2,
  .contact-new-patient h2,
  .contact-referral h2,
  .contact-returning h2 {
    font-size: 2.6rem;
  }

  .contact-map-grid,
  .contact-parking,
  .contact-two-column,
  .contact-two-column--wide,
  .contact-faq-grid {
    gap: 1.8rem;
  }

  .contact-map-panel iframe {
    min-height: 320px;
  }

  .contact-hours-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-hours-row {
    font-size: 0.95rem;
  }

  .contact-parking img {
    height: 320px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-faq-list summary {
    grid-template-columns: 1rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 1.2rem 0;
    font-size: 1.45rem;
  }

  .contact-faq-list p {
    margin-left: 1.8rem;
  }

  .site-footer .footer-booking p {
    font-size: 1.26rem;
  }

  .footer-main {
    padding-inline: 1.1rem;
  }

  .footer-phone a {
    font-size: 2rem;
  }

  .footer-hours-row {
    font-size: 0.98rem;
  }

  .footer-value-item,
  .footer-value-item:first-child,
  .footer-value-item:nth-child(3) {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.9rem;
  }

  .footer-value-icon {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 901px) and (max-height: 1060px) {
  .hero {
    min-height: max(460px, calc(100svh - var(--top-chrome-height)));
  }
}

@media (max-width: 360px) and (max-height: 640px) {
  :root {
    --top-chrome-height: 122px;
  }

  .announcement {
    min-height: 48px;
    padding-block: 0.55rem;
    font-size: 0.78rem;
  }

  .header-inner {
    min-height: 72px;
    padding: 0.55rem 1.2rem;
  }

  .brand img {
    width: 76px;
  }

  .menu-toggle {
    width: 44px;
    height: 36px;
  }

}

.membership-page {
  background: #fffdf8;
}

.membership-hero {
  min-height: clamp(430px, 33.6vw, 482px);
  border-top: 1px solid var(--gold);
  background: #f5f0e6;
}

.membership-hero img {
  object-position: 22% 49%;
}

.membership-hero::after {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 253, 248, 0) 0%,
      rgba(255, 253, 248, 0) 54%,
      rgba(255, 253, 248, 0.16) 78%,
      rgba(255, 253, 248, 0.34) 100%
    );
}

.membership-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: 96px;
  background: url("/assets/fingerprinted/routes/memberships/hero-curve.8f2cb022ed90.svg") center bottom / 100% 100% no-repeat;
}

.membership-hero .route-hero-copy {
  z-index: 3;
  justify-self: end;
  width: min(710px, 58vw);
  margin-right: clamp(3.1rem, 10.5vw, 10.3rem);
  padding: 2.1rem 0 2.75rem;
  text-align: center;
}

.membership-hero .route-kicker {
  margin-bottom: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.22em;
}

.membership-hero h1 {
  font-size: clamp(4rem, 5.5vw, 5.35rem);
  letter-spacing: 0;
}

.membership-ornament {
  position: relative;
  width: min(405px, 42vw);
  height: 26px;
  margin: 1.35rem auto 1.28rem;
  color: var(--gold);
  background:
    linear-gradient(
      90deg,
      currentColor 0 calc(50% - 28px),
      transparent calc(50% - 28px) calc(50% + 28px),
      currentColor calc(50% + 28px) 100%
    )
    center / 100% 1px no-repeat;
}

.membership-ornament::before {
  content: "\273A";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  line-height: 1;
}

.membership-hero .membership-hero-lead,
.membership-hero .membership-hero-note {
  width: min(560px, 100%);
  margin: 0 auto;
  color: #28332b;
  font-size: 1.08rem;
  line-height: 1.45;
}

.membership-hero .membership-hero-note {
  margin-top: 0.85rem;
}

.membership-hero .pill-button {
  min-width: min(320px, 100%);
  min-height: 54px;
  margin-top: 1.55rem;
  gap: 1.35rem;
  padding-inline: 2.25rem 1.75rem;
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.membership-hero .pill-button::after {
  content: "\2192";
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1;
}

.membership-shell {
  width: min(1300px, calc(100% - 4rem));
  padding: 3.05rem 0 1.45rem;
}

.membership-feature {
  display: grid;
  grid-template-columns: minmax(370px, 0.95fr) minmax(0, 2fr);
  gap: 2.85rem;
  align-items: start;
}

.membership-intro {
  position: static;
  max-width: 410px;
  padding-top: 0.85rem;
}

.membership-intro .route-kicker {
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 0.22em;
}

.membership-intro h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(2.5rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: normal;
}

.membership-intro > p:not(.route-kicker) {
  margin: 1.2rem 0 0;
  max-width: 360px;
  color: #2f3731;
  font-size: 1rem;
  line-height: 1.55;
}

.membership-intro > p:not(.route-kicker)::after {
  content: "";
  display: block;
  width: 102px;
  height: 2px;
  margin-top: 1.55rem;
  background: var(--gold);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.55rem;
  margin: 0;
}

.membership-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 296px;
  gap: 0.9rem;
  padding: 1.35rem 1.3rem 1.7rem;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(188, 167, 113, 0.34);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(58, 74, 63, 0.045);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.membership-card:hover {
  transform: translateY(-3px);
  border-color: rgba(188, 167, 113, 0.6);
  box-shadow: 0 22px 40px rgba(58, 74, 63, 0.1);
}

.membership-card-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 0.35rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--gold);
}

.membership-card-icon svg {
  width: 32px;
  height: 32px;
}

.membership-card-label {
  margin: 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.24;
  text-transform: uppercase;
}

.membership-card-label::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 1rem auto 0;
  background: var(--gold);
}

.membership-card-body {
  margin: 0;
  color: #303833;
  font-size: 0.97rem;
  line-height: 1.48;
}

.membership-ribbon {
  position: relative;
  display: grid;
  min-height: 88px;
  place-items: center;
  overflow: hidden;
  background: #30483c;
  color: var(--white);
  text-align: center;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(188, 167, 113, 0.3);
}

.membership-ribbon::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(260px, 32vw);
  height: 120px;
  background: url("/assets/fingerprinted/routes/memberships/ribbon-leaves.28d707f4b758.svg") left bottom / contain no-repeat;
  opacity: 0.72;
}

.membership-ribbon p {
  position: relative;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.membership-ribbon p::before,
.membership-ribbon p::after {
  content: "\2726";
  display: inline-block;
  margin: 0 1.2rem;
  color: var(--gold);
  font-size: 0.86em;
  transform: translateY(-0.02em);
}

.membership-details {
  width: min(1180px, calc(100% - 4rem));
  margin: 0 auto;
  padding: clamp(4rem, 6vw, 6.6rem) 0 clamp(3.6rem, 5.2vw, 5.4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.8fr);
  gap: clamp(2.2rem, 5vw, 5.4rem);
  align-items: start;
}

.membership-details .route-kicker {
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.membership-details h2 {
  max-width: 640px;
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
}

.membership-details-copy > p:not(.route-kicker) {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: #2f3731;
  font-size: 1.05rem;
  line-height: 1.68;
}

.membership-details-copy > p:not(.route-kicker):first-of-type {
  margin-top: 1.7rem;
}

.membership-details-aside {
  display: grid;
  gap: 1.1rem;
}

.membership-extra-benefits {
  display: grid;
  gap: 1rem;
}

.membership-mini-card,
.membership-note-card {
  border: 1px solid rgba(188, 167, 113, 0.34);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 34px rgba(58, 74, 63, 0.045);
}

.membership-mini-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.2rem 1.2rem 1.1rem;
}

.membership-mini-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--green);
  color: var(--gold);
}

.membership-mini-icon svg {
  width: 24px;
  height: 24px;
}

.membership-mini-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 1.03rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.membership-mini-card p {
  margin: 0.45rem 0 0;
  color: #303833;
  font-size: 0.96rem;
  line-height: 1.48;
}

.membership-note-card {
  padding: 1.35rem;
  background:
    linear-gradient(135deg, rgba(188, 167, 113, 0.16), rgba(255, 253, 248, 0.92)),
    rgba(255, 253, 248, 0.92);
}

.membership-note-card p {
  margin: 0;
  color: #2f3731;
  font-size: 1rem;
  line-height: 1.55;
}

.membership-note-card .pill-button {
  min-height: 48px;
  margin-top: 1.1rem;
  border-width: 2px;
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.membership-newsletter {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(4rem, 6vw, 6.2rem) 0;
  scroll-margin-top: var(--top-chrome-height);
  background:
    linear-gradient(115deg, rgba(48, 72, 60, 0.98) 0%, rgba(58, 74, 63, 0.94) 58%, rgba(188, 167, 113, 0.28) 100%),
    #30483c;
  border-top: 1px solid rgba(188, 167, 113, 0.36);
}

.membership-newsletter::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: min(320px, 34vw);
  height: 150px;
  background: url("/assets/fingerprinted/routes/memberships/ribbon-leaves.28d707f4b758.svg") right bottom / contain no-repeat;
  opacity: 0.46;
}

.membership-newsletter-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.membership-newsletter .route-kicker {
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.membership-newsletter h2 {
  max-width: 650px;
  margin: 0;
  color: #fffdf8;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.4vw, 4.6rem);
  font-weight: 400;
  line-height: 1.04;
  text-wrap: balance;
}

.membership-newsletter-copy > p:not(.route-kicker) {
  max-width: 590px;
  margin: 1.35rem 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: 1.05rem;
  line-height: 1.62;
}

.membership-newsletter-signup {
  padding: clamp(1.2rem, 2.4vw, 1.75rem);
  border: 1px solid rgba(188, 167, 113, 0.5);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 22px 52px rgba(20, 31, 25, 0.18);
}

.membership-newsletter-form {
  width: 100%;
  gap: 0.75rem;
}

.membership-newsletter .newsletter-form input {
  min-height: 58px;
  background: #fff;
  border-color: rgba(188, 167, 113, 0.36);
}

.membership-newsletter .newsletter-form .pill-button {
  min-height: 58px;
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.membership-newsletter-signup > p {
  margin: 0.9rem 0 0;
  color: #303833;
  font-size: 0.84rem;
  line-height: 1.48;
}

.membership-newsletter-signup .form-message {
  margin-top: 0.7rem;
  color: var(--green);
}

@media (max-width: 960px) {
  .membership-feature {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem;
  }

  .membership-intro {
    position: static;
    text-align: center;
  }

  .membership-intro > p:not(.route-kicker) {
    margin-inline: auto;
    max-width: 520px;
  }

  .membership-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .membership-newsletter-inner {
    width: min(760px, calc(100% - 2rem));
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .membership-newsletter h2,
  .membership-newsletter-copy > p:not(.route-kicker) {
    margin-inline: auto;
  }

  .membership-newsletter-signup {
    width: min(620px, 100%);
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .membership-hero .route-hero-copy {
    padding: 4rem 0 3.5rem;
  }

  .membership-shell {
    padding: 3.5rem 0 4rem;
  }

  .membership-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .membership-card {
    padding: 1.7rem 1.4rem 1.8rem;
  }

  .membership-details {
    width: min(100% - 2rem, 560px);
    padding: 3.4rem 0 3.8rem;
  }

  .membership-details h2 {
    font-size: clamp(2.25rem, 12vw, 3rem);
  }

  .membership-mini-card {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }

  .membership-newsletter {
    padding: 3.4rem 0 4rem;
  }

  .membership-newsletter h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .membership-newsletter-signup {
    padding: 1rem;
  }
}

.dermal-filler-hero {
  min-height: clamp(520px, 54vw, 760px);
  place-items: center start;
  background: #efe5d7;
  color: var(--green);
  text-align: center;
}

.dermal-filler-hero .treatment-hero-image {
  object-position: 50% 50%;
}

.dermal-filler-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(248, 246, 240, 0.46) 0%,
      rgba(248, 246, 240, 0.24) 43%,
      rgba(248, 246, 240, 0) 67%
    );
}

.dermal-filler-hero .route-hero-copy {
  width: min(520px, calc(100% - 3rem));
  margin-right: auto;
  margin-left: clamp(2rem, 18vw, 25rem);
  padding: 4.75rem 0;
  text-align: center;
}

.dermal-filler-hero .dermal-filler-hero-mark {
  position: relative;
  inset: auto;
  display: block;
  width: 6.9rem;
  height: auto;
  margin: 0 auto 0.95rem;
  object-fit: contain;
}

.dermal-filler-hero h1 {
  max-width: none;
  color: #2f463b;
  font-size: 5.35rem;
  line-height: 1;
  text-shadow: 0 1px 18px rgba(255, 252, 244, 0.46);
}

.dermal-filler-hero .dermal-filler-hero-tagline {
  width: 100%;
  margin: 1.35rem 0 0;
  color: #b18a49;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.dermal-filler-hero-rule {
  display: block;
  width: 2.7rem;
  height: 1px;
  margin: 1.45rem auto 0;
  background: #b89553;
}

.dermal-filler-hero .dermal-filler-hero-lede {
  width: min(420px, 100%);
  margin: 1.35rem auto 0;
  color: #314338;
  font-size: 1.12rem;
  line-height: 1.6;
  text-wrap: balance;
}

@media (max-width: 900px) {
  .dermal-filler-hero {
    min-height: 540px;
  }

  .dermal-filler-hero .treatment-hero-image {
    object-position: 58% 50%;
  }

  .dermal-filler-hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(248, 246, 240, 0.58) 0%,
        rgba(248, 246, 240, 0.42) 52%,
        rgba(248, 246, 240, 0.08) 100%
      );
  }

  .dermal-filler-hero .route-hero-copy {
    width: min(410px, 52vw);
    margin-left: 1.5rem;
    padding: 4rem 0 3.5rem;
  }

  .dermal-filler-hero h1 {
    font-size: 4.1rem;
  }

  .dermal-filler-hero .dermal-filler-hero-lede {
    font-size: 1.04rem;
  }
}

@media (max-width: 520px) {
  .dermal-filler-hero {
    min-height: 520px;
    place-items: start center;
  }

  .dermal-filler-hero .treatment-hero-image {
    object-position: 40% 50%;
  }

  .dermal-filler-hero .route-hero-copy {
    width: min(310px, calc(100% - 2rem));
    margin-left: 1rem;
    padding: 3.2rem 0 0;
  }

  .dermal-filler-hero .dermal-filler-hero-mark {
    width: 5.4rem;
    margin-bottom: 0.85rem;
  }

  .dermal-filler-hero h1 {
    font-size: 3.15rem;
  }

  .dermal-filler-hero .dermal-filler-hero-tagline {
    margin-top: 1rem;
    font-size: 0.94rem;
  }

  .dermal-filler-hero-rule {
    margin-top: 1.05rem;
  }

  .dermal-filler-hero .dermal-filler-hero-lede {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.48;
  }
}

.treatment-page--lasers .treatment-hero,
.treatment-page--pro-yellow .treatment-hero,
.treatment-page--smooth-brilliant .treatment-hero {
  min-height: clamp(560px, 52vw, 760px);
  place-items: center start;
  background: #f8f4ec;
  color: var(--green);
  text-align: left;
  --hero-position: 50% 50%;
}

.treatment-page--lasers .treatment-hero::after,
.treatment-page--pro-yellow .treatment-hero::after,
.treatment-page--smooth-brilliant .treatment-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(248, 244, 236, 0.96) 0%,
      rgba(248, 244, 236, 0.88) 34%,
      rgba(248, 244, 236, 0.42) 58%,
      rgba(248, 244, 236, 0.08) 100%
    );
}

.treatment-page--lasers .treatment-hero .route-hero-copy,
.treatment-page--pro-yellow .treatment-hero .route-hero-copy,
.treatment-page--smooth-brilliant .treatment-hero .route-hero-copy {
  width: min(540px, calc(100% - 3rem));
  margin-right: auto;
  margin-left: clamp(1.5rem, 8vw, 8.8rem);
  padding: 4.75rem 0;
  text-align: left;
}

.treatment-page--lasers .treatment-hero .route-kicker,
.treatment-page--pro-yellow .treatment-hero .route-kicker,
.treatment-page--smooth-brilliant .treatment-hero .route-kicker {
  color: #b18a49;
}

.treatment-page--lasers .treatment-hero h1,
.treatment-page--pro-yellow .treatment-hero h1,
.treatment-page--smooth-brilliant .treatment-hero h1 {
  max-width: 620px;
  color: var(--green-dark);
  font-size: clamp(4rem, 5vw, 5.8rem);
  line-height: 1;
  text-shadow: 0 1px 18px rgba(255, 252, 244, 0.38);
}

.treatment-page--lasers .treatment-hero p,
.treatment-page--pro-yellow .treatment-hero p,
.treatment-page--smooth-brilliant .treatment-hero p {
  width: min(470px, 100%);
  color: #314338;
  font-size: 1.08rem;
  line-height: 1.6;
  text-wrap: balance;
}

.treatment-page--lasers .treatment-hero .route-hero-actions,
.treatment-page--pro-yellow .treatment-hero .route-hero-actions,
.treatment-page--smooth-brilliant .treatment-hero .route-hero-actions {
  justify-content: flex-start;
}

.treatment-page--lasers .treatment-hero .pill-button,
.treatment-page--pro-yellow .treatment-hero .pill-button,
.treatment-page--smooth-brilliant .treatment-hero .pill-button {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.treatment-page--lasers .treatment-hero .pill-button:hover,
.treatment-page--lasers .treatment-hero .pill-button:focus-visible,
.treatment-page--pro-yellow .treatment-hero .pill-button:hover,
.treatment-page--pro-yellow .treatment-hero .pill-button:focus-visible,
.treatment-page--smooth-brilliant .treatment-hero .pill-button:hover,
.treatment-page--smooth-brilliant .treatment-hero .pill-button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green-dark);
}

.treatment-page--lasers .treatment-hero .secondary-link,
.treatment-page--pro-yellow .treatment-hero .secondary-link,
.treatment-page--smooth-brilliant .treatment-hero .secondary-link {
  color: var(--green);
  text-decoration-color: rgba(58, 74, 63, 0.36);
}

.treatment-page--lasers .treatment-hero .route-hero-copy {
  width: min(600px, calc(100% - 3rem));
}

.treatment-page--lasers .treatment-hero h1 {
  max-width: 600px;
  font-size: clamp(4rem, 5vw, 5.1rem);
}

.treatment-page--pro-yellow .pro-yellow-accent {
  color: #b89553;
}

.treatment-page--pro-yellow .treatment-hero .pro-yellow-hero-tagline {
  margin-top: 1.25rem;
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.25vw, 2.45rem);
  line-height: 1.12;
}

.treatment-page--lasers .laser-intro-media {
  width: min(340px, 100%);
  justify-self: center;
}

.treatment-page--lasers .laser-intro-media img {
  height: auto;
}

.treatment-page--prp-prf .treatment-hero {
  min-height: clamp(560px, 52vw, 760px);
  place-items: center start;
  background: #efe5d6;
  color: var(--green);
  text-align: left;
  --hero-position: 50% 50%;
}

.treatment-page--prp-prf .treatment-hero-image {
  object-position: 50% 50%;
  filter: saturate(1.03) contrast(1.02);
}

.treatment-page--prp-prf .treatment-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(239, 229, 214, 1) 0%,
      rgba(239, 229, 214, 0.98) 38%,
      rgba(239, 229, 214, 0.78) 54%,
      rgba(239, 229, 214, 0.2) 72%,
      rgba(239, 229, 214, 0) 100%
    );
}

.treatment-page--prp-prf .treatment-hero .route-hero-copy {
  width: min(620px, calc(100% - 3rem));
  margin-right: auto;
  margin-left: clamp(1.5rem, 7vw, 8rem);
  padding: 4.75rem 0;
  text-align: left;
}

.treatment-page--prp-prf .treatment-hero .route-kicker {
  color: #b18a49;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.treatment-page--prp-prf .treatment-hero h1 {
  max-width: 680px;
  color: var(--green-dark);
  font-size: clamp(3.9rem, 5.2vw, 6rem);
  line-height: 0.98;
  text-shadow: none;
}

.treatment-page--prp-prf .treatment-hero h1 span {
  display: block;
}

.treatment-page--prp-prf .treatment-hero h1 span:first-child {
  color: #b18a49;
}

.treatment-page--prp-prf .treatment-hero p {
  width: min(520px, 100%);
  color: #314338;
  font-size: 1.08rem;
  line-height: 1.68;
  text-wrap: balance;
}

.treatment-page--prp-prf .treatment-hero .route-hero-actions {
  justify-content: flex-start;
  gap: 1.2rem 2rem;
}

.treatment-page--prp-prf .treatment-hero .pill-button {
  min-width: min(320px, 100%);
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.treatment-page--prp-prf .treatment-hero .pill-button::after {
  content: "\2192";
  margin-left: 1rem;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.treatment-page--prp-prf .treatment-hero .secondary-link {
  color: var(--green);
  text-decoration-color: rgba(188, 167, 113, 0.8);
}

@media (max-width: 900px) {
  .treatment-page--lasers .treatment-hero,
  .treatment-page--pro-yellow .treatment-hero,
  .treatment-page--smooth-brilliant .treatment-hero {
    min-height: 580px;
  }

  .treatment-page--lasers .treatment-hero::after,
  .treatment-page--pro-yellow .treatment-hero::after,
  .treatment-page--smooth-brilliant .treatment-hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(248, 244, 236, 0.92) 0%,
        rgba(248, 244, 236, 0.74) 54%,
        rgba(248, 244, 236, 0.18) 100%
      );
  }

  .treatment-page--lasers .treatment-hero .route-hero-copy,
  .treatment-page--pro-yellow .treatment-hero .route-hero-copy,
  .treatment-page--smooth-brilliant .treatment-hero .route-hero-copy {
    width: min(420px, 58vw);
    margin-left: 1.4rem;
    padding: 4rem 0 3.4rem;
  }

  .treatment-page--lasers .treatment-hero h1,
  .treatment-page--pro-yellow .treatment-hero h1,
  .treatment-page--smooth-brilliant .treatment-hero h1 {
    font-size: clamp(3.2rem, 8vw, 4.3rem);
  }

  .treatment-page--lasers .laser-intro-media {
    width: min(300px, 100%);
  }

  .treatment-page--prp-prf .treatment-hero {
    min-height: 580px;
  }

  .treatment-page--prp-prf .treatment-hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(239, 229, 214, 0.98) 0%,
        rgba(239, 229, 214, 0.92) 58%,
        rgba(239, 229, 214, 0.3) 100%
      );
  }

  .treatment-page--prp-prf .treatment-hero .route-hero-copy {
    width: min(430px, 62vw);
    margin-left: 1.4rem;
    padding: 4rem 0 3.4rem;
  }

  .treatment-page--prp-prf .treatment-hero h1 {
    font-size: clamp(3.1rem, 8vw, 4.4rem);
  }
}

@media (max-width: 520px) {
  .treatment-page--lasers .treatment-hero,
  .treatment-page--pro-yellow .treatment-hero,
  .treatment-page--smooth-brilliant .treatment-hero {
    min-height: 560px;
    place-items: start center;
  }

  .treatment-page--lasers .treatment-hero-image,
  .treatment-page--pro-yellow .treatment-hero-image,
  .treatment-page--smooth-brilliant .treatment-hero-image {
    object-position: 58% 50%;
  }

  .treatment-page--lasers .treatment-hero::after,
  .treatment-page--pro-yellow .treatment-hero::after,
  .treatment-page--smooth-brilliant .treatment-hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(248, 244, 236, 0.94) 0%,
        rgba(248, 244, 236, 0.82) 54%,
        rgba(248, 244, 236, 0.36) 100%
      );
  }

  .treatment-page--lasers .treatment-hero .route-hero-copy,
  .treatment-page--pro-yellow .treatment-hero .route-hero-copy,
  .treatment-page--smooth-brilliant .treatment-hero .route-hero-copy {
    width: min(340px, calc(100% - 2rem));
    margin-inline: auto;
    padding: 3.2rem 0 0;
  }

  .treatment-page--lasers .treatment-hero h1,
  .treatment-page--pro-yellow .treatment-hero h1,
  .treatment-page--smooth-brilliant .treatment-hero h1 {
    font-size: clamp(2.9rem, 13vw, 3.8rem);
  }

  .treatment-page--lasers .treatment-hero p,
  .treatment-page--pro-yellow .treatment-hero p,
  .treatment-page--smooth-brilliant .treatment-hero p {
    font-size: 1rem;
    line-height: 1.48;
  }

  .treatment-page--lasers .laser-intro-media {
    width: min(280px, 100%);
    justify-self: start;
  }

  .treatment-page--prp-prf .treatment-hero {
    min-height: 620px;
    place-items: start center;
  }

  .treatment-page--prp-prf .treatment-hero-image {
    object-position: 70% 50%;
  }

  .treatment-page--prp-prf .treatment-hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(239, 229, 214, 0.98) 0%,
        rgba(239, 229, 214, 0.93) 59%,
        rgba(239, 229, 214, 0.34) 100%
      );
  }

  .treatment-page--prp-prf .treatment-hero .route-hero-copy {
    width: min(340px, calc(100% - 2rem));
    margin-inline: auto;
    padding: 3rem 0 0;
  }

  .treatment-page--prp-prf .treatment-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.55rem);
  }

  .treatment-page--prp-prf .treatment-hero p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .treatment-page--prp-prf .treatment-hero .pill-button {
    width: 100%;
    min-width: 0;
  }
}

.product-shop-page {
  background: #fffdf8;
}

.product-shop-hero {
  position: relative;
  min-height: clamp(420px, 42vw, 560px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(188, 167, 113, 0.28);
  background: #f1e6dc;
  color: var(--green-dark);
}

.product-shop-hero-image {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  width: auto;
  height: 116%;
  display: block;
  object-fit: contain;
  object-position: right center;
  filter: saturate(1.03) contrast(1.02);
  transform: translateY(-50%);
}

.product-shop-hero::after {
  content: none;
}

.product-shop-hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(6rem, 9.8vw, 7rem) 0 clamp(2rem, 3vw, 2.5rem);
}

.product-shop-hero .route-kicker {
  color: #b18a49;
  margin-bottom: 0.85rem;
  font-size: clamp(1.12rem, 1.45vw, 1.38rem);
  letter-spacing: 0.12em;
}

.product-shop-hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--green-dark);
  font-family: var(--display);
  font-size: clamp(3.75rem, 5.9vw, 6.15rem);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.product-shop-hero p:not(.route-kicker) {
  max-width: 530px;
  margin: 1.25rem 0 0;
  color: #26352d;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.62;
  text-wrap: balance;
}

.product-shop-trust {
  background: transparent;
  color: #fffdf8;
  border: 0;
}

.product-shop-trust-inner {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 8px;
  background: #243c31;
  box-shadow: 0 18px 42px rgba(52, 70, 58, 0.12);
}

.product-shop-trust-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  min-height: 116px;
  padding: 1rem 1.05rem;
}

.product-shop-trust-item + .product-shop-trust-item {
  border-left: 1px solid rgba(188, 167, 113, 0.28);
}

.product-shop-trust-item img {
  width: 58px;
  height: 58px;
  display: block;
}

.product-shop-trust-item h2 {
  margin: 0 0 0.32rem;
  color: #fffdf8;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-shop-trust-item p {
  margin: 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.78rem;
  line-height: 1.38;
}

.product-shop-page .route-shell {
  width: min(1180px, calc(100% - 3rem));
  padding-top: 3.25rem;
}

.product-shop-page .shop-intro {
  margin-bottom: 2.15rem;
}

.product-shop-page .shop-intro .route-kicker {
  color: #b18a49;
}

.product-shop-page .shop-intro h2,
.product-shop-page .shop-section-heading h2 {
  color: var(--green-dark);
}

.product-shop-page .shop-browse {
  scroll-margin-top: var(--top-chrome-height);
}

.product-shop-page .shop-section-heading {
  margin-top: 3.8rem;
  scroll-margin-top: var(--top-chrome-height);
}

.product-shop-page .product-grid {
  gap: 1.25rem;
}

.product-shop-page .product-card {
  padding: 0.9rem;
  border: 1px solid rgba(188, 167, 113, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(52, 70, 58, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-shop-page .product-card:hover,
.product-shop-page .product-card:focus-visible {
  border-color: rgba(58, 74, 63, 0.42);
  box-shadow: 0 18px 40px rgba(52, 70, 58, 0.09);
  transform: translateY(-2px);
}

.product-shop-page .product-card-media {
  background: #f8f6f0;
}

@media (max-width: 980px) {
  .product-shop-hero {
    min-height: 500px;
  }

  .product-shop-hero-image {
    right: -18vw;
    object-position: right center;
  }

  .product-shop-hero-copy {
    width: min(560px, calc(100% - 2rem));
    margin-left: 1rem;
    padding: 3.6rem 0;
  }

  .product-shop-hero h1 {
    font-size: clamp(3rem, 8vw, 4.25rem);
  }

  .product-shop-trust-inner {
    width: min(900px, calc(100% - 2rem));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-shop-trust-item:nth-child(odd) {
    border-left: 0;
  }

  .product-shop-trust-item:nth-child(n + 3) {
    border-top: 1px solid rgba(188, 167, 113, 0.28);
  }
}

@media (max-width: 640px) {
  .product-shop-hero {
    min-height: 610px;
    align-items: start;
  }

  .product-shop-hero-image {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    max-height: 44%;
    object-fit: contain;
    object-position: right bottom;
    transform: none;
  }

  .product-shop-hero-copy {
    width: min(360px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.9rem 0 0;
  }

  .product-shop-hero h1 {
    font-size: clamp(2.85rem, 12vw, 3.55rem);
  }

  .product-shop-hero p:not(.route-kicker) {
    font-size: 1rem;
    line-height: 1.5;
  }

  .product-shop-trust-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-shop-trust-item,
  .product-shop-trust-item + .product-shop-trust-item,
  .product-shop-trust-item:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid rgba(188, 167, 113, 0.28);
  }

  .product-shop-trust-item:first-child {
    border-top: 0;
  }

  .product-shop-page .route-shell {
    width: min(100% - 2rem, 560px);
    padding-top: 2.7rem;
  }

}

.product-line-page {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f8f4ec 48%, #fffdf8 100%);
}

.product-line-page .product-shop-hero {
  min-height: clamp(500px, 48vw, 660px);
  isolation: isolate;
  border-top-color: rgba(188, 167, 113, 0.2);
  background:
    radial-gradient(circle at 78% 52%, rgba(255, 253, 248, 0.84) 0 21%, rgba(255, 253, 248, 0) 42%),
    linear-gradient(105deg, #efe4d9 0%, #f8f4ec 48%, #e7dacb 100%);
}

.product-line-page .product-shop-hero::before {
  content: "";
  position: absolute;
  inset: clamp(1rem, 2vw, 1.6rem);
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(188, 167, 113, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.64), rgba(255, 253, 248, 0.08) 58%, rgba(255, 253, 248, 0.42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.product-line-page .product-shop-hero-image {
  right: max(2rem, calc((100vw - 1180px) / 2));
  height: min(82%, 470px);
  max-width: min(42vw, 500px);
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 253, 248, 0.96), rgba(248, 244, 236, 0.68)),
    #f8f6f0;
  box-shadow: 0 28px 70px rgba(52, 70, 58, 0.12);
  object-fit: contain;
  object-position: right center;
}

.product-line-page .product-shop-hero-copy {
  width: min(1180px, calc(100% - 4rem));
  padding-block: clamp(6.2rem, 10vw, 8rem) clamp(4.3rem, 7vw, 5.8rem);
}

.product-line-page .product-shop-hero h1 {
  max-width: 560px;
  font-size: clamp(3.65rem, 5.8vw, 6rem);
}

.product-line-page .product-shop-hero p:not(.route-kicker) {
  max-width: 480px;
}

.product-line-page--alumier .product-shop-hero,
.product-line-page--zo-skin-health .product-shop-hero,
.product-line-page--color-science .product-shop-hero,
.product-line-page--epicutis .product-shop-hero,
.product-line-page--zyderma .product-shop-hero,
.product-line-page--other .product-shop-hero {
  min-height: clamp(520px, 52vw, 720px);
  background:
    linear-gradient(90deg, rgba(239, 229, 214, 0.98) 0%, rgba(239, 229, 214, 0.9) 34%, rgba(239, 229, 214, 0.42) 63%),
    #efe5d6;
}

.product-line-page--alumier .product-shop-hero::before,
.product-line-page--zo-skin-health .product-shop-hero::before,
.product-line-page--color-science .product-shop-hero::before,
.product-line-page--epicutis .product-shop-hero::before,
.product-line-page--zyderma .product-shop-hero::before,
.product-line-page--other .product-shop-hero::before {
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.74) 0%, rgba(255, 253, 248, 0.42) 35%, rgba(255, 253, 248, 0.08) 63%, rgba(255, 253, 248, 0) 100%);
  box-shadow: none;
}

.product-line-page--alumier .product-shop-hero-image,
.product-line-page--zo-skin-health .product-shop-hero-image,
.product-line-page--color-science .product-shop-hero-image,
.product-line-page--epicutis .product-shop-hero-image,
.product-line-page--zyderma .product-shop-hero-image,
.product-line-page--other .product-shop-hero-image {
  top: 50%;
  right: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: cover;
  object-position: right center;
}

.product-line-page--alumier .product-shop-hero-copy,
.product-line-page--zo-skin-health .product-shop-hero-copy,
.product-line-page--color-science .product-shop-hero-copy,
.product-line-page--epicutis .product-shop-hero-copy,
.product-line-page--zyderma .product-shop-hero-copy,
.product-line-page--other .product-shop-hero-copy {
  padding-block: clamp(6.8rem, 11vw, 8.4rem) clamp(4.8rem, 7vw, 6.3rem);
}

.product-line-page--alumier .product-shop-hero h1,
.product-line-page--alumier .product-shop-hero p:not(.route-kicker),
.product-line-page--zo-skin-health .product-shop-hero h1,
.product-line-page--zo-skin-health .product-shop-hero p:not(.route-kicker),
.product-line-page--color-science .product-shop-hero h1,
.product-line-page--color-science .product-shop-hero p:not(.route-kicker),
.product-line-page--epicutis .product-shop-hero h1,
.product-line-page--epicutis .product-shop-hero p:not(.route-kicker),
.product-line-page--zyderma .product-shop-hero h1,
.product-line-page--zyderma .product-shop-hero p:not(.route-kicker),
.product-line-page--other .product-shop-hero h1,
.product-line-page--other .product-shop-hero p:not(.route-kicker) {
  text-shadow: 0 1px 0 rgba(255, 253, 248, 0.54);
}

.product-line-page .route-shell {
  display: grid;
  gap: clamp(2.6rem, 4vw, 4.2rem);
}

.product-line-page .shop-intro {
  width: min(940px, 100%);
  margin: 0;
  text-align: left;
}

.product-line-page .shop-intro h2 {
  max-width: 720px;
  font-size: clamp(2.45rem, 4vw, 4.15rem);
  line-height: 1.04;
}

.product-line-page .shop-intro p:not(.route-kicker) {
  max-width: 720px;
  margin-inline: 0;
  color: #39443d;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
}

.product-line-page .shop-intro .secondary-link {
  color: var(--green);
  text-decoration-color: rgba(188, 167, 113, 0.72);
  text-underline-offset: 0.18em;
}

.product-line-page .product-shop-trust {
  margin-inline: 0;
  padding: clamp(1.2rem, 2.5vw, 1.8rem) 0;
  background: #243c31;
  box-shadow: 0 0 0 100vmax #243c31;
  clip-path: inset(0 -100vmax);
}

.product-line-page .product-shop-trust-inner {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-line-page .product-shop-trust-item {
  min-height: 132px;
  padding: 1.2rem 1.25rem;
}

.product-line-page .product-shop-trust-item img {
  width: 62px;
  height: 62px;
}

.product-line-page .product-shop-trust-item h2 {
  color: #fffdf8;
  font-size: 0.72rem;
}

.product-line-page .product-shop-trust-item p {
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.84rem;
  line-height: 1.46;
}

.product-line-page .product-care-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-line-page .product-care-panel {
  min-height: 100%;
  gap: 0.78rem;
  overflow: hidden;
  padding: 0 0 1.35rem;
  border-color: rgba(188, 167, 113, 0.24);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 44px rgba(52, 70, 58, 0.06);
}

.product-line-page .product-care-panel > :not(.product-card-media) {
  margin-inline: 1.25rem;
}

.product-line-page .product-care-panel .product-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  background:
    linear-gradient(145deg, #f8f6f0, #eee5d8);
}

.product-line-page .product-care-panel .product-card-media img {
  padding: clamp(1.15rem, 2.2vw, 1.75rem);
}

.product-line-page .product-care-panel .route-kicker {
  margin-top: 0.25rem;
  margin-bottom: -0.2rem;
  color: #b18a49;
}

.product-line-page .product-care-panel h3 {
  color: var(--green-dark);
  font-size: clamp(1.55rem, 2.05vw, 2.1rem);
}

.product-line-page .product-care-panel p {
  color: #39443d;
  line-height: 1.56;
}

.product-line-page .product-care-panel ul {
  display: grid;
  gap: 0.42rem;
  margin: 0.05rem 1.25rem 0;
  padding: 0;
  list-style: none;
}

.product-line-page .product-care-panel li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.product-line-page .product-care-panel li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
}

.product-line-page .shop-section-heading {
  max-width: 780px;
  margin: 0 auto -1rem;
}

.product-line-page .shop-section-heading h2 {
  font-size: clamp(2.35rem, 3.7vw, 3.7rem);
}

.product-line-page .product-grid {
  gap: 1.5rem;
  align-items: stretch;
}

.product-line-page .product-card {
  gap: 1rem;
  padding: 1rem 1rem 1.15rem;
  border-color: rgba(188, 167, 113, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(248, 244, 236, 0.5)),
    #fffdf8;
}

.product-line-page .product-card-media {
  background:
    linear-gradient(145deg, #f8f6f0, #eee5d8);
}

.product-line-page .product-card h3 {
  font-size: clamp(1.34rem, 1.7vw, 1.78rem);
}

.product-line-page .product-card p {
  font-size: 0.92rem;
}

.product-line-page .product-card .product-price {
  margin-top: 0.75rem;
  color: var(--green-dark);
}

@media (max-width: 980px) {
  .product-line-page .product-shop-hero {
    min-height: 540px;
  }

  .product-line-page .product-shop-hero-image {
    right: 1rem;
    height: 68%;
    max-width: 44vw;
  }

  .product-line-page .product-shop-hero-copy {
    width: min(560px, calc(100% - 2rem));
    margin-left: 1rem;
    padding-block: 4.5rem;
  }

  .product-line-page--alumier .product-shop-hero-image,
  .product-line-page--zo-skin-health .product-shop-hero-image,
  .product-line-page--color-science .product-shop-hero-image,
  .product-line-page--epicutis .product-shop-hero-image,
  .product-line-page--zyderma .product-shop-hero-image,
  .product-line-page--other .product-shop-hero-image {
    right: 0;
    width: 100%;
    height: 100%;
    max-width: none;
  }

  .product-line-page--alumier .product-shop-hero-copy,
  .product-line-page--zo-skin-health .product-shop-hero-copy,
  .product-line-page--color-science .product-shop-hero-copy,
  .product-line-page--epicutis .product-shop-hero-copy,
  .product-line-page--zyderma .product-shop-hero-copy,
  .product-line-page--other .product-shop-hero-copy {
    padding-block: 5rem;
  }

  .product-line-page .product-shop-trust-inner {
    width: min(900px, calc(100% - 2rem));
  }

  .product-line-page .product-care-grid,
  .product-line-page .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-line-page .product-shop-hero {
    min-height: 650px;
  }

  .product-line-page .product-shop-hero::before {
    inset: 0.75rem;
  }

  .product-line-page .product-shop-hero-image {
    right: 50%;
    bottom: 1.5rem;
    height: 32%;
    max-width: min(78vw, 360px);
    padding: 1rem;
    transform: translateX(50%);
  }

  .product-line-page .product-shop-hero-copy {
    width: min(360px, calc(100% - 2rem));
    margin-inline: auto;
    padding-top: 3rem;
  }

  .product-line-page .product-shop-hero h1 {
    font-size: clamp(2.85rem, 12vw, 3.55rem);
  }

  .product-line-page--alumier .product-shop-hero,
  .product-line-page--zo-skin-health .product-shop-hero,
  .product-line-page--color-science .product-shop-hero,
  .product-line-page--epicutis .product-shop-hero,
  .product-line-page--zyderma .product-shop-hero,
  .product-line-page--other .product-shop-hero {
    min-height: 680px;
    background:
      linear-gradient(180deg, rgba(239, 229, 214, 0.98) 0%, rgba(239, 229, 214, 0.92) 48%, rgba(239, 229, 214, 0.24) 100%),
      #efe5d6;
  }

  .product-line-page--alumier .product-shop-hero-image,
  .product-line-page--zo-skin-health .product-shop-hero-image,
  .product-line-page--color-science .product-shop-hero-image,
  .product-line-page--epicutis .product-shop-hero-image,
  .product-line-page--zyderma .product-shop-hero-image,
  .product-line-page--other .product-shop-hero-image {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 44%;
    max-width: none;
    transform: none;
  }

  .product-line-page .route-shell {
    gap: 2.4rem;
  }

  .product-line-page .shop-intro h2,
  .product-line-page .shop-section-heading h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .product-line-page .product-shop-trust {
    margin-inline: 0;
  }

  .product-line-page .product-shop-trust-inner,
  .product-line-page .product-care-grid,
  .product-line-page .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-line-page .product-shop-trust-inner {
    width: min(100% - 2rem, 560px);
  }

  .product-line-page .product-care-panel {
    padding-bottom: 1.25rem;
  }

  .product-line-page .product-care-panel .product-card-media {
    aspect-ratio: 16 / 10;
  }

  .product-line-page .product-care-panel > :not(.product-card-media),
  .product-line-page .product-care-panel ul {
    margin-inline: 1rem;
  }

  .product-line-page .shop-section-heading {
    margin-bottom: -0.6rem;
  }
}
.treatment-explorer {
  position: relative;
  overflow: hidden;
  padding: 0 1.5rem 7rem;
  background: #f7f2ea;
}

.treatment-explorer .home-section-inner {
  width: min(1320px, 100%);
}

.treatment-showcase-intro {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(188, 167, 113, 0.22);
  border-radius: 12px;
  background: #f1ebe1;
  box-shadow: 0 24px 68px rgba(52, 70, 58, 0.08);
}

.treatment-showcase-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fbf8f2 0%, #fbf8f2 34%, rgba(251, 248, 242, 0.92) 43%, rgba(251, 248, 242, 0.18) 67%, rgba(251, 248, 242, 0) 100%);
}

.treatment-showcase-media {
  position: absolute;
  inset: 0 0 0 34%;
}

.treatment-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(0.96);
  transform: scale(1.035);
}

.treatment-showcase-copy {
  position: relative;
  z-index: 1;
  width: min(51%, 620px);
  padding: 5rem 0 8rem 5rem;
}

.treatment-showcase-copy .section-eyebrow {
  margin-bottom: 1.1rem;
  color: var(--gold-deep);
}

.treatment-explorer .treatment-showcase-copy h2 {
  display: grid;
  gap: 0.05em;
  margin: 0;
  color: var(--green);
  font-size: clamp(3.2rem, 4.2vw, 4.5rem);
  font-weight: 400;
  line-height: 0.93;
  text-align: left;
  letter-spacing: -0.035em;
}

.treatment-showcase-copy h2 em {
  font-weight: 400;
}

.treatment-showcase-copy > p:not(.section-eyebrow) {
  max-width: 480px;
  margin: 1.55rem 0 0;
  color: #2b302d;
  font-size: 1rem;
  line-height: 1.65;
}

.treatment-compare-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.3rem;
  color: var(--green);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.treatment-compare-link span {
  color: #a98b4f;
  transition: transform 180ms ease;
}

.treatment-compare-link:hover span,
.treatment-compare-link:focus-visible span {
  transform: translateX(4px);
}

.treatment-explorer .home-service-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: -4.8rem 1.5rem 0;
}

.treatment-explorer .home-service-card {
  display: flex;
  flex: 0 1 calc((100% - 4rem) / 5);
  min-width: 0;
  min-height: 370px;
  overflow: hidden;
  flex-direction: column;
  padding: 0;
  border: 1px solid rgba(188, 167, 113, 0.32);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--green);
  box-shadow: 0 16px 38px rgba(52, 70, 58, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.treatment-explorer .home-service-card:hover,
.treatment-explorer .home-service-card:focus-visible {
  border-color: rgba(58, 74, 63, 0.48);
  background: #fff;
  box-shadow: 0 22px 48px rgba(52, 70, 58, 0.13);
  transform: translateY(-4px);
}

.treatment-explorer .home-service-card:focus-visible {
  outline: 3px solid rgba(188, 167, 113, 0.48);
  outline-offset: 3px;
}

.treatment-explorer .home-service-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0;
  padding: 1.25rem 1.15rem 1.15rem;
}

.home-service-heading {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  min-height: 58px;
}

.treatment-explorer .home-service-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: #f5ead1;
}

.treatment-explorer .home-service-card h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  font-weight: 400;
  line-height: 1.1;
  overflow-wrap: break-word;
  hyphens: auto;
}

.treatment-explorer .home-service-card p {
  max-width: none;
  margin: 1rem 0 1.15rem;
  color: #383b39;
  font-size: 0.88rem;
  line-height: 1.48;
}

.treatment-explorer .home-service-link {
  margin-top: auto;
  color: var(--green);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
}

.treatment-explorer .home-service-link span {
  margin-left: 0.35rem;
  color: #a98b4f;
}

.home-service-media {
  display: block;
  flex: 0 0 auto;
  aspect-ratio: 12 / 5;
  overflow: hidden;
  background: #ece4d9;
}

.home-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.home-service-card:hover .home-service-media img,
.home-service-card:focus-visible .home-service-media img {
  transform: scale(1.035);
}

.treatment-explorer .treatment-consult {
  display: grid;
  grid-template-columns: minmax(350px, 1.25fr) auto minmax(390px, 1fr);
  align-items: center;
  gap: 1.4rem;
  margin: 2rem 1.5rem 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(188, 167, 113, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.treatment-explorer .treatment-consult-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.1rem;
}

.treatment-explorer .treatment-consult h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
}

.treatment-explorer .treatment-consult p {
  font-size: 0.86rem;
}

.treatment-explorer .treatment-consult .pill-button {
  min-height: 48px;
  padding-inline: 1.3rem;
  font-size: 0.84rem;
}

.treatment-consult-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-consult-benefits li {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 54px;
  padding: 0.1rem 0.85rem 0.1rem 2rem;
  border-left: 1px solid rgba(188, 167, 113, 0.3);
  color: #3d443f;
  font-family: var(--display);
  font-size: 0.78rem;
  line-height: 1.35;
}

.treatment-consult-benefits li::before {
  content: "\2713";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(58, 74, 63, 0.28);
  border-radius: 50%;
  color: var(--green);
  font-family: sans-serif;
  font-size: 0.68rem;
}

@media (min-width: 1121px) {
  .treatment-showcase-copy h2 span {
    white-space: nowrap;
  }
}

@media (max-width: 1120px) {
  .treatment-showcase-copy {
    width: 58%;
    padding-left: 3.5rem;
  }

  .treatment-explorer .home-service-card {
    flex-basis: calc((100% - 2rem) / 3);
  }

  .treatment-explorer .treatment-consult {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .treatment-consult-benefits {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(188, 167, 113, 0.24);
  }

  .treatment-consult-benefits li {
    justify-content: center;
    min-height: 46px;
  }
}

@media (max-width: 760px) {
  .treatment-explorer {
    padding-inline: 1rem;
    padding-bottom: 5.5rem;
  }

  .treatment-showcase-intro {
    min-height: 450px;
  }

  .treatment-showcase-intro::after {
    background: linear-gradient(90deg, #fbf8f2 0%, rgba(251, 248, 242, 0.96) 43%, rgba(251, 248, 242, 0.52) 75%, rgba(251, 248, 242, 0.3) 100%);
  }

  .treatment-showcase-media {
    inset: 0 0 0 28%;
    opacity: 0.78;
  }

  .treatment-showcase-copy {
    width: min(78%, 520px);
    padding: 4rem 0 6rem 2.25rem;
  }

  .treatment-explorer .treatment-showcase-copy h2 {
    font-size: clamp(3.25rem, 11vw, 4.7rem);
  }

  .treatment-explorer .home-service-grid {
    gap: 0.85rem;
    margin: -3.4rem 0.75rem 0;
  }

  .treatment-explorer .home-service-card {
    flex-basis: calc((100% - 0.85rem) / 2);
    min-height: 350px;
  }

  .treatment-explorer .treatment-consult {
    grid-template-columns: 1fr;
    margin-inline: 0.75rem;
  }

  .treatment-explorer .treatment-consult .pill-button {
    width: 100%;
  }

  .treatment-consult-benefits {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .treatment-explorer {
    padding-inline: 0.7rem;
    padding-bottom: 4.5rem;
  }

  .treatment-showcase-intro {
    min-height: 440px;
  }

  .treatment-showcase-intro::after {
    background: linear-gradient(180deg, rgba(251, 248, 242, 0.88) 0%, rgba(251, 248, 242, 0.94) 58%, #fbf8f2 100%);
  }

  .treatment-showcase-media {
    inset: 0;
    opacity: 0.46;
  }

  .treatment-showcase-media img {
    object-position: 62% center;
  }

  .treatment-showcase-copy {
    width: 100%;
    padding: 3.25rem 1.35rem 5.5rem;
  }

  .treatment-explorer .treatment-showcase-copy h2 {
    font-size: clamp(2.8rem, 14vw, 3.85rem);
  }

  .treatment-showcase-copy > p:not(.section-eyebrow) {
    font-size: 0.94rem;
  }

  .treatment-explorer .home-service-grid {
    margin-inline: 0.45rem;
  }

  .treatment-explorer .home-service-card {
    flex-basis: 100%;
    min-height: 335px;
  }

  .treatment-explorer .home-service-copy {
    padding: 1.2rem;
  }

  .treatment-explorer .home-service-card h3 {
    font-size: 1.45rem;
  }

  .treatment-explorer .home-service-card p {
    font-size: 0.92rem;
  }

  .treatment-explorer .treatment-consult {
    margin-inline: 0.45rem;
    padding: 1.2rem;
  }

  .treatment-consult-benefits {
    grid-template-columns: 1fr;
  }

  .treatment-consult-benefits li {
    justify-content: start;
    border-top: 1px solid rgba(188, 167, 113, 0.22);
    border-left: 0;
  }
}
