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

body {
    font-family: 'Inter', sans-serif;
    background-color: #fbf9f6;
    color: #2c2c2c;
    line-height: 1.7;
}

/* HEADER */
header {
    background: #0f3b2e;
    padding: 16px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

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

.nav img {
    height: 42px;
}

.nav a {
    color: #f5e8dc;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1rem;
    font-weight: 500;
}

.nav a:hover {
    color: #d4a373;
}



/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    height: 40px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f5e8dc;
    line-height: 1.1;
    letter-spacing: 1px;
}

.brand-text span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
}
/* HERO */
.hero {
    position: relative;
    height: 68vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: url("images/home-hero.jpg") no-repeat;
    background-size: auto 95%;
    background-position: 85% center;
}

/* FADE OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #fbf9f6 36%,
        rgba(251, 249, 246, 0.85) 55%,
        rgba(251, 249, 246, 0.25) 72%,
        rgba(251, 249, 246, 0) 100%
    );
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hero-text {
    max-width: 560px;
}

/* HEADLINE */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.9rem;
    font-weight: 600;
    color: #0f3b2e;
    margin-bottom: 28px;
    line-height: 1.25;
}

/* PARAGRAPH */
.hero p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 38px;
}



/* BUTTONS */
.buttons a {
    padding: 14px 32px;
    margin-right: 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
}

.btn-primary {
    background: #d4a373;
    color: white;
}

.btn-secondary {
    background: #0f3b2e;
    color: white;
}

/* CONTENT SECTIONS */
section.content {
    padding: 80px 0;
}

section.content:nth-child(even) {
    background-color: #f2ede7;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #0f3b2e;
    margin-bottom: 20px;
}
.content p {
    max-width: 100%;
    margin-bottom: 25px;
}

/* FOOTER */
footer {
    background: #0f3b2e;
    color: #f5e8dc;
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 900px) {

    /* HERO */
    .hero {
        height: auto;
        padding: 100px 0;
        background-position: center;
        background-size: cover;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    /* NAV */
    .menu-toggle {
        display: block;
        font-size: 28px;
        color: #f5e8dc;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0f3b2e;
        margin-top: 15px;
        padding: 20px 0;
    }

    .nav-links a {
        text-align: center;
        padding: 12px 0;
        margin: 0;
        font-size: 1rem;
    }

    .nav-links.active {
        display: flex;
    }
}

/* DESKTOP */
@media (min-width: 901px) {
    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        gap: 25px;
    }
}

/* ABOUT PAGE STYLES */

.about-intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #0f3b2e;
    margin-bottom: 25px;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    margin-top: 20px;
}

.alt-bg {
    background-color: #f2ede7;
}

.center {
    text-align: center;
    margin-bottom: 40px;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #0f3b2e;
}

/* WHERE WE WORK */
.where-work {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.where-map img {
    width: 100%;
    height: auto;
}



/* MOBILE FIXES */
@media (max-width: 900px) {

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

    .where-work {
        grid-template-columns: 1fr;
    }

    .where-map {
        margin-top: 30px;
    }
}


/* PURPOSE SECTION CLEAN FIX */
/* PURPOSE SECTION WITH FADE IMAGE */
.purpose-section {
    position: relative;
    padding: 100px 0;
    background: url("images/about-hero.jpg") no-repeat;
    background-size: auto 90%;
    background-position: right center;
}

.purpose-section p {
    margin-bottom: 22px;
}

/* Fade overlay */
.purpose-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #fbf9f6 40%,
        rgba(251, 249, 246, 0.85) 60%,
        rgba(251, 249, 246, 0.3) 75%,
        rgba(251, 249, 246, 0) 100%
    );
}

/* Keep text above fade */
.purpose-content {
    position: relative;
     margin-bottom: 25px;
    z-index: 2;
}

.purpose-text {
    max-width: 600px;
}


@media (max-width: 900px) {

    .where-work {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .where-map {
        margin-top: 20px;
        text-align: center;
    }

    .where-map img {
        width: 80%;
        max-width: 320px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}


@media (max-width: 900px) {
    .purpose-section {
        background-position: center;
        background-size: cover;
    }
}


.card {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;   /* THIS centers icon + text perfectly */
}

.card-icon img {
    width: 40px;
}
.card-icon {
    height: 55px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

/* CORE AREA CARDS */
.cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.card {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    height: 65px;
    margin-bottom: 20px;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #0f3b2e;
}

.card p {
    font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 900px) {
    .cards {
        flex-direction: column;
    }
}

.mission-vision {
    padding: 100px 0;
    background: #f2ede7;
}

.mv-grid {
    display: flex;
    gap: 60px;
}

.mv-box {
    flex: 1;
}

.mv-box h2 {
    margin-bottom: 20px;
}

.mv-box p {
    max-width: 100%;
}


@media (max-width: 900px) {
    .mv-grid {
        flex-direction: column;
        gap: 50px;
    }
}


/* CONTACT SECTION */

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

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #0f3b2e;
    margin-bottom: 20px;
}

.contact-intro {
    max-width: 100%;
    margin-bottom: 22px;
    
     
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    margin-top: 50px;   /* This creates breathing space */
}

/* Shared Card Styling */
.contact-card {
    padding: 40px;
    border-radius: 8px;
}

/* LEFT INFO CARD */
.info-card {
    background: #f2ede7;
}

.info-card h3 {
    margin-top: 25px;
    color: #0f3b2e;
    font-size: 1.1rem;
}

/* RIGHT FORM CARD */
.form-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.form-card form {
    display: flex;
    flex-direction: column;
}

.form-card input,
.form-card textarea {
    padding: 15px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-card button {
    background: #d4a373;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-card button:hover {
    background: #c49063;
}

.info-card p {
    margin-bottom: 14px;
}

.response-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #666;
}

/* MOBILE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px;
    }
}