/* Public clinic location pages */

.public-body--locations .public-main {
    padding: 0;
}

.loc-page {
    --loc-max: 1180px;
    --loc-section-y: clamp(2rem, 4vw, 3rem);
    --loc-gap: 1.25rem;
    color: var(--md-charcoal);
    background:
        radial-gradient(circle at 92% 0%, rgba(228, 165, 198, 0.12) 0%, transparent 28%),
        linear-gradient(180deg, var(--lav100) 0%, #fff 22%, #fff 100%);
}

.loc-wrap {
    width: min(var(--loc-max), 92vw);
    margin: 0 auto;
}

/* ── Hero ── */

.loc-hero {
    padding: var(--intro-pad-y) var(--intro-pad-x) calc(var(--intro-pad-y) + 0.35rem);
    border-bottom: 1px solid var(--lav200);
    background:
        radial-gradient(circle at 88% 12%, rgba(228, 165, 198, 0.14) 0%, transparent 34%),
        linear-gradient(165deg, var(--lav100) 0%, #fff 58%, var(--sage50) 100%);
}

.loc-eyebrow,
.loc-back {
    display: inline-block;
    margin: 0 0 var(--intro-gap);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lav800);
    text-decoration: none;
}

.loc-hero h1 {
    margin: 0 0 0.65rem;
    max-width: 16ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: var(--intro-title-size);
    font-weight: 400;
    line-height: 1.14;
    color: var(--lav900);
}

.loc-hero h1 em {
    display: block;
    font-style: italic;
    color: var(--lav800);
}

.loc-lead {
    margin: 0;
    max-width: 42rem;
    font-size: var(--intro-lead-size);
    line-height: 1.55;
    color: rgba(58, 58, 58, 0.82);
}

/* ── Sections ── */

.loc-section {
    padding: var(--loc-section-y) var(--intro-pad-x);
}

.loc-section--open {
    padding-top: calc(var(--loc-section-y) - 0.35rem);
}

.loc-section--soon {
    background: var(--lav100);
    border-block: 1px solid var(--lav200);
}

.loc-section--care {
    background: #fff;
}

.loc-section--visit {
    background: linear-gradient(180deg, #fff 0%, var(--sage50) 100%);
}

.loc-section--expect {
    background: #fff;
}

.loc-section--online {
    padding-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}

.loc-section__head {
    margin-bottom: 1.35rem;
    max-width: 44rem;
}

.loc-section__head--stack h2 {
    margin-bottom: 0.5rem;
}

.loc-section__head--center {
    text-align: center;
    margin-inline: auto;
    margin-bottom: 1.5rem;
}

.loc-section__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lav800);
}

.loc-section__head h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 2.6vw, 1.9rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--lav900);
}

.loc-section__lead {
    margin: 0.55rem 0 0;
    font-size: var(--intro-lead-size);
    line-height: 1.55;
    color: rgba(58, 58, 58, 0.78);
}

/* ── Grids & cards ── */

.loc-grid {
    display: grid;
    gap: var(--loc-gap);
}

.loc-grid--open {
    grid-template-columns: 1fr;
}

.loc-grid--soon {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.loc-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--lav200);
    border-radius: var(--md-radius);
    overflow: hidden;
    box-shadow: var(--md-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.loc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(97, 70, 125, 0.1);
}

.loc-card--open {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
}

.loc-card--soon {
    background: linear-gradient(180deg, #fff 0%, var(--lav100) 100%);
}

.loc-card__media {
    overflow: hidden;
    min-height: 0;
}

.loc-card--open .loc-card__media {
    width: 100%;
    aspect-ratio: 16 / 10;
}

.loc-card__media img,
.loc-card__placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
}

.loc-card--open .loc-card__media img,
.loc-card--open .loc-card__placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center;
}

.loc-card__placeholder {
    display: grid;
    place-items: center;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--lav800);
    background: linear-gradient(145deg, #efe6f8, var(--lav100));
}

.loc-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    padding: 1.1rem 1.15rem 1.15rem;
}

.loc-card__meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.6rem;
    margin-bottom: 0.5rem;
}

.loc-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.loc-badge--active {
    background: rgba(132, 161, 141, 0.18);
    color: #3f5f49;
}

.loc-badge--soon {
    background: rgba(91, 66, 117, 0.1);
    color: var(--lav800);
}

.loc-card__city {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(58, 58, 58, 0.55);
}

.loc-card__title {
    margin: 0 0 0.35rem;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--lav900);
    line-height: 1.3;
}

.loc-card__date,
.loc-detail__date {
    margin: 0 0 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--lav800);
}

.loc-card__date--open {
    color: #4d6d57;
}

.loc-card__summary,
.loc-card__meta,
.loc-detail__intro {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(58, 58, 58, 0.78);
}

.loc-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
}

.loc-card__pills span {
    display: inline-flex;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: var(--lav100);
    color: var(--lav800);
    font-size: 0.72rem;
    font-weight: 600;
}

.loc-card__details {
    list-style: none;
    margin: 0 0 0.5rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.loc-card__details li {
    display: grid;
    grid-template-columns: 1.1rem 1fr;
    gap: 0.45rem;
    align-items: start;
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(58, 58, 58, 0.72);
}

.loc-card__details a {
    color: var(--lav800);
    text-decoration: none;
    font-weight: 500;
}

.loc-card__details a:hover {
    text-decoration: underline;
}

.loc-card__detail-icon {
    display: inline-flex;
    margin-top: 0.1rem;
    color: var(--lav800);
}

.loc-card__detail-icon svg {
    width: 1rem;
    height: 1rem;
}

.loc-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 0.75rem;
}

.loc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.loc-btn--primary {
    background: var(--lav800);
    color: #fff;
}

.loc-btn--primary:hover {
    background: var(--lav900);
}

.loc-btn--ghost {
    background: #fff;
    color: var(--lav800);
    border-color: var(--lav300);
}

.loc-btn--ghost:hover {
    background: var(--lav100);
}

/* ── Care grid ── */

.loc-care-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--loc-gap);
}

.loc-care-card {
    padding: 1.15rem 1.1rem;
    border-radius: var(--md-radius);
    background: var(--lav100);
    border: 1px solid var(--lav200);
}

.loc-care-card h3 {
    margin: 0 0 0.4rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--lav900);
}

.loc-care-card p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(58, 58, 58, 0.74);
}

/* ── Visit steps ── */

.loc-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--loc-gap);
}

.loc-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    padding: 1.15rem 1.1rem;
    border-radius: var(--md-radius);
    background: #fff;
    border: 1px solid var(--lav200);
    box-shadow: var(--md-shadow);
}

.loc-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: var(--lav800);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.loc-step h3 {
    margin: 0 0 0.35rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--lav900);
}

.loc-step p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(58, 58, 58, 0.74);
}

/* ── Features ── */

.loc-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--loc-gap);
}

.loc-feature {
    padding: 1.2rem 1.1rem;
    border-radius: var(--md-radius);
    background: var(--lav100);
    border: 1px solid var(--lav200);
}

.loc-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.65rem;
    border-radius: 10px;
    background: #fff;
    color: var(--lav800);
}

.loc-feature__icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.loc-feature h3 {
    margin: 0 0 0.4rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--lav900);
}

.loc-feature p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(58, 58, 58, 0.74);
}

/* ── Online CTA ── */

.loc-online__card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 1.25rem 2rem;
    align-items: center;
    padding: clamp(1.35rem, 2.8vw, 2rem);
    border-radius: calc(var(--md-radius) + 4px);
    background: linear-gradient(135deg, var(--lav900) 0%, var(--lav800) 55%, #6d5389 100%);
    color: #fff;
    box-shadow: 0 16px 40px rgba(61, 47, 82, 0.2);
}

.loc-online__copy h2 {
    margin: 0.3rem 0 0.55rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 400;
    line-height: 1.2;
}

.loc-online__copy p {
    margin: 0;
    max-width: 36rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.84);
}

.loc-online__card .loc-section__eyebrow {
    color: rgba(255, 255, 255, 0.68);
}

.loc-online__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 176px;
}

.loc-online__actions .loc-btn--primary {
    background: var(--md-sage);
    color: #fff;
}

.loc-online__actions .loc-btn--primary:hover {
    background: #6f8f79;
}

.loc-online__actions .loc-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.loc-online__actions .loc-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ── Empty state ── */

.loc-empty {
    padding: 2rem 1.25rem;
    text-align: center;
    border-radius: var(--md-radius);
    background: #fff;
    border: 1px solid var(--lav200);
}

.loc-empty h2 {
    margin: 0 0 0.45rem;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: var(--lav900);
}

.loc-empty p {
    margin: 0 0 1.1rem;
    color: rgba(58, 58, 58, 0.74);
}

/* ── Detail page hero ── */

.loc-page--detail {
    background: linear-gradient(180deg, var(--lav100) 0%, #fff 38%, #fff 100%);
}

.loc-detail-hero {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.5rem) var(--intro-pad-x) clamp(2rem, 4vw, 3rem);
    overflow: hidden;
}

.loc-detail-hero::before {
    content: "";
    position: absolute;
    top: -12%;
    right: -8%;
    width: min(42vw, 420px);
    height: min(42vw, 420px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202, 196, 210, 0.45) 0%, rgba(244, 241, 250, 0) 72%);
    pointer-events: none;
}

.loc-detail-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(1.5rem, 3.5vw, 3rem);
    align-items: center;
}

.loc-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    color: rgba(91, 66, 117, 0.72);
}

.loc-breadcrumbs a {
    color: var(--lav800);
    text-decoration: none;
    font-weight: 500;
}

.loc-breadcrumbs a:hover {
    text-decoration: underline;
}

.loc-breadcrumbs span[aria-current="page"] {
    color: rgba(58, 58, 58, 0.72);
}

.loc-detail-hero__copy h1 {
    margin: 0 0 0.85rem;
    max-width: 22ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4.2vw, 2.85rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--lav900);
}

.loc-detail-hero__copy h1 em {
    font-style: italic;
    color: var(--lav800);
}

.loc-detail-hero__lead {
    margin: 0 0 1.1rem;
    max-width: 34rem;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    line-height: 1.6;
    color: rgba(58, 58, 58, 0.82);
}

.loc-detail-hero__date {
    margin: -0.35rem 0 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--lav800);
}

.loc-detail-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.35rem;
}

.loc-detail-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--lav200);
    box-shadow: 0 4px 14px rgba(97, 70, 125, 0.05);
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(58, 58, 58, 0.82);
}

.loc-detail-hero__chip-icon {
    display: inline-flex;
    color: var(--lav800);
}

.loc-detail-hero__chip-icon svg {
    width: 1rem;
    height: 1rem;
}

.loc-detail-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.loc-btn--sage {
    background: var(--md-sage);
    color: #fff;
    padding: 0.72rem 1.35rem;
    font-size: 0.92rem;
}

.loc-btn--sage:hover {
    background: #6f8f79;
}

.loc-btn--directions {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff;
    color: var(--lav800);
    border: 1px solid var(--lav300);
    padding: 0.72rem 1.2rem;
    font-size: 0.92rem;
}

.loc-btn--directions:hover {
    background: var(--lav100);
}

.loc-btn__icon {
    display: inline-flex;
}

.loc-btn__icon svg {
    width: 1rem;
    height: 1rem;
}

.loc-detail-hero__visual {
    min-width: 0;
}

.loc-detail-hero__card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(165deg, #efe6f8 0%, #faf7fd 55%, #f5faf4 100%);
    box-shadow: 0 22px 48px rgba(61, 47, 82, 0.12);
    aspect-ratio: 3 / 2;
    width: 100%;
}

.loc-detail-hero__card img,
.loc-detail-hero__placeholder {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.loc-detail-hero__placeholder {
    display: grid;
    place-items: end start;
    padding: 1.25rem;
    color: rgba(91, 66, 117, 0.72);
    font-size: 0.82rem;
    font-weight: 500;
    background: linear-gradient(165deg, #efe6f8 0%, #faf7fd 55%, #f5faf4 100%);
}

.loc-detail-hero__status {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(61, 47, 82, 0.1);
    font-size: 0.8rem;
    font-weight: 700;
    color: #4f6f57;
}

.loc-detail-hero__status--soon {
    color: var(--lav800);
}

.loc-detail-hero__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--md-sage);
    box-shadow: 0 0 0 rgba(132, 161, 141, 0.45);
    animation: locPulseDot 1.8s ease-in-out infinite;
}

@keyframes locPulseDot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(132, 161, 141, 0.45);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(132, 161, 141, 0);
    }
}

/* ── Detail page body ── */

.loc-detail {
    padding: 0 var(--intro-pad-x) 2.5rem;
}

.loc-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: var(--loc-gap);
    align-items: start;
}

.loc-map--detail {
    min-height: 280px;
}

/* ── Care team ── */

.loc-care-team {
    padding: clamp(2rem, 4vw, 3rem) var(--intro-pad-x);
    background: #fff;
    border-top: 1px solid var(--lav200);
}

.loc-care-team__head {
    max-width: 44rem;
    margin-bottom: 1.5rem;
}

.loc-care-team__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lav800);
}

.loc-care-team__head h2 {
    margin: 0 0 0.75rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.85rem, 3.8vw, 2.75rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--lav900);
}

.loc-care-team__head h2 em {
    font-style: italic;
    color: var(--lav800);
}

.loc-care-team__lead {
    margin: 0;
    font-size: var(--intro-lead-size);
    line-height: 1.6;
    color: rgba(58, 58, 58, 0.8);
}

.loc-care-team__filters-wrap {
    margin-bottom: 1.5rem;
}

.loc-care-team__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.55rem;
}

.loc-care-team__more {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.loc-care-team__more[hidden] {
    display: none !important;
}

.loc-care-team__filter {
    appearance: none;
    border: 1px solid var(--lav300);
    background: #fff;
    color: var(--lav800);
    font: inherit;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.loc-care-team__filter:hover:not(:disabled) {
    background: var(--lav100);
}

.loc-care-team__filter.is-active {
    background: var(--lav900);
    border-color: var(--lav900);
    color: #fff;
}

.loc-care-team__filter:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.loc-care-team__filter--more {
    border-style: dashed;
}

.loc-care-team__filter-hint {
    margin: 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(58, 58, 58, 0.55);
    letter-spacing: 0.02em;
}

.loc-care-team__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.loc-care-team .mendify-therapist-card[hidden] {
    display: none !important;
}

.loc-care-team__empty {
    margin: 1.25rem 0 0;
    text-align: center;
    color: rgba(58, 58, 58, 0.72);
}

.loc-care-team__empty[hidden] {
    display: none !important;
}

/* ── Clinic detail: What to expect ── */

.loc-expect {
    padding: var(--loc-section-y) var(--intro-pad-x);
    background: linear-gradient(180deg, rgba(245, 241, 250, 0.65) 0%, rgba(250, 248, 252, 0.35) 100%);
}

.loc-expect__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4.5vw, 3.75rem);
    align-items: center;
}

.loc-expect__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lav800);
}

.loc-expect__title {
    margin: 0;
    max-width: 14ch;
    font-family: var(--font-serif, Georgia, serif);
    font-size: clamp(1.85rem, 3.2vw, 2.55rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--lav900);
}

.loc-expect__title em {
    display: block;
    font-style: italic;
    color: var(--lav600, #8b6fad);
}

.loc-expect__lead {
    margin: 1rem 0 0;
    max-width: 42ch;
    font-size: 0.94rem;
    line-height: 1.6;
    color: rgba(58, 58, 58, 0.78);
}

.loc-expect__features {
    list-style: none;
    margin: 1.65rem 0 0;
    padding: 0;
    display: grid;
    gap: 1.15rem;
}

.loc-expect__feature {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem 1rem;
    align-items: start;
}

.loc-expect__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    background: #fff;
    color: var(--lav800);
    box-shadow: 0 1px 0 rgba(91, 66, 117, 0.06);
}

.loc-expect__feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.loc-expect__feature-body h3 {
    margin: 0 0 0.25rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--lav900);
}

.loc-expect__feature-body p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(58, 58, 58, 0.74);
}

.loc-expect__gallery {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.8rem;
    min-height: clamp(18rem, 34vw, 26rem);
}

.loc-expect__gallery-item {
    position: relative;
    margin: 0;
    min-height: 0;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(214, 198, 232, 0.55) 0%, rgba(245, 241, 250, 0.9) 100%);
}

.loc-expect__gallery-item--large {
    grid-row: 1 / -1;
}

.loc-expect__gallery-item img,
.loc-expect__gallery-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.loc-expect__gallery-placeholder {
    background: linear-gradient(145deg, rgba(201, 181, 224, 0.45) 0%, rgba(248, 245, 252, 0.95) 100%);
}

.loc-expect__gallery-label {
    position: absolute;
    left: 0.9rem;
    bottom: 0.9rem;
    margin: 0;
    padding: 0.38rem 0.9rem;
    border-radius: 999px;
    background: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--lav900);
    box-shadow: 0 4px 18px rgba(44, 32, 58, 0.08);
}

/* ── Clinic detail: Client stories ── */

.loc-stories {
    padding: var(--loc-section-y) var(--intro-pad-x);
    background: #fff;
}

.loc-stories__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.5rem 2.5rem;
    align-items: end;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.loc-stories__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lav800);
}

.loc-stories__title {
    margin: 0;
    font-family: var(--font-serif, Georgia, serif);
    font-size: clamp(1.85rem, 3.2vw, 2.55rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--lav900);
}

.loc-stories__title em {
    font-style: italic;
    color: var(--lav600, #8b6fad);
}

.loc-stories__lead {
    margin: 0;
    max-width: 38ch;
    justify-self: end;
    font-size: 0.94rem;
    line-height: 1.6;
    color: rgba(58, 58, 58, 0.78);
}

.loc-stories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--loc-gap);
}

.loc-stories__card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.35rem 1.25rem 1.15rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(248, 245, 252, 0.95) 0%, rgba(242, 237, 248, 0.75) 100%);
    border: 1px solid rgba(91, 66, 117, 0.08);
    overflow: hidden;
}

.loc-stories__quote-mark {
    position: absolute;
    top: 0.65rem;
    right: 0.85rem;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(139, 111, 173, 0.14);
    pointer-events: none;
    user-select: none;
}

.loc-stories__stars {
    display: flex;
    gap: 0.12rem;
    margin-bottom: 0.85rem;
}

.loc-stories__star {
    font-size: 0.92rem;
    line-height: 1;
    color: rgba(91, 66, 117, 0.18);
}

.loc-stories__star.is-filled {
    color: #d4a017;
}

.loc-stories__quote {
    margin: 0;
    flex: 1;
}

.loc-stories__quote p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
    color: rgba(42, 42, 42, 0.88);
}

.loc-stories__footer {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.15rem;
    padding-top: 0.85rem;
}

.loc-stories__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: var(--lav800);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.loc-stories__meta {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.loc-stories__name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--lav900);
}

.loc-stories__location {
    font-size: 0.78rem;
    font-weight: 600;
    color: #4f8f6a;
}

/* ── Clinic detail: Find us ── */

.loc-find-us {
    padding: clamp(2.5rem, 5vw, 4rem) var(--intro-pad-x);
    background:
        radial-gradient(circle at 12% 0%, rgba(118, 88, 150, 0.22) 0%, transparent 34%),
        linear-gradient(165deg, #2f2340 0%, #241b33 48%, #1d1628 100%);
    color: #fff;
}

.loc-find-us__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.25rem);
    align-items: stretch;
}

.loc-find-us__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.loc-find-us__title {
    margin: 0;
    max-width: 14ch;
    font-family: var(--font-serif, Georgia, serif);
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
}

.loc-find-us__title em {
    display: block;
    font-style: italic;
    color: rgba(214, 198, 232, 0.95);
}

.loc-find-us__lead {
    margin: 1rem 0 0;
    max-width: 42ch;
    font-size: 0.94rem;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.78);
}

.loc-find-us__cards {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.loc-find-us__card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem 1rem;
    align-items: start;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.loc-find-us__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #4f8f6a;
    color: #fff;
    flex-shrink: 0;
}

.loc-find-us__icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.loc-find-us__card-body strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
}

.loc-find-us__card-body p {
    margin: 0 0 0.2rem;
    font-size: 0.86rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.loc-find-us__card-body p:last-child {
    margin-bottom: 0;
}

.loc-find-us__card-body a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.loc-find-us__card-body a:hover {
    color: #fff;
    text-decoration: underline;
}

.loc-find-us__directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.35rem;
    padding: 0.72rem 1.2rem;
    border-radius: 999px;
    background: #fff;
    color: var(--lav900);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.loc-find-us__directions:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.loc-find-us__map-wrap {
    min-height: 100%;
    display: flex;
}

.loc-find-us__map {
    position: relative;
    flex: 1;
    min-height: clamp(18rem, 36vw, 28rem);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.loc-find-us__map iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.loc-detail--pills-only {
    padding-top: 0;
}

.loc-detail--pills-only .loc-detail__grid {
    grid-template-columns: 1fr;
}

/* ── Clinic detail: FAQs ── */

.loc-clinic-faq {
    padding: var(--loc-section-y) var(--intro-pad-x);
    background: #fff;
}

.loc-clinic-faq__wrap {
    max-width: 760px;
    margin: 0 auto;
}

.loc-clinic-faq__head {
    text-align: center;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.loc-clinic-faq__eyebrow {
    margin: 0 0 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lav800);
}

.loc-clinic-faq__title {
    margin: 0;
    font-family: var(--font-serif, Georgia, serif);
    font-size: clamp(1.9rem, 3.4vw, 2.65rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--lav900);
}

.loc-clinic-faq__title em {
    font-style: italic;
    color: var(--lav600, #8b6fad);
}

.loc-clinic-faq__lead {
    margin: 0.95rem auto 0;
    max-width: 52ch;
    font-size: 0.94rem;
    line-height: 1.62;
    color: rgba(58, 58, 58, 0.78);
}

.loc-clinic-faq__list {
    display: grid;
    gap: 0.75rem;
}

.loc-clinic-faq__item {
    border-radius: 18px;
    border: 1px solid rgba(91, 66, 117, 0.1);
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.loc-clinic-faq__item[open] {
    border-color: rgba(91, 66, 117, 0.16);
    box-shadow: 0 8px 24px rgba(61, 47, 82, 0.06);
}

.loc-clinic-faq__question {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem 1.15rem;
    cursor: pointer;
    list-style: none;
}

.loc-clinic-faq__question::-webkit-details-marker {
    display: none;
}

.loc-clinic-faq__question-text {
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--lav900);
}

.loc-clinic-faq__toggle {
    position: relative;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    background: var(--lav100);
    flex-shrink: 0;
}

.loc-clinic-faq__toggle::before,
.loc-clinic-faq__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.72rem;
    height: 2px;
    background: var(--lav800);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.loc-clinic-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.loc-clinic-faq__item[open] .loc-clinic-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
    opacity: 0;
}

.loc-clinic-faq__answer {
    padding: 0 1.15rem 1.1rem;
}

.loc-clinic-faq__answer p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.62;
    color: rgba(58, 58, 58, 0.78);
}

.loc-panel {
    padding: 1.15rem;
    border-radius: var(--md-radius);
    background: var(--lav100);
    border: 1px solid var(--lav200);
}

.loc-info-list {
    display: grid;
    gap: 0.8rem;
    margin: 0.9rem 0 1.1rem;
}

.loc-info-item strong {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--lav800);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.loc-info-item p {
    margin: 0;
    line-height: 1.55;
    color: var(--md-charcoal);
}

.loc-pills-wrap {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}

.loc-pills-block strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--lav800);
}

.loc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.loc-pills span {
    display: inline-flex;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(91, 66, 117, 0.08);
    color: var(--lav800);
    font-size: 0.76rem;
    font-weight: 600;
}

.loc-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.loc-visual img {
    width: 100%;
    border-radius: var(--md-radius);
    aspect-ratio: 3 / 2;
    object-fit: cover;
    margin-bottom: 0.65rem;
}

.loc-map {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: var(--md-radius);
    overflow: hidden;
    background: var(--lav100);
}

.loc-map iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.loc-visual {
    display: grid;
    gap: 0.65rem;
}

.loc-therapist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.loc-therapist-card {
    padding: 0.95rem;
    border-radius: var(--md-radius);
    border: 1px solid var(--lav200);
    background: #fff;
}

.loc-faq-list {
    display: grid;
    gap: 0.6rem;
}

.loc-faq {
    padding: 0.8rem 0.95rem;
    border-radius: var(--md-radius);
    border: 1px solid var(--lav200);
    background: #fff;
}

.loc-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--lav900);
}

@media (min-width: 901px) {
    .loc-detail__grid {
        align-items: stretch;
    }

    .loc-detail__aside {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .loc-visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: minmax(0, 1fr);
        flex: 1;
        min-height: 0;
        height: 100%;
    }

    .loc-visual img {
        margin-bottom: 0;
        aspect-ratio: auto;
        height: 100%;
        min-height: 0;
    }

    .loc-map {
        aspect-ratio: auto;
        height: 100%;
        min-height: 0;
    }
}

@media (max-width: 1024px) {
    .loc-care-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .loc-care-team__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .loc-stories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .loc-detail-hero__grid,
    .loc-grid--soon,
    .loc-features,
    .loc-steps,
    .loc-detail__grid,
    .loc-therapist-grid,
    .loc-online__card,
    .loc-expect__grid,
    .loc-stories__head,
    .loc-stories__grid,
    .loc-find-us__grid {
        grid-template-columns: 1fr;
    }

    .loc-stories__lead {
        justify-self: start;
        max-width: none;
    }

    .loc-expect__title {
        max-width: none;
    }

    .loc-expect__gallery {
        min-height: 20rem;
    }

    .loc-detail-hero__copy h1 {
        max-width: none;
    }

    .loc-card--open {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .loc-card--open .loc-card__media {
        aspect-ratio: 16 / 10;
    }

    .loc-card--open .loc-card__media img,
    .loc-card--open .loc-card__placeholder {
        height: 100%;
    }

    .loc-online__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .loc-hero h1 {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .loc-care-grid {
        grid-template-columns: 1fr;
    }

    .loc-care-team__grid {
        grid-template-columns: 1fr;
    }

    .loc-stories__grid {
        grid-template-columns: 1fr;
    }
}
