
/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #17171b;
    background: #ffffff;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 13px;
}

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


/* =========================================================
   NAVBAR
========================================================= */

.nav {
    height: 74px;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    z-index: 20;

    display: flex;
    align-items: center;

    padding: 0 6.2%;
}


/* =========================================================
   CENTER LOGO
========================================================= */

.brand {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;

    gap: 11px;

    color: #17171b;

    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;

    border: 1.4px solid #17171b;

    border-radius: 50%;

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

    font-family: "Playfair Display", serif;

    font-size: 23px;
    font-weight: 500;

    line-height: 1;
}

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

    justify-content: center;

    line-height: 1;
}

.brand-main {
    font-family: "DM Sans", sans-serif;

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

    letter-spacing: 3.2px;
}

.brand-sub {
    margin-top: 5px;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 4px;
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.links {
    position: absolute;

    left: 6.2%;
    top: 50%;

    transform: translateY(-50%);

    display: flex;
    align-items: center;

    gap: 30px;

    margin: 0;

    font-size: 11px;
}

.links a {
    transition: opacity 0.2s ease;
}

.links a:hover {
    opacity: 0.5;
}


/* =========================================================
   RIGHT NAVIGATION
========================================================= */

.nav-actions {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-left: auto;
}

.top-cta {
    background: #ffffff;

    border-radius: 30px;

    padding: 10px 24px;

    font-size: 11px;

    transition: 0.2s ease;
}

.top-cta:hover {
    transform: translateY(-1px);
}


/* =========================================================
   MENU
========================================================= */

.menu {
    width: 34px;
    height: 34px;

    border: none;

    border-radius: 50%;

    background: #dce8f0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 3px;

    cursor: pointer;
}

.menu span {
    width: 9px;
    height: 1px;

    display: block;

    background: #718291;
}


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

.hero {
    height: 730px;

    position: relative;

    overflow: hidden;

    background: #f6f1eb;
}

.hero-photo {
    position: absolute;

    top: 74px;
    right: 0;

    width: 61.5%;
    height: 656px;

    background-image: url("assets/nav.png");

    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero:after {
    content: "";

    position: absolute;

    left: 20%;
    top: 0;
    bottom: 0;

    width: 42%;

    background: linear-gradient(
        90deg,
        #f6f1eb 0%,
        rgba(246, 241, 235, 0.98) 18%,
        rgba(246, 241, 235, 0.92) 38%,
        rgba(246, 241, 235, 0.72) 58%,
        rgba(246, 241, 235, 0.38) 78%,
        rgba(246, 241, 235, 0) 100%
    );

    pointer-events: none;
}


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

.hero-copy {
    position: absolute;

    z-index: 5;

    left: 6.5%;
    top: 155px;
}

.eyebrow {
    font-size: 9px;

    letter-spacing: 1.35px;

    color: #bd8fae;

    margin-bottom: 22px;
}

.hero h1,
h2 {
    font-family: "Playfair Display", serif;

    font-weight: 400;

    letter-spacing: -1.8px;
}

.hero h1 {
    font-size: 39px;

    line-height: 1.01;

    margin: 0 0 22px;
}

.hero p {
    margin: 0 0 27px;

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   BUTTON
========================================================= */

.button {
    display: inline-flex;

    align-items: center;

    gap: 17px;

    padding: 10px 19px;

    border-radius: 24px;

    font-size: 11px;

    color: #ffffff;
}

.button span {
    font-size: 17px;

    line-height: 10px;
}

.pink {
    background: #c391b0;
}


/* =========================================================
   PROGRAMS
========================================================= */

.programs {
    min-height: 450px;

    background: #faeef2;

    padding: 62px 6.5%;

    display: grid;

    grid-template-columns: 24% 76%;
}

.section-intro h2,
.works-intro h2 {
    font-size: 26px;

    line-height: 1.08;

    margin: 0 0 41px;
}

.text-link {
    font-size: 10px;
}

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

    margin-left: 7px;
}


/* =========================================================
   PROGRAM CARDS
========================================================= */

.program-grid {
    display: grid;

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

    gap: 15px;
}

.program {
    position: relative;
}

.program-img {
    height: 157px;

    border-radius: 6px;

    overflow: hidden;
}

.program-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;

    display: block;
}

.round-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #edf2f6;

    border: 1px solid #d7e0e5;

    position: relative;

    margin: -21px auto 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 18px;

    color: #6d7580;
}

.program h3 {
    font-size: 11px;

    font-weight: 500;

    margin: 0 0 8px;
}

.program p {
    font-size: 9px;

    line-height: 1.55;

    margin: 0;
}


/* =========================================================
   APPROACH
========================================================= */

.approach {
    display: grid;

    grid-template-columns: 43% 57%;

    height: 500px;
}

.approach-photo {
    overflow: hidden;
}

.approach-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;

    display: block;
}

.approach-copy {
    background: #eaf2f8;

    padding: 60px 8%;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.blue {
    color: #6f9ac0;
}

.approach-copy .eyebrow {
    margin-bottom: 19px;
}

.approach-copy h2 {
    font-size: 25px;

    line-height: 1.08;

    margin: 0 0 14px;
}

.approach-copy > p {
    max-width: 520px;

    font-size: 11px;

    line-height: 1.6;

    margin: 0;
}


/* =========================================================
   SELECTED WORKS
========================================================= */

.works {
    min-height: 450px;

    background: #faf8f4;

    padding: 50px 6.5%;

    display: grid;

    grid-template-columns: 24% 76%;

    align-items: center;
}

.works-intro h2 {
    margin-bottom: 28px;
}

.works-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 13px;
}

.work-item {
    min-width: 0;

    width: 100%;

    overflow: hidden;
}

.work-item img {
    width: 100%;

    height: 160px;

    object-fit: cover;

    object-position: center center;

    border-radius: 6px;

    display: block;

    margin-bottom: 12px;
}

.work-item h3 {
    font-size: 11px;

    font-weight: 500;

    margin: 0;
}


/* =========================================================
   CORPORATE EVENTS
========================================================= */

.works-grid .work-item:nth-child(2) img {
    object-position: center center;
}


/* =========================================================
   TRADITIONAL CELEBRATIONS
========================================================= */

.works-grid .work-item:nth-child(3) img {
    object-position: center center;
}


/* =========================================================
   EVENING GATHERINGS
========================================================= */

.works-grid .work-item:nth-child(4) img {
    object-position: center center;
}


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

footer {
    background: #eee8f3;

    padding: 48px 6.5% 18px;
}

.footer-main {
    display: grid;

    grid-template-columns:
        28%
        17%
        17%
        18%
        20%;

    align-items: start;

    min-height: 190px;

    column-gap: 0;
}


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

.footer-intro {
    padding-top: 2px;
}

.footer-intro .eyebrow {
    font-size: 7px;

    letter-spacing: 1.4px;

    margin-bottom: 15px;
}

.footer-intro h2 {
    font-size: 25px;

    line-height: 1.03;

    letter-spacing: -1px;

    margin: 0 0 18px;
}


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

.purple {
    background: #8f77aa;

    padding: 9px 17px;

    border-radius: 22px;

    font-size: 10px;
}

.purple span {
    font-size: 15px;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-item {
    padding-top: 8px;
}

.contact-item span {
    display: block;

    font-size: 8px;

    color: #777181;

    margin-bottom: 9px;

    letter-spacing: 0.3px;
}

.contact-item strong {
    display: block;

    font-size: 9px;

    font-weight: 400;

    line-height: 1.65;

    color: #4e4a55;
}


/* =========================================================
   LOCATION MAP BUTTON
========================================================= */

.location-map {
    width: 205px;
    height: 55px;

    display: flex;
    align-items: center;

    border-radius: 12px;

    background: #e4ddea;

    border: 1px solid rgba(120, 110, 130, 0.12);

    transition:
        background 0.25s ease,
        transform 0.25s ease;

    justify-self: end;
}

.location-map a {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0 16px;

    color: #686474;
}

.map-icon {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f4f0f6;

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

    font-size: 19px;

    color: #8f77aa;
}

.map-text {
    font-size: 10px;

    letter-spacing: 0.2px;
}

.location-map:hover {
    background: #ddd4e5;

    transform: translateY(-2px);
}

.location-map:hover .map-icon {
    background: #ffffff;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.socials {
    display: flex;

    align-items: center;

    gap: 9px;

    justify-content: flex-end;

    justify-self: end;

    margin-top: 12px;
}

.socials a {
    width: 31px;
    height: 31px;

    border-radius: 50%;

    background: #e4ddea;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #777181;

    font-size: 11px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.socials a:hover {
    background: #d9cde2;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER RIGHT SIDE
   MAP + SOCIALS
========================================================= */

.footer-main > .location-map {
    grid-column: 5;

    grid-row: 1;

    justify-self: end;
}

.footer-main > .socials {
    grid-column: 5;

    grid-row: 1;

    align-self: end;

    justify-self: end;

    margin-bottom: 0;

    transform: translateY(48px);
}


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

.footer-bottom {
    border-top: 1px solid #d8d0df;

    margin-top: 30px;

    padding-top: 13px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 8px;

    color: #686474;
}

.footer-bottom > span {
    opacity: 0.9;
}

.footer-bottom div {
    display: flex;

    gap: 28px;
}

.footer-bottom a {
    transition: opacity 0.2s ease;
}

.footer-bottom a:hover {
    opacity: 0.55;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .nav {
        padding: 0 5%;
    }

    .links {
        display: none;

        position: absolute;

        top: 64px;
        right: 5%;
        left: auto;

        transform: none;

        background: #ffffff;

        padding: 18px 24px;

        border-radius: 12px;

        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

        flex-direction: column;

        gap: 15px;
    }

    .links.open {
        display: flex;
    }

    .top-cta {
        display: none;
    }


    /* HERO */

    .hero {
        height: 680px;
    }

    .hero-photo {
        width: 100%;

        height: 430px;

        top: 250px;

        background-position: center top;
    }

    .hero:after {
        left: 0;

        top: 180px;

        width: 100%;

        height: 170px;

        background: linear-gradient(
            #f2e5d8,
            rgba(242, 229, 216, 0)
        );
    }

    .hero-copy {
        left: 7%;

        top: 125px;
    }

    .hero h1 {
        font-size: 36px;
    }


    /* PROGRAMS + WORKS */

    .programs,
    .works {
        display: block;
    }

    .section-intro,
    .works-intro {
        margin-bottom: 35px;
    }

    .program-grid,
    .works-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 22px;
    }


    /* APPROACH */

    .approach {
        height: auto;

        display: block;
    }

    .approach-photo {
        height: 330px;
    }

    .approach-copy {
        padding: 40px 7%;
    }


    /* WORKS */

    .works {
        padding-top: 45px;

        padding-bottom: 45px;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 30px 25px;

        min-height: auto;
    }

    .footer-main > .location-map {
        grid-column: 2;

        grid-row: 3;

        justify-self: start;

        width: 220px;
    }

    .footer-main > .socials {
        grid-column: 2;

        grid-row: 3;

        align-self: end;

        justify-self: start;

        transform: translateY(48px);
    }

    .footer-bottom {
        margin-top: 40px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .nav {
        height: 62px;

        padding: 0 5%;
    }


    /* MOBILE LOGO */

    .brand {
        left: 50%;
        top: 50%;

        gap: 8px;

        transform: translate(-50%, -50%);
    }

    .brand-mark {
        width: 36px;
        height: 36px;

        font-size: 20px;
    }

    .brand-main {
        font-size: 14px;

        letter-spacing: 2.7px;
    }

    .brand-sub {
        font-size: 7px;

        letter-spacing: 3.3px;
    }


    /* MENU */

    .nav-actions {
        margin-left: auto;
    }

    .menu {
        width: 32px;
        height: 32px;
    }


    /* HERO */

    .hero {
        height: 650px;
    }

    .hero-copy {
        top: 105px;
    }

    .hero h1 {
        font-size: 33px;
    }

    .hero-photo {
        top: 300px;

        height: 350px;
    }


    /* PROGRAMS */

    .programs {
        padding: 48px 7%;
    }

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

    .program-img {
        height: 220px;
    }


    /* APPROACH */

    .approach-photo {
        height: 270px;
    }


    /* WORKS */

    .works {
        padding-left: 7%;
        padding-right: 7%;
    }

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

    .works-grid img {
        height: 190px;
    }


    /* FOOTER */

    footer {
        padding: 42px 7% 18px;
    }

    .footer-main {
        display: flex;

        flex-direction: column;

        gap: 27px;

        min-height: auto;
    }

    .footer-intro {
        width: 100%;
    }

    .contact-item {
        width: 100%;

        padding-top: 0;
    }


    /* LOCATION BUTTON */

    .footer-main > .location-map {
        width: 100%;

        max-width: 300px;

        height: 55px;

        order: 5;

        align-self: flex-start;

        margin: 0;
    }

    .location-map a {
        padding: 0 15px;
    }


    /* SOCIALS */

    .footer-main > .socials {
        order: 6;

        align-self: flex-start;

        margin: 0;

        transform: none;

        justify-content: flex-start;
    }


    /* FOOTER BOTTOM */

    .footer-bottom {
        display: block;

        margin-top: 30px;

        line-height: 1.6;
    }

    .footer-bottom div {
        margin-top: 10px;
                                      
        gap: 18px;

        flex-wrap: wrap;
    }
}

/* =========================================================
   FOOTER VISIBILITY / DESKTOP SIZE OVERRIDE
   Makes the footer readable at normal desktop viewing sizes.
========================================================= */

footer {
    padding: 72px 6.5% 24px;
}

.footer-main {
    grid-template-columns: 31% 18% 18% 18% 15%;
    min-height: 270px;
}

.footer-intro .eyebrow {
    font-size: 10px;
    letter-spacing: 1.8px;
    margin-bottom: 20px;
}

.footer-intro h2 {
    font-size: 40px;
    line-height: 1.06;
    letter-spacing: -1.4px;
    margin: 0 0 28px;
}

.purple {
    padding: 14px 24px;
    border-radius: 28px;
    font-size: 13px;
}

.purple span {
    font-size: 19px;
}

.contact-item {
    padding-top: 12px;
}

.contact-item span {
    font-size: 11px;
    margin-bottom: 12px;
    letter-spacing: 0.4px;
}

.contact-item strong {
    font-size: 13px;
    line-height: 1.75;
}

.location-map {
    width: 245px;
    height: 64px;
    border-radius: 15px;
}

.location-map a {
    gap: 14px;
    padding: 0 18px;
}

.map-icon {
    width: 38px;
    height: 38px;
    font-size: 21px;
}

.map-text {
    font-size: 13px;
}

.socials {
    gap: 12px;
}

.socials a {
    width: 38px;
    height: 38px;
    font-size: 13px;
}

.footer-main > .socials {
    transform: translateY(58px);
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 18px;
    font-size: 10px;
}

.footer-bottom div {
    gap: 32px;
}


/* =========================================================
   FOOTER — TABLET
========================================================= */

@media (max-width: 900px) {
    footer {
        padding: 60px 7% 22px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 35px;
        min-height: auto;
    }

    .footer-intro h2 {
        font-size: 36px;
    }

    .contact-item span {
        font-size: 11px;
    }

    .contact-item strong {
        font-size: 13px;
    }

    .footer-main > .location-map {
        grid-column: 2;
        grid-row: 3;
        width: 245px;
        height: 62px;
        justify-self: start;
    }

    .footer-main > .socials {
        grid-column: 2;
        grid-row: 3;
        transform: translateY(58px);
    }
}


/* =========================================================
   FOOTER — MOBILE
========================================================= */

@media (max-width: 560px) {
    footer {
        padding: 55px 7% 22px;
    }

    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer-intro h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .footer-intro .eyebrow {
        font-size: 9px;
        margin-bottom: 17px;
    }

    .purple {
        padding: 13px 21px;
        font-size: 12px;
    }

    .contact-item span {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .contact-item strong {
        font-size: 13px;
        line-height: 1.65;
    }

    .footer-main > .location-map {
        width: 100%;
        max-width: none;
        height: 60px;
        order: 5;
    }

    .map-text {
        font-size: 13px;
    }

    .footer-main > .socials {
        order: 6;
        transform: none;
        margin: 0;
    }

    .socials a {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        margin-top: 34px;
        padding-top: 17px;
        font-size: 10px;
    }
}


/* =====================================================
   WHATSAPP FLOATING BUTTON
===================================================== */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    background: #25D366;

    color: #ffffff;

    border-radius: 50%;

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

    text-decoration: none;

    font-size: 31px;

    z-index: 9999;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}


@media (max-width: 600px) {

    .whatsapp-float {
        width: 54px;
        height: 54px;

        right: 18px;
        bottom: 18px;

        font-size: 28px;
    }

}