:root {
    --ink: #1a1815;
    --ink-soft: #4f4942;
    --muted: #756e65;
    --ivory: #faf7f2;
    --linen: #f3eee6;
    --paper: #fffdf9;
    --gold: #a8844e;
    --gold-light: #d9c29d;
    --gold-pale: #eee2cf;
    --dark: #181512;
    --line: rgba(168, 132, 78, 0.24);
    --shadow: 0 18px 50px rgba(49, 41, 31, 0.1);
    --shadow-soft: 0 10px 30px rgba(49, 41, 31, 0.07);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --container: 1180px;
    --header-height: 68px;
    --font-serif: "Playfair Display", Georgia, serif;
    --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 280px;
    overflow-x: hidden;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

p,
h1,
h2,
h3,
h4 {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    text-wrap: balance;
}

h1,
h2 {
    letter-spacing: -0.025em;
}

::selection {
    background: var(--gold-pale);
    color: var(--ink);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    border-radius: 8px;
    background: var(--dark);
    color: white;
    padding: 10px 16px;
    transition: transform 160ms ease;
}

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

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

.section {
    position: relative;
    padding-block: clamp(64px, 7vw, 96px);
}

.section-linen {
    background: var(--linen);
}

.section-paper {
    background: var(--paper);
}

.section-dark {
    background: var(--dark);
    color: white;
}

.section-header {
    max-width: 780px;
    margin: 0 auto clamp(28px, 4vw, 46px);
    text-align: center;
}

.section-header.is-left {
    margin-inline: 0;
    text-align: left;
}

.section-header h2 {
    margin-bottom: 14px;
    color: var(--ink);
    font-size: clamp(2rem, 4.25vw, 3.55rem);
    line-height: 1;
}

.section-dark .section-header h2 {
    color: white;
}

.section-header > p:last-child {
    margin: 0 auto;
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(0.92rem, 1.25vw, 1.03rem);
}

.section-header.is-left > p:last-child {
    margin-inline: 0;
}

.section-dark .section-header > p:last-child {
    color: #c7c0b7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #876739;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 1px;
    flex: 0 0 28px;
    border-radius: 0;
    background: var(--gold);
    content: "";
}

.section-dark .eyebrow {
    color: #e7d7be;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 22px;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    border: 0;
    background: linear-gradient(135deg, #d7bd91, #ad864a);
    background-clip: border-box;
    color: #17130e;
    box-shadow: 0 10px 24px rgba(143, 105, 53, 0.18);
}

.button-primary:hover {
    box-shadow: 0 14px 30px rgba(143, 105, 53, 0.26);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 253, 249, 0.84);
    color: var(--ink);
}

.button-secondary:hover {
    border-color: rgba(168, 132, 78, 0.55);
    background: white;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #806137;
    font-size: 0.82rem;
    font-weight: 500;
}

.text-link::after {
    content: "→";
    transition: transform 180ms ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(250, 247, 242, 0.94);
    backdrop-filter: blur(16px);
    transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(49, 41, 31, 0.08);
}

.nav-shell {
    width: min(calc(100% - 40px), var(--container));
    min-height: var(--header-height);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand {
    flex: 0 0 auto;
}

.site-brand img {
    width: 150px;
    height: auto;
    filter: brightness(0);
    opacity: .9;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    padding-block: 22px;
    color: #676057;
    font-size: .78rem;
    font-weight: 450;
    letter-spacing: .015em;
    transition: color 160ms ease;
}

.nav-link:hover {
    color: #8b6838;
}

.nav-link.is-current {
    color: #9a7440;
    font-weight: 600;
}

.nav-actions,
.language-switcher {
    display: flex;
    align-items: center;
}

.nav-actions {
    gap: 14px;
}

.language-switcher {
    min-height: 26px;
    overflow: hidden;
    border: 1px solid rgba(168, 132, 78, .34);
    border-radius: 999px;
}

.language-option {
    min-width: 29px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    padding-inline: 8px;
    color: var(--gold);
    font-size: .58rem;
    font-weight: 500;
    transition: color 160ms ease;
}

.language-option + .language-option {
    border-left: 1px solid rgba(168, 132, 78, .28);
}

.language-option:hover {
    color: #8b6838;
}

.language-option.is-active {
    background: #b8945d;
    color: white;
    font-weight: 650;
}

.language-option:first-child.is-active {
    border-radius: 999px 0 0 999px;
}

.language-option:last-child.is-active {
    border-radius: 0 999px 999px 0;
}

.nav-cta {
    min-height: 42px;
    padding: 10px 17px;
    white-space: nowrap;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    width: 23px;
    height: 1.5px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    overflow-y: auto;
    background: var(--ivory);
    padding: 34px 20px calc(34px + env(safe-area-inset-bottom));
}

.mobile-menu nav {
    display: grid;
    gap: 6px;
}

.mobile-menu nav > a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding: 14px 4px;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.2;
}

.mobile-menu .button {
    margin-top: 18px;
}

.mobile-menu p {
    margin: 40px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
}

/* Inclusive portrait hero option */
.inclusive-hero {
    position: relative;
    min-height: min(720px, calc(100svh - var(--header-height)));
    overflow: hidden;
    isolation: isolate;
    background: #e8e0d3;
}

.inclusive-hero__media {
    position: absolute;
    z-index: -2;
    inset: 0;
    margin: 0;
    overflow: hidden;
}

.inclusive-hero__media::after {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(239, 233, 222, .99) 0%, rgba(239, 233, 222, .96) 25%, rgba(239, 233, 222, .7) 36%, rgba(239, 233, 222, .18) 47%, transparent 57%),
        linear-gradient(0deg, rgba(225, 215, 199, .3), transparent 32%);
    pointer-events: none;
    content: "";
}

.inclusive-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.inclusive-hero__inner {
    width: min(calc(100% - 40px), var(--container));
    min-height: inherit;
    margin-inline: auto;
    display: flex;
    align-items: center;
    padding-block: clamp(54px, 7vw, 86px);
}

.inclusive-hero__copy {
    position: relative;
    z-index: 2;
    width: min(44%, 520px);
}

.inclusive-hero .eyebrow {
    margin-bottom: clamp(20px, 2.4vw, 30px);
    color: #87663a;
}

.inclusive-hero h1 {
    margin-bottom: 22px;
    color: var(--ink);
    font-size: clamp(3rem, 5.25vw, 5rem);
    line-height: .91;
}

.inclusive-hero h1 em {
    display: block;
    margin-top: 7px;
    color: #7d7368;
    font-weight: 400;
}

.inclusive-hero__lead {
    max-width: 510px;
    margin-bottom: 28px;
    color: #5f584f;
    font-size: clamp(.94rem, 1.2vw, 1.04rem);
    line-height: 1.7;
}

.inclusive-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.inclusive-hero__secondary {
    border: 1px solid rgba(84, 68, 48, .3);
    background: rgba(255, 253, 249, .48);
    color: var(--ink);
    backdrop-filter: blur(8px);
}

.inclusive-hero__secondary:hover {
    border-color: rgba(84, 68, 48, .48);
    background: rgba(255, 253, 249, .74);
}

.inclusive-hero__note {
    margin: clamp(30px, 4vw, 48px) 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7c6a55;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.inclusive-hero__note::before {
    width: 32px;
    height: 1px;
    flex: 0 0 32px;
    background: var(--gold);
    content: "";
}

/* Editorial hero option */
.editorial-hero {
    position: relative;
    overflow: hidden;
    background: #171411;
    color: #f8f3eb;
}

.editorial-hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 16%, rgba(168, 132, 78, .16), transparent 31%),
        linear-gradient(90deg, transparent 0 49.9%, rgba(217, 194, 157, .14) 50%, transparent 50.1%);
    content: "";
}

.editorial-hero__inner {
    position: relative;
    width: min(100%, 1440px);
    min-height: min(740px, calc(100svh - var(--header-height)));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(520px, 1.04fr);
}

.editorial-hero__copy {
    position: relative;
    z-index: 3;
    align-self: center;
    padding: clamp(58px, 6vw, 84px) clamp(32px, 5vw, 76px);
}

.editorial-hero .eyebrow {
    margin-bottom: clamp(22px, 3vw, 34px);
    color: #d9c29d;
    font-size: .65rem;
}

.editorial-hero .eyebrow::before {
    background: #d9c29d;
}

.editorial-hero h1,
.editorial-hero h2 {
    max-width: 660px;
    margin-bottom: 24px;
    color: #fffaf3;
    font-size: clamp(3rem, 4.7vw, 4.8rem);
    line-height: .92;
}

.editorial-hero h1 em,
.editorial-hero h2 em {
    display: block;
    margin-top: 8px;
    color: #d9c29d;
    font-size: .88em;
    font-weight: 400;
}

.editorial-hero__lead {
    max-width: 610px;
    margin-bottom: 30px;
    color: #c9c0b5;
    font-size: clamp(.94rem, 1.2vw, 1.04rem);
    line-height: 1.7;
}

.editorial-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.editorial-hero__secondary {
    border: 1px solid rgba(239, 226, 207, .34);
    background: transparent;
    color: #f4ece1;
}

.editorial-hero__secondary:hover {
    border-color: rgba(239, 226, 207, .7);
    background: rgba(255, 255, 255, .06);
}

.editorial-hero__proofs {
    max-width: 650px;
    margin: clamp(36px, 5vw, 62px) 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-block: 1px solid rgba(217, 194, 157, .22);
    padding: 18px 0;
    list-style: none;
}

.editorial-hero__proofs li {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ded3c5;
    padding-inline: 14px;
    font-size: .7rem;
    font-weight: 500;
    line-height: 1.35;
}

.editorial-hero__proofs li:first-child {
    padding-left: 0;
}

.editorial-hero__proofs li + li {
    border-left: 1px solid rgba(217, 194, 157, .2);
}

.editorial-hero__proofs svg {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    fill: none;
    stroke: #c8a56e;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
}

.editorial-hero__portrait {
    position: relative;
    min-width: 0;
    min-height: 100%;
    margin: 0;
    overflow: hidden;
}

.editorial-hero__portrait::before,
.editorial-hero__portrait::after {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    content: "";
}

.editorial-hero__portrait::before {
    inset: 0 auto 0 0;
    width: 38%;
    background: linear-gradient(90deg, #171411 0%, rgba(23, 20, 17, .68) 42%, transparent 100%);
}

.editorial-hero__portrait::after {
    inset: auto 0 0;
    height: 35%;
    background: linear-gradient(0deg, rgba(23, 20, 17, .72), transparent);
}

.editorial-hero__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
    filter: saturate(.62) contrast(1.04) brightness(.82);
    transform: scale(1.12);
    transform-origin: 50% 28%;
}

.editorial-hero__portrait figcaption {
    position: absolute;
    z-index: 2;
    right: clamp(24px, 4vw, 54px);
    bottom: clamp(24px, 4vw, 48px);
    border-bottom: 1px solid rgba(238, 224, 201, .6);
    color: #f2e7d8;
    padding-bottom: 7px;
    font-family: var(--font-serif);
    font-size: .82rem;
    font-style: italic;
}

/* Home hero */
.home-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
}

.hero-grid {
    width: min(calc(100% - 40px), 1280px);
    min-height: min(720px, calc(100svh - var(--header-height)));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    align-items: center;
    gap: clamp(24px, 4vw, 62px);
    padding-block: clamp(46px, 6vw, 76px);
}

.hero-copy {
    position: relative;
    z-index: 4;
    max-width: 610px;
}

.hero-copy h1,
.hero-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2.75rem, 5.8vw, 5rem);
    line-height: .92;
}

.hero-copy h1 em,
.hero-copy h2 em {
    display: block;
    color: #817970;
    font-weight: 400;
}

.hero-copy > p {
    max-width: 560px;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: clamp(0.95rem, 1.25vw, 1.05rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-copy > .hero-signature {
    max-width: 560px;
    margin: 24px 0 0;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #806137;
    font-family: var(--font-serif);
    font-size: clamp(.98rem, 1.4vw, 1.12rem);
    font-style: italic;
    line-height: 1.35;
}

.hero-copy > .hero-signature::before {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: grid;
    place-items: center;
    color: var(--gold);
    content: "✦";
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-style: normal;
}

.portrait-stage {
    position: relative;
    min-width: 0;
    aspect-ratio: 1 / 1;
}

.portrait-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.portrait-composite {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.portrait-mobile {
    display: none;
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    transform: scale(1.78);
    transform-origin: 72% 0%;
    object-fit: cover;
    object-position: 72% center;
}

@media (min-width: 1081px) {
    .portrait-stage.has-composite .portrait-fade {
        display: none;
    }
}

.portrait-fade {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.portrait-fade.left,
.portrait-fade.right {
    inset-block: 0;
    width: 21%;
}

.portrait-fade.left {
    left: 0;
    background: linear-gradient(90deg, var(--ivory) 10%, rgba(250,247,242,.68) 48%, transparent);
}

.portrait-fade.right {
    right: 0;
    background: linear-gradient(-90deg, var(--ivory) 10%, rgba(250,247,242,.68) 48%, transparent);
}

.portrait-fade.top,
.portrait-fade.bottom {
    inset-inline: 0;
}

.portrait-fade.top {
    top: 0;
    height: 13%;
    background: linear-gradient(180deg, var(--ivory), rgba(250,247,242,.58), transparent);
}

.portrait-fade.bottom {
    bottom: 0;
    height: 20%;
    background: linear-gradient(0deg, var(--ivory), rgba(250,247,242,.55), transparent);
}

.hero-footnote {
    border-block: 1px solid rgba(217, 194, 157, .2);
    background: linear-gradient(100deg, #171411 0%, #211b15 52%, #171411 100%);
}

.hero-footnote .container {
    min-height: 104px;
    padding-block: 0;
}

.hero-footnote-access {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-footnote-service {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 24px;
    color: #eadfce;
    font-size: .86rem;
    font-weight: 550;
    line-height: 1.25;
    text-align: center;
    transition: color 180ms ease, background-color 180ms ease;
}

.hero-footnote-service + .hero-footnote-service {
    border-inline-start: 1px solid rgba(217, 194, 157, .24);
}

.hero-footnote-service svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    fill: none;
    stroke: var(--gold-light);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

a.hero-footnote-service:hover,
a.hero-footnote-service:focus-visible {
    color: white;
    background: rgba(255, 255, 255, .04);
}

a.hero-footnote-service:hover {
    outline: none;
}

a.hero-footnote-service:focus-visible {
    outline: 2px solid rgba(217, 194, 157, .72);
    outline-offset: -2px;
}

a.hero-footnote-service:hover svg,
a.hero-footnote-service:focus-visible svg {
    stroke: white;
}

/* Reusable card rails */
.card-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.surface-card {
    height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 253, 249, 0.92);
    box-shadow: var(--shadow-soft);
}

.experience-card,
.value-card {
    padding: clamp(20px, 2.5vw, 28px);
}

.card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--linen);
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.35rem;
}

.card-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.surface-card h3 {
    margin-bottom: 10px;
    font-size: clamp(1.35rem, 2vw, 1.6rem);
    line-height: 1.08;
}

.surface-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.87rem;
}

/* Services preview */
.discipline-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.discipline-card {
    position: relative;
    min-height: 292px;
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.discipline-card:nth-child(4),
.discipline-card:nth-child(5) {
    grid-column: span 6;
}

.discipline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.discipline-number {
    position: absolute;
    z-index: 1;
    top: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: var(--gold);
    color: var(--paper);
    box-shadow: none;
    filter: none;
    font-family: var(--font-serif);
    font-size: 3.05rem;
    font-style: italic;
    font-weight: 600;
    line-height: .8;
    text-shadow: none;
}

.discipline-number > span {
    display: block;
    transform: translate(2px, -7px);
}

.service-kicker {
    color: #876739;
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.discipline-card h3 {
    margin: 0 62px 10px 0;
    font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.discipline-card p {
    max-width: 42ch;
}

.discipline-card .text-link {
    margin-top: 20px;
}

.section-actions {
    margin-top: 28px;
    text-align: center;
}

/* Natural results */
.results-layout,
.physician-layout,
.contact-layout,
.team-member {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    gap: clamp(28px, 6vw, 78px);
}

.results-media {
    grid-column: span 7;
}

.results-copy {
    grid-column: span 5;
}

.before-after {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #e9e0d4;
    box-shadow: var(--shadow);
}

.before-after img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after .after-image {
    clip-path: inset(0 0 0 50%);
}

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

.ba-divider {
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: white;
    box-shadow: 0 0 18px rgba(0,0,0,.25);
    pointer-events: none;
}

.ba-divider::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 46px;
    display: grid;
    transform: translate(-50%, -50%);
    place-items: center;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    background: white;
    color: var(--gold);
    content: "↔";
    font-size: 1.1rem;
}

.ba-label {
    position: absolute;
    z-index: 3;
    top: 16px;
    border-radius: 999px;
    background: rgba(24,21,18,.72);
    color: white;
    padding: 7px 11px;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; }

.results-quote {
    margin: 20px 0;
    border-left: 2px solid var(--gold);
    padding: 4px 0 4px 20px;
    color: #866a42;
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-style: italic;
    line-height: 1.2;
}

.results-copy h3 {
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.results-copy p {
    color: var(--muted);
}

/* Physician */
.physician-photo {
    grid-column: span 5;
}

.physician-photo figure,
.team-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #e6ddcf;
    box-shadow: var(--shadow);
}

.physician-photo figure {
    aspect-ratio: 4 / 5;
}

.physician-photo img,
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.physician-copy {
    grid-column: span 7;
}

.physician-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(2.3rem, 4.2vw, 3.75rem);
    line-height: .98;
}

.physician-copy > p {
    color: var(--muted);
}

.quote-card {
    margin-block: 20px;
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    background: white;
    padding: 19px 22px;
    box-shadow: var(--shadow-soft);
    color: #80623b;
    font-family: var(--font-serif);
    font-size: clamp(1.12rem, 1.7vw, 1.4rem);
    font-style: italic;
    line-height: 1.35;
}

.credential-list,
.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
    padding: 0;
    list-style: none;
}

.credential-list li,
.benefit-list li {
    position: relative;
    padding-left: 20px;
    color: #5e574f;
    font-size: 0.78rem;
}

.credential-list li::before,
.benefit-list li::before {
    position: absolute;
    top: .64em;
    left: 0;
    width: 7px;
    height: 7px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    content: "";
}

/* International */
.international-layout {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
    gap: clamp(48px, 7vw, 104px);
}

.international-intro .section-header {
    margin-bottom: 28px;
}

.international-tagline {
    max-width: 28ch;
    margin: 0;
    border-left: 1px solid var(--gold);
    padding-left: 18px;
    color: #765b35;
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    font-style: italic;
    line-height: 1.25;
}

.international-steps {
    margin: 0;
    border-top: 1px solid var(--line);
    padding: 0;
    list-style: none;
}

.international-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    padding-block: 24px;
}

.international-step .step-phase {
    display: block;
    margin-bottom: 7px;
    color: #876739;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.international-step h3 {
    margin: 0;
    font-size: clamp(1.22rem, 1.8vw, 1.48rem);
    line-height: 1.08;
}

.international-step > p {
    margin: 1px 0 0;
    color: var(--muted);
    font-size: .84rem;
}

.resorts-note {
    max-width: 46ch;
    margin: 32px 0 0;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    color: var(--muted);
    font-size: .74rem;
}

/* Testimonials */
.reviews-section .testimonial-card {
    background: var(--linen);
}

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

.testimonial-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.stars {
    margin-bottom: 16px;
    color: #b38743;
    letter-spacing: .12em;
}

.testimonial-card blockquote {
    margin: 0 0 20px;
    color: #403a34;
    font-family: var(--font-serif);
    font-size: 1.16rem;
    font-style: italic;
    line-height: 1.35;
}

.testimonial-card footer {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.testimonial-card footer strong,
.testimonial-card footer span {
    display: block;
}

.testimonial-card footer strong {
    font-size: .77rem;
    font-weight: 600;
}

.testimonial-card footer span {
    margin-top: 3px;
    color: var(--muted);
    font-size: .67rem;
}

.google-summary {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--muted);
    font-size: .78rem;
}

/* CTA */
.final-cta {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    color: white;
    text-align: center;
}

.final-cta::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0, rgba(194,158,102,.16), transparent 56%);
    content: "";
}

.final-cta .container {
    position: relative;
    z-index: 1;
    max-width: 860px;
}

.final-cta .eyebrow {
    color: #e7d7be;
    white-space: nowrap;
}

.final-cta .eyebrow::before {
    background: var(--gold-light);
}

.final-cta h2 {
    margin-bottom: 18px;
    font-size: clamp(2.25rem, 5vw, 4.15rem);
    line-height: .98;
}

.final-cta h2 em {
    display: block;
    color: #dbc5a1;
}

.final-cta-copy {
    max-width: 720px;
    margin: 0 auto 28px;
    color: #c6beb4;
    white-space: nowrap;
}

/* Subpages */
.page-hero {
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
    padding-block: clamp(56px, 7vw, 92px);
}

.page-hero .container {
    max-width: 980px;
}

.page-hero h1 {
    max-width: 860px;
    margin-bottom: 18px;
    font-size: clamp(2.75rem, 5.8vw, 5rem);
    line-height: .92;
}

.page-hero h1 em {
    display: block;
    color: #a18458;
}

.page-hero .lead {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(0.96rem, 1.6vw, 1.1rem);
}

.service-section {
    position: relative;
    padding-top: clamp(42px, 6vw, 68px);
    margin-top: clamp(42px, 6vw, 68px);
}

.service-section:first-child {
    margin-top: 0;
    padding-top: 0;
}

.service-section:not(:first-child)::before {
    position: absolute;
    top: calc(clamp(42px, 6vw, 68px) / -2);
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 132, 78, .2) 20%, rgba(168, 132, 78, .65) 50%, rgba(168, 132, 78, .2) 80%, transparent);
    content: "";
}

.service-section:not(:first-child)::after {
    position: absolute;
    top: calc(clamp(42px, 6vw, 68px) / -2);
    left: 50%;
    width: 30px;
    height: 16px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    background: var(--linen);
    color: var(--gold);
    content: "✦";
    font-size: .68rem;
}

.service-heading {
    margin-bottom: 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr);
    align-items: end;
    gap: 34px;
}

.service-heading h2 {
    margin: 10px 0 0;
    font-size: clamp(2.15rem, 4.3vw, 3.6rem);
    line-height: .98;
}

.service-heading p {
    margin: 0;
    color: var(--muted);
}

.treatment-stack {
    display: grid;
}

.treatment-card {
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: clamp(24px, 4vw, 52px);
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: clamp(26px, 3.5vw, 38px) 0;
}

.treatment-card h3 {
    margin: 10px 0 12px;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    line-height: 1.03;
}

.treatment-card p {
    margin-bottom: 12px;
}

.treatment-card .treatment-detail {
    font-size: .8rem;
}

.detail-stats {
    align-self: center;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    border-left: 1px solid var(--line);
    padding: 4px 0 4px 24px;
}

.detail-stat {
    min-width: 0;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: .72rem;
}

.detail-stat:first-child {
    padding-top: 0;
}

.detail-stat:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.detail-stat svg {
    width: 21px;
    height: 21px;
    grid-row: span 2;
    fill: none;
    stroke: var(--gold);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
}

.detail-stat strong {
    display: block;
    margin-bottom: 3px;
    color: #876739;
    font-size: .58rem;
    font-weight: 500;
    letter-spacing: .1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.detail-stat span {
    display: block;
    line-height: 1.45;
}

/* About */
.team-list {
    display: grid;
    gap: clamp(60px, 8vw, 100px);
}

.team-photo {
    grid-column: span 5;
    aspect-ratio: 4 / 5;
}

.team-copy {
    grid-column: span 7;
}

.team-member:nth-child(even) .team-photo {
    grid-column: 8 / span 5;
    grid-row: 1;
}

.team-member:nth-child(even) .team-copy {
    grid-column: 1 / span 7;
    grid-row: 1;
}

.team-copy h2 {
    margin: 8px 0 16px;
    font-size: clamp(2.25rem, 4.3vw, 3.6rem);
    line-height: .98;
}

.team-copy > p {
    color: var(--muted);
}

.credentials-box {
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    padding: 22px;
}

.credentials-box h3 {
    margin-bottom: 14px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
    font-size: 1.35rem;
}

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

.value-card {
    text-align: center;
}

/* Contact */
.contact-layout {
    align-items: start;
}

.contact-aside {
    grid-column: span 5;
}

.contact-form-wrap {
    grid-column: span 7;
}

.contact-aside h2,
.contact-form-wrap h2 {
    margin-bottom: 14px;
    font-size: clamp(1.85rem, 3.4vw, 2.5rem);
    line-height: 1;
}

.contact-aside > p {
    color: var(--muted);
}

.contact-list {
    margin: 28px 0;
    display: grid;
    gap: 12px;
}

.contact-item {
    border-bottom: 1px solid var(--line);
    padding: 0 0 14px;
}

.contact-item strong,
.contact-item span,
.contact-item a {
    display: block;
}

.contact-item strong {
    margin-bottom: 3px;
    color: #876739;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-item span,
.contact-item a {
    color: #4f4942;
    font-size: .86rem;
    white-space: pre-line;
}

.whatsapp-card {
    border-radius: var(--radius);
    background: var(--dark);
    color: white;
    padding: 24px;
}

.whatsapp-card h3 {
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.whatsapp-card p {
    color: #c7c0b7;
    font-size: .8rem;
}

.form-card {
    padding: clamp(22px, 4vw, 38px);
}

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

.field {
    min-width: 0;
}

.field.is-full {
    grid-column: 1 / -1;
}

.field label,
.field > span {
    display: block;
    margin-bottom: 7px;
    color: #5a5249;
    font-size: .73rem;
    font-weight: 500;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(168,132,78,.3);
    border-radius: 10px;
    background: white;
    color: var(--ink);
    padding: 12px 14px;
    font-size: .85rem;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--gold);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(168,132,78,.12);
}

.field-error {
    display: block;
    margin-top: 5px;
    color: #a94242;
    font-size: .68rem;
}

.form-disclaimer {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: .68rem;
}

.notice {
    margin-bottom: 22px;
    border: 1px solid rgba(168,132,78,.32);
    border-radius: var(--radius-sm);
    background: #f7efe2;
    padding: 16px 18px;
    color: #5e4a2d;
    font-size: .82rem;
}

.notice.is-error {
    border-color: rgba(169,66,66,.28);
    background: #fff1ef;
    color: #873737;
}

/* Legal + 404 */
.legal-document {
    max-width: 820px;
}

.legal-section {
    border-top: 1px solid var(--line);
    padding-block: 28px;
}

.legal-section:first-child {
    border-top: 0;
    padding-top: 0;
}

.legal-section h2 {
    margin-bottom: 10px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.legal-section p {
    margin-bottom: 0;
    color: var(--muted);
}

.not-found {
    min-height: 68vh;
    display: grid;
    place-items: center;
    text-align: center;
}

.not-found h1 {
    margin-bottom: 0;
    color: var(--gold-light);
    font-size: clamp(7rem, 20vw, 14rem);
    line-height: .7;
}

/* Footer and floating action */
.site-footer {
    background: #15120f;
    color: white;
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 44px;
    padding-bottom: 48px;
}

.footer-brand img {
    width: 160px;
    height: auto;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
    opacity: .92;
}

.footer-brand p {
    max-width: 330px;
    margin-bottom: 14px;
    color: #afa69c;
    font-size: .76rem;
}

.footer-brand span {
    color: #cdb995;
    font-size: .66rem;
}

.site-footer h2 {
    margin-bottom: 16px;
    color: #d5bd95;
    font-family: var(--font-sans);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #aaa198;
    font-size: .72rem;
    transition: color 160ms ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: white;
}

.footer-bottom {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(213,189,149,.14);
    color: #756e67;
    font-size: .63rem;
}

.footer-bottom > span:last-child {
    display: flex;
    gap: 18px;
}

.whatsapp-fab {
    position: fixed;
    z-index: 90;
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 30px rgba(17,96,45,.28);
    transition: transform 180ms ease;
}

.whatsapp-fab:hover {
    transform: translateY(-4px) scale(1.03);
}

.whatsapp-fab svg {
    width: 29px;
    height: 29px;
    display: block;
    fill: currentColor;
}

/* Progressive reveal */
.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1080px) {
    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .hero-grid {
        grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    }

    .portrait-composite {
        display: none;
    }

    .portrait-mobile {
        display: block;
    }

    .editorial-hero__inner {
        grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
    }

    .editorial-hero__copy {
        padding-inline: 40px;
    }

    .editorial-hero h1,
    .editorial-hero h2 {
        font-size: clamp(3.15rem, 6vw, 4.55rem);
    }

    .inclusive-hero {
        min-height: 0;
        display: flex;
        flex-direction: column;
        background: #efe9de;
    }

    .inclusive-hero__media {
        position: relative;
        z-index: 0;
        width: 100%;
        height: clamp(350px, 54vw, 540px);
        order: 1;
    }

    .inclusive-hero__media::after {
        background: linear-gradient(0deg, #efe9de 0%, transparent 24%);
    }

    .inclusive-hero__media img {
        object-position: 100% center;
    }

    .inclusive-hero__inner {
        width: min(calc(100% - 64px), 820px);
        min-height: 0;
        order: 2;
        padding-block: 18px 58px;
    }

    .inclusive-hero__copy {
        width: min(100%, 650px);
    }

}

@media (max-width: 820px) {
    :root {
        --header-height: 62px;
    }

    .container,
    .nav-shell,
    .hero-grid {
        width: min(calc(100% - 32px), var(--container));
    }

    .site-brand img {
        width: 138px;
    }

    .final-cta-copy {
        white-space: normal;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
        padding-block: 38px 26px;
    }

    .editorial-hero::before {
        background: radial-gradient(circle at 18% 72%, rgba(168, 132, 78, .14), transparent 34%);
    }

    .editorial-hero__inner {
        min-height: auto;
        grid-template-columns: minmax(0, 1fr);
    }

    .editorial-hero__copy {
        grid-row: 2;
        padding: 38px 16px 42px;
    }

    .editorial-hero__portrait {
        min-height: 0;
        height: clamp(320px, 88vw, 500px);
        grid-row: 1;
    }

    .editorial-hero__portrait::before {
        inset: auto 0 0;
        width: auto;
        height: 24%;
        background: linear-gradient(0deg, #171411 0%, transparent 100%);
    }

    .editorial-hero__portrait::after {
        inset: 0;
        height: auto;
        background: linear-gradient(180deg, transparent 62%, rgba(23, 20, 17, .35));
    }

    .editorial-hero__portrait img {
        object-position: 50% 28%;
        transform: none;
    }

    .editorial-hero__portrait figcaption {
        right: 16px;
        bottom: 19px;
    }

    .editorial-hero h1,
    .editorial-hero h2 {
        font-size: clamp(3rem, 12vw, 4.4rem);
    }

    .inclusive-hero__media {
        height: clamp(250px, 66vw, 350px);
    }

    .inclusive-hero__media img {
        object-position: 100% center;
    }

    .inclusive-hero__inner {
        width: min(calc(100% - 32px), 680px);
        padding-block: 16px 44px;
    }

    .inclusive-hero h1 {
        margin-bottom: 18px;
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .inclusive-hero__lead {
        margin-bottom: 24px;
        font-size: .94rem;
    }

    .inclusive-hero__note {
        margin-top: 30px;
        padding-right: 76px;
        font-size: .64rem;
    }

    .editorial-hero__lead {
        max-width: 680px;
    }

    .editorial-hero__proofs {
        width: calc(100% + 16px);
        max-width: none;
        margin-right: -16px;
        grid-template-columns: repeat(3, minmax(175px, 1fr));
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
    }

    .editorial-hero__proofs::-webkit-scrollbar {
        display: none;
    }

    .hero-copy {
        max-width: 680px;
    }

    .portrait-stage {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .discipline-card,
    .discipline-card:nth-child(4),
    .discipline-card:nth-child(5) {
        grid-column: span 6;
    }

    .results-layout,
    .physician-layout,
    .international-layout,
    .contact-layout,
    .team-member {
        grid-template-columns: minmax(0, 1fr);
    }

    .international-layout {
        gap: 36px;
    }

    .international-intro {
        max-width: 680px;
    }

    .results-media,
    .results-copy,
    .physician-photo,
    .physician-copy,
    .contact-aside,
    .contact-form-wrap,
    .team-photo,
    .team-copy,
    .team-member:nth-child(even) .team-photo,
    .team-member:nth-child(even) .team-copy {
        grid-column: 1;
        grid-row: auto;
    }

    .results-media,
    .physician-photo,
    .team-photo {
        width: min(100%, 600px);
        margin-inline: auto;
    }

    .service-heading,
    .treatment-card {
        grid-template-columns: minmax(0, 1fr);
    }

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

@media (max-width: 640px) {
    .section {
        padding-block: 54px;
    }

    .section-header {
        margin-bottom: 26px;
        text-align: left;
    }

    .section-header > p:last-child {
        margin-inline: 0;
    }

    .section-header h2 {
        font-size: clamp(2rem, 9.5vw, 2.8rem);
        line-height: 1.02;
    }

    .final-cta .eyebrow {
        gap: 8px;
        font-size: clamp(.56rem, 2.45vw, .66rem);
        letter-spacing: .12em;
    }

    .final-cta .eyebrow::before {
        width: 20px;
        flex-basis: 20px;
    }

    .final-cta .button {
        white-space: nowrap;
    }

    .final-cta .button {
        padding-inline: 16px;
        font-size: .72rem;
    }

    .language-switcher {
        min-height: 30px;
    }

    .language-option {
        min-width: 32px;
        min-height: 28px;
        font-size: .62rem;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: clamp(2.55rem, 12vw, 3.45rem);
    }

    .hero-copy > p {
        margin-bottom: 22px;
        font-size: .94rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .editorial-hero__actions {
        display: grid;
    }

    .editorial-hero__actions .button {
        width: 100%;
        padding-inline: 16px;
        text-align: center;
    }

    .portrait-stage {
        aspect-ratio: 1 / 1.05;
    }

    .portrait-frame img {
        transform: scale(1.62);
        transform-origin: 70% 0;
        object-position: 70% center;
    }

    .hero-footnote .container {
        min-height: 118px;
        padding-block: 0;
    }

    .hero-footnote-access {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-footnote-service {
        min-height: 118px;
        flex-direction: column;
        gap: 9px;
        padding: 16px 8px;
        font-size: .72rem;
        line-height: 1.3;
        white-space: normal;
    }

    .hero-footnote-service svg {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
    }

    .international-layout {
        gap: 30px;
    }

    .international-intro .section-header {
        margin-bottom: 22px;
    }

    .international-tagline {
        font-size: 1.12rem;
    }

    .resorts-note {
        margin-top: 24px;
    }

    .international-step {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        padding-block: 20px;
    }

    .international-step > p {
        grid-column: 1;
        margin-top: -2px;
    }

    .card-rail,
    .testimonial-rail,
    .values-rail {
        width: 100%;
        margin-right: 0;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding: 4px 16px 18px 0;
        scroll-padding-left: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .card-rail::-webkit-scrollbar,
    .testimonial-rail::-webkit-scrollbar,
    .values-rail::-webkit-scrollbar {
        display: none;
    }

    .card-rail > *,
    .testimonial-rail > *,
    .values-rail > * {
        flex: 0 0 min(82vw, 330px);
        scroll-snap-align: start;
    }

    .discipline-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 4px 16px 18px 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .discipline-grid::-webkit-scrollbar {
        display: none;
    }

    .discipline-card,
    .discipline-card:nth-child(4),
    .discipline-card:nth-child(5) {
        min-height: 288px;
        flex: 0 0 min(84vw, 350px);
        scroll-snap-align: start;
    }

    .credential-list,
    .benefit-list,
    .form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-hero {
        padding-block: 48px 54px;
    }

    .page-hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.45rem);
    }

    .treatment-card {
        padding: 22px 0;
    }

    .detail-stat {
        grid-template-columns: 26px minmax(0, 1fr);
        padding: 12px 0;
        border-left: 0;
        border-bottom: 1px solid var(--line);
        font-size: .66rem;
    }

    .detail-stats {
        grid-template-columns: minmax(0, 1fr);
        border-top: 1px solid var(--line);
        border-left: 0;
        padding: 18px 0 0;
    }

    .detail-stat:first-child {
        padding-top: 0;
    }

    .team-list {
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 20px;
    }

    .whatsapp-fab {
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 360px) {
    .container,
    .nav-shell,
    .hero-grid {
        width: min(calc(100% - 24px), var(--container));
    }

    .site-brand img {
        width: 122px;
    }

    .nav-actions {
        gap: 6px;
    }

    .menu-toggle {
        width: 40px;
    }

    .hero-copy h1,
    .hero-copy h2,
    .page-hero h1 {
        font-size: 2.55rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
