@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@300;400;500;600;700&display=swap');


:root {

    --dark: #202322;
    --black: #121313;
    --light: #f7f7f4;
    --white: #ffffff;
    --accent: #76a99a;
    --grey: #8d928c;
    --border: #dcdfd9;

}

.skin-tagline {
    margin-top: 3rem;
    font-size: 1.5rem;
    line-height: 1.35;
    font-weight: 400;
}

.skin-tagline span {
    display: block;
}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "Manrope", sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;

}


body.modal-open {

    overflow: hidden;

}


img {

    width: 100%;
    display: block;

}


a {

    color: inherit;
    text-decoration: none;

}


button {

    font-family: inherit;

}


.container {

    width: min(1240px, calc(100% - 60px));
    margin: auto;

}


section {

    scroll-margin-top: 82px;

}


h1,
h2,
h3 {

    font-weight: 400;
    line-height: 1.08;

}


h1 {

    font-size: clamp(4rem, 8vw, 8.5rem);
    letter-spacing: -0.07em;

}


h2 {

    font-size: clamp(3rem, 5vw, 5.8rem);
    letter-spacing: -0.06em;

}


.accent {

    color: var(--accent);

}


.eyebrow {

    font-family: "DM Mono", monospace;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #777c76;
    margin-bottom: 28px;

}


.large-text {

    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.65;

}


.button {

    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 17px 30px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: .3s ease;

}


.button-dark {

    background: var(--dark);
    color: white;

}


.button-dark:hover {

    background: var(--accent);

}


.button-light {

    border: 1px solid rgba(255,255,255,.4);
    color: white;

}


.button-light:hover {

    background: white;
    color: var(--dark);

}



/* HEADER */

.header {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 82px;

    z-index: 100;

    background: rgba(247,247,244,.88);

    backdrop-filter: blur(16px);

    border-bottom: 1px solid transparent;

    transition: .3s;

}


.header.scrolled {

    border-color: rgba(0,0,0,.07);

}


.header-inner {

    width: min(1400px, calc(100% - 60px));
    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

}


.logo {

    display: flex;
    flex-direction: column;

    line-height: 1.15;

}


.logo-name {

    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;

}


.logo-title {

    font-size: .65rem;
    color: var(--grey);
    margin-top: 4px;

}


.navigation {

    display: flex;
    gap: 26px;

}


.navigation a {

    position: relative;
    font-size: .9rem;

    color: #696d68;

}


.navigation a::after {

    content: "";

    position: absolute;

    bottom: -7px;
    left: 0;

    width: 0;
    height: 1px;

    background: var(--accent);

    transition: .3s;

}


.navigation a:hover::after,
.navigation a.active::after {

    width: 100%;

}


.navigation a.active {

    color: var(--dark);

}


.header-actions {

    display: flex;
    align-items: center;
    gap: 20px;

}


.language-switcher {

    display: flex;
    align-items: center;
    gap: 5px;

    font-family: "DM Mono";
    font-size: .68rem;

    color: #aaa;

}


.language {

    border: none;
    background: none;

    color: #aaa;

    cursor: pointer;

    transition: .2s;

}


.language.active {

    color: var(--dark);

}


.menu-button {

    display: none;

    width: 40px;
    height: 40px;

    border: none;
    background: transparent;

    cursor: pointer;

}


.menu-button span {

    display: block;

    width: 24px;
    height: 1px;

    background: var(--dark);

    margin: 7px auto;

    transition: .3s;

}



/* HERO */

.hero {

    min-height: 100vh;
    padding-top: 82px;

}


.hero-content {

    min-height: calc(100vh - 82px);

    display: grid;
    grid-template-columns: 1fr 1fr;

}


.hero-text {

    padding: clamp(80px, 10vw, 180px);

    display: flex;
    flex-direction: column;
    justify-content: center;

}


.hero-text h1 {

    display: flex;
    flex-direction: column;

}


.hero-description {

    max-width: 450px;

    margin: 40px 0;

    font-size: 1.05rem;
    color: #666b65;

}


.hero-image-wrapper {

    position: relative;

    min-height: calc(100vh - 82px);

    overflow: hidden;

}


.hero-image {

    height: 100%;

    object-fit: cover;
    object-position: center top;

}


.doctor-name {

    position: absolute;

    right: 45px;
    bottom: 45px;

    padding: 20px 24px;

    background: rgba(255,255,255,.9);

    backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column;

}


.doctor-name span {

    font-family: "DM Mono";
    font-size: .6rem;

    color: #777;

}


.doctor-name strong {

    margin: 3px 0;

    font-size: 1.05rem;
    letter-spacing: .05em;

}


.doctor-name small {

    color: var(--accent);

}



/* INTRO */

.intro {

    padding: 150px 0;
    background: white;

}


.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}


.section-number {

    font-family: "DM Mono";
    font-size: .75rem;

    color: var(--accent);

}


.intro-text {

    max-width: 500px;

}


.intro-text p {

    margin-bottom: 25px;

    color: #656a65;

}



/* SKIN */

.skin-section {

    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 850px;

    background: var(--dark);
    color: white;

}


.skin-image img {

    height: 100%;
    min-height: 850px;

    object-fit: cover;

    filter: grayscale(35%);

}


.skin-content {

    padding: clamp(80px, 10vw, 150px);

    display: flex;
    flex-direction: column;
    justify-content: center;

}


.skin-content .eyebrow {

    color: #acd1c5;

}


.skin-content h2 {

    margin-bottom: 50px;

}


.skin-content .large-text {

    max-width: 550px;

    color: #d5d9d5;

    margin-bottom: 60px;

}


.service-list {

    border-top: 1px solid rgba(255,255,255,.2);

}


.service-item {

    display: grid;

    grid-template-columns: 60px 1fr;

    padding: 22px 0;

    border-bottom: 1px solid rgba(255,255,255,.2);

}


.service-item span {

    font-family: "DM Mono";

    color: var(--accent);

    font-size: .7rem;

}


.service-item h3 {

    font-size: 1rem;

}



/* MOLE */

.mole-section {

    padding: 150px 0;

    background: #eceeea;

}


.mole-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;

}


.mole-text p:not(.eyebrow) {

    margin: 40px 0;

    color: #676b66;

}


.mole-image {

    height: 560px;

    overflow: hidden;

}


.mole-image img {

    height: 100%;

    object-fit: cover;

    transition: transform .8s;

}


.mole-image:hover img {

    transform: scale(1.04);

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    font-size: .72rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;

    padding-bottom: 10px;

    border-bottom: 1px solid var(--dark);

}


.text-link b {

    font-size: 1.3rem;

    color: var(--accent);

}



/* ABOUT */

.about-section {

    padding: 150px 0;

    background: white;

}


.about-grid {

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 120px;

}


.career-item {

    display: grid;

    grid-template-columns: 150px 1fr;

    gap: 20px;

    padding: 24px 0;

    border-top: 1px solid var(--border);

}


.career-item:last-child {

    border-bottom: 1px solid var(--border);

}


.career-item span {

    font-family: "DM Mono";

    font-size: .7rem;

    color: var(--accent);

}


.career-item p {

    color: #5f645f;

}



/* RESEARCH */

.research-section {

    padding: 160px 0;

    background: var(--accent);

}


.research-content {

    max-width: 850px;

}


.research-content h2 {

    margin-bottom: 45px;

}


.research-content .light {

    color: white;

}


.research-content p {

    max-width: 600px;

    margin-bottom: 50px;

    font-size: 1.2rem;

}



/* APPOINTMENT */

.appointment-section {

    padding: 150px 0;

    background: var(--light);

}


.appointment-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

}


.appointment-note {

    margin-top: 40px;

    color: var(--grey);

    max-width: 380px;

}


.appointment-card {

    background: white;

    padding: 60px;

    box-shadow: 0 20px 80px rgba(0,0,0,.05);

}


.card-label {

    font-family: "DM Mono";

    font-size: .65rem;

    text-transform: uppercase;

    letter-spacing: .12em;

    color: var(--accent);

}


.appointment-card h3 {

    font-size: 2rem;

    margin: 30px 0;

}


.contact-numbers {

    display: flex;
    flex-direction: column;

    margin-bottom: 30px;

}


.contact-numbers a {

    font-size: 1.2rem;

    margin: 4px 0;

}


.small-text {

    font-size: .8rem;

    color: #777c77;

    margin-bottom: 35px;

}



/* OFFICE */

.office-section {

    padding: 150px 0;

    background: white;

}


.office-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 120px;

}


.office-details {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

}


.office-details h3 {

    position: relative;

    display: inline-block;

    font-size: 1.15rem;
    font-weight: 600;

    color: var(--dark);

    margin-bottom: 22px;

    padding-bottom: 8px;

}


.office-details h3::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: var(--accent);

}


.office-details p {

    font-size: .9rem;

    color: #666b66;

    margin-bottom: 10px;

}



/* ONLINE */

.online-section {

    padding: 150px 0;

    background: #dedfd9;

}


.online-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 120px;

}


.online-grid > div:last-child {

    max-width: 520px;

}


.online-grid .large-text {

    margin-bottom: 45px;

}



/* FOOTER */

.footer {

    background: var(--dark);

    color: white;

    padding: 100px 0 30px;

}


.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 80px;

    padding-bottom: 90px;

}


.footer-name {

    font-size: 2rem;

    line-height: 1;

    letter-spacing: -.04em;

}


.footer-grid p {

    margin-top: 15px;

    color: #aeb2ad;

    font-size: .85rem;

}


.footer-grid a {

    display: block;

    margin: 10px 0;

    color: #d9ddd8;

    font-size: .85rem;

}


.footer-label {

    display: block;

    margin-bottom: 18px;

    font-family: "DM Mono";

    font-size: .65rem;

    text-transform: uppercase;

    letter-spacing: .12em;

    color: var(--accent);

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.15);

    font-size: .7rem;

    color: #888;

}


.footer-bottom div {

    display: flex;

    gap: 25px;

}


.legal-button {

    border: none;
    background: none;

    color: #aaa;

    cursor: pointer;

    font-size: .7rem;

}



/* MODAL */

.modal {

    position: fixed;

    inset: 0;

    z-index: 1000;

    display: none;

}


.modal.active {

    display: block;

}


.modal-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.6);

    backdrop-filter: blur(6px);

}


.modal-content {

    position: relative;

    width: min(850px, calc(100% - 40px));

    max-height: calc(100vh - 80px);

    margin: 40px auto;

    background: var(--light);

    animation: modalIn .4s ease;

}


.modal-scroll {

    max-height: calc(100vh - 80px);

    overflow-y: auto;

    padding: 80px;

}


.modal-close {

    position: absolute;

    top: 20px;
    right: 25px;

    z-index: 2;

    border: none;
    background: none;

    font-size: 2rem;

    cursor: pointer;

}


.legal-text {

    margin-top: 50px;

    max-width: 650px;

}


.legal-text h3 {

    margin-top: 40px;

    margin-bottom: 12px;

    font-size: 1rem;

}


.legal-text p {

    color: #606560;

    margin-bottom: 25px;

}



/* ANIMATION */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


@keyframes modalIn {

    from {

        opacity: 0;
        transform: translateY(30px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}



/* RESPONSIVE */

@media (max-width: 1100px) {

    .navigation {

        gap: 15px;

    }

    .navigation a {

        font-size: .62rem;

    }

}


@media (max-width: 900px) {

    .header-inner {

        width: calc(100% - 40px);

    }


    .navigation {

        position: fixed;

        top: 82px;
        left: 0;

        width: 100%;
        height: calc(100vh - 82px);

        display: none;

        flex-direction: column;

        justify-content: center;
        align-items: center;

        gap: 30px;

        background: var(--light);

    }


    .navigation.open {

        display: flex;

    }


    .navigation a {

        font-size: 1.2rem;

    }


    .menu-button {

        display: block;

    }


    .hero-content {

        grid-template-columns: 1fr;

    }


    .hero-text {

        min-height: 65vh;

        padding: 120px 30px 80px;

    }


    .hero-image-wrapper {

        min-height: 600px;

    }


    .intro-grid,
    .about-grid,
    .appointment-grid,
    .office-grid,
    .online-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .section-number {

        display: none;

    }


    .skin-section {

        grid-template-columns: 1fr;

    }


    .skin-image {

        height: 500px;

    }


    .skin-image img {

        min-height: 0;

    }


    .skin-content {

        padding: 90px 30px;

    }


    .mole-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 50px;

    }

}


@media (max-width: 600px) {

    .container {

        width: calc(100% - 40px);

    }


    h1 {

        font-size: 3.8rem;

    }


    h2 {

        font-size: 3rem;

    }


    .doctor-name {

        right: 20px;
        bottom: 20px;

    }


    .mole-section,
    .about-section,
    .appointment-section,
    .office-section,
    .online-section,
    .intro {

        padding: 90px 0;

    }


    .mole-image {

        height: 400px;

    }


    .career-item {

        grid-template-columns: 1fr;

        gap: 8px;

    }


    .office-details {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .appointment-card {

        padding: 35px 25px;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }


    .modal-content {

        width: 100%;

        min-height: 100vh;

        margin: 0;

    }


    .modal-scroll {

        max-height: 100vh;

        padding: 80px 30px;

    }

}