@font-face {
    font-family: "Futura BT";
    src: url("Futura BT/futura-book-bt.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura BT";
    src: url("Futura BT/futura-bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Play Fair Display";
    src: url("Play Fair Display/PlayfairDisplay-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Play Fair Display";
    src: url("Play Fair Display/PlayfairDisplay-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --green: #075a57;
    --green-soft: #0c706c;
    --gold: #c7a765;
    --cream: #f5ead2;
    --white: #ffffff;
    --text: #2f3b39;
    --muted: #66726f;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Futura BT", "Futura", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: "Play Fair Display", Georgia, serif;
    font-weight: 800;
    line-height: 1.15;
}

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

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

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

/* Brand header */
.site-header {
    display: flex;
    justify-content: center;
    padding: 8px 20px;
    background: var(--white);
}

.site-brand {
    display: block;
    width: min(560px, 100%);
    height: 190px;
    overflow: hidden;
}

.site-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero */
.hero {
    min-height: calc(100vh - 206px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    text-align: center;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    max-width: 860px;
    font-size: clamp(2.25rem, 5vw, 4.75rem);
    color: var(--green);
    margin-bottom: 18px;
}

.hero-sub {
    max-width: 700px;
    color: var(--gold);
    font-size: clamp(1rem, 2vw, 1.25rem);
    letter-spacing: 0.06em;
    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 160px;
    padding: 13px 24px;
    border-radius: 999px;
    border: 1px solid var(--green);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(7, 90, 87, 0.13);
}

.btn-whatsapp {
    color: var(--white);
    background: var(--green);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 1px var(--green);
}

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

.btn-outline {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-outline:hover {
    background: var(--green-soft);
    color: var(--white);
}

/* Sections */
.section {
    padding: 100px 0;
}

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

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

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

.section-heading {
    text-align: center;
    margin-bottom: 58px;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-title {
    color: var(--green);
    font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.section-heading-light .eyebrow {
    color: #e6d09f;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 68px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: #44504e;
    font-size: 1.08rem;
}

.about-text strong {
    color: var(--green);
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 4px 56px 4px 56px;
    box-shadow: 0 24px 54px rgba(49, 59, 56, 0.16);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 44px 32px;
    background: var(--white);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

.service-card i {
    color: var(--gold);
    font-size: 2.35rem;
    margin-bottom: 28px;
}

.service-card h3 {
    color: var(--green);
    font-size: 1.65rem;
    margin-bottom: 18px;
}

.service-card p {
    color: var(--muted);
    font-size: 1rem;
}

.service-card-expandable {
    cursor: pointer;
}

.service-card-expandable:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.service-hover-gallery {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(7, 90, 87, 0.18);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
}

.service-card-expandable:hover .service-hover-gallery,
.service-card-expandable:focus .service-hover-gallery {
    opacity: 1;
    transform: translateY(0);
}

.service-hover-gallery figure {
    min-width: 0;
}

.service-hover-gallery img {
    width: 100%;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}

.service-hover-gallery figcaption {
    margin-top: 4px;
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 18px;
    background: var(--cream);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.gallery-item:hover img {
    transform: scale(1.055);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
    padding: 38px 24px;
    background: var(--white);
    border: 1px solid rgba(7, 90, 87, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(49, 59, 56, 0.08);
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(49, 59, 56, 0.13);
}

.contact-card i {
    color: var(--gold);
    font-size: 2.35rem;
    margin-bottom: 18px;
}

.contact-card h3 {
    color: var(--green);
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.contact-card span {
    color: var(--muted);
}

/* Footer */
.footer {
    padding: 30px 20px;
    background: var(--green);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 960px) {
    .section {
        padding: 78px 0;
    }

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

    .about-image {
        max-width: 700px;
        margin: 0 auto;
    }

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

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

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

@media (max-width: 700px) {
    .site-brand {
        height: 140px;
    }

    .hero {
        min-height: auto;
        padding: 64px 0 72px;
    }

    .service-hover-gallery {
        position: static;
        margin-top: 22px;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: min(100%, 300px);
    }

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

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

    .section {
        padding: 64px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

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

    .about-text p {
        font-size: 1rem;
    }
}
