/* =========================================
   GLOBAL
========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.header {
    background: #202020;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.nav-container {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 260px;
    height: 85px;
    object-fit: contain;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

nav a:hover {
    opacity: 0.7;
}


/* =========================================
   HERO
========================================= */

.hero {
    background:
        linear-gradient(135deg, #f5d9dd 0%, #f8e9d3 100%);
    padding: 95px 0 90px;
    text-align: center;
}

.hero-content {
    max-width: 850px;
}

.eyebrow,
.section-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.eyebrow {
    color: #9d5365;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.7rem);
    line-height: 1.05;
    margin-bottom: 24px;
    color: #262626;
}

.hero-text {
    max-width: 720px;
    margin: 0 auto 34px;
    font-size: 1.1rem;
    color: #4f4f4f;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 700;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: #bd536b;
    color: #fff;
    box-shadow: 0 8px 20px rgba(189, 83, 107, 0.22);
}

.btn-primary:hover {
    background: #a8455b;
}

.btn-secondary {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.btn-light {
    background: #fff;
    color: #a5445c;
}

.btn-outline-light {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}


/* =========================================
   SECTION HEADINGS
========================================= */

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

.section-label {
    color: #bd536b;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 14px;
}

.section-heading p:last-child {
    color: #666;
}


/* =========================================
   HIRE SECTION
========================================= */

.hire-section {
    padding: 75px 0;
    background: #fff;
}

.hire-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.hire-card {
    background: #fff8f8;
    border: 1px solid #f0dfe2;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hire-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.hire-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4d8dd;
    font-size: 1.8rem;
}

.hire-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.hire-card p {
    color: #666;
    font-size: 0.97rem;
}


/* =========================================
   GALLERY
========================================= */

.gallery-section {
    padding: 75px 0;
    background: #f8f7f6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 320px 320px;
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    background: #ddd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-large {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}


/* =========================================
   QUOTE SECTION
========================================= */

.quote-section {
    padding: 78px 0;
    background: linear-gradient(135deg, #b94f67 0%, #d77b65 100%);
    color: #fff;
    text-align: center;
}

.quote-content {
    max-width: 780px;
}

.quote-section .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.quote-section h2 {
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 16px;
}

.quote-section p:not(.section-label) {
    max-width: 650px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.quote-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    padding: 75px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.contact-card {
    padding: 28px 18px;
    border: 1px solid #ececec;
    border-radius: 14px;
    text-align: center;
    background: #fff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4d8dd;
    color: #9f4b60;
    font-size: 1.45rem;
    font-weight: 700;
}

.contact-card h3 {
    margin-bottom: 7px;
}

.contact-card p {
    font-size: 0.9rem;
    color: #666;
    word-break: break-word;
}

.service-area {
    text-align: center;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.service-area h3 {
    margin-bottom: 7px;
}

.service-area p {
    color: #666;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #202020;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 25px 0;
    font-size: 0.85rem;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .nav-container {
        min-height: 95px;
    }

    .logo img {
        width: 220px;
        height: 72px;
    }

    nav {
        gap: 18px;
    }

    .hire-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 280px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .container {
        width: min(92%, 500px);
    }

    .header {
        position: relative;
    }

    .nav-container {
        flex-direction: column;
        justify-content: center;
        padding: 12px 0 16px;
        gap: 8px;
    }

    .logo img {
        width: 240px;
        height: 78px;
    }

    nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    nav a {
        font-size: 0.85rem;
    }

    .hero {
        padding: 65px 0 60px;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-buttons,
    .quote-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hire-section,
    .gallery-section,
    .contact-section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 14px;
    }

    .gallery-item,
    .gallery-large,
    .gallery-wide {
        grid-column: auto;
        grid-row: auto;
        height: 260px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-area {
        margin-top: 35px;
    }

}