:root {
  --ink: #211715;
  --espresso: #050505;
  --espresso-soft: #101010;
  --taupe: #8a7168;
  --rose: #c08962;
  --blush: #de8490;
  --cream: #f7f1e8;
  --cream-blush: #f8eee8;
  --line: #eadfd7;
  --white: #ffffff;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Albert Sans", Arial, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

body::selection {
  background: var(--espresso);
  color: var(--cream);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(255 255 255 / 94%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.navbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  width: min(100% - 48px, var(--max));
  min-height: 116px;
  margin: 0 auto;
}

.brand {
  width: clamp(132px, 13vw, 190px);
  height: clamp(78px, 8vw, 112px);
  display: block;
}

.brand img {
  object-fit: contain;
}

.nav-group,
.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.nav-group a,
.nav-button,
.text-button,
.hero-info p,
.section-title span,
.service-card p,
.blog-list span,
.kicker,
button,
label span,
.footer-links a,
.footer-bottom p {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-group a,
.nav-button,
.footer-links a,
.text-button {
  text-decoration: none;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-button {
  min-height: 44px;
  padding: 14px 22px;
  border: 1px solid var(--espresso);
}

.hero {
  padding: 0 0 clamp(22px, 3vw, 42px);
  background: var(--cream-blush);
}

.hero-video-header {
  position: relative;
  width: 100%;
  height: clamp(300px, 48vw, 620px);
  overflow: hidden;
  background: var(--cream);
}

.hero-video-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  pointer-events: none;
}

.hero-video-caption p {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-shadow: 0 1px 6px rgba(0 0 0 / 36%);
}

.hero-video-cta {
  pointer-events: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid rgba(255 255 255 / 80%);
  background: rgba(255 255 255 / 14%);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0 0 0 / 28%);
  transition: background 200ms ease, border-color 200ms ease;
}

.hero-video-cta:hover,
.hero-video-cta:focus-visible {
  background: rgba(255 255 255 / 28%);
  border-color: var(--white);
  outline: none;
}

.hero-wrap {
  padding-top: clamp(58px, 8vw, 108px);
}

.hero-title-wrap {
  overflow: hidden;
  text-align: center;
}

.hero-title-wrap h1 {
  max-width: 760px;
  margin-inline: auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5.15rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-title-wrap h1 em {
  font-style: italic;
  font-weight: 400;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--espresso);
  font-family: "Albert Sans", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

h1 {
  font-size: clamp(1.45rem, 2.9vw, 2.675rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(1.75rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.section-title h1 {
  font-size: clamp(1.75rem, 2.2vw, 2rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.35rem, 1.7vw, 1.5rem);
  line-height: 1.18;
}

p {
  margin: 0;
  color: var(--taupe);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-data {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  justify-items: center;
  gap: clamp(22px, 3.2vw, 42px);
  align-items: center;
  margin: 34px auto 38px;
  text-align: center;
}

.hero-data > p {
  min-width: 0;
  max-width: 520px;
  color: #5f4f49;
  font-size: 1.06rem;
}

.hero-copy {
  display: grid;
  gap: 22px;
  justify-items: center;
  min-width: 0;
  max-width: 680px;
  text-align: center;
}

.hero-copy > p {
  max-width: 650px;
  color: #5f4f49;
  font-size: 1.06rem;
}

.hero-credential {
  justify-self: start;
  text-align: left;
}

.trust-credential {
  width: fit-content;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.credential-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(19 13 11 / 28%);
  border-radius: 50%;
  color: var(--espresso);
  background:
    radial-gradient(circle at center, rgb(192 137 98 / 16%) 0 2px, transparent 3px),
    rgb(255 255 255 / 42%);
}

.credential-icon svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.credential-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credential-icon-large {
  width: 56px;
  height: 56px;
}

.credential-icon-large svg {
  width: 31px;
  height: 31px;
}

.trust-credential span:not(.credential-icon),
.review-credential span:not(.credential-icon),
.credential-points span {
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.trust-credential strong,
.review-credential strong {
  display: block;
  margin-top: 7px;
  color: var(--espresso);
  font-size: clamp(0.95rem, 1.1vw, 1.04rem);
  font-weight: 500;
  line-height: 1.25;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.hero-action-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 0;
  flex-wrap: wrap;
}

.hero-button {
  min-width: 178px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-button:hover,
.hero-button:focus-visible {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-1px);
}

.hero-ticker {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 34px;
  overflow: hidden;
  background: #e8d5c8;
  border-top: 1px solid rgb(33 23 21 / 16%);
  border-bottom: 1px solid rgb(33 23 21 / 16%);
  color: var(--espresso);
}

.hero-ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 13px 0;
  animation: ticker-scroll 28s linear infinite;
}

.hero-ticker span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: var(--espresso);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-ticker span::after {
  content: "";
  width: 5px;
  height: 5px;
  margin: 0 22px;
  border-radius: 50%;
  background: var(--rose);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ticker-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
    animation: none;
  }
}

.circle-link {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--espresso);
  border-radius: 50%;
  background: var(--white);
  text-decoration: none;
}

.circle-link span {
  color: var(--espresso);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
}

.circle-link.dark {
  border-color: var(--cream);
  background: transparent;
}

.circle-link.dark span {
  color: var(--cream);
}

.hero-img {
  aspect-ratio: 2.25 / 1;
  overflow: hidden;
}

.our-story,
.services,
.facts,
.appointment,
.works,
.team,
.reviews,
.blogs {
  padding: clamp(82px, 11vw, 150px) 0;
  border-top: 1px solid var(--line);
}

.welcome-section {
  background: var(--cream);
  padding: clamp(92px, 13vw, 168px) 0;
  border-top: 0;
}

.section-title {
  display: grid;
  gap: clamp(11px, 1.4vw, 16px);
  margin-bottom: clamp(34px, 6vw, 76px);
  max-width: none;
}

.section-title::after {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--line);
  order: 2;
}

.section-title span {
  display: flex;
  align-items: center;
  color: var(--rose);
  padding-top: 0;
  order: 3;
}

.section-title h2 {
  max-width: 720px;
  font-size: clamp(1.75rem, 2.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.12;
  order: 1;
}

.welcome-statement {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: clamp(22px, 3vw, 34px);
  text-align: center;
}

.welcome-kicker {
  color: var(--espresso);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.welcome-statement h2 {
  max-width: 980px;
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.55rem, 4.65vw, 4.85rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.welcome-statement h2 em {
  font-style: italic;
  font-weight: 400;
}

.welcome-statement p {
  max-width: 720px;
  color: var(--espresso);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.72;
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.welcome-actions a {
  min-width: 172px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.welcome-actions a:hover,
.welcome-actions a:focus-visible {
  background: var(--white);
  color: var(--espresso);
  outline: none;
}

.services {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: 0;
  border-top: 0;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
}

.services .section-title {
  margin-bottom: clamp(34px, 5vw, 64px);
}

.services .section-title h2 {
  color: inherit;
}

.services .section-title span {
  color: var(--rose);
}

.service-controls {
  width: min(100% - 48px, var(--max));
  margin: clamp(-42px, -3vw, -18px) auto 24px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.service-arrow {
  width: 52px;
  min-height: 52px;
  padding: 0;
  border: 1px solid rgb(19 13 11 / 34%);
  border-radius: 50%;
  background: transparent;
  color: transparent;
  font-size: 0;
  position: relative;
}

.service-arrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--espresso);
  border-right: 1px solid var(--espresso);
  position: absolute;
  top: 50%;
  left: 50%;
}

.service-arrow[data-service-prev]::before {
  transform: translate(-36%, -50%) rotate(-135deg);
}

.service-arrow[data-service-next]::before {
  transform: translate(-64%, -50%) rotate(45deg);
}

.service-arrow:hover {
  background: var(--espresso);
}

.service-arrow:hover::before {
  border-color: var(--cream);
}

.service-list {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, 34vw);
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0;
  scroll-snap-type: inline mandatory;
  padding: 0;
}

.service-list::-webkit-scrollbar {
  height: 6px;
}

.service-list::-webkit-scrollbar-track {
  background: var(--line);
}

.service-list::-webkit-scrollbar-thumb {
  background: rgb(192 137 98 / 78%);
}

.service-link-wrap {
  width: min(100% - 48px, var(--max));
  margin: 28px auto clamp(72px, 9vw, 124px);
  display: flex;
  justify-content: flex-end;
}

.service-link-wrap .text-button {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--espresso);
}

.service-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--espresso);
  color: inherit;
  scroll-snap-align: start;
  border-right: 1px solid rgb(247 241 232 / 14%);
  cursor: default;
}

.service-card img {
  position: absolute;
  inset: 0;
  opacity: 0.88;
  filter: grayscale(62%) brightness(0.78) contrast(1.04);
  transform: scale(1);
  transition: transform 0.65s ease, filter 0.45s ease, opacity 0.45s ease;
}

.service-card:hover img {
  opacity: 0.96;
  filter: grayscale(18%) brightness(0.86) contrast(1.06);
  transform: scale(1.05);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(19 13 11 / 10%) 0%,
    rgb(19 13 11 / 28%) 48%,
    rgb(19 13 11 / 92%) 100%
  );
  transition: background 0.4s ease;
}

.service-card:hover::after {
  background: linear-gradient(
    180deg,
    rgb(19 13 11 / 20%) 0%,
    rgb(19 13 11 / 46%) 55%,
    rgb(19 13 11 / 96%) 100%
  );
}

.service-card > div {
  position: absolute;
  left: clamp(22px, 2.8vw, 42px);
  right: clamp(22px, 2.8vw, 42px);
  bottom: clamp(24px, 3vw, 42px);
  z-index: 1;
}

.service-card p,
.blog-list span,
.kicker {
  margin-bottom: 7px;
  color: var(--rose);
}

.service-card h3 {
  color: rgb(255 255 255 / 92%);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: clamp(1.2rem, 1.42vw, 1.52rem);
  font-weight: 300;
  line-height: 1.22;
  text-transform: none;
  overflow-wrap: break-word;
}

.service-card p {
  color: var(--rose);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
}

.service-card span {
  display: block;
  max-width: 320px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgb(247 241 232 / 78%);
  font-size: 0.96rem;
  line-height: 1.55;
  opacity: 0;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
}

.service-card:hover span {
  max-height: 92px;
  margin-top: 16px;
  opacity: 1;
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-card-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgb(247 241 232 / 54%);
  color: rgb(247 241 232 / 92%);
  background: rgb(5 5 5 / 28%);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-card-actions a:hover,
.service-card-actions a:focus-visible {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--espresso);
  outline: none;
}

.facts {
  background: var(--espresso);
}

.facts-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.44fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: end;
}

.facts h2,
.facts p,
.facts .kicker,
.facts .text-button {
  color: var(--cream);
}

.facts .text-button {
  grid-column: 2;
  justify-self: start;
  padding-bottom: 8px;
  border-bottom: 1px solid rgb(247 241 232 / 58%);
}

.appointment {
  background: var(--espresso);
  color: var(--cream);
}

.appointment-wrapper {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: stretch;
}

.appointment-image {
  min-height: 620px;
}

.appointment-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.appointment-image img {
  object-position: center center;
}

.appointment-copy {
  display: grid;
  align-content: start;
  gap: 24px;
}

.appointment-copy h3,
.appointment-copy p,
.appointment .trust-credential strong {
  color: var(--cream);
}

.appointment-copy p {
  color: rgb(247 241 232 / 72%);
}

.appointment-proof {
  padding-top: 6px;
}

.appointment .credential-icon {
  border-color: rgb(247 241 232 / 38%);
  color: var(--cream);
  background:
    radial-gradient(circle at center, rgb(192 137 98 / 24%) 0 2px, transparent 3px),
    rgb(247 241 232 / 8%);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--espresso);
}

.appointment label span {
  color: rgb(247 241 232 / 78%);
}

input,
select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.appointment input,
.appointment select {
  border-color: rgb(247 241 232 / 28%);
  background: rgb(247 241 232 / 8%);
  color: var(--cream);
}

.appointment input::placeholder {
  color: rgb(247 241 232 / 46%);
}

button {
  min-height: 56px;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--cream);
  cursor: pointer;
}

.appointment button {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--espresso);
}

.works {
  background: var(--white);
}

.feed-intro {
  display: grid;
  grid-template-columns: minmax(0, 560px) auto;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  margin: calc(clamp(34px, 6vw, 76px) * -0.55) 0 clamp(34px, 5vw, 62px);
}

.feed-intro .text-button {
  align-self: end;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--espresso);
  white-space: nowrap;
}

.feed-frame {
  width: min(100% - 48px, 1480px);
  margin: 0 auto;
  padding: clamp(10px, 1.2vw, 18px);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(190px, 18vw));
  gap: clamp(10px, 1.2vw, 18px);
  overflow: hidden;
  background: var(--espresso);
}

.feed-card {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  background: var(--espresso);
  color: inherit;
  text-decoration: none;
  isolation: isolate;
}

.feed-card:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: -3px;
}

.feed-card-large {
  grid-column: span 6;
  grid-row: span 2;
}

.feed-card:not(.feed-card-large) {
  grid-column: span 3;
}

.feed-card.feed-card-wide {
  grid-column: span 6;
}

.feed-card img {
  position: absolute;
  inset: 0;
  filter: grayscale(34%) sepia(14%) brightness(0.88) contrast(1.02);
  transform: scale(1);
  transition: transform 0.7s ease, filter 0.45s ease;
}

.feed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgb(19 13 11 / 4%) 0%, rgb(19 13 11 / 28%) 58%, rgb(19 13 11 / 82%) 100%),
    linear-gradient(35deg, rgb(192 137 98 / 22%), rgb(247 241 232 / 4%) 46%, rgb(19 13 11 / 18%));
  mix-blend-mode: multiply;
}

.feed-card:hover img {
  filter: grayscale(18%) sepia(10%) brightness(0.93) contrast(1.04);
  transform: scale(1.045);
}

.feed-overlay {
  position: absolute;
  left: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  z-index: 2;
  display: grid;
  gap: 8px;
}

.feed-overlay span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgb(247 241 232 / 32%);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
  backdrop-filter: blur(12px);
}

.feed-overlay p {
  max-width: 340px;
  color: var(--cream);
  font-size: clamp(0.98rem, 1.3vw, 1.16rem);
  line-height: 1.38;
}

.provider-row {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.provider-feature {
  width: min(100%, 560px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--cream);
}

.provider-feature img {
  object-fit: contain;
  object-position: center;
}

.provider-content {
  display: grid;
  align-content: center;
  gap: clamp(18px, 2.5vw, 30px);
}

.provider-kicker {
  color: var(--rose);
}

.provider-content h2 {
  padding-bottom: clamp(18px, 2.5vw, 30px);
  border-bottom: 1px solid var(--line);
  font-size: clamp(2.7rem, 5.5vw, 5.6rem);
  font-weight: 500;
  line-height: 0.94;
}

.provider-copy {
  max-width: 580px;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.provider-copy p {
  color: rgb(19 13 11 / 74%);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.72;
}

.provider-copy .text-button {
  width: fit-content;
}

.review-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.review-img {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.review-img picture {
  display: block;
  width: 100%;
  height: 100%;
}

.review-img::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgb(19 13 11 / 48%));
}

.review-img strong {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 1;
  color: var(--white);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}

.review-copy {
  display: grid;
  gap: 20px;
}

.review-proof {
  display: grid;
  gap: clamp(14px, 1.7vw, 20px);
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 58%), transparent 58%),
    var(--cream);
}

.review-credential {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.review-proof p {
  max-width: 560px;
  color: var(--espresso);
  font-size: clamp(0.96rem, 1.12vw, 1.08rem);
  line-height: 1.56;
}

.credential-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgb(19 13 11 / 12%);
  background: rgb(19 13 11 / 12%);
}

.credential-points span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 11px 10px;
  background: rgb(255 255 255 / 54%);
  color: rgb(19 13 11 / 64%);
  text-align: center;
}

.review-link {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--espresso);
}

blockquote {
  margin: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--espresso);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  font-weight: 400;
  line-height: 1.58;
}

.review-stars {
  display: block;
  margin-bottom: 12px;
  color: var(--espresso);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

blockquote cite {
  display: block;
  margin-top: 14px;
  color: rgb(19 13 11 / 58%);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.journal-intro {
  max-width: 650px;
  margin: calc(clamp(34px, 6vw, 76px) * -0.55) 0 clamp(30px, 4vw, 48px);
  color: rgb(19 13 11 / 74%);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.68;
}

.blog-list article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.page-hero,
.service-detail-hero {
  padding: clamp(74px, 10vw, 142px) 0 clamp(58px, 8vw, 108px);
  background: var(--cream-blush);
}

.page-hero-grid,
.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
}

.page-hero h1,
.detail-hero-copy h1 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(2.4rem, 6.4vw, 5.7rem);
  line-height: 0.95;
}

.detail-hero-copy h1.service-title-compact {
  font-size: clamp(2.4rem, 5.8vw, 5.25rem);
}

.page-hero-copy,
.detail-hero-copy {
  min-width: 0;
  display: grid;
  gap: 22px;
}

.page-hero-copy p,
.detail-hero-copy p,
.detail-body p,
.split-copy p {
  color: rgb(19 13 11 / 72%);
  font-size: clamp(1rem, 1.22vw, 1.14rem);
  line-height: 1.72;
}

.page-hero-copy .text-button,
.back-link,
.detail-actions .text-button,
.split-copy .text-button {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--espresso);
}

.service-directory,
.service-method,
.service-planner,
.service-comparison,
.service-faq-preview,
.detail-content,
.detail-proof,
.detail-indications,
.detail-fit,
.detail-process,
.detail-timeline,
.detail-gallery,
.detail-split,
.detail-compare,
.detail-faq {
  padding: clamp(76px, 10vw, 136px) 0;
  border-top: 1px solid var(--line);
}

.service-planner {
  background: var(--white);
}

.service-planner-grid,
.fit-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.planner-list,
.comparison-grid,
.timeline-grid {
  display: grid;
  gap: 18px;
}

.planner-list article,
.comparison-grid article,
.timeline-grid article,
.fit-grid article {
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid var(--line);
  background: var(--white);
}

.planner-list article {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) minmax(0, 0.65fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
}

.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-menu-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.service-menu-layout > * {
  min-width: 0;
}

.service-filter-panel {
  position: sticky;
  top: 148px;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.3vw, 26px);
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 86%);
}

.service-filter-list {
  display: grid;
  gap: 8px;
}

.service-filter {
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--espresso);
  font: inherit;
  text-align: left;
}

.service-filter span,
.service-filter small {
  color: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-filter small {
  color: rgb(19 13 11 / 44%);
}

.service-filter:hover,
.service-filter.is-active {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--cream);
}

.service-filter:hover small,
.service-filter.is-active small {
  color: rgb(247 241 232 / 64%);
}

.service-filter-panel p {
  color: rgb(19 13 11 / 62%);
  font-size: 0.88rem;
  line-height: 1.6;
}

.directory-card.is-hidden {
  display: none;
}

.directory-card {
  min-height: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.directory-card-featured {
  grid-column: span 1;
}

.directory-card > a,
.directory-card > div {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  color: var(--espresso);
  text-decoration: none;
}

.directory-card img {
  position: relative;
  inset: auto;
  aspect-ratio: 1.18 / 1;
  opacity: 1;
  filter: grayscale(12%) brightness(0.98) contrast(1.02);
  transition: transform 0.7s ease, filter 0.45s ease, opacity 0.45s ease;
}

.directory-card > a::after,
.directory-card > div::after {
  content: none;
}

.directory-card > a:hover img {
  opacity: 0.96;
  filter: grayscale(0%) brightness(1) contrast(1.03);
  transform: scale(1.025);
}

.directory-card > a > div,
.directory-card-copy {
  position: relative;
  z-index: 1;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: clamp(18px, 2.2vw, 26px);
}

.directory-card p,
.directory-card h3,
.directory-card span,
.directory-card small,
.directory-card-actions {
  min-width: 0;
}

.directory-card p,
.directory-card strong,
.directory-card small,
.method-list > article > span,
.planner-list > article > span,
.timeline-grid > article > span,
.process-list > article > span,
.benefit-grid > article > span,
.summary-grid span {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.directory-card h3 {
  color: var(--espresso);
  font-size: clamp(1.24rem, 1.35vw, 1.4rem);
  font-weight: 400;
  line-height: 1.16;
}

.directory-card span {
  max-width: 420px;
  min-height: 4.65em;
  color: rgb(19 13 11 / 72%);
  font-size: 0.98rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.directory-card small {
  max-width: 420px;
  min-height: 3.65em;
  margin-top: 4px;
  color: rgb(19 13 11 / 58%);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
  text-transform: none;
  overflow-wrap: break-word;
}

.directory-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.directory-card-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgb(19 13 11 / 22%);
  background: var(--cream);
  color: var(--espresso);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.directory-card-actions a:hover,
.directory-card-actions a:focus-visible {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--cream);
  outline: none;
}

.service-method {
  background: var(--cream);
}

.service-comparison,
.detail-proof,
.detail-fit,
.detail-compare {
  background: var(--cream);
}

.service-detail-page .detail-proof,
.service-detail-page .detail-content,
.service-detail-page .detail-timeline,
.service-detail-page .detail-faq {
  background: var(--white);
}

.service-detail-page .detail-gallery,
.service-detail-page .detail-fit,
.service-detail-page .detail-compare {
  background: var(--espresso);
}

.service-detail-page .detail-indications,
.service-detail-page .detail-split {
  background: var(--cream);
}

.service-detail-page .detail-process {
  background: var(--cream-blush);
}

.service-detail-page .detail-gallery,
.service-detail-page .detail-fit,
.service-detail-page .detail-compare {
  border-color: rgb(247 241 232 / 18%);
}

.service-detail-page .detail-gallery .section-title h2,
.service-detail-page .detail-fit h2,
.service-detail-page .detail-compare .detail-aside h2,
.service-detail-page .detail-gallery .section-title span,
.service-detail-page .detail-fit .kicker,
.service-detail-page .detail-compare .kicker {
  color: var(--cream);
}

.service-detail-page .detail-gallery .section-title::after {
  background: rgb(247 241 232 / 24%);
}

.service-detail-page .detail-gallery .gallery-intro,
.service-detail-page .detail-fit ul,
.service-detail-page .detail-compare .detail-aside h2 {
  color: rgb(247 241 232 / 76%);
}

.service-detail-page .detail-fit article,
.service-detail-page .detail-compare .comparison-grid article {
  border-color: rgb(247 241 232 / 18%);
  background: rgb(247 241 232 / 7%);
}

.service-detail-page .detail-fit article h2,
.service-detail-page .detail-compare .comparison-grid h3 {
  color: var(--cream);
}

.service-detail-page .detail-fit li,
.service-detail-page .detail-compare .comparison-grid p {
  color: rgb(247 241 232 / 72%);
}

.service-detail-page .detail-gallery .gallery-disclaimer {
  color: rgb(247 241 232 / 64%);
}

.service-faq-preview {
  background: var(--white);
}

.services-page .page-hero {
  padding: clamp(40px, 5vw, 68px) 0 clamp(30px, 4vw, 48px);
}

.services-page .page-hero h1 {
  max-width: 620px;
  font-size: clamp(2.45rem, 4.8vw, 4.45rem);
}

.services-page .service-directory {
  padding-top: clamp(34px, 4.5vw, 62px);
}

.services-page .service-directory .section-title {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.service-method-grid,
.detail-content-grid,
.detail-split-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.method-list,
.benefit-grid,
.indication-grid,
.process-list,
.faq-list {
  display: grid;
  gap: 18px;
}

.method-list article,
.benefit-grid article,
.indication-grid article,
.process-list article,
.faq-list article {
  padding: clamp(22px, 2.8vw, 32px);
  border: 1px solid var(--line);
  background: var(--white);
}

.method-list article,
.process-list article {
  display: grid;
  grid-template-columns: minmax(80px, 0.2fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
}

.method-list h3,
.planner-list h3,
.comparison-grid h3,
.timeline-grid h3,
.fit-grid h2,
.process-list h3,
.benefit-grid h3,
.indication-grid h3,
.faq-list h3 {
  color: var(--espresso);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 500;
}

.fit-grid h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.method-list p,
.planner-list p,
.comparison-grid p,
.timeline-grid p,
.process-list p,
.benefit-grid p,
.indication-grid p,
.faq-list p {
  color: rgb(19 13 11 / 68%);
  font-size: 0.98rem;
  line-height: 1.62;
}

.service-cta {
  border-top: 0;
}

.light-button {
  width: fit-content;
  border-color: var(--cream);
  background: var(--cream);
  color: var(--espresso);
  text-decoration: none;
}

.detail-hero-grid {
  align-items: center;
}

.detail-hero-image {
  aspect-ratio: 0.86 / 1;
  overflow: hidden;
  background: var(--espresso);
}

.detail-hero-image img {
  filter: grayscale(24%) brightness(0.92) contrast(1.02);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.detail-summary {
  padding: 0;
  background: var(--espresso);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-left: 1px solid rgb(247 241 232 / 20%);
}

.summary-grid div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 30px);
  border-right: 1px solid rgb(247 241 232 / 20%);
}

.summary-grid strong {
  color: var(--cream);
  font-size: clamp(0.98rem, 1.18vw, 1.1rem);
  font-weight: 500;
  line-height: 1.42;
  overflow-wrap: break-word;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.82fr));
  gap: 18px;
}

.proof-grid article {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  background: var(--white);
}

.proof-grid article:first-child {
  align-content: start;
  background: var(--cream-blush);
  border-color: #dfc8b8;
}

.proof-grid article:first-child h2,
.proof-grid article:first-child p {
  color: var(--ink);
}

.proof-grid article.proof-award-card {
  align-content: stretch;
  grid-template-rows: auto 1fr;
}

.proof-award-mark {
  width: min(100%, 190px);
  min-height: 96px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid rgb(192 137 98 / 42%);
  background: linear-gradient(145deg, rgb(248 238 232 / 86%), rgb(255 255 255 / 96%));
  color: var(--espresso);
}

.proof-award-mark span {
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

.proof-award-mark small {
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-card-copy {
  align-self: end;
  display: grid;
  gap: 14px;
}

.proof-grid article > span:not(.kicker),
.proof-card-copy > span,
.gallery-disclaimer {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-grid strong {
  color: var(--espresso);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.12;
}

.detail-aside {
  position: sticky;
  top: 142px;
  display: grid;
  gap: 12px;
}

.detail-body {
  display: grid;
  gap: 20px;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(18px, 2.4vw, 28px);
}

.detail-indications {
  background: var(--white);
}

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

.detail-process {
  background: var(--cream-blush);
}

.detail-timeline {
  background: var(--white);
}

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

.detail-gallery {
  background: var(--cream);
}

.featured-results {
  padding-top: clamp(58px, 8vw, 104px);
}

.gallery-intro {
  max-width: 790px;
  margin: calc(clamp(34px, 6vw, 76px) * -0.48) 0 clamp(30px, 4vw, 48px);
  color: rgb(19 13 11 / 72%);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.68;
}

.results-carousel {
  display: grid;
  gap: 20px;
  padding: clamp(16px, 2.4vw, 28px);
  border: 1px solid var(--line);
  background: var(--white);
}

.results-carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.results-carousel-top p {
  margin-top: 6px;
  color: rgb(19 13 11 / 58%);
  font-size: 0.92rem;
}

.results-controls {
  display: flex;
  gap: 10px;
}

.results-controls button {
  min-width: 94px;
  min-height: 42px;
  border: 1px solid var(--espresso);
  background: var(--espresso);
  color: var(--cream);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.results-controls button:hover {
  background: transparent;
  color: var(--espresso);
}

.results-track {
  min-height: 1px;
}

.result-slide {
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.78fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 38px);
}

.result-slide.is-active {
  display: grid;
}

.ba-slider {
  --reveal: 50%;
  position: relative;
  min-height: 360px;
  aspect-ratio: 1.34 / 1;
  overflow: hidden;
  background: var(--cream-blush);
  touch-action: pan-y;
}

.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ba-after-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--reveal));
}

.ba-after-wrap .ba-image {
  width: 100%;
}

.ba-label {
  position: absolute;
  top: 12px;
  z-index: 3;
  padding: 7px 9px;
  background: rgb(255 255 255 / 84%);
  color: var(--espresso);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-label-before {
  left: 12px;
}

.ba-label-after {
  right: 12px;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  z-index: 4;
  width: 2px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 0 0 1px rgb(19 13 11 / 18%);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(19 13 11 / 16%);
  border-radius: 999px;
  background: rgb(255 255 255 / 88%);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 34px rgb(19 13 11 / 18%);
}

.ba-slider input {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.result-slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(18px, 2.6vw, 34px);
  background: var(--cream-blush);
}

.result-slide-copy h3 {
  color: var(--espresso);
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.08;
}

.result-slide-copy p {
  color: rgb(19 13 11 / 68%);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.result-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.result-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgb(19 13 11 / 34%);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.result-dots button.is-active {
  background: var(--espresso);
  border-color: var(--espresso);
}

.result-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.result-gallery-grid article {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--line);
  background: var(--white);
}

.result-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.result-pair figure {
  position: relative;
  aspect-ratio: 1 / 1.04;
  margin: 0;
  overflow: hidden;
  background: var(--cream-blush);
}

.result-pair img {
  object-position: center top;
}

.result-pair figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 8px;
  background: rgb(255 255 255 / 84%);
  color: var(--espresso);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.result-gallery-grid h3 {
  color: var(--espresso);
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  font-weight: 500;
}

.result-gallery-grid p {
  color: rgb(19 13 11 / 68%);
  font-size: 0.98rem;
  line-height: 1.62;
}

.gallery-disclaimer {
  max-width: 900px;
  margin-top: 24px;
  line-height: 1.5;
  text-transform: none;
}

.detail-split-grid {
  align-items: center;
}

.split-image {
  min-height: 620px;
  overflow: hidden;
}

.split-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.split-copy {
  display: grid;
  gap: 20px;
}

.gift-card-copy-only {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.gift-card-contact {
  margin: 0;
  font-weight: 600;
}

.gift-card-contact a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.gift-card-contact-light,
.appointment-copy .gift-card-contact-light {
  color: var(--cream);
}

.faq-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
}

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

.fit-grid article {
  display: grid;
  gap: 18px;
}

.fit-grid ul {
  margin: 0;
  padding-left: 19px;
  color: rgb(19 13 11 / 68%);
  font-size: 0.98rem;
  line-height: 1.7;
}

.fit-grid li + li {
  margin-top: 8px;
}

.service-detail-page .detail-proof,
.service-detail-page .detail-content,
.service-detail-page .detail-timeline,
.service-detail-page .detail-faq {
  background: var(--white);
}

.service-detail-page .detail-gallery,
.service-detail-page .detail-fit,
.service-detail-page .detail-compare {
  background: var(--espresso);
  border-color: rgb(247 241 232 / 18%);
}

.service-detail-page .detail-indications,
.service-detail-page .detail-split {
  background: var(--cream);
}

.service-detail-page .detail-process {
  background: var(--cream-blush);
}

.service-detail-page .detail-gallery .section-title h2,
.service-detail-page .detail-fit h2,
.service-detail-page .detail-compare .detail-aside h2,
.service-detail-page .detail-gallery .section-title span,
.service-detail-page .detail-fit .kicker,
.service-detail-page .detail-compare .kicker {
  color: var(--cream);
}

.service-detail-page .detail-gallery .section-title::after {
  background: rgb(247 241 232 / 24%);
}

.service-detail-page .detail-gallery .gallery-intro,
.service-detail-page .detail-fit ul,
.service-detail-page .detail-compare .detail-aside h2 {
  color: rgb(247 241 232 / 76%);
}

.service-detail-page .detail-fit article,
.service-detail-page .detail-compare .comparison-grid article {
  border-color: rgb(247 241 232 / 18%);
  background: rgb(247 241 232 / 7%);
}

.service-detail-page .detail-fit article h2,
.service-detail-page .detail-compare .comparison-grid h3 {
  color: var(--cream);
}

.service-detail-page .detail-fit li,
.service-detail-page .detail-compare .comparison-grid p {
  color: rgb(247 241 232 / 72%);
}

.service-detail-page .detail-gallery .gallery-disclaimer {
  color: rgb(247 241 232 / 64%);
}

.location-hero,
.not-found-hero {
  padding: clamp(66px, 9vw, 126px) 0;
  background: var(--cream-blush);
}

.location-hero-grid,
.not-found-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.72fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.location-hero-grid > div,
.not-found-grid > div {
  display: grid;
  gap: 22px;
}

.location-hero h1,
.not-found-hero h1 {
  max-width: 760px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6.4vw, 6.25rem);
  font-weight: 500;
  line-height: 0.92;
}

.location-hero p,
.not-found-hero p {
  max-width: 690px;
  color: rgb(19 13 11 / 72%);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.location-hero figure,
.not-found-hero figure {
  aspect-ratio: 0.82 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
}

.location-visit {
  padding: clamp(72px, 10vw, 132px) 0;
  background: var(--white);
}

.location-visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: stretch;
}

.location-map {
  min-height: 620px;
  overflow: hidden;
  background: var(--cream-blush);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: saturate(0.72) contrast(0.94);
}

.location-visit-copy {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(10px, 2vw, 26px) 0;
}

.location-visit-copy h2,
.location-local h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 4.75rem);
  font-weight: 500;
  line-height: 0.98;
}

.location-contact-list {
  display: grid;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.location-contact-list article {
  display: grid;
  gap: 9px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.location-contact-list span {
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-contact-list p {
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.location-contact-list article > a {
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--espresso);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.location-local {
  padding: clamp(72px, 10vw, 132px) 0;
  background: var(--cream-blush);
}

.location-local-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(42px, 9vw, 140px);
  align-items: end;
}

.location-local-grid > div {
  display: grid;
  gap: 22px;
}

.location-local p {
  max-width: 650px;
  color: rgb(19 13 11 / 72%);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.location-cta .appointment-copy .kicker {
  color: rgb(247 241 232 / 64%);
}

.footer {
  padding: clamp(72px, 10vw, 132px) 0 34px;
  background: var(--espresso);
  color: var(--cream);
}

.footer h2,
.footer p,
.footer a {
  color: var(--cream);
}

.footer h2 {
  max-width: 760px;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  line-height: 1.3;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding-bottom: clamp(52px, 8vw, 92px);
}

.footer-center {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid rgb(247 241 232 / 24%);
  border-bottom: 1px solid rgb(247 241 232 / 24%);
}

.footer-center img {
  height: auto;
  object-fit: contain;
}

.footer-links {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
}

@media (max-width: 980px) {
  .navbar {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-group {
    display: none;
  }

  .hero-data,
  .facts-wrap,
  .appointment-wrapper,
  .review-grid,
  .footer-center {
    grid-template-columns: 1fr;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .hero-title-wrap h1 {
    max-width: 640px;
    font-size: 4.25rem;
  }

  .feed-frame,
  .blog-list,
  .service-directory-grid,
  .benefit-grid,
  .indication-grid,
  .proof-grid,
  .result-gallery-grid,
  .timeline-grid,
  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero-grid,
  .detail-hero-grid,
  .service-planner-grid,
  .service-menu-layout,
  .service-method-grid,
  .result-slide,
  .detail-content-grid,
  .detail-split-grid {
    grid-template-columns: 1fr;
  }

  .service-filter-panel {
    position: static;
  }

  .directory-card-featured {
    grid-column: span 1;
  }

  .detail-aside {
    position: static;
  }

  .method-list article,
  .planner-list article,
  .process-list article,
  .faq-list article {
    grid-template-columns: 1fr;
  }

  .feed-intro {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .feed-frame {
    grid-template-rows: none;
    grid-auto-rows: minmax(156px, 28vw);
  }

  .feed-card,
  .feed-card:not(.feed-card-large),
  .feed-card-large,
  .feed-card-tall,
  .feed-card-wide {
    grid-column: span 1;
    grid-row: span 2;
  }

  .feed-card-large {
    grid-column: span 2;
    grid-row: span 3;
  }

  .service-list {
    grid-auto-columns: minmax(360px, 68vw);
  }

  .service-link-wrap {
    justify-content: flex-start;
  }

  .facts .text-button {
    grid-column: auto;
  }

  .appointment-image,
  .review-img {
    min-height: 460px;
  }

  .ba-slider {
    min-height: 330px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container,
  .navbar {
    width: min(100% - 32px, var(--max));
  }

  .navbar {
    min-height: 74px;
    gap: 16px;
  }

  .brand {
    width: 118px;
    height: 72px;
  }

  h1 {
    font-size: clamp(1.175rem, 5vw, 1.425rem);
  }

  .hero-title-wrap h1 {
    max-width: 360px;
    font-size: 3.15rem;
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2rem);
  }

  h3 {
    font-size: clamp(1.35rem, 6vw, 1.5rem);
  }

  .hero {
    padding-top: 0;
  }

  .hero-video-header {
    height: clamp(260px, 72vw, 420px);
  }

  .hero-wrap {
    padding-top: 38px;
  }

  .hero-data {
    margin-top: 22px;
  }

  .hero-data > p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-right {
    flex-wrap: wrap;
  }

  .hero-right {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-right {
    align-items: center;
  }

  .hero-action-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .hero-credential {
    justify-self: center;
  }

  .hero-info {
    justify-content: center;
  }

  .hero-info span {
    width: 62px;
  }

  .hero-img {
    aspect-ratio: 0.9 / 1;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-title span {
    padding-top: 0;
  }

  .feed-frame,
  .blog-list,
  .service-directory-grid,
  .benefit-grid,
  .indication-grid,
  .proof-grid,
  .result-gallery-grid,
  .comparison-grid,
  .timeline-grid,
  .fit-grid,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .welcome-statement {
    gap: 22px;
  }

  .welcome-statement h2 {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
    line-height: 1.02;
  }

  .welcome-statement p {
    font-size: 1rem;
  }

  .welcome-actions {
    width: 100%;
  }

  .welcome-actions a {
    flex: 1 1 100%;
    min-width: 0;
  }

  .page-hero h1,
  .detail-hero-copy h1 {
    font-size: clamp(2.25rem, 13vw, 3.5rem);
    overflow-wrap: anywhere;
  }

  .detail-hero-copy h1.service-title-compact {
    font-size: clamp(2.45rem, 10.6vw, 3.05rem);
    line-height: 1;
  }

  .page-hero-grid,
  .detail-hero-grid,
  .page-hero-copy,
  .detail-hero-copy,
  .detail-actions {
    min-width: 0;
    max-width: 100%;
  }

  .service-detail-page .detail-hero-grid {
    display: block;
    width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
    margin-inline: auto;
  }

  .service-detail-page .detail-hero-copy,
  .service-detail-page .detail-hero-image {
    width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
  }

  .service-detail-page .detail-hero-image {
    margin-top: 34px;
  }

  .page-hero-copy p,
  .detail-hero-copy p {
    max-width: calc(100vw - 48px) !important;
    width: calc(100vw - 48px) !important;
    overflow-wrap: break-word;
  }

  .alia-approach-page .detail-hero-copy p,
  .gift-cards-page .detail-hero-copy p {
    max-width: 100% !important;
    width: 100% !important;
  }

  .alia-approach-page .detail-hero-grid,
  .gift-cards-page .detail-hero-grid {
    width: min(100% - 32px, var(--max)) !important;
    max-width: var(--max) !important;
    margin-inline: auto;
  }

  .alia-approach-page .detail-hero-copy,
  .alia-approach-page .detail-hero-image,
  .gift-cards-page .detail-hero-copy,
  .gift-cards-page .detail-hero-image {
    width: 100% !important;
    max-width: 100% !important;
  }

  .detail-actions {
    align-items: flex-start;
  }

  .detail-actions .nav-button {
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .results-carousel {
    padding: 12px;
  }

  .results-carousel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .results-controls {
    width: 100%;
  }

  .results-controls button {
    flex: 1;
    min-width: 0;
  }

  .ba-slider {
    min-height: 250px;
    aspect-ratio: 0.88 / 1;
  }

  .ba-label {
    top: 10px;
    padding: 6px 7px;
    font-size: 0.62rem;
  }

  .ba-label-before {
    left: 10px;
  }

  .ba-label-after {
    right: 10px;
  }

  .ba-handle::after {
    width: 36px;
    height: 36px;
  }

  .result-slide-copy {
    padding: 18px;
  }

  .service-filter-panel {
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .service-filter-list {
    display: grid;
    gap: 8px;
    margin-inline: 0;
    padding: 0;
    max-width: none;
    overflow-x: visible;
  }

  .service-filter {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 11px 13px;
    border-color: var(--line);
    background: var(--white);
  }

  .service-filter-panel p {
    font-size: 0.82rem;
  }

  .summary-grid div {
    min-height: 128px;
  }

  .split-image {
    min-height: auto;
    aspect-ratio: 0.86 / 1;
  }

  .feed-frame {
    width: min(100% - 32px, var(--max));
    padding: 10px;
    gap: 10px;
    grid-auto-rows: auto;
  }

  .feed-card,
  .feed-card:not(.feed-card-large),
  .feed-card-large,
  .feed-card-tall,
  .feed-card-wide {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 1 / 1.08;
  }

  .feed-card-large,
  .feed-card-tall,
  .feed-card-wide {
    aspect-ratio: 0.82 / 1;
  }

  .service-list {
    grid-auto-columns: minmax(340px, 92vw);
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .service-link-wrap {
    width: min(100% - 32px, var(--max));
  }

  .service-card {
    min-height: 500px;
  }

  .service-card h3 {
    font-size: clamp(1.32rem, 5.8vw, 1.62rem);
  }

  .directory-card span,
  .directory-card small {
    min-height: 0;
  }

  .story-small,
  .story-large,
  .appointment-image,
  .review-img {
    min-height: auto;
    height: auto;
    aspect-ratio: 0.86 / 1;
  }

  .provider-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .provider-feature {
    width: 100%;
    aspect-ratio: 2 / 3;
  }

  .provider-content {
    gap: 16px;
  }

  .provider-content h2 {
    padding-bottom: 18px;
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .trust-credential {
    width: fit-content;
    max-width: 100%;
  }

  .review-credential {
    align-items: start;
  }

  .credential-points {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    display: grid;
  }
}

/* Alia Approach — Angie portrait treatment */
.alia-approach-page .approach-portrait {
  background: #e8ded5;
}

.alia-approach-page .approach-portrait picture {
  display: block;
  width: 100%;
  height: 100%;
}

.alia-approach-page .approach-portrait img {
  object-fit: cover;
  object-position: center;
  filter: none;
}

.alia-approach-page .approach-specialty {
  background: var(--cream-blush);
}

/* Journal */
.blog-list article {
  gap: 18px;
}

.blog-list h3 a,
.journal-card h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-list article > .text-button {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--espresso);
}

.journal-home-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.journal-home-link .text-button {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--espresso);
}

.journal-index-hero,
.journal-article-hero {
  background: var(--cream-blush);
}

.journal-index-hero {
  padding: clamp(82px, 12vw, 160px) 0 clamp(74px, 10vw, 130px);
}

.journal-index-hero .container {
  max-width: 940px;
  text-align: center;
}

.journal-index-hero h1 {
  margin: 18px 0 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.9rem, 6.8vw, 5.8rem);
  font-weight: 500;
  line-height: 0.98;
}

.journal-index-hero h1 em {
  font-weight: 400;
}

.journal-index-hero p {
  max-width: 660px;
  margin: 0 auto;
  color: rgb(19 13 11 / 72%);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.review-status {
  display: inline-block;
  margin-top: 28px;
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.journal-directory {
  padding: clamp(72px, 10vw, 132px) 0;
}

.journal-card-grid {
  display: grid;
  gap: clamp(48px, 7vw, 92px);
  margin-top: clamp(44px, 6vw, 74px);
}

.journal-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 94px);
  align-items: center;
  padding-bottom: clamp(48px, 7vw, 84px);
  border-bottom: 1px solid var(--line);
}

.journal-card:nth-child(even) .journal-card-image {
  order: 2;
}

.journal-card-image {
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: var(--cream);
}

.journal-card > div {
  display: grid;
  gap: 20px;
}

.journal-card > div > span {
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-card h2 {
  max-width: 620px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3.25vw, 3.35rem);
  font-weight: 500;
  line-height: 1.04;
}

.journal-card .text-button {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--espresso);
}

.journal-article-hero {
  padding: clamp(66px, 9vw, 126px) 0;
}

.journal-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: center;
}

.journal-article-hero-grid > div {
  display: grid;
  gap: 22px;
}

.journal-article-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 6.4vw, 6rem);
  font-weight: 500;
  line-height: 0.92;
}

.journal-article-hero p {
  max-width: 690px;
  color: rgb(19 13 11 / 72%);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.journal-article-hero figure {
  aspect-ratio: 0.82 / 1;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
}

.journal-article {
  padding: clamp(70px, 10vw, 138px) 24px;
}

.journal-article-body {
  width: min(100%, 760px);
  margin: 0 auto;
}

.journal-article-body h2 {
  margin: clamp(46px, 7vw, 72px) 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
}

.journal-article-body h3 {
  margin: 34px 0 13px;
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  font-weight: 500;
}

.journal-article-body p,
.journal-article-body li {
  color: #584a45;
  font-size: clamp(1rem, 1.16vw, 1.1rem);
  line-height: 1.82;
}

.journal-article-body p + p {
  margin-top: 20px;
}

.journal-article-body ul {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding-left: 24px;
}

.article-cta {
  margin-top: 44px !important;
  padding: 30px;
  border-left: 3px solid var(--rose);
  background: var(--cream-blush);
}

.medical-note {
  margin-top: 40px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  color: rgb(19 13 11 / 68%);
  font-size: 0.88rem;
  line-height: 1.7;
}

.journal-next {
  padding: clamp(64px, 9vw, 110px) 0;
  background: var(--cream-blush);
  text-align: center;
}

.journal-next .container {
  display: grid;
  justify-items: center;
  gap: 24px;
}

.journal-next h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 500;
}

.journal-next .container > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  align-items: center;
}

.journal-next .text-button {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--espresso);
}

@media (max-width: 900px) {
  .journal-card,
  .journal-article-hero-grid,
  .location-hero-grid,
  .location-visit-grid,
  .location-local-grid,
  .not-found-grid {
    grid-template-columns: 1fr;
  }

  .location-map,
  .location-map iframe {
    min-height: 480px;
  }

  .journal-card:nth-child(even) .journal-card-image {
    order: 0;
  }

  .journal-article-hero figure,
  .location-hero figure,
  .not-found-hero figure {
    max-height: 620px;
  }
}

@media (max-width: 640px) {
  .journal-index-hero {
    padding: 62px 0 68px;
  }

  .journal-index-hero .container {
    text-align: left;
  }

  .journal-index-hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.2rem);
    line-height: 1;
  }

  .journal-index-hero p {
    margin: 0;
  }

  .journal-card h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    line-height: 1.08;
  }

  .journal-card-image {
    aspect-ratio: 1 / 0.82;
  }

  .journal-article-hero figure,
  .location-hero figure,
  .not-found-hero figure {
    aspect-ratio: 1 / 0.9;
  }

  .location-map,
  .location-map iframe {
    min-height: 390px;
  }

  .location-visit-copy {
    padding-top: 0;
  }
}

/* Mobile conversion and navigation pass */
.mobile-nav-toggle,
.mobile-nav-panel {
  display: none;
}

@media (max-width: 980px) {
  .navbar {
    position: relative;
    grid-template-columns: 1fr auto 1fr;
    justify-items: stretch;
  }

  .navbar .brand {
    grid-column: 2;
  }

  .mobile-nav-toggle {
    grid-column: 3;
    display: inline-grid;
    place-self: center end;
    align-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    margin-inline: auto;
    background: var(--espresso);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    gap: 0;
    padding: 10px 16px 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgb(255 255 255 / 98%);
    box-shadow: 0 16px 30px rgb(19 13 11 / 10%);
  }

  .mobile-nav-panel[hidden] {
    display: none;
  }

  .mobile-nav-panel a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--espresso);
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-nav-panel .mobile-nav-book {
    justify-content: center;
    margin-top: 12px;
    padding-inline: 18px;
    border: 1px solid var(--espresso);
    background: var(--espresso);
    color: var(--cream);
  }

  body.mobile-nav-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .service-card-actions a,
  .service-filter,
  .results-controls button {
    min-height: 44px;
  }

  .service-card span {
    max-height: none;
    margin-top: 12px;
    opacity: 1;
  }

  .text-button,
  .journal-card .text-button,
  .journal-next .text-button,
  .journal-home-link .text-button,
  .feed-intro .text-button,
  .provider-copy .text-button,
  .facts .text-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding-block: 10px;
  }

  .location-visit-copy a[href^="tel:"],
  .location-visit-copy a[href^="mailto:"] {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .directory-card-actions a {
    min-height: 44px;
  }

  .service-detail-page .detail-hero-grid,
  .service-detail-page .detail-hero-copy,
  .service-detail-page .detail-hero-image {
    width: 100% !important;
    max-width: 100% !important;
  }

  .result-dots {
    gap: 2px;
  }

  .result-dots button {
    position: relative;
    width: 44px;
    height: 44px;
    border-color: transparent;
    background: transparent;
  }

  .result-dots button::after {
    content: "";
    position: absolute;
    inset: 17px;
    border: 1px solid rgb(19 13 11 / 34%);
    border-radius: 999px;
    background: transparent;
  }

  .result-dots button.is-active {
    border-color: transparent;
    background: transparent;
  }

  .result-dots button.is-active::after {
    border-color: var(--espresso);
    background: var(--espresso);
  }

  .ba-label {
    font-size: 0.75rem;
  }

  .hero-title-wrap h1 {
    line-height: 1.02;
  }

  .welcome-statement h2 {
    line-height: 1.1;
  }

  .location-map,
  .location-map iframe {
    min-height: 300px;
  }
}

.hero-video-cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .service-detail-page .detail-hero-grid {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .service-detail-page .detail-hero-copy,
  .service-detail-page .detail-hero-image,
  .service-detail-page .detail-hero-copy p {
    width: 100% !important;
    max-width: 100% !important;
  }
}
