:root {
    --ink: #0b4f51;
    --ink-rgb: 11, 79, 81;
    --ink-soft: #134e4a;
    --plum: #c9a34a;
    --plum-rgb: 201, 163, 74;
    --plum-bright: #9a6e1a;
    --lavender: #e6eceb;
    --lavender-rgb: 230, 236, 235;
    --lavender-deep: #3db9b1;
    --cream: #faf9f6;
    --white: #ffffff;
    --text: #1e1e1e;
    --muted: #687280;
    --line: #e6eceb;
    --on-dark: #ffffff;
    --focus: #c9a34a;
    --footer: #083f42;
    --green: #128c7e;
    --green-rgb: 18, 140, 126;
    --green-hover: #0b4f51;
    --shadow: 0 24px 70px rgba(var(--ink-rgb), 0.12);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: min(1180px, calc(100vw - 48px));
    --section-space: clamp(76px, 9vw, 132px);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--white);
    font-family: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

button,
input,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

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

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

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

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 26px;
    font-size: clamp(2.25rem, 5vw, 4.4rem);
}

h3 {
    letter-spacing: -0.025em;
}

::selection {
    color: var(--white);
    background: var(--plum);
}

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

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding-block: var(--section-space);
}

.section--soft {
    background: var(--cream);
}

.section--ink {
    color: rgba(255, 255, 255, 0.78);
    background: var(--ink);
}

.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;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 18px;
    color: var(--white);
    background: var(--ink);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--plum);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    content: "";
    background: currentColor;
}

.eyebrow--dark {
    color: var(--ink);
}

.eyebrow--light {
    color: var(--on-dark);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 24px;
    border: 0;
    border-radius: 8px;
    font-weight: 750;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button--primary,
.button--header {
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 14px 34px rgba(var(--ink-rgb), 0.18);
}

.button--primary:hover,
.button--header:hover {
    background: var(--plum);
}

.button--header {
    min-height: 48px;
    padding-inline: 21px;
}

.button--light {
    color: var(--ink);
    background: var(--white);
}

.button--light:hover {
    background: var(--lavender);
}

.button--whatsapp {
    color: var(--white);
    background: var(--green);
    box-shadow: 0 14px 34px rgba(var(--green-rgb), 0.25);
}

.button--whatsapp:hover {
    background: var(--green-hover);
}

.button--full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-block: 8px;
    color: var(--ink);
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    font-weight: 750;
    cursor: pointer;
}

.text-link--dark {
    color: var(--plum);
}

.utility-bar {
    color: rgba(255, 255, 255, 0.78);
    background: var(--ink);
    font-size: 0.78rem;
}

.utility-bar__inner {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.utility-bar p {
    margin: 0;
}

.utility-bar__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.utility-bar__links a,
.utility-bar__links button {
    border: 0;
    color: inherit;
    background: none;
    font-size: inherit;
    cursor: pointer;
}

.utility-bar__links a:hover,
.utility-bar__links button:hover {
    color: var(--white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(var(--ink-rgb), 0.08);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.brand__logo {
    width: 190px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    object-position: left center;
}

.brand__mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    border-radius: 50% 50% 50% 18%;
    font-family: Georgia, serif;
    font-size: 1.55rem;
    font-style: italic;
}

.brand__copy {
    display: grid;
    line-height: 1;
}

.brand__copy strong {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    letter-spacing: 0.08em;
}

.brand__copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.main-navigation {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(17px, 2.1vw, 34px);
}

.main-navigation a {
    position: relative;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.main-navigation a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--plum);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.main-navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.hero {
    display: grid;
    min-height: min(735px, calc(100vh - 122px));
    grid-template-columns: minmax(440px, 0.85fr) minmax(540px, 1.15fr);
    background: var(--lavender);
}

.hero__copy {
    display: grid;
    align-items: center;
    padding: clamp(54px, 6.5vw, 104px) max(48px, calc((100vw - 1180px) / 2));
    padding-right: clamp(42px, 5vw, 80px);
}

.hero__copy-inner {
    max-width: 610px;
}

.hero h1 {
    max-width: 650px;
    margin-bottom: 28px;
    font-size: clamp(3.4rem, 6.3vw, 7.6rem);
    line-height: 0.9;
}

.branch-page .hero h1 {
    font-size: clamp(3.2rem, 5.2vw, 6.25rem);
}

.hero__description {
    max-width: 565px;
    margin-bottom: 34px;
    color: var(--text);
    font-size: clamp(1.02rem, 1.35vw, 1.25rem);
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.hero__trust {
    display: flex;
    max-width: 590px;
    align-items: center;
    gap: 15px;
    margin-top: 48px;
    padding-top: 26px;
    border-top: 1px solid rgba(var(--ink-rgb), 0.15);
}

.hero__trust-icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    background: var(--plum);
    border-radius: 50%;
}

.hero__trust strong,
.hero__trust span {
    display: block;
}

.hero__trust strong {
    color: var(--ink);
    font-size: 0.9rem;
}

.hero__trust div > span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.74rem;
}

.hero__visual {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.hero__visual::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, rgba(var(--lavender-rgb), 0.35), transparent 22%);
}

.hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 57% center;
}

.hero__branch-badge {
    position: absolute;
    right: clamp(24px, 4vw, 64px);
    bottom: clamp(24px, 4vw, 58px);
    z-index: 1;
    min-width: 230px;
    padding: 22px 26px;
    color: var(--white);
    background: rgba(var(--ink-rgb), 0.92);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero__branch-badge span,
.hero__branch-badge strong {
    display: block;
}

.hero__branch-badge span {
    margin-bottom: 3px;
    color: var(--on-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero__branch-badge strong {
    font-size: 1.3rem;
}

.quick-actions {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    background: var(--white);
}

.quick-actions__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    transform: translateY(-42px);
    box-shadow: var(--shadow);
}

.quick-card {
    position: relative;
    display: flex;
    min-height: 250px;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    border: 0;
    border-right: 1px solid var(--line);
    color: var(--text);
    background: var(--white);
    text-align: left;
    cursor: pointer;
    transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.quick-card:last-child {
    border-right: 0;
}

.quick-card:hover {
    z-index: 1;
    color: var(--white);
    background: var(--plum);
    transform: translateY(-8px);
}

.quick-card__number {
    margin-bottom: 38px;
    color: var(--plum);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.quick-card:hover .quick-card__number {
    color: var(--on-dark);
}

.quick-card strong {
    max-width: 190px;
    margin-bottom: 12px;
    color: var(--ink);
    font-size: 1.28rem;
    line-height: 1.16;
}

.quick-card:hover strong {
    color: var(--white);
}

.quick-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.quick-card:hover p {
    color: rgba(255, 255, 255, 0.72);
}

.quick-card__arrow {
    position: absolute;
    right: 28px;
    bottom: 26px;
    font-size: 1.25rem;
}

.branch-overview {
    padding-block: 84px;
    background: var(--white);
}

.branch-overview__grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
    gap: clamp(42px, 7vw, 94px);
}

.branch-overview__intro {
    align-self: center;
}

.branch-overview__intro h2 {
    max-width: 720px;
}

.branch-overview__intro > p:not(.eyebrow) {
    max-width: 700px;
    color: var(--muted);
    font-size: 1.08rem;
}

.check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    padding: 10px 15px;
    color: var(--ink);
    background: var(--lavender);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.check-list li::before {
    margin-right: 8px;
    content: "✓";
    color: var(--plum);
}

.branch-contact-card {
    padding: 36px;
    color: rgba(255, 255, 255, 0.76);
    background: var(--ink);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.branch-contact-card__label {
    color: var(--on-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.branch-contact-card h3 {
    margin: 10px 0 26px;
    color: var(--white);
    font-size: 2.4rem;
}

.branch-contact-card dl {
    margin: 0 0 30px;
}

.branch-contact-card dl > div {
    display: grid;
    padding-block: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    grid-template-columns: 90px 1fr;
    gap: 16px;
}

.branch-contact-card dt {
    color: var(--on-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.branch-contact-card dd {
    margin: 0;
    color: var(--white);
    line-height: 1.45;
}

.branch-contact-card dd small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.58);
}

.about__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(350px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(60px, 10vw, 150px);
}

.about__visual {
    position: relative;
    min-height: 520px;
}

.about__shape {
    position: absolute;
    display: grid;
    place-items: center;
}

.about__shape--primary {
    inset: 0 12% 10% 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    background: linear-gradient(145deg, var(--lavender-deep), var(--plum-bright));
    border-radius: 50% 50% 18% 50%;
}

.about__shape--primary::before,
.about__shape--primary::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
}

.about__shape--primary::before {
    width: 370px;
    height: 370px;
}

.about__shape--primary::after {
    width: 255px;
    height: 255px;
}

.about__shape--primary span {
    position: relative;
    z-index: 1;
    font-family: Georgia, serif;
    font-size: clamp(8rem, 17vw, 15rem);
    font-style: italic;
    line-height: 1;
}

.about__shape--secondary {
    right: 0;
    bottom: 0;
    width: 190px;
    height: 190px;
    padding: 28px;
    color: var(--white);
    background: var(--ink);
    border: 10px solid var(--white);
    border-radius: 50%;
    text-align: center;
}

.about__shape--secondary span {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-transform: uppercase;
}

.about__content > p:not(.eyebrow) {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.03rem;
}

.about__content blockquote {
    margin: 34px 0 0;
    padding: 24px 0 24px 28px;
    color: var(--ink);
    border-left: 3px solid var(--plum);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-style: italic;
    line-height: 1.45;
}

.section-heading {
    display: grid;
    align-items: end;
    margin-bottom: clamp(42px, 6vw, 72px);
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
    gap: 60px;
}

.section-heading h2,
.section-heading p {
    margin-bottom: 0;
}

.section-heading > p {
    color: var(--muted);
}

.section-heading--light h2 {
    color: var(--white);
}

.section-heading--light > p {
    color: rgba(255, 255, 255, 0.62);
}

.section-heading--centered {
    display: block;
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--centered .eyebrow {
    justify-content: center;
}

.journey__steps {
    display: grid;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    list-style: none;
    grid-template-columns: repeat(4, 1fr);
}

.journey__steps li {
    position: relative;
    min-height: 330px;
    padding: 34px 30px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.journey__steps li:last-child {
    border-right: 0;
}

.journey__number {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--ink);
    background: var(--on-dark);
    border-radius: 50%;
    font-weight: 800;
}

.journey__steps li > div {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
}

.journey__steps h3 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: 1.4rem;
}

.journey__steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

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

.treatment-card {
    display: flex;
    min-height: 340px;
    flex-direction: column;
    padding: clamp(28px, 4vw, 48px);
    background: var(--cream);
    border-radius: var(--radius-sm);
    transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.treatment-card:hover {
    color: rgba(255, 255, 255, 0.72);
    background: var(--plum);
    transform: translateY(-5px);
}

.treatment-card__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    color: var(--plum);
    font-size: 0.8rem;
    font-weight: 800;
}

.treatment-card:hover .treatment-card__top {
    color: var(--on-dark);
}

.treatment-card h3 {
    margin-bottom: 16px;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.treatment-card:hover h3 {
    color: var(--white);
}

.treatment-card p {
    max-width: 530px;
    margin-bottom: 30px;
    color: var(--muted);
}

.treatment-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.treatment-card__link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 10px;
    margin-top: auto;
    padding: 0 0 7px;
    border: 0;
    border-bottom: 1px solid currentColor;
    color: var(--ink);
    background: transparent;
    font-weight: 750;
    cursor: pointer;
}

.treatment-card:hover .treatment-card__link {
    color: var(--white);
}

.conditions__grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(56px, 9vw, 130px);
}

.conditions__intro {
    position: sticky;
    top: 135px;
}

.conditions__intro > p:not(.eyebrow) {
    margin-bottom: 30px;
    color: var(--muted);
}

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

.conditions__list li {
    display: grid;
    min-height: 84px;
    align-items: center;
    padding: 16px 6px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 54px 1fr auto;
    transition: padding 180ms ease, color 180ms ease;
}

.conditions__list li:hover {
    padding-inline: 18px;
    color: var(--plum);
}

.conditions__list li > span:first-child {
    color: var(--plum);
    font-size: 0.68rem;
    font-weight: 800;
}

.conditions__list strong {
    color: var(--ink);
    font-size: clamp(1.05rem, 2vw, 1.38rem);
}

.conditions__list li > span:last-child {
    font-size: 1.35rem;
}

.values__grid {
    display: grid;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(4, 1fr);
}

.values__grid article {
    min-height: 270px;
    padding: 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.values__grid article > span {
    color: var(--plum);
    font-size: 0.72rem;
    font-weight: 800;
}

.values__grid h3 {
    margin: 72px 0 14px;
    font-size: 1.4rem;
}

.values__grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

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

.branch-card {
    position: relative;
    display: flex;
    min-height: 440px;
    flex-direction: column;
    padding: 36px;
    overflow: hidden;
    background: var(--ink-soft);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
}

.branch-card--active {
    background: var(--plum);
    border-color: var(--lavender-deep);
}

.branch-card__city-mark {
    position: absolute;
    right: -12px;
    bottom: -95px;
    color: rgba(255, 255, 255, 0.045);
    font-family: Georgia, serif;
    font-size: 23rem;
    font-style: italic;
    line-height: 1;
}

.branch-card__status {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    padding: 8px 11px;
    color: var(--on-dark);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.branch-card h3 {
    position: relative;
    z-index: 1;
    margin: 68px 0 18px;
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.branch-card p {
    position: relative;
    z-index: 1;
    max-width: 310px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
}

.branch-card__actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
}

.branch-card__actions a,
.branch-card__actions button {
    padding: 0 0 5px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    background: transparent;
    font-size: 0.82rem;
    font-weight: 750;
    cursor: pointer;
}

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

.reference-note {
    color: var(--muted);
    font-size: 0.78rem;
    font-style: italic;
}

.testimonials figure {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    padding: 36px;
    background: var(--lavender);
    border-radius: var(--radius-sm);
}

.testimonials blockquote {
    margin: 0 0 46px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-style: italic;
    line-height: 1.45;
}

.testimonials figcaption {
    display: flex;
    align-items: center;
    gap: 13px;
}

.avatar {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    background: var(--plum);
    border-radius: 50%;
    font-weight: 800;
}

.testimonials figcaption strong,
.testimonials figcaption small {
    display: block;
}

.testimonials figcaption strong {
    color: var(--ink);
    font-size: 0.83rem;
}

.testimonials figcaption small {
    color: var(--muted);
    font-size: 0.7rem;
}

.faq__grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(56px, 9vw, 130px);
}

.faq__intro > p:not(.eyebrow) {
    color: var(--muted);
}

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

.faq details {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

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

.faq summary span {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 180ms ease;
}

.faq details[open] summary span {
    transform: rotate(45deg);
}

.faq details p {
    max-width: 620px;
    padding: 0 46px 28px 0;
    color: var(--muted);
}

.final-cta {
    color: var(--white);
    background: var(--plum);
}

.final-cta__inner {
    display: grid;
    align-items: center;
    min-height: 390px;
    padding-block: 72px;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
    gap: 80px;
}

.final-cta h2 {
    max-width: 720px;
    margin: 0;
    color: var(--white);
    font-size: clamp(3rem, 6vw, 6.4rem);
}

.final-cta__inner > div:last-child p {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer {
    padding-top: 80px;
    color: rgba(255, 255, 255, 0.62);
    background: var(--footer);
}

.site-footer__grid {
    display: grid;
    padding-bottom: 64px;
    grid-template-columns: minmax(260px, 1.2fr) repeat(3, 0.6fr);
    gap: 54px;
}

.brand--footer .brand__mark {
    color: var(--ink);
    background: var(--lavender-deep);
}

.brand--footer .brand__copy strong,
.brand--footer .brand__copy small {
    color: var(--white);
}

.brand--footer .brand__logo {
    width: 220px;
    padding: 8px 12px;
    background: var(--cream);
    border-radius: 10px;
}

.site-footer__brand p {
    max-width: 370px;
    margin-top: 26px;
    font-size: 0.88rem;
}

.site-footer h2 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: 0.74rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-footer__grid > div:not(.site-footer__brand) a,
.site-footer__grid > div:not(.site-footer__brand) button {
    display: block;
    margin-bottom: 11px;
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.62);
    background: transparent;
    font-size: 0.84rem;
    text-align: left;
    cursor: pointer;
}

.site-footer a:hover,
.site-footer button:hover {
    color: var(--white) !important;
}

.site-footer__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-block: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 0.68rem;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom p:last-child {
    max-width: 660px;
    text-align: right;
}

.floating-booking {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 8px;
    border: 0;
    color: var(--white);
    background: var(--green);
    border-radius: 999px;
    box-shadow: 0 16px 38px rgba(var(--green-rgb), 0.3);
    cursor: pointer;
    transition: transform 180ms ease;
}

.floating-booking:hover {
    transform: translateY(-3px);
}

.floating-booking span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--green);
    background: var(--white);
    border-radius: 50%;
    font-weight: 900;
}

.floating-booking strong {
    font-size: 0.82rem;
}

.booking-modal[hidden] {
    display: none;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: grid;
    place-items: center;
    padding: 24px;
}

.booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(var(--ink-rgb), 0.75);
    backdrop-filter: blur(8px);
}

.booking-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 35px 90px rgba(var(--ink-rgb), 0.35);
    grid-template-columns: 0.85fr 1.15fr;
}

.booking-dialog__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.booking-dialog__intro {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding: 52px 42px;
    color: rgba(255, 255, 255, 0.7);
    background: linear-gradient(145deg, var(--ink), var(--plum));
}

.booking-dialog__step {
    margin-bottom: auto;
    color: var(--on-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.booking-dialog__intro h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(2.35rem, 5vw, 4rem);
}

.booking-dialog__intro p {
    margin: 0;
}

.booking-form {
    padding: 60px 48px 48px;
}

.field {
    margin-bottom: 21px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 800;
}

.field input,
.field select {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid rgba(var(--ink-rgb), 0.2);
    color: var(--ink);
    background: var(--white);
    border-radius: 8px;
    outline: none;
}

.field input:focus,
.field select:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 4px rgba(var(--plum-rgb), 0.1);
}

.field.has-error input,
.field.has-error select {
    border-color: #b63045;
}

.field__error {
    display: block;
    min-height: 18px;
    margin-top: 4px;
    color: #a32136;
    font-size: 0.7rem;
}

.booking-form__privacy {
    margin: 8px 0 20px;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.5;
}

.booking-form__status {
    min-height: 20px;
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 700;
}

.noscript-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    padding: 14px 24px;
    color: var(--white);
    background: #9c2639;
    text-align: center;
}

.not-found {
    display: grid;
    min-height: 650px;
    place-items: center;
    background: var(--lavender);
}

.not-found__inner {
    max-width: 760px;
    padding-block: 90px;
    text-align: center;
}

.not-found__inner .eyebrow {
    justify-content: center;
}

.not-found__code,
.error-code {
    display: block;
    margin-bottom: -32px;
    color: rgba(var(--plum-rgb), 0.11);
    font-family: Georgia, serif;
    font-size: clamp(9rem, 25vw, 19rem);
    font-weight: 700;
    line-height: 0.8;
}

.not-found h1 {
    font-size: clamp(2.6rem, 6vw, 5.3rem);
}

.not-found__inner > p:not(.eyebrow) {
    color: var(--muted);
}

.error-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
    background: var(--lavender);
}

.error-panel {
    width: min(680px, 100%);
    padding: 50px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    text-align: center;
}

.error-panel h1 {
    font-size: 2.4rem;
}

@media (max-width: 1100px) {
    :root {
        --container: min(100% - 40px, 960px);
    }

    .main-navigation {
        gap: 18px;
    }

    .main-navigation a {
        font-size: 0.78rem;
    }

    .hero {
        grid-template-columns: 0.95fr 1.05fr;
    }

    .hero__copy {
        padding-left: max(34px, calc((100vw - 960px) / 2));
        padding-right: 34px;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 7vw, 5.8rem);
    }

    .quick-card {
        min-height: 260px;
        padding: 26px;
    }

    .quick-card__number {
        margin-bottom: 28px;
    }

    .about__grid {
        grid-template-columns: 0.75fr 1.25fr;
        gap: 60px;
    }

    .about__visual {
        min-height: 450px;
    }

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

    .journey__steps li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

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

@media (max-width: 880px) {
    .utility-bar p,
    .utility-bar__links a {
        display: none;
    }

    .utility-bar__inner {
        justify-content: flex-end;
    }

    .site-header__inner {
        min-height: 76px;
    }

    .site-header .button--header {
        display: none;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 18px 24px 26px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 34px rgba(var(--ink-rgb), 0.12);
        flex-direction: column;
    }

    .main-navigation.is-open {
        display: flex;
    }

    .main-navigation a {
        padding: 11px 0;
        font-size: 0.95rem;
    }

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

    .hero__copy {
        min-height: 620px;
        padding: 70px max(24px, calc((100vw - 720px) / 2)) 64px;
    }

    .hero h1,
    .branch-page .hero h1 {
        font-size: clamp(3.45rem, 11vw, 6.6rem);
    }

    .hero__visual {
        min-height: 530px;
    }

    .hero__visual img {
        object-position: 65% center;
    }

    .quick-actions__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-card:nth-child(2) {
        border-right: 0;
    }

    .quick-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .branch-overview__grid,
    .about__grid,
    .conditions__grid,
    .faq__grid {
        grid-template-columns: 1fr;
    }

    .branch-contact-card {
        max-width: 620px;
    }

    .about__visual {
        width: min(100%, 560px);
        min-height: 530px;
        margin-inline: auto;
    }

    .conditions__intro {
        position: static;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .branches__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .branch-card {
        min-height: 380px;
    }

    .testimonials figure {
        min-height: 280px;
    }

    .final-cta__inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .booking-dialog {
        grid-template-columns: 1fr;
    }

    .booking-dialog__intro {
        min-height: 300px;
        padding: 42px 34px;
    }

    .booking-dialog__step {
        margin-bottom: 58px;
    }
}

@media (max-width: 600px) {
    :root {
        --container: calc(100% - 32px);
        --section-space: 76px;
    }

    .utility-bar {
        display: none;
    }

    .brand__logo {
        width: 150px;
        max-height: 56px;
    }

    .brand--footer .brand__logo {
        width: 205px;
    }

    .brand__mark {
        width: 42px;
        height: 42px;
    }

    .brand__copy strong {
        font-size: 1.4rem;
    }

    .brand__copy small {
        font-size: 0.56rem;
    }

    .hero__copy {
        min-height: 590px;
        padding: 56px 20px;
    }

    .hero h1,
    .branch-page .hero h1 {
        font-size: clamp(3.05rem, 15vw, 5rem);
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .button,
    .hero__actions .text-link {
        align-self: stretch;
        justify-content: center;
    }

    .hero__trust {
        align-items: flex-start;
        margin-top: 34px;
    }

    .hero__trust div > span {
        line-height: 1.5;
    }

    .hero__visual {
        min-height: 390px;
    }

    .hero__visual img {
        object-position: 69% center;
    }

    .hero__branch-badge {
        right: 16px;
        bottom: 16px;
        left: 16px;
        min-width: 0;
    }

    .quick-actions {
        padding-block: 30px;
    }

    .quick-actions__grid {
        grid-template-columns: 1fr;
        transform: none;
    }

    .quick-card {
        min-height: 215px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .quick-card__number {
        margin-bottom: 22px;
    }

    .branch-overview {
        padding-block: 64px;
    }

    .branch-overview__grid {
        gap: 38px;
    }

    .branch-contact-card {
        padding: 28px 24px;
    }

    .about__visual {
        min-height: 360px;
    }

    .about__shape--secondary {
        width: 145px;
        height: 145px;
        border-width: 7px;
    }

    .journey__steps {
        grid-template-columns: 1fr;
    }

    .journey__steps li {
        min-height: 260px;
        border-right: 0;
    }

    .treatment-grid,
    .values__grid {
        grid-template-columns: 1fr;
    }

    .treatment-card {
        min-height: 320px;
    }

    .values__grid article {
        min-height: 230px;
    }

    .values__grid h3 {
        margin-top: 52px;
    }

    .branch-card {
        min-height: 420px;
        padding: 28px;
    }

    .testimonials figure {
        padding: 28px;
    }

    .final-cta h2 {
        font-size: 3.4rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .site-footer__bottom p:last-child {
        text-align: left;
    }

    .floating-booking {
        right: 14px;
        bottom: 14px;
    }

    .booking-modal {
        padding: 10px;
    }

    .booking-dialog {
        max-height: calc(100vh - 20px);
    }

    .booking-dialog__intro {
        min-height: 245px;
        padding: 36px 24px 30px;
    }

    .booking-dialog__step {
        margin-bottom: 35px;
    }

    .booking-form {
        padding: 34px 24px 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* AliviaDolor — identidad y estructura 2026 */
body {
    font-family: "Avenir Next", Inter, "Segoe UI", Helvetica, Arial, sans-serif;
    background: var(--cream);
}

h1,
h2,
h3 {
    color: var(--ink);
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.65rem);
}

.section {
    padding-block: clamp(72px, 8vw, 108px);
}

.eyebrow {
    color: var(--plum-bright);
    letter-spacing: 0.12em;
}

.eyebrow::before {
    background: var(--plum);
}

.button {
    border-radius: 7px;
}

.button--primary,
.button--header {
    background: var(--ink);
}

.button--primary:hover,
.button--header:hover {
    background: var(--ink-soft);
}

.button--outline {
    color: var(--ink);
    background: transparent;
    border: 1px solid rgba(var(--ink-rgb), 0.35);
}

.button--outline:hover {
    color: var(--white);
    background: var(--ink);
}

.utility-bar {
    background: linear-gradient(90deg, var(--ink), var(--ink-soft));
}

.utility-bar__inner {
    min-height: 42px;
    font-size: 0.72rem;
    font-weight: 650;
}

.utility-bar__inner > * {
    color: rgba(255, 255, 255, 0.88);
}

.site-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--line);
}

.site-header__inner {
    min-height: 84px;
    gap: 24px;
}

.brand__logo {
    width: 225px;
    max-height: 72px;
}

.main-navigation {
    gap: clamp(15px, 1.8vw, 28px);
}

.main-navigation a {
    font-size: 0.82rem;
    font-weight: 650;
}

.main-navigation a::after {
    bottom: -10px;
    background: var(--plum);
}

.main-navigation a:first-child::after {
    transform: scaleX(1);
}

.button--header {
    min-width: 182px;
    font-size: 0.8rem;
}

.home-page main {
    display: flex;
    flex-direction: column;
}

.home-page main > * {
    width: 100%;
}

.home-page .hero { order: 1; }
.home-page .quick-actions { order: 2; }
.home-page .conditions { order: 3; }
.home-page .journey { order: 4; }
.home-page .about { order: 5; }
.home-page .stats-strip { order: 6; }
.home-page .values { order: 7; }
.home-page .treatments { order: 8; }
.home-page .branches { order: 9; }
.home-page .testimonials { order: 10; }
.home-page .faq { order: 11; }
.home-page .final-cta { order: 12; }

.hero {
    width: var(--container);
    min-height: 610px;
    margin-inline: auto;
    overflow: hidden;
    background: linear-gradient(115deg, var(--cream) 0%, var(--lavender) 100%);
    border-radius: 0 0 20px 20px;
    grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
}

.hero__copy {
    padding: clamp(48px, 5.5vw, 78px) clamp(34px, 5vw, 70px);
}

.hero__copy-inner {
    max-width: 610px;
}

.hero h1,
.branch-page .hero h1 {
    max-width: 620px;
    margin-bottom: 22px;
    font-size: clamp(3.15rem, 5.1vw, 5.6rem);
    line-height: 0.98;
}

.hero__description {
    max-width: 540px;
    margin-bottom: 26px;
    color: var(--text);
    font-size: 1.02rem;
}

.hero__actions {
    gap: 14px;
}

.hero__whatsapp-link {
    min-height: 52px;
    padding: 13px 20px;
    border: 1px solid rgba(var(--ink-rgb), 0.35);
    border-radius: 7px;
}

.hero__trust {
    display: grid;
    max-width: 650px;
    margin-top: 32px;
    padding-top: 22px;
    border-top-color: rgba(var(--ink-rgb), 0.14);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding-right: 10px;
    border-right: 1px solid rgba(var(--ink-rgb), 0.12);
}

.hero__trust-item:last-child {
    border-right: 0;
}

.hero__trust-icon {
    width: 34px;
    height: 34px;
    color: var(--ink);
    background: rgba(var(--plum-rgb), 0.22);
    font-size: 0.72rem;
}

.hero__trust-item strong {
    color: var(--ink);
    font-size: 0.7rem;
    line-height: 1.25;
}

.hero__visual {
    min-height: 610px;
}

.hero__visual::before {
    position: absolute;
    inset: 8% 7% 7%;
    z-index: 1;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(var(--plum-rgb), 0.42);
    border-radius: 50%;
}

.hero__visual::after {
    z-index: 2;
    background: linear-gradient(0deg, var(--cream), transparent 30%);
}

.hero__visual img {
    position: relative;
    z-index: 0;
    object-position: 54% center;
}

.quick-actions {
    padding-bottom: 38px;
    background: var(--white);
}

.quick-actions__grid {
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(90deg, var(--ink), var(--ink-soft));
    border-radius: 10px;
    transform: translateY(-26px);
}

.quick-card {
    min-height: 118px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    color: var(--white);
    background: transparent;
    border-right-color: rgba(255, 255, 255, 0.18);
    cursor: default;
}

.quick-card:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    transform: none;
}

.quick-card__number {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    margin: 0;
    color: var(--plum);
    border: 1px solid rgba(var(--plum-rgb), 0.75);
    border-radius: 50%;
    font-size: 0.67rem;
}

.quick-card strong {
    display: block;
    margin: 0 0 4px;
    color: var(--white);
    font-size: 0.9rem;
}

.quick-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.7rem;
    line-height: 1.4;
}

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

.conditions__intro {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.conditions__intro .eyebrow {
    justify-content: center;
}

.conditions__intro h2 {
    margin-bottom: 12px;
}

.conditions__intro > p:not(.eyebrow) {
    color: var(--muted);
}

.conditions__list {
    display: grid;
    margin: 0;
    padding: 0;
    border: 0;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.condition-card {
    min-height: 285px;
    padding: 16px 15px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    text-align: center;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.condition-card:hover {
    border-color: rgba(var(--plum-rgb), 0.65);
    box-shadow: 0 18px 42px rgba(var(--ink-rgb), 0.09);
    transform: translateY(-4px);
}

.condition-card__visual {
    position: relative;
    display: grid;
    width: min(142px, 100%);
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto 20px;
    overflow: hidden;
    place-items: center;
    color: var(--white);
    background:
        radial-gradient(circle at 65% 35%, rgba(61, 185, 177, 0.8), transparent 24%),
        radial-gradient(circle at 40% 62%, rgba(var(--plum-rgb), 0.55), transparent 19%),
        linear-gradient(140deg, var(--ink), var(--ink-soft));
    border-radius: 50%;
}

.condition-card__visual::before,
.condition-card__visual::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 50%;
}

.condition-card__visual::before {
    width: 74px;
    height: 74px;
}

.condition-card__visual::after {
    width: 38px;
    height: 38px;
}

.condition-card__visual b {
    position: relative;
    z-index: 1;
    font-family: Georgia, serif;
    font-size: 1.3rem;
}

.condition-card__visual.has-image::before,
.condition-card__visual.has-image::after {
    display: none;
}

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

.condition-card h3 {
    margin-bottom: 10px;
    font-size: 1.06rem;
    line-height: 1.2;
}

.condition-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.45;
}

.conditions__action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.journey {
    background: var(--cream);
}

.journey .section-heading {
    max-width: 800px;
    margin-bottom: 50px;
}

.journey .section-heading > p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
}

.journey__steps {
    position: relative;
    border-top: 0;
}

.journey__steps::before {
    position: absolute;
    top: 27px;
    right: 12%;
    left: 12%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--ink), var(--plum), var(--ink));
}

.journey__steps li {
    min-height: 230px;
    padding: 0 24px;
    border: 0;
    text-align: center;
}

.journey__number {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    color: var(--white);
    background: var(--ink);
    border: 6px solid var(--cream);
    box-shadow: 0 0 0 1px rgba(var(--ink-rgb), 0.18);
}

.journey__steps li:nth-child(even) .journey__number {
    background: var(--plum);
}

.journey__steps li > div {
    position: static;
    margin-top: 28px;
}

.journey__steps h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.05rem;
}

.journey__steps p {
    color: var(--muted);
    font-size: 0.76rem;
}

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

.about__grid {
    align-items: stretch;
    grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
    gap: 0;
}

.about__visual {
    min-height: 520px;
    overflow: hidden;
    background: var(--lavender);
    border-radius: 14px 0 0 14px;
}

.about__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% center;
}

.about__experience {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 14px 18px;
    color: var(--white);
    background: rgba(var(--ink-rgb), 0.9);
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 750;
    text-align: center;
}

.about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 5vw, 70px);
    background: var(--cream);
    border-radius: 0 14px 14px 0;
}

.about__content h2 {
    font-size: clamp(2.15rem, 3.6vw, 3.5rem);
}

.about__content blockquote {
    margin-top: 28px;
    padding: 24px 26px;
    color: var(--white);
    background: linear-gradient(135deg, var(--ink), var(--ink-soft));
    border: 0;
    border-radius: 10px;
    font-family: "Avenir Next", Inter, sans-serif;
    font-size: 1.05rem;
    font-style: normal;
}

.stats-strip {
    padding: 0 0 72px;
    background: var(--white);
}

.stats-strip__grid {
    display: grid;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    grid-template-columns: repeat(4, 1fr);
}

.stats-strip article {
    display: flex;
    min-height: 96px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    border-right: 1px solid var(--line);
}

.stats-strip article:last-child {
    border-right: 0;
}

.stats-strip strong {
    color: var(--ink);
    font-size: 1.75rem;
}

.stats-strip span {
    max-width: 110px;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.35;
}

.treatment-card {
    background: var(--white);
    border: 1px solid var(--line);
}

.treatment-card:hover {
    background: var(--ink);
}

.branch-card--active {
    background: var(--plum-bright);
    border-color: var(--plum);
}

.final-cta {
    background: linear-gradient(100deg, var(--ink), var(--ink-soft));
}

.site-footer {
    background: var(--footer);
}

.brand--footer .brand__logo {
    width: 245px;
    padding: 7px 10px;
    background: var(--white);
}

@media (max-width: 1180px) {
    .brand__logo {
        width: 190px;
    }

    .main-navigation {
        gap: 14px;
    }

    .main-navigation a {
        font-size: 0.74rem;
    }

    .button--header {
        min-width: 160px;
        padding-inline: 15px;
    }

    .conditions__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 880px) {
    .utility-bar__inner > span:last-child {
        display: none;
    }

    .hero {
        width: 100%;
        border-radius: 0;
        grid-template-columns: 1fr;
    }

    .hero__copy {
        min-height: auto;
        padding: 64px max(24px, calc((100vw - 720px) / 2));
    }

    .hero__visual {
        min-height: 490px;
    }

    .quick-actions__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__grid {
        grid-template-columns: 1fr;
    }

    .about__visual {
        min-height: 450px;
        border-radius: 14px 14px 0 0;
    }

    .about__content {
        border-radius: 0 0 14px 14px;
    }

    .stats-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-strip article:nth-child(2) {
        border-right: 0;
    }

    .stats-strip article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 600px) {
    .utility-bar__inner {
        display: flex;
        min-height: 38px;
        justify-content: center;
    }

    .utility-bar__inner > span {
        display: none;
    }

    .brand__logo {
        width: 170px;
        max-height: 58px;
    }

    .hero h1,
    .branch-page .hero h1 {
        font-size: clamp(2.9rem, 14vw, 4.6rem);
    }

    .hero__trust {
        grid-template-columns: 1fr;
    }

    .hero__trust-item {
        padding-bottom: 9px;
        border-right: 0;
        border-bottom: 1px solid rgba(var(--ink-rgb), 0.11);
    }

    .hero__trust-item:last-child {
        border-bottom: 0;
    }

    .hero__visual {
        min-height: 390px;
    }

    .quick-actions {
        padding-bottom: 12px;
    }

    .quick-actions__grid {
        grid-template-columns: 1fr;
        transform: translateY(-16px);
    }

    .quick-card {
        min-height: 104px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

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

    .condition-card {
        min-height: 255px;
        padding-inline: 10px;
    }

    .condition-card__visual {
        width: 94px;
        height: 94px;
    }

    .journey__steps::before {
        display: none;
    }

    .journey__steps li {
        min-height: 210px;
    }

    .about__visual {
        min-height: 360px;
    }

    .stats-strip article {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }
}
