@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #14B8A6;
    --primary-dark: #0F766E;
    --secondary: #2DD4BF;
    --bg: #F8FCFC;
    --white: #fff;
    --text: #183837;
    --text-light: #708687;
    --border: #DDEEEE;
    --radius: 24px;
    --shadow: 0 18px 50px rgba(0,0,0,.08);
    --transition: .3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter',sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.75;
    overflow-x: hidden;
}

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

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

.container {
    width: min(1240px,92%);
    margin: auto;
}

section {
    padding: 45px 0;
}

.services-home {
    padding-bottom: 20px;
}

.about {
    padding-top: 20px;
}


/*================ HEADER ================*/

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(33,33,33,.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid #3A3A3A;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Fraunces',serif;
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    transition: .3s;
}

 

    .nav-logo img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .nav-logo:hover {
        color: var(--primary);
    }

.nav-menu {
    display: flex;
    gap: 38px;
    align-items: center;
}

    .nav-menu a {
        font-size: 15px;
        font-weight: 600;
        position: relative;
        transition: .3s;
        color: var(--secondary);
    }

        .nav-menu a:hover {
            color: var(--secondary);
        }

        .nav-menu a.active {
            color: var(--secondary);
        }

            .nav-menu a.active::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -8px;
                width: 100%;
                height: 2px;
                background: var(--primary);
            }

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 34px;
    cursor: pointer;
    color: #fff;
}

/*================ BUTTONS ================*/

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 34px;
    border-radius: 999px;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 12px 35px rgba(20,184,166,.22);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
    }

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: white;
}

    .btn-secondary:hover {
        background: var(--primary);
        color: white;
    }

/*================ HERO ================*/

.hero {
    padding: 65px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 55px;
}

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

    .hero-copy h1 {
        font-family: 'Fraunces',serif;
        font-size: 72px;
        line-height: 1.05;
        font-weight: 600;
        letter-spacing: -1px;
        color: var(--primary-dark);
        margin: 18px 0 26px;
    }

    .hero-copy .lead {
        font-size: 19px;
        line-height: 1.8;
        color: var(--text-light);
        max-width: 560px;
        margin-bottom: 32px;
    }

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.hero-features {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    font-size: 15px;
    color: var(--text-light);
}

    .hero-features span {
        display: flex;
        align-items: center;
        gap: 10px;
    }

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .hero-image img {
        width: 100%;
        max-width: 590px;
        border-radius: 30px;
        box-shadow: 0 30px 80px rgba(0,0,0,.12);
        transition: .35s;
    }

        .hero-image img:hover {
            transform: translateY(-8px);
        }

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

/*================ ABOUT ================*/

.home-about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 45px;
}

.about-content {
    max-width: 640px;
}

.about-grid h2 {
    font-family: 'Fraunces',serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--primary-dark);
    margin: 18px 0 28px;
}

.about-grid p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-photo {
    width: 100%;
    max-width: 610px;
    margin-left: auto;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,.10);
    transition: .35s;
}

    .about-photo:hover {
        transform: translateY(-6px);
    }

.about-grid .btn {
    margin-top: 15px;
}

/*================ SERVICES ================*/

.services-home {
    padding: 85px 0;
}

.section-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

    .section-head h2 {
        font-family: 'Fraunces',serif;
        font-size: 52px;
        font-weight: 600;
        color: var(--primary-dark);
        margin-top: 18px;
    }

    .section-head p {
        margin-top: 18px;
        font-size: 18px;
        color: var(--text-light);
    }

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

.service-card {
    background: #fff;
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    transition: .35s;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg,#14B8A6,#0F766E);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 70px rgba(0,0,0,.12);
    }

    .service-card h3 {
        font-family: 'Fraunces',serif;
        font-size: 30px;
        margin-bottom: 18px;
        color: var(--primary-dark);
    }

    .service-card p {
        font-size: 16px;
        line-height: 1.8;
        color: var(--text-light);
        margin-bottom: 22px;
        flex: 1;
    }

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 22px;
}

.service-card .btn {
    width: 100%;
    margin-top: auto;
}

/*================ CTA =================*/

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg,#14B8A6,#0F766E);
    text-align: center;
    color: #fff;
}

    .cta-section h2 {
        font-family: 'Fraunces',serif;
        font-size: 62px;
        font-weight: 600;
        line-height: 1.15;
        margin-bottom: 22px;
        color: white;
    }

    .cta-section p {
        max-width: 680px;
        margin: 0 auto 40px;
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255,255,255,.92);
    }

    .cta-section .hero-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .cta-section .btn {
        min-width: 210px;
        padding: 16px 34px;
    }

    .cta-section .btn-primary {
        background: #fff;
        color: var(--primary-dark);
        border: 2px solid #fff;
    }

        .cta-section .btn-primary:hover {
            background: #f6f6f6;
            transform: translateY(-3px);
        }

    .cta-section .btn-secondary {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255,255,255,.85);
    }

        .cta-section .btn-secondary:hover {
            background: #fff;
            color: var(--primary-dark);
        }

/*================ LOCATION ================*/

.location-section {
    padding: 90px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.45fr .9fr;
    gap: 40px;
    align-items: start;
}

.map-frame {
    width: 100%;
    height: 560px;
    border: none;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    overflow: hidden;
}

.location-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    height: 100%;
    min-height: 560px;
}

    .location-card h2 {
        font-family: 'Fraunces',serif;
        font-size: 42px;
        margin-bottom: 25px;
        color: var(--primary-dark);
    }

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .info-list li {
        display: grid;
        grid-template-columns: 150px 1fr;
        gap: 24px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(0,0,0,.08);
        align-items: center;
    }

        .info-list li:last-child {
            border-bottom: none;
        }

    .info-list span:first-child {
        font-weight: 700;
        color: var(--primary-dark);
    }

    .info-list span:last-child {
        text-align: right;
        line-height: 1.6;
        color: var(--text-light);
    }

    .info-list a {
        transition: .25s;
    }

        .info-list a:hover {
            color: var(--primary);
        }

.location-card .btn {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
}


/*================ BOOKING ================*/

.booking-section {
    padding: 90px 0;
    background: #fff;
}

.booking-wrapper {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
    margin-top: 40px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

    .field label {
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-dark);
    }

    .field input,
    .field select,
    .field textarea {
        width: 100%;
        padding: 17px 18px;
        border: 1px solid var(--border);
        border-radius: 16px;
        font-size: 16px;
        font-family: 'Inter',sans-serif;
        background: #fff;
        transition: .3s;
    }

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

        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(20,184,166,.12);
        }

.booking-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 17px;
}

.form-msg {
    grid-column: 1/-1;
    display: none;
    padding: 18px;
    border-radius: 16px;
    font-weight: 600;
}

    .form-msg.show {
        display: block;
    }

    .form-msg.ok {
        background: #DCFCE7;
        color: #166534;
    }

    .form-msg.err {
        background: #FEE2E2;
        color: #991B1B;
    }

/*================ FOOTER ================*/

footer {
    background: #212121;
    border-top: 1px solid #3A3A3A;
    margin-top: 0;
}

.footer-bottom {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 15px;
    color: #C8C8C8;
}

.footer-brand {
    font-weight: 700;
    color: #fff;
}

    .footer-brand a {
        transition: .3s;
    }

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

.footer-dev {
    text-align: center;
}

    .footer-dev strong {
        color: var(--primary);
        font-weight: 700;
    }

    .footer-dev a {
        transition: .3s;
    }

        .footer-dev a:hover {
            color: #E1306C;
        }

.footer-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .footer-contact a {
        color: #D8D8D8;
        font-weight: 500;
        transition: .3s;
    }

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

    .footer-contact a {
        color: #D8D8D8;
        font-weight: 500;
        transition: .3s;
    }

.footer-separator {
    opacity: .35;
}

@media(max-width:768px) {

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

/*================ RESPONSIVE =================*/

@media (max-width:1024px) {

    .container {
        width: 94%;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

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

        .hero-copy h1 {
            font-size: 58px;
            max-width: none;
        }

        .hero-copy .lead {
            margin: 0 auto 30px;
        }

    .hero-actions {
        justify-content: center;
    }

    .hero-features {
        justify-items: center;
    }

    .hero-image {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-photo {
        margin: auto;
    }

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

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

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

    .location-card {
        position: relative;
        top: 0;
    }

    .booking-wrapper {
        padding: 40px;
    }

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

    .field.full {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width:768px) {

    .nav {
        height: 82px;
    }

    .nav-logo img {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    .nav-logo {
        font-size: 22px;
        gap: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: #111111;
        backdrop-filter: blur(18px);
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 18px 40px rgba(0,0,0,.35);
        transform: translateY(-120%);
        transition: .35s;
        z-index: 9999;
    }

        .nav-menu.open {
            transform: translateY(0);
        }

        .nav-menu a {
            padding: 18px 0;
            width: 100%;
            text-align: center;
            border-bottom: 1px solid #3A3A3A;
            color: #2DD4BF !important;
        }

    .nav-right .btn {
        display: none;
    }

    section {
        padding: 35px 0;
    }

    .hero {
        padding: 10px 0 20px;
    }

    .hero-copy h1 {
        font-size: 38px;
        line-height: 1.1;
        margin-bottom: 14px;
    }

    .hero-copy .lead {
        font-size: 16px;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

        .hero-actions .btn {
            width: 100%;
        }
    .hero-features {
        display: none;
    }

    .hero-grid {
        gap: 25px;
    }

    .hero-image {
        margin-top: 0;
    }

    .about-grid h2 {
        font-size: 38px;
    }

    .section-head h2,
    .services-home h2,
    .cta-section h2,
    .location-card h2 {
        font-size: 38px;
    }

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

    .location-card {
        padding: 28px;
    }

    .info-list li {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .info-list span:last-child {
        text-align: left;
    }

    .map-frame {
        height: 400px;
    }

    .booking-section {
        padding: 70px 0;
    }

    .booking-wrapper {
        padding: 30px;
    }

    .footer-bottom {
        gap: 12px;
    }
}

@media (max-width:480px) {

    .container {
        width: 92%;
    }

    .hero-copy h1 {
        font-size: 34px;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .hero-copy .lead {
        font-size: 16px;
        margin-bottom: 14px;
        line-height: 1.5;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero {
        padding: 5px 0 15px;
    }

    .about-grid h2 {
        font-size: 32px;
    }

    .section-head h2,
    .services-home h2,
    .cta-section h2,
    .location-card h2 {
        font-size: 32px;
    }

    .btn {
        width: 100%;
    }

    .hero-image img,
    .about-photo {
        max-width: 100%;
        border-radius: 22px;
    }

    .location-card {
        padding: 24px;
    }

    .map-frame {
        height: 320px;
    }

    .booking-wrapper {
        padding: 22px;
    }

    .booking-form {
        gap: 18px;
    }

    .field input,
    .field select,
    .field textarea {
        padding: 15px;
        font-size: 15px;
    }

    .footer-bottom {
        font-size: 14px;
    }
}

/* MOBILE SPACING FIX */

section {
    padding: 35px 0;
}

.home-about {
    padding: 35px 0;
}

.services-home {
    padding: 35px 0;
}

.section-head {
    margin-bottom: 30px;
}

.about-grid {
    gap: 25px;
}

.services-grid {
    gap: 20px;
}

.cta-section {
    padding: 45px 0;
}

.location-section {
    padding: 45px 0;
}

.booking-section {
    padding: 45px 0;
}

/* Desktop menu color fix */

@media (min-width:769px) {

    .site-header .nav-menu a {
        color: #2DD4BF !important;
    }

        .site-header .nav-menu a:hover {
            color: #2DD4BF !important;
        }

        .site-header .nav-menu a.active {
            color: #2DD4BF !important;
        }
}