@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;1,400&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --gold: #BF9D60;
    --gold-deep: #8C6D3F;
    --cream: #FBFBF1;
    --white: #FFFFFF;
    --ink: #2B2620;
    --ink-soft: #5C554B;
    --line: rgba(191, 157, 96, 0.28);
    --shadow: 0 22px 70px rgba(43, 38, 32, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.75;
    font-weight: 400;
    font-size: 18px;
}

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

a {
    color: inherit;
}

.container {
    width: min(1200px, calc(100% - 56px));
    margin: 0 auto;
}

.eyebrow {
    color: var(--gold-deep);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

h1,
h2,
h3 {
    font-weight: 400;
}

h1,
h2 {
    font-family: 'Fraunces', serif;
}

h1 em,
h2 em {
    color: var(--gold);
    font-weight: 400;
}

h2 {
    font-size: clamp(38px, 4.6vw, 62px);
    line-height: 1.1;
    margin-bottom: 24px;
}

p {
    color: var(--ink-soft);
    font-size: 17px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(191, 157, 96, 0.15);
    background: rgba(251, 251, 241, 0.96);
    backdrop-filter: blur(14px);
}

.nav {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.nav-logo img {
    width: 205px;
    max-height: 62px;
    object-fit: contain;
}

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

.nav-links a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 0.03em;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: var(--gold-deep);
}

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover {
    color: #FFFFFF;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--gold);
    background: rgba(251, 251, 241, 0.96);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    transition: background .2s ease, border-color .2s ease;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle:hover {
    background: var(--white);
    border-color: var(--gold-deep);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all .25s ease;
}

.btn-primary {
    background: var(--gold);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #cbae76;
    border-color: #cbae76;
    transform: translateY(-1px);
}

.btn-outline {
    color: var(--cream);
    border-color: rgba(251, 251, 241, 0.45);
    background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-dark-outline {
    color: var(--ink);
    border-color: var(--gold);
}

.btn-dark-outline:hover {
    background: var(--gold);
}

.hero {
    min-height: 92vh;
    background:
        linear-gradient(90deg, rgba(29, 25, 22, 0.92) 0%, rgba(29, 25, 22, 0.85) 18%, rgba(29, 25, 22, 0.68) 34%, rgba(29, 25, 22, 0.32) 48%, rgba(29, 25, 22, 0.08) 64%, rgba(29, 25, 22, 0.02) 100%),
        url('pano_1.jpg') 62% center / cover no-repeat;
    color: var(--cream);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 165px 0 95px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(191, 157, 96, 0.10), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.14));
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 -90px 110px rgba(0, 0, 0, 0.14);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 540px;
}

.hero h1 {
    font-size: clamp(52px, 6vw, 84px);
    line-height: 0.98;
    max-width: 540px;
    margin-bottom: 0;
    text-shadow: 0 5px 18px rgba(0, 0, 0, 0.16);
}

.hero h1 em {
    font-style: italic;
    display: block;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.hero-actions .btn {
    min-width: 230px;
}

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

.trust-grid {
    min-height: 126px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-item {
    padding: 30px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-right: 1px solid var(--line);
}

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

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

.trust-num {
    color: var(--gold);
    font-family: 'Fraunces', serif;
    font-size: 32px;
}

.trust-item strong {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.trust-item small {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.55;
}

.section {
    padding: 118px 0;
}

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

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 96px;
    align-items: start;
}

.about-lead {
    font-size: 22px;
    line-height: 1.85;
    margin-bottom: 24px;
    color: var(--ink);
}

.about-copy p {
    margin-bottom: 19px;
    font-size: 17px;
}

.signature-line {
    margin-top: 35px;
    width: 78px;
    height: 1px;
    background: var(--gold);
}

.services-heading {
    display: flex;
    justify-content: space-between;
    gap: 42px;
    align-items: flex-end;
    margin-bottom: 50px;
}

.services-heading p {
    max-width: 540px;
}

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

.service-card {
    background: var(--white);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 14px 40px rgba(43, 38, 32, 0.04);
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(43, 38, 32, 0.09);
}

.service-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 0;
    padding: 0;
    margin: 0;
    background: #e9e5dd;
    cursor: zoom-in;
    display: block;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(26, 23, 20, 0.42) 100%
    );
    opacity: .65;
    transition: opacity .3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.035);
}

.service-card:hover .service-image::after {
    opacity: .85;
}

.service-image-zoom {
    position: absolute;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    opacity: .9;
}

.service-card-content {
    padding: 30px 30px 31px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-index {
    font-size: 11px;
    color: var(--gold-deep);
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.service-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    line-height: 1.18;
    margin-bottom: 13px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.65;
}

.service-link {
    margin-top: auto;
    padding-top: 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold-deep);
}

.service-link:hover {
    color: var(--ink);
}


/* Modal fotografías de tratamientos */

body.modal-open {
    overflow: hidden;
}

.image-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.image-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.image-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 16, 14, .88);
    backdrop-filter: blur(10px);
    cursor: zoom-out;
}

.image-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(1100px, 94vw);
    max-height: 90vh;
    background: #171411;
    border: 1px solid rgba(191, 157, 96, .32);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
    overflow: hidden;
    transform: translateY(14px) scale(.985);
    transition: transform .28s ease;
}

.image-modal.is-open .image-modal-dialog {
    transform: translateY(0) scale(1);
}

.image-modal-photo {
    width: 100%;
    max-height: calc(90vh - 92px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #11100e;
}

.image-modal-photo img {
    width: 100%;
    max-height: calc(90vh - 92px);
    object-fit: contain;
}

.image-modal-close {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 4;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .32);
    background: rgba(20, 18, 16, .72);
    color: #fff;
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background .2s ease, border-color .2s ease;
}

.image-modal-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.image-modal-caption {
    padding: 20px 27px 22px;
    background: #211d19;
}

.image-modal-caption span {
    color: var(--gold);
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.image-modal-caption h3 {
    color: var(--cream);
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 400;
}

.philosophy {
    background: var(--ink);
    color: var(--cream);
}

.philosophy h2 {
    color: var(--cream);
    max-width: 760px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 92px;
    margin-top: 58px;
}

.philosophy p {
    color: rgba(251, 251, 241, .75);
    font-size: 17px;
}

.philosophy-card {
    border-top: 1px solid rgba(191, 157, 96, .4);
    padding-top: 28px;
}

.philosophy-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--cream);
}

.guidance {
    background: var(--white);
    color: var(--ink);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.guidance-inner {
    min-height: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 78px;
}

.guidance h2 {
    margin: 0;
    max-width: 680px;
    color: var(--ink);
}

.guidance p {
    color: var(--ink-soft);
    max-width: 520px;
    margin: 18px 0 28px;
    font-size: 19px;
    line-height: 1.8;
}

.guidance .btn {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
}

.faq {
    max-width: 900px;
    margin: 54px auto 0;
}

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

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.45;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 82px;
    align-items: start;
}

.contact-details {
    margin-top: 38px;
}

.contact-row {
    display: grid;
    grid-template-columns: 135px 1fr;
    border-top: 1px solid var(--line);
    padding: 19px 0;
    font-size: 16px;
}

.contact-row:last-child {
    border-bottom: 1px solid var(--line);
}

.contact-row .label {
    color: var(--gold-deep);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding-top: 4px;
    font-weight: 500;
}

.contact-panel {
    background: var(--ink);
    padding: 54px;
    color: var(--cream);
}

.contact-panel h3 {
    font-family: 'Fraunces', serif;
    font-size: 35px;
    margin-bottom: 18px;
}

.contact-panel p {
    color: rgba(251, 251, 241, .75);
    margin-bottom: 30px;
    font-size: 17px;
}

.contact-panel .btn {
    width: 100%;
}

.social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social a {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(251, 251, 241, .22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border .2s ease, color .2s ease;
}

.social a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.social svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.footer {
    background: #211d19;
    color: var(--cream);
    padding: 68px 0 26px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr .75fr .75fr;
    gap: 72px;
    padding-bottom: 52px;
}

.footer-logo {
    width: 176px;
    margin-bottom: 22px;
}

.footer p,
.footer a {
    color: rgba(251, 251, 241, .64);
    font-size: 14px;
    line-height: 1.7;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    color: var(--gold);
}

.footer-title {
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 16px;
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid rgba(251, 251, 241, .1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: rgba(251, 251, 241, .42);
    font-size: 11px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(43, 38, 32, .22);
    z-index: 900;
    transition: transform .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.page-hero {
    padding: 178px 0 92px;
    background: var(--ink);
    color: var(--cream);
}

.page-hero h1 {
    font-size: clamp(46px, 6vw, 74px);
    line-height: 1.02;
    max-width: 780px;
    margin-bottom: 24px;
}

.page-hero p {
    color: rgba(251, 251, 241, .72);
    max-width: 680px;
    font-size: 19px;
    line-height: 1.8;
}

.treatment-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.treatment {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 340px;
    gap: 38px;
    padding: 54px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}

.treatment-number {
    color: var(--gold);
    font-family: 'Fraunces', serif;
    font-size: 30px;
    align-self: start;
}

.treatment-copy {
    align-self: center;
}

.treatment h2 {
    font-size: 34px;
    margin-bottom: 14px;
}

.treatment p {
    font-size: 16px;
    max-width: 670px;
    line-height: 1.8;
}

.treatment-visual {
    display: grid;
    gap: 14px;
    width: 100%;
}

.treatment-action {
    display: flex;
    justify-content: flex-start;
}

.treatment-action .btn {
    width: 100%;
}

.before-after,
.treatment-media-single {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e9e5dd;
    border: 1px solid var(--line);
    box-shadow: 0 14px 38px rgba(43, 38, 32, 0.08);
}

.before-after img,
.treatment-media-single img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-base {
    position: relative;
    z-index: 1;
}

.before-after-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    clip-path: inset(0 75% 0 0);
}

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

.before-after-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25%;
    width: 2px;
    background: rgba(251, 251, 241, 0.95);
    transform: translateX(-50%);
    z-index: 4;
    box-shadow: 0 0 0 1px rgba(24, 20, 16, 0.08);
    pointer-events: none;
}

.before-after-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(251, 251, 241, 0.96);
    border: 1px solid rgba(43, 38, 32, 0.12);
    box-shadow: 0 8px 22px rgba(43, 38, 32, 0.18);
}

.before-after-divider::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--ink);
    font-size: 17px;
    line-height: 1;
}

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

.before-after-label {
    position: absolute;
    top: 14px;
    z-index: 6;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(24, 20, 16, 0.62);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    pointer-events: none;
    backdrop-filter: blur(6px);
}

.before-after-label.before {
    left: 14px;
}

.before-after-label.after {
    right: 14px;
}

@media (max-width: 950px) {
    .nav {
        position: relative;
    }

    .nav-toggle {
        display: flex;
        flex: 0 0 auto;
        z-index: 1002;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 22px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        background: rgba(251, 251, 241, 0.985);
        border: 1px solid rgba(191, 157, 96, 0.24);
        border-top: 0;
        box-shadow: 0 22px 45px rgba(43, 38, 32, 0.13);
        backdrop-filter: blur(18px);
        transition:
            max-height .35s ease,
            padding .35s ease,
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;
    }

    .nav-links.is-open {
        max-height: 620px;
        padding: 18px 22px 22px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a,
    .nav-links a:not(.nav-cta) {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        padding: 14px 2px;
        font-size: 16px;
        line-height: 1.3;
        border-bottom: 1px solid rgba(191, 157, 96, 0.16);
    }

    .nav-links a.nav-cta {
        justify-content: center;
        margin-top: 14px;
        min-height: 50px;
        padding: 0 20px;
        border-bottom: 1px solid var(--gold);
        color: #FFFFFF;
    }

    .hero-grid,
    .about-grid,
    .philosophy-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-side {
        border-left: 0;
        border-top: 1px solid rgba(191, 157, 96, .28);
        padding: 34px 0 0;
        background: transparent;
        backdrop-filter: none;
    }

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

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

    .trust-item,
    .trust-item:first-child {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .guidance-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 66px 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .treatment {
        grid-template-columns: 60px 1fr;
        align-items: start;
    }

    .treatment-visual {
        grid-column: 2;
        width: min(100%, 440px);
    }

    .treatment-action {
        grid-column: auto;
        justify-content: flex-start;
    }
}

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

    body {
        font-size: 17px;
    }

    .nav {
        height: 72px;
    }

    .nav-logo img {
        width: 140px;
    }

    .nav-cta {
        padding: 0 14px;
        min-height: 46px;
        font-size: 16px !important;
        font-weight: 600;
    }

    .philosophy {
        text-align: center;
    }

    .philosophy h2 {
        margin-left: auto;
        margin-right: auto;
    }

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

    .guidance-inner {
        text-align: center;
        align-items: center;
    }

    .guidance-inner > div {
        width: 100%;
    }

    .guidance h2,
    .guidance p {
        margin-left: auto;
        margin-right: auto;
    }

    #contacto .contact-grid {
        text-align: center;
    }

    #contacto .contact-details {
        text-align: center;
    }

    #contacto .contact-row {
        justify-items: center;
        text-align: center;
    }

    #contacto .contact-row .label {
        padding-top: 0;
    }

    #contacto .contact-panel {
        text-align: center;
    }

    #contacto .contact-panel .social {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding: 136px 0 70px;
        background:
            linear-gradient(180deg, rgba(29, 25, 22, 0.84) 0%, rgba(29, 25, 22, 0.66) 55%, rgba(29, 25, 22, 0.78) 100%),
            url('pano_1.jpg') 56% center / cover no-repeat;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero-grid {
        gap: 0;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        display: grid;
        margin-top: 30px;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .section {
        padding: 84px 0;
    }

    .services-heading {
        display: block;
    }

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

    .service-card {
        min-height: 0;
    }

    .service-image {
        aspect-ratio: 4 / 3;
    }

    .service-card-content {
        padding: 26px 24px 27px;
    }

    .image-modal {
        padding: 14px;
    }

    .image-modal-dialog {
        width: 100%;
        max-height: 92vh;
    }

    .image-modal-photo,
    .image-modal-photo img {
        max-height: calc(92vh - 82px);
    }

    .image-modal-close {
        top: 12px;
        right: 12px;
    }

    .image-modal-caption {
        padding: 16px 20px 18px;
    }

    .image-modal-caption h3 {
        font-size: 21px;
    }

    .contact-panel {
        padding: 36px 28px;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer .social {
        justify-content: center;
    }

    .footer-links {
        justify-items: center;
    }

    .footer-bottom {
        display: block;
        text-align: center;
    }

    .footer-bottom div + div {
        margin-top: 8px;
    }

    .page-hero {
        padding: 140px 0 68px;
    }

    .page-hero p {
        font-size: 18px;
    }

    .treatment {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 40px 0;
    }

    .treatment-number,
    .treatment-copy,
    .treatment-visual {
        grid-column: 1;
    }

    .treatment h2 {
        font-size: 30px;
    }

    .treatment-visual {
        width: 100%;
        margin-top: 8px;
    }

    .treatment-action {
        grid-column: 1;
        margin-top: 0;
    }
}