:root {
    --ink: #20272b;
    --muted: #5f676b;
    --sage: #6f9589;
    --sage-dark: #175a4d;
    --teal: #00796b;
    --coral: #c07a86;
    --rose: #8f4660;
    --gold: #b78b45;
    --ivory: #faf7f1;
    --linen: #efe6d8;
    --mist: #e8f2ee;
    --blush: #f8e5e9;
    --white: #ffffff;
    --border: #d5ddd8;
    --shadow: 0 22px 58px rgba(20, 38, 35, 0.14);
    --soft-shadow: 0 12px 34px rgba(20, 38, 35, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, var(--ivory) 0%, #ffffff 45%, var(--mist) 100%);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
}

p,
li,
.contact-detail {
    text-align: justify;
}

.clinic-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.42;
}

.site-header,
main,
.site-footer {
    position: relative;
    z-index: 1;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softZoom {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glowSweep {
    from {
        transform: translateX(-120%) rotate(12deg);
    }
    to {
        transform: translateX(260%) rotate(12deg);
    }
}

@keyframes gentleFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 78px;
    padding: 12px clamp(20px, 4vw, 54px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(23, 90, 77, 0.18);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 34px rgba(20, 38, 35, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    transition: transform 220ms ease;
}

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

.brand-mark {
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: contain;
    padding: 4px;
    flex: 0 0 auto;
    background: var(--white);
    box-shadow: 0 6px 18px rgba(20, 38, 35, 0.14);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.brand:hover .brand-mark {
    transform: rotate(-3deg) scale(1.04);
    box-shadow: 0 10px 26px rgba(20, 38, 35, 0.18);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    line-height: 1;
}

.brand small {
    color: var(--muted);
    font-size: 0.76rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.main-nav a {
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.94rem;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: var(--sage-dark);
}

.main-nav a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 38, 35, 0.12);
}

.main-nav .nav-cta {
    color: var(--white);
    background: linear-gradient(135deg, var(--rose), var(--teal));
    box-shadow: 0 10px 24px rgba(0, 121, 107, 0.22);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta.active {
    color: var(--white);
    background: #12483e;
}

.header-phone {
    color: var(--teal);
    font-weight: 800;
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    animation: softZoom 1100ms ease both;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(250, 247, 241, 0.98) 0%, rgba(250, 247, 241, 0.82) 42%, rgba(250, 247, 241, 0.12) 100%), linear-gradient(135deg, rgba(248, 229, 233, 0.58), rgba(0, 121, 107, 0.12));
    z-index: -1;
}

.hero-content {
    width: min(640px, calc(100% - 40px));
    margin-left: clamp(20px, 7vw, 96px);
    padding: 68px 0 96px;
}

.hero-content .eyebrow,
.page-hero .eyebrow {
    animation: fadeSlideUp 620ms ease 80ms both;
}

.hero-content h1,
.page-hero h1 {
    animation: fadeSlideUp 720ms ease 180ms both;
}

.hero-content p:not(.eyebrow),
.page-hero p {
    animation: fadeSlideUp 720ms ease 280ms both;
}

.hero-actions,
.page-hero-image {
    animation: fadeSlideUp 760ms ease 380ms both;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--rose);
    font-size: 0.99rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1,
h2 {
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.08;
}

h1 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 6vw, 5.8rem);
    max-width: 740px;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hero-content p:not(.eyebrow),
.page-hero p {
    max-width: 610px;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-actions,
.cta-content {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button::after,
.read-more-link::after {
    content: "";
    position: absolute;
    inset: -70% auto -70% -40%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    opacity: 0;
    pointer-events: none;
}

.button:hover,
.read-more-link:hover {
    transform: translateY(-3px);
}

.button:hover::after,
.read-more-link:hover::after {
    opacity: 1;
    animation: glowSweep 760ms ease;
}

.button.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--rose), var(--teal));
    box-shadow: 0 14px 32px rgba(0, 121, 107, 0.26);
}

.button.primary:hover {
    background: #12483e;
    box-shadow: 0 18px 42px rgba(0, 121, 107, 0.32);
}

.button.secondary {
    color: var(--teal);
    background: var(--ivory);
    border: 1px solid var(--border);
    box-shadow: var(--soft-shadow);
}

.button:active,
.read-more-link:active {
    transform: translateY(0) scale(0.98);
}

.section {
    padding: 86px 0;
}

.intro-band,
.values-band,
.cta-band {
    padding: 68px 0;
    background: var(--ivory);
}

.intro-band {
    border-top: 1px solid rgba(23, 90, 77, 0.12);
    border-bottom: 1px solid rgba(23, 90, 77, 0.12);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: clamp(30px, 6vw, 84px);
    align-items: start;
}

.split>p,
.prose p,
.service-card p,
.value-grid p,
.team-card p,
.treatment-grid p,
.booking-note p,
.contact-detail,
.site-footer p {
    color: var(--muted);
}

.section-heading {
    max-width: 680px;
    margin-bottom: 34px;
}

.service-grid,
.value-grid,
.team-grid,
.client-grid,
.treatment-grid {
    display: grid;
    gap: 18px;
}

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

.service-overview-grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}

.service-overview-grid .service-card {
    padding-inline: 22px;
}

.service-overview-grid .service-card-image {
    width: calc(100% + 44px);
    height: 156px;
    margin-inline: -22px;
}

.service-overview-grid .service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    font-size: 0.84rem;
}

.service-overview-grid .service-card h3 {
    font-size: 1.18rem;
}

.service-card,
.value-grid article,
.team-card,
.client-card,
.treatment-grid article,
.form-card,
.contact-panel,
.booking-note {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(180deg, var(--white), rgba(250, 247, 241, 0.92));
    box-shadow: var(--shadow);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card {
    padding: 0 28px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card-image {
    width: calc(100% + 56px);
    height: 178px;
    margin: 0 -28px 24px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    transition: transform 420ms ease, filter 420ms ease;
}

.skin-card .service-card-image {
    object-position: center;
}

.hair-card .service-card-image {
    object-position: center;
}

.laser-card .service-card-image {
    object-position: center;
}

.service-card h3,
.value-grid article h3,
.team-card h3,
.treatment-grid article h3 {
    transition: color 220ms ease, transform 220ms ease;
}

.service-card p,
.value-grid article p,
.team-card p,
.treatment-grid article p {
    transition: transform 220ms ease, color 220ms ease;
}

.service-card::before,
.treatment-grid article::before,
.value-grid article::before,
.team-card::before {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rose), var(--gold), var(--teal));
}

.service-card:hover,
.treatment-grid article:hover,
.value-grid article:hover,
.team-card:hover,
.contact-panel:hover,
.booking-note:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(20, 38, 35, 0.18);
    border-color: rgba(0, 121, 107, 0.28);
}

.service-card:hover h3,
.value-grid article:hover h3,
.team-card:hover h3,
.treatment-grid article:hover h3 {
    color: var(--sage-dark);
    transform: translateY(-2px);
}

.service-card:hover p,
.value-grid article:hover p,
.team-card:hover p,
.treatment-grid article:hover p {
    transform: translateY(-1px);
    color: #4d595d;
}

.service-card:hover .service-card-image {
    transform: scale(1.06);
    filter: saturate(1.05) contrast(1.04);
}

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

.client-card {
    display: grid;
    grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr);
    align-items: center;
    overflow: hidden;
}

.client-card img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.client-card div {
    padding: 26px;
}

.client-card h3 {
    margin-bottom: 10px;
}

.client-card p {
    color: var(--muted);
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(20, 38, 35, 0.18);
    border-color: rgba(0, 121, 107, 0.28);
}

.treatment-grid article {
    overflow: hidden;
    padding: 0 24px 24px;
}

.treatment-grid article::before {
    display: none;
}

.treatment-card-image {
    display: block;
    width: calc(100% + 48px);
    height: 172px;
    margin: 0 -24px 20px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
    background: var(--mist);
    transition: transform 420ms ease, filter 420ms ease;
}

.treatment-grid article:hover .treatment-card-image {
    transform: scale(1.05);
    filter: saturate(1.06) contrast(1.04);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--rose), var(--teal));
    font-weight: 800;
    transition: transform 220ms ease;
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.08);
}

.service-card a {
    color: var(--teal);
    font-weight: 800;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(0, 121, 107, 0.22);
    border-radius: 999px;
    color: var(--teal);
    background: var(--white);
    box-shadow: var(--soft-shadow);
    font-weight: 800;
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.read-more-link:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--teal), var(--sage-dark));
    box-shadow: 0 14px 34px rgba(0, 121, 107, 0.24);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.gallery-hero .page-hero-grid {
    grid-template-columns: 1fr;
}

.gallery-hero .page-hero-grid > div {
    max-width: 840px;
}

.gallery-card {
    position: relative;
    min-height: 460px;
    margin: 0;
    overflow: hidden;
    border: 8px solid var(--white);
    border-radius: 22px;
    background: #eaf5f3;
    box-shadow: 0 24px 62px rgba(20, 38, 35, 0.16);
    isolation: isolate;
    animation: galleryFloat 8s ease-in-out infinite;
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, filter 260ms ease;
}

.featured-poster {
    transform-origin: center;
}

.gallery-card:nth-child(2) {
    animation-delay: 700ms;
}

.gallery-card:nth-child(3) {
    animation-delay: 1400ms;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: contain;
    background: #ffffff;
    transition: transform 520ms ease, filter 520ms ease;
}

.gallery-open {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.015);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 34px 80px rgba(20, 38, 35, 0.22);
    filter: saturate(1.04);
}

.gallery-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.03);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 52px);
    background: rgba(12, 24, 22, 0.86);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox img {
    width: min(920px, 100%);
    max-height: 86vh;
    object-fit: contain;
    border: 8px solid var(--white);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    transform: scale(0.94);
    transition: transform 220ms ease;
}

.gallery-lightbox.is-open img {
    transform: scale(1);
}

.gallery-lightbox-close {
    position: absolute;
    top: clamp(16px, 3vw, 32px);
    right: clamp(16px, 3vw, 32px);
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
    font: inherit;
    font-size: 2rem;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease;
}

.gallery-lightbox-close:hover {
    transform: rotate(6deg) scale(1.04);
    background: rgba(255, 255, 255, 0.22);
}

@keyframes galleryFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.cta-band {
    background: linear-gradient(135deg, #175a4d 0%, #20272b 62%, #8f4660 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-band::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(183, 139, 69, 0.24);
}

.cta-band .eyebrow,
.cta-band p {
    color: #f4dfd6;
}

.cta-content {
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    max-width: 720px;
    margin-bottom: 0;
}

.cta-band .button.primary {
    color: var(--sage-dark);
    background: var(--ivory);
}

.page-hero {
    padding: 74px 0 64px;
    background: linear-gradient(135deg, var(--blush) 0%, var(--ivory) 46%, var(--mist) 100%);
    border-bottom: 1px solid rgba(23, 90, 77, 0.14);
}

.page-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: clamp(28px, 5vw, 66px);
    align-items: center;
}

.page-hero-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.74);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(20, 38, 35, 0.2);
    transition: transform 360ms ease, box-shadow 360ms ease;
    animation: fadeSlideUp 760ms ease 380ms both, gentleFloat 5200ms ease-in-out 1400ms infinite;
}

.page-hero-image:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 34px 84px rgba(20, 38, 35, 0.24);
}

.story {
    align-items: start;
}

.values-band {
    background: linear-gradient(135deg, var(--mist), var(--blush));
}

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

.value-grid article,
.team-card,
.treatment-grid article {
    padding: 24px;
}

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

.service-list {
    padding-bottom: 20px;
}

.service-category {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

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

.detail-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.contact-layout,
.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.contact-panel,
.booking-note,
.form-card {
    padding: clamp(24px, 4vw, 34px);
}

.contact-detail {
    display: grid;
    gap: 4px;
    margin: 18px 0;
}

.contact-detail strong {
    color: var(--ink);
}

.contact-detail a {
    color: var(--teal);
    font-weight: 700;
}

.map-box {
    overflow: hidden;
    min-height: 220px;
    margin-top: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--ivory);
}

.map-box iframe {
    display: block;
    width: 100%;
    min-height: 260px;
    border: 0;
}

.form-card {
    display: grid;
    gap: 16px;
}

.form-card h2 {
    margin-bottom: 2px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fffdf8;
    font: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(0, 121, 107, 0.18);
    border-color: var(--teal);
    box-shadow: 0 12px 30px rgba(20, 38, 35, 0.08);
    transform: translateY(-1px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--sage-dark);
    font-weight: 700;
}

.check-list {
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.check-list li {
    margin: 10px 0;
    padding-left: 28px;
    position: relative;
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--teal));
}

.site-footer {
    padding: 56px 0 24px;
    color: #f2e8df;
    background: linear-gradient(135deg, #20272b 0%, #175a4d 54%, #8f4660 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
    gap: 34px;
}

.site-footer .brand-mark {
    box-shadow: none;
}

.site-footer h3 {
    color: var(--white);
}

.site-footer a,
.site-footer p {
    display: block;
    color: #f2e8df;
}

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

.footer-brand {
    margin-bottom: 18px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.social-links svg {
    width: 22px;
    height: 22px;
}

.social-links svg * {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.social-links .facebook svg * {
    fill: currentColor;
    stroke: none;
}

.social-links .instagram {
    background: radial-gradient(circle at 30% 110%, #feda75 0 18%, #fa7e1e 34%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.social-links .facebook {
    background: #1877f2;
}

.social-links a:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.44);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
    filter: saturate(1.12) brightness(1.05);
}

.copyright {
    display: block;
    width: min(1120px, calc(100% - 40px));
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff8ef;
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 1;
    transform: none;
    text-align: center;
}

.copyright a {
    display: inline;
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto auto;
    }
    .nav-toggle {
        display: block;
        justify-self: end;
    }
    .main-nav {
        display: none;
        grid-column: 1 / -1;
        justify-content: start;
        flex-wrap: wrap;
    }
    .main-nav.is-open {
        display: flex;
    }
    .header-phone {
        display: none;
    }
    .hero {
        min-height: 680px;
    }
    .service-grid,
    .value-grid,
    .team-grid,
    .client-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-card-large,
    .gallery-card-wide {
        grid-column: span 2;
    }
    .split,
    .service-category,
    .detail-layout,
    .page-hero-grid,
    .contact-layout,
    .booking-layout {
        grid-template-columns: 1fr;
    }
    .page-hero-image {
        max-height: 430px;
    }
}

@media (max-width: 680px) {
    .container,
    .hero-content,
    .copyright {
        width: min(100% - 28px, 1120px);
    }
    .site-header {
        padding: 10px 14px;
    }
    .brand {
        min-width: 0;
    }
    .brand-mark {
        width: 46px;
        height: 46px;
    }
    .brand strong {
        font-size: 1.15rem;
    }
    .brand small {
        font-size: 0.68rem;
    }
    .main-nav a {
        width: 100%;
        border-radius: 8px;
    }
    .hero {
        min-height: 640px;
        align-items: end;
    }
    .hero-overlay {
        background: linear-gradient(180deg, rgba(250, 247, 241, 0.12) 0%, rgba(250, 247, 241, 0.94) 48%, rgba(250, 247, 241, 1) 100%), linear-gradient(135deg, rgba(248, 229, 233, 0.38), rgba(0, 121, 107, 0.12));
    }
    .hero-content {
        margin: 0 auto;
        padding: 280px 0 42px;
    }
    h1 {
        font-size: 2.75rem;
    }
    .section,
    .page-hero {
        padding: 58px 0;
    }
    .intro-band,
    .values-band,
    .cta-band {
        padding: 48px 0;
    }
    .service-grid,
    .value-grid,
    .team-grid,
    .client-grid,
    .treatment-grid,
    .gallery-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    .service-overview-grid {
        grid-template-columns: 1fr;
    }
    .service-overview-grid .service-card {
        padding-inline: 28px;
    }
    .service-overview-grid .service-card-image {
        width: calc(100% + 56px);
        height: 178px;
        margin-inline: -28px;
    }
    .gallery-card,
    .gallery-card-large,
    .gallery-card-wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 300px;
    }
    .cta-content {
        align-items: flex-start;
    }
    .button {
        width: 100%;
    }
    .client-card {
        grid-template-columns: 1fr;
    }
    .client-card img {
        height: 260px;
        min-height: 0;
    }
    .page-hero-image {
        border-width: 5px;
        border-radius: 12px;
        max-height: 320px;
    }
}
