/* =========================================================
   VERDE ATELIER
   Landscape & Outdoor Living
   ========================================================= */


/* =========================================================
   1. COLOR PALETTE
   ========================================================= */

:root {
    --deep-charcoal: #25242A;
    --dark-gray: #3A3940;
    --medium-gray: #77747D;
    --soft-gray: #D9D7D9;

    --warm-white: #F5F3F0;
    --white: #FFFFFF;
    --hella-warm-white: #eae6df;

    --muted-purple: #70647D;
    --deep-purple: #51465D;
}


/* =========================================================
   2. GENERAL RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--warm-white);
    color: var(--deep-charcoal);
}

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


/* =========================================================
   3. HEADER
   ========================================================= */

.header {
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--soft-gray);

    position: sticky;
    top: 0;
    z-index: 1000;
}


.header-content {
    width: min(1400px, 92%);
    margin: 0 auto;

    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* -------------------- Logo -------------------- */

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    text-decoration: none;
}

/* Verde Atelier logo image */

.logo-image {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Existing logo text */

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.logo-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    letter-spacing: 3px;
    color: var(--deep-charcoal);
}

.logo-tagline {
    font-size: 8px;
    letter-spacing: 2.5px;
    color: var(--medium-gray);
}


/* -------------------- Navigation -------------------- */

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

.nav-links a {
    position: relative;

    font-size: 13px;
    letter-spacing: 0.8px;

    color: var(--deep-charcoal);

    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background-color: var(--muted-purple);

    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--muted-purple);
}

.nav-links a:hover::after {
    width: 100%;
}


/* -------------------- Header Button -------------------- */

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 22px;

    background-color: var(--muted-purple);
    color: var(--white);

    font-size: 12px;
    letter-spacing: 0.8px;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.header-button:hover {
    background-color: var(--deep-purple);
    transform: translateY(-1px);
}


/* =========================================================
   4. HERO
   ========================================================= */

.hero {
    min-height: 490px;

    display: flex;
    align-items: center;

    background-color: var(--warm-white);
}

.hero-content {
    width: min(1400px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;

    gap: 70px;
}


/* -------------------- Hero Text -------------------- */

.hero-text {
    padding: 50px 0;
}

.hero-eyebrow {
    margin-bottom: 24px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2.8px;

    color: var(--muted-purple);
}

.hero-text h1 {
    max-width: 620px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 76px);
    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -2px;

    color: var(--deep-charcoal);
}

.hero-text h1 span {
    display: block;
    color: var(--muted-purple);
}

.hero-description {
    max-width: 480px;

    margin-top: 30px;

    font-size: 16px;
    line-height: 1.75;

    color: var(--medium-gray);
}


/* -------------------- Hero Buttons -------------------- */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 38px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 25px;

    font-size: 12px;
    letter-spacing: 0.8px;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.primary-button {
    background-color: var(--muted-purple);
    color: var(--white);
}

.primary-button:hover {
    background-color: var(--deep-purple);
    transform: translateY(-2px);
}

.secondary-button {
    border: 1px solid var(--medium-gray);
    color: var(--deep-charcoal);
}

.secondary-button:hover {
    background-color: var(--soft-gray);
    border-color: var(--deep-charcoal);
    transform: translateY(-2px);
}


/* -------------------- Hero Image -------------------- */

.hero-image {
    width: 100%;
    height: 490px;

    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   5. INTRODUCTION STRIP
   ========================================================= */

.intro-strip {
    width: 100%;

    padding: 32px 4%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    background-color: var(--deep-charcoal);

    color: var(--white);
}

.intro-item {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    padding: 10px;

    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.intro-item:last-child {
    border-right: none;
}

.intro-item span {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;

    color: var(--soft-gray);
}

.intro-item p {
    font-size: 12px;
    letter-spacing: 1px;
}





/* =========================================================
   7. RESPONSIVE DESIGN
   ========================================================= */

@media (max-width: 1000px) {

    .nav-links {
        gap: 20px;
    }

    .header-button {
        padding: 12px 16px;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .hero-text h1 {
        font-size: 54px;
    }

    .hero-image {
        height: 520px;
    }
}


@media (max-width: 800px) {

    .header-content {
        min-height: 80px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 30px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        padding: 30px 0 0;
    }

    .hero-text h1 {
        font-size: 52px;
    }

    .hero-image {
        height: 450px;
    }

    .intro-strip {
        grid-template-columns: 1fr;
    }

    .intro-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);

        padding: 18px;
    }

    .intro-item:last-child {
        border-bottom: none;
    }
}


@media (max-width: 500px) {

    .header-button {
        display: none;
    }

    .logo-name {
        font-size: 20px;
    }

    .hero-text h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-image {
        height: 360px;
    }
}

/* =========================================================
   8. INTRODUCTION SECTION
   ========================================================= */

.introduction {
    padding: 120px 0;
    background-color: var(--white);
}

.introduction-content {
    width: min(1200px, 86%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.7fr 1.3fr;

    gap: 80px;
}


/* -------------------- Section Label -------------------- */

.section-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.section-label span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    color: var(--muted-purple);
}

.section-label p {
    font-size: 10px;
    letter-spacing: 2.2px;
    color: var(--medium-gray);
}


/* -------------------- Introduction Text -------------------- */

.introduction-text {
    max-width: 760px;
}

.introduction-text h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.5px;

    color: var(--deep-charcoal);
}

.introduction-text h2 span {
    display: block;
    color: var(--muted-purple);
}

.introduction-text > p {
    max-width: 620px;

    margin-top: 30px;

    font-size: 16px;
    line-height: 1.8;

    color: var(--medium-gray);
}


/* -------------------- Text Link -------------------- */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 32px;

    font-size: 12px;
    letter-spacing: 0.8px;

    color: var(--deep-charcoal);

    border-bottom: 1px solid var(--medium-gray);

    padding-bottom: 7px;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        gap 0.25s ease;
}

.text-link span {
    font-size: 16px;
}

.text-link:hover {
    color: var(--muted-purple);
    border-color: var(--muted-purple);
    gap: 17px;
}


/* =========================================================
   9. FEATURED WORK
   ========================================================= */

.featured-work {
    padding: 120px 4%;

    background-color: var(--warm-white);
}


/* -------------------- Section Heading -------------------- */

.section-heading {
    width: min(1400px, 92%);
    margin: 0 auto 55px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}

.section-eyebrow {
    margin-bottom: 16px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2.5px;

    color: var(--muted-purple);
}

.section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -1px;

    color: var(--deep-charcoal);
}


/* -------------------- Project Grid -------------------- */

.project-grid {
    width: min(1400px, 92%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* -------------------- Project Card -------------------- */

.project-card {
    display: block;
}

.project-image {
    width: 100%;
    height: 470px;

    overflow: hidden;

    background-color: var(--soft-gray);
}

.project-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.04);
}


/* -------------------- Project Information -------------------- */

.project-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding: 20px 0;

    border-bottom: 1px solid var(--soft-gray);
}

.project-info h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;
    font-weight: 400;

    color: var(--deep-charcoal);
}

.project-info p {
    margin-top: 6px;

    font-size: 10px;
    letter-spacing: 1.5px;

    color: var(--medium-gray);
}

.project-info > span {
    font-size: 20px;

    color: var(--muted-purple);

    transition: transform 0.25s ease;
}

.project-card:hover .project-info > span {
    transform: translate(4px, -4px);
}


/* =========================================================
   10. SERVICES
   ========================================================= */

.services {
    padding: 120px 4%;

    background-color: var(--white);
}

.services-header {
    width: min(1200px, 86%);
    margin: 0 auto 75px;

    display: grid;
    grid-template-columns: 0.7fr 1.3fr;

    gap: 80px;
}

.services-header h2 {
    max-width: 750px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -1.5px;

    color: var(--deep-charcoal);
}

.services-header h2 span {
    display: block;
    color: var(--muted-purple);
}


/* -------------------- Services List -------------------- */

.services-list {
    width: min(1200px, 86%);
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 0.25fr 1fr;

    gap: 40px;

    padding: 35px 0;

    border-top: 1px solid var(--soft-gray);
}

.service-item:last-child {
    border-bottom: 1px solid var(--soft-gray);
}

.service-number {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;

    color: var(--muted-purple);
}

.service-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 50px;
}

.service-content h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;
    font-weight: 400;

    color: var(--deep-charcoal);
}

.service-content p {
    max-width: 500px;

    font-size: 14px;
    line-height: 1.8;

    color: var(--medium-gray);
}


/* =========================================================
   11. CALL TO ACTION
   ========================================================= */

.cta {
    padding: 140px 5%;

    background-color: var(--deep-charcoal);

    text-align: center;

    color: var(--white);
}

.cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.cta .section-eyebrow {
    color: var(--soft-gray);
}

.cta h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(45px, 5vw, 72px);
    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -2px;

    color: var(--white);
}

.cta h2 span {
    display: block;
    color: var(--soft-gray);
}

.cta-content > p:not(.section-eyebrow) {
    max-width: 500px;

    margin: 28px auto 0;

    font-size: 15px;
    line-height: 1.8;

    color: var(--soft-gray);
}

.cta .primary-button {
    margin-top: 38px;

    background-color: var(--muted-purple);
}

.cta .primary-button:hover {
    background-color: var(--deep-purple);
}


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

.footer {
    width: 100%;

    padding: 45px 4%;

    background-color: var(--dark-gray);

    color: var(--white);
}

.footer-content {
    width: min(1400px, 92%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* -------------------- Footer Brand -------------------- */

.footer-brand {
    display: flex;
    align-items: center;

    gap: 14px;

    text-decoration: none;

    flex-shrink: 0;
}

.footer-logo-image {
    width: 42px;
    height: 42px;

    display: block;

    object-fit: contain;

    flex-shrink: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


/* -------------------- Footer Logo Text -------------------- */

.footer-logo-name {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;

    letter-spacing: 3px;

    color: var(--white);
}

.footer-logo-tagline {
    font-size: 8px;

    letter-spacing: 2.5px;

    color: var(--soft-gray);
}


/* -------------------- Copyright -------------------- */

.footer-copyright {
    font-size: 10px;

    letter-spacing: 0.7px;

    color: var(--soft-gray);

    text-align: right;
}


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

@media (max-width: 800px) {

    .footer-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .footer-copyright {
        text-align: left;
    }

}


@media (max-width: 500px) {

    .footer {
        padding: 35px 6%;
    }

    .footer-logo-name {
        font-size: 20px;
    }

}


/* -------------------- Copyright -------------------- */

.footer-content > p {
    font-size: 10px;
    letter-spacing: 0.7px;

    color: var(--soft-gray);
}
/* =========================================================
   13. RESPONSIVE ADDITIONS
   ========================================================= */

@media (max-width: 1000px) {

    .introduction-content,
    .services-header {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .project-image {
        height: 420px;
    }

    .service-content {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 800px) {

    .introduction,
    .featured-work,
    .services {
        padding: 85px 5%;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
    }

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

    .project-image {
        height: 480px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cta {
        padding: 100px 7%;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 500px) {

    .introduction,
    .featured-work,
    .services {
        padding: 70px 6%;
    }

    .introduction-text h2,
    .services-header h2 {
        font-size: 40px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .project-image {
        height: 400px;
    }

    .cta h2 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .footer {
        padding: 35px 6%;
    }
}

/* =========================================================
   14. WORK PAGE HERO
   ========================================================= */

.page-hero {
    padding: 130px 5% 120px;

    background-color: var(--hella-warm-white);

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 70px;
}

.page-hero-content {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

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

/* -------------------- Hero Logo -------------------- */

.page-hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;
}

.page-hero-logo img {
    width: min(360px, 75%);

    height: auto;

    display: block;
}

.page-hero-content h1 {
    max-width: 900px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(55px, 7vw, 95px);
    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -3px;

    color: var(--deep-charcoal);
}

.page-hero-content h1 span {
    display: block;
    color: var(--muted-purple);
}

.page-hero-content > p:last-child {
    max-width: 570px;

    margin-top: 35px;

    font-size: 16px;
    line-height: 1.8;

    color: var(--medium-gray);
}


/* =========================================================
   15. WORK PROJECTS
   ========================================================= */

.work-project {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-areas: "image content";

    min-height: 700px;
}

.work-project-reverse {
    grid-template-columns: 0.8fr 1.2fr;
    grid-template-areas: "content image";
}

.work-project-image {
    grid-area: image;
}

.work-project-content {
    grid-area: content;
}

/* -------------------- Project Image -------------------- */

.work-project-image {
    min-height: 700px;

    overflow: hidden;

    background-color: var(--soft-gray);
}

.work-project-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.work-project:hover .work-project-image img {
    transform: scale(1.03);
}


/* -------------------- Project Content -------------------- */

.work-project-content {
    padding: 90px 9%;

    display: grid;
    grid-template-rows: auto 1fr auto;

    background-color: var(--warm-white);
}

.work-project-number {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;

    color: var(--muted-purple);
}

.project-category {
    margin-top: 80px;
    margin-bottom: 18px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2.5px;

    color: var(--muted-purple);
}

.work-project-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 4vw, 58px);
    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -1px;

    color: var(--deep-charcoal);
}

.project-description {
    max-width: 450px;

    margin-top: 28px;

    font-size: 14px;
    line-height: 1.85;

    color: var(--medium-gray);
}


/* -------------------- Project Details -------------------- */

.project-details {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;

    padding-top: 30px;

    border-top: 1px solid var(--soft-gray);
}

.project-details span {
    font-size: 9px;
    letter-spacing: 2px;

    color: var(--medium-gray);
}

.project-details p {
    margin-top: 7px;

    font-size: 12px;

    color: var(--deep-charcoal);
}


/* =========================================================
   16. WORK PAGE CTA
   ========================================================= */

.work-cta {
    padding: 140px 5%;

    background-color: var(--deep-charcoal);

    text-align: center;

    color: var(--white);
}

.work-cta > div {
    max-width: 850px;
    margin: 0 auto;
}

.work-cta h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(45px, 5vw, 70px);
    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -2px;

    color: var(--white);
}

.work-cta h2 span {
    display: block;
    color: var(--soft-gray);
}

.work-cta .primary-button {
    margin-top: 38px;
}


/* =========================================================
   17. WORK PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .work-project,
    .work-project-reverse {
        grid-template-columns: 1fr;
    }

    .work-project-image {
        min-height: 550px;
    }

    .work-project-content {
        min-height: 600px;
        padding: 70px 8%;
    }

    .project-category {
        margin-top: 50px;
    }

}


@media (max-width: 600px) {

    .page-hero {
        padding: 100px 6% 80px;
    }

    .page-hero-content {
        width: 100%;
    }

    .page-hero-content h1 {
        font-size: 52px;
        letter-spacing: -1.5px;
    }

    .work-project-image {
        min-height: 400px;
    }

    .work-project-content {
        min-height: 560px;
        padding: 55px 7%;
    }

    .work-project-content h2 {
        font-size: 42px;
    }

    .project-category {
        margin-top: 35px;
    }

    .project-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-cta {
        padding: 100px 7%;
    }

}

/* =========================================================
   18. ABOUT PAGE HERO
   ========================================================= */

.about-hero {
    padding: 150px 5% 130px;

    background-color: var(--warm-white);
}

.about-hero-content {
    width: min(1200px, 86%);
    margin: 0 auto;
}

.about-hero-content h1 {
    max-width: 1000px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(55px, 7vw, 92px);
    font-weight: 400;

    line-height: 1.03;

    letter-spacing: -3px;

    color: var(--deep-charcoal);
}

.about-hero-content h1 span {
    display: block;

    color: var(--muted-purple);
}

.about-hero-content > p:last-child {
    max-width: 570px;

    margin-top: 35px;

    font-size: 16px;
    line-height: 1.8;

    color: var(--medium-gray);
}


/* =========================================================
   19. ABOUT INTRODUCTION
   ========================================================= */

.about-introduction {
    display: grid;
    grid-template-columns: 1fr 1fr;

    background-color: var(--white);
}

.about-introduction-image {
    min-height: 700px;

    overflow: hidden;

    background-color: var(--soft-gray);
}

.about-introduction-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.about-introduction-content {
    padding: 100px 10%;

    display: grid;
    grid-template-columns: 0.4fr 1.6fr;

    gap: 50px;

    align-content: center;
}

.about-introduction-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 4vw, 58px);
    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -1.5px;

    color: var(--deep-charcoal);
}

.about-introduction-content h2 span {
    display: block;

    color: var(--muted-purple);
}

.about-introduction-content h2 + p {
    margin-top: 30px;
}

.about-introduction-content p:not(.section-label p) {
    max-width: 520px;

    font-size: 15px;
    line-height: 1.85;

    color: var(--medium-gray);
}

.about-introduction-content p + p {
    margin-top: 20px;
}


/* =========================================================
   20. PROCESS
   ========================================================= */

.process {
    padding: 120px 5%;

    background-color: var(--warm-white);
}

.process-header {
    width: min(1200px, 86%);
    margin: 0 auto 70px;

    display: grid;
    grid-template-columns: 0.7fr 1.3fr;

    gap: 80px;
}

.process-header h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 400;

    line-height: 1.1;

    letter-spacing: -1.5px;

    color: var(--deep-charcoal);
}

.process-header h2 span {
    display: block;

    color: var(--muted-purple);
}


/* -------------------- Process List -------------------- */

.process-list {
    width: min(1200px, 86%);
    margin: 0 auto;
}

.process-item {
    display: grid;
    grid-template-columns: 0.2fr 0.6fr 1.2fr;

    gap: 40px;

    padding: 35px 0;

    border-top: 1px solid var(--soft-gray);

    align-items: center;
}

.process-item:last-child {
    border-bottom: 1px solid var(--soft-gray);
}

.process-number {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;

    color: var(--muted-purple);
}

.process-title h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;
    font-weight: 400;

    color: var(--deep-charcoal);
}

.process-description p {
    max-width: 500px;

    font-size: 14px;
    line-height: 1.8;

    color: var(--medium-gray);
}


/* =========================================================
   21. ABOUT SERVICES
   ========================================================= */

.about-services {
    padding: 110px 5%;

    background-color: var(--white);
}

.about-services-content {
    width: min(1200px, 86%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.7fr 1.3fr;

    gap: 80px;
}

.about-services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;

    border-top: 1px solid var(--soft-gray);
}

.about-services-list div {
    padding: 30px 0;

    border-bottom: 1px solid var(--soft-gray);
}

.about-services-list div:nth-child(odd) {
    padding-right: 30px;
    border-right: 1px solid var(--soft-gray);
}

.about-services-list div:nth-child(even) {
    padding-left: 30px;
}

.about-services-list span {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;

    color: var(--muted-purple);
}

.about-services-list h3 {
    margin-top: 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 24px;
    font-weight: 400;

    color: var(--deep-charcoal);
}


/* =========================================================
   22. CONTACT
   ========================================================= */

.contact-section {
    padding: 130px 5%;

    background-color: var(--deep-charcoal);

    color: var(--white);
}

.contact-content {
    width: min(1200px, 86%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;

    gap: 100px;

    align-items: center;
}

.contact-section .section-eyebrow {
    color: var(--soft-gray);
}

.contact-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(45px, 5vw, 70px);
    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -2px;

    color: var(--white);
}

.contact-content h2 span {
    display: block;

    color: var(--soft-gray);
}

.contact-content > div:first-child > p:last-child {
    max-width: 500px;

    margin-top: 30px;

    font-size: 15px;
    line-height: 1.8;

    color: var(--soft-gray);
}


/* -------------------- Contact Details -------------------- */

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 35px;

    padding-left: 40px;

    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details div {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.contact-details span {
    font-size: 9px;

    letter-spacing: 2px;

    color: var(--soft-gray);
}

.contact-details a,
.contact-details p {
    font-size: 14px;

    color: var(--white);
}

.contact-details a {
    transition: color 0.25s ease;
}

.contact-details a:hover {
    color: var(--soft-gray);
}


/* =========================================================
   23. ABOUT PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .about-introduction {
        grid-template-columns: 1fr;
    }

    .about-introduction-image {
        min-height: 550px;
    }

    .about-introduction-content {
        padding: 85px 8%;
    }

    .process-header,
    .about-services-content {
        grid-template-columns: 1fr;

        gap: 35px;
    }

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

        gap: 70px;
    }

    .contact-details {
        padding-left: 30px;
    }

}


@media (max-width: 800px) {

    .about-hero {
        padding: 100px 6% 85px;
    }

    .about-hero-content {
        width: 100%;
    }

    .about-hero-content h1 {
        font-size: 54px;
        letter-spacing: -1.5px;
    }

    .about-introduction-content {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .process {
        padding: 85px 6%;
    }

    .process-header {
        width: 100%;
    }

    .process-list {
        width: 100%;
    }

    .process-item {
        grid-template-columns: 0.2fr 0.8fr;

        gap: 20px;
    }

    .process-description {
        grid-column: 2;
    }

    .about-services {
        padding: 85px 6%;
    }

    .about-services-content {
        width: 100%;
    }

    .contact-section {
        padding: 100px 7%;
    }

    .contact-content {
        width: 100%;
    }

}


@media (max-width: 550px) {

    .about-hero-content h1 {
        font-size: 45px;
    }

    .about-introduction-image {
        min-height: 400px;
    }

    .about-introduction-content {
        padding: 65px 7%;
    }

    .process-header h2 {
        font-size: 42px;
    }

    .process-item {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .process-description {
        grid-column: auto;
    }

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

    .about-services-list div:nth-child(odd) {
        padding-right: 0;
        border-right: none;
    }

    .about-services-list div:nth-child(even) {
        padding-left: 0;
    }

    .contact-content h2 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .contact-details {
        padding-left: 20px;
    }

}

/* =========================================================
   24. CONTACT FORM
   ========================================================= */

.contact-intro {
    max-width: 600px;
}


/* -------------------- Form -------------------- */

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 24px;

    padding: 45px;

    background-color: var(--white);
}


/* -------------------- Form Row -------------------- */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


/* -------------------- Form Group -------------------- */

.form-group {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.form-group label {
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.8px;

    color: var(--medium-gray);
}


/* -------------------- Inputs -------------------- */

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 15px 0;

    border: none;
    border-bottom: 1px solid var(--soft-gray);

    background-color: transparent;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    color: var(--deep-charcoal);

    outline: none;

    transition: border-color 0.25s ease;
}

.form-group textarea {
    resize: vertical;

    min-height: 130px;

    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--medium-gray);
    opacity: 0.75;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--muted-purple);
}


/* -------------------- Submit Button -------------------- */

.form-submit {
    align-self: flex-start;

    margin-top: 8px;

    padding: 15px 28px;

    border: none;

    background-color: var(--muted-purple);
    color: var(--white);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.form-submit:hover {
    background-color: var(--deep-purple);

    transform: translateY(-2px);
}


/* =========================================================
   25. CONTACT FORM RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .contact-form {
        padding: 35px;
    }

}


@media (max-width: 600px) {

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

    .contact-form {
        padding: 30px 25px;
    }

    .form-submit {
        width: 100%;
    }

}