/* =========================================================
   PREMIER EVENTS — ABOUT PAGE
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: #ffffff;

    color: #17171b;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    font-size: 13px;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   NAVBAR
========================================================= */

.nav {

    height: 74px;

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    z-index: 50;

    display: flex;

    align-items: center;

    padding: 0 6.2%;
}


/* =========================================================
   BRAND
========================================================= */

.brand {

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    display: flex;

    align-items: center;

    gap: 11px;

    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;
}

.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;
}

.brand-main {

    font-size: 17px;

    font-weight: 600;

    letter-spacing: 3.2px;
}

.brand-sub {

    margin-top: 5px;

    font-size: 8px;

    letter-spacing: 4px;
}


/* =========================================================
   NAV LINKS
========================================================= */

.links {

    position: absolute;

    left: 6.2%;
    top: 50%;

    transform:
        translateY(-50%);

    display: flex;

    gap: 30px;

    font-size: 11px;
}

.links a {

    transition:
        opacity .2s ease;
}

.links a:hover {

    opacity: .5;
}

.links .active {

    position: relative;
}

.links .active::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -7px;

    height: 1px;

    background: #bd8fae;
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 10px;
}

.top-cta {

    background: #ffffff;

    padding:
        10px 24px;

    border-radius: 30px;

    font-size: 11px;

    transition:
        transform .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;

    background: #718291;
}


/* =========================================================
   GENERAL
========================================================= */

.eyebrow {

    font-size: 9px;

    letter-spacing: 1.5px;

    color: #bd8fae;

    margin-bottom: 20px;
}

.blue {

    color: #6f9ac0;
}

/* =========================================================
   ABOUT HERO — SAME HOME PAGE STYLE
========================================================= */

.about-hero {

    min-height: 690px;

    position: relative;

    overflow: hidden;

    background: #f6f1eb;
}


/* =========================================================
   IMAGE
========================================================= */

.about-hero-image {

    position: absolute;

    top: 74px;

    right: 0;

    width: 60%;

    height: 616px;

    overflow: hidden;

    background: #f6f1eb;

    z-index: 1;
}


.about-hero-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

}


/* =========================================================
   BLEND IMAGE INTO CREAM BACKGROUND
========================================================= */

.about-hero::after {

    content: "";

    position: absolute;

    left: 25%;

    top: 74px;

    width: 40%;

    height: 616px;

    z-index: 2;

    pointer-events: none;

    background:

        linear-gradient(
            90deg,

            #f6f1eb 0%,

            rgba(246,241,235,.98) 15%,

            rgba(246,241,235,.90) 30%,

            rgba(246,241,235,.60) 48%,

            rgba(246,241,235,.25) 70%,

            rgba(246,241,235,0) 100%
        );
}


/* =========================================================
   TEXT AREA
========================================================= */

.about-hero-content {

    position: relative;

    z-index: 5;

    padding-top: 190px;

    margin-left: 6.5%;

    width: 43%;

    background: transparent;
}


.about-hero-content .eyebrow {

    color: #bd8fae;

    font-size: 9px;

    letter-spacing: 1.35px;

    margin-bottom: 22px;
}


.about-hero-content h1 {

    margin: 0 0 25px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 52px;

    line-height: 1.02;

    font-weight: 400;

    letter-spacing: -2.2px;

    color: #17171b;
}


.about-hero-content p {

    max-width: 420px;

    margin: 0 0 29px;

    font-size: 12px;

    line-height: 1.7;

    color: #555158;
}


.hero-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    font-size: 10px;

    color: #17171b;

    border-bottom:
        1px solid #bd8fae;

    padding-bottom: 5px;
}


.hero-link span {

    font-size: 16px;

    color: #bd8fae;
}

/* =========================================================
   STORY
========================================================= */

.story {

    min-height: 520px;

    background: #faeef2;

    padding: 85px 6.5%;

    display: grid;

    grid-template-columns: 27% 73%;
}

.story-label {

    padding-top: 5px;
}

.story-label span {

    display: block;

    font-size: 9px;

    letter-spacing: 2px;

    color: #8b8190;
}

.story-content {

    max-width: 760px;
}

.story-content h2 {

    margin: 0 0 27px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 39px;

    line-height: 1.08;

    font-weight: 400;

    letter-spacing: -1.5px;

    max-width: 650px;
}

.story-content p {

    max-width: 650px;

    font-size: 12px;

    line-height: 1.75;

    color: #57515a;

    margin:
        0 0 14px;
}

.story-content strong {

    color: #17171b;

    font-weight: 600;
}


/* =========================================================
   CORPORATE SECTION
========================================================= */

.corporate-focus {

    display: grid;

    grid-template-columns: 46% 54%;

    min-height: 570px;
}

.corporate-image {

    overflow: hidden;

    background: #eaf2f8;
}

.corporate-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.corporate-content {

    background: #eaf2f8;

    padding:
        80px 10%;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.corporate-content h2 {

    max-width: 520px;

    margin: 0 0 20px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 39px;

    line-height: 1.08;

    font-weight: 400;

    letter-spacing: -1.4px;
}

.corporate-content > p {

    max-width: 520px;

    margin: 0 0 15px;

    font-size: 12px;

    line-height: 1.7;

    color: #50565b;
}


/* CORPORATE LIST */

.corporate-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px 25px;

    margin-top: 20px;

    max-width: 530px;
}

.corporate-list span {

    font-size: 10px;

    padding-bottom: 10px;

    border-bottom:
        1px solid
        rgba(80,80,80,.15);

    color: #50565b;
}


/* =========================================================
   SERVICES
========================================================= */

.services {

    background: #faf8f4;

    padding:
        85px 6.5%;
}

.services-heading {

    display: grid;

    grid-template-columns: 27% 73%;

    margin-bottom: 50px;
}

.services-heading h2 {

    margin: 0;

    max-width: 600px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 38px;

    line-height: 1.08;

    font-weight: 400;

    letter-spacing: -1.5px;
}


/* SERVICE GRID */

.service-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;
}

.service-card {

    min-width: 0;
}

.service-image {

    height: 220px;

    overflow: hidden;

    border-radius: 7px;

    background: #eee;
}

.service-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .5s ease;
}

.service-card:hover
.service-image img {

    transform:
        scale(1.04);
}

.service-number {

    margin-top: 18px;

    font-size: 9px;

    letter-spacing: 1px;

    color: #bd8fae;
}

.service-card h3 {

    margin:
        8px 0 9px;

    font-size: 12px;

    font-weight: 500;
}

.service-card p {

    margin: 0;

    font-size: 10px;

    line-height: 1.65;

    color: #69636a;
}


/* =========================================================
   WHY PREMIER
========================================================= */

.why-premier {

    display: grid;

    grid-template-columns: 43% 57%;

    min-height: 620px;
}

.why-image {

    overflow: hidden;

    background: #f6f1eb;
}

.why-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.why-content {

    padding:
        80px 10%;

    background: #f6f1eb;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.why-content h2 {

    max-width: 580px;

    margin:
        0 0 20px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 38px;

    line-height: 1.08;

    font-weight: 400;

    letter-spacing: -1.4px;
}

.why-content > p {

    max-width: 540px;

    margin:
        0 0 30px;

    font-size: 12px;

    line-height: 1.7;

    color: #5e5960;
}


/* VALUES */

.values {

    max-width: 580px;
}

.value {

    display: grid;

    grid-template-columns: 35px 1fr;

    gap: 15px;

    padding:
        17px 0;

    border-top:
        1px solid
        rgba(80,80,80,.13);
}

.value:last-child {

    border-bottom:
        1px solid
        rgba(80,80,80,.13);
}

.value > span {

    font-size: 9px;

    color: #bd8fae;

    padding-top: 3px;
}

.value h3 {

    margin: 0 0 5px;

    font-size: 11px;

    font-weight: 500;
}

.value p {

    margin: 0;

    font-size: 10px;

    line-height: 1.55;

    color: #777177;
}


/* =========================================================
   STATEMENT
========================================================= */

.statement {

    background: #eee8f3;

    padding:
        100px 6.5%;
}

.statement-inner {

    max-width: 780px;

    margin: auto;

    text-align: center;
}

.statement h2 {

    margin: 0 0 22px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 48px;

    line-height: 1.04;

    font-weight: 400;

    letter-spacing: -1.8px;
}

.statement p {

    max-width: 500px;

    margin:
        0 auto;

    font-size: 12px;

    line-height: 1.7;

    color: #68616d;
}


/* =========================================================
   FOOTER
========================================================= */

footer {

     background: #ffffff;

    padding:
        75px 6.5% 25px;
}

.footer-main {

    display: grid;

    grid-template-columns:
        31%
        18%
        18%
        18%
        15%;

    min-height: 270px;

    align-items: start;
}


/* FOOTER INTRO */

.footer-intro {

    padding-top: 2px;
}

.footer-intro .eyebrow {

    font-size: 10px;

    letter-spacing: 1.8px;

    margin-bottom: 20px;
}

.footer-intro h2 {

    margin:
        0 0 28px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 40px;

    line-height: 1.06;

    font-weight: 400;

    letter-spacing: -1.4px;
}


/* BUTTON */

.button {

    display: inline-flex;

    align-items: center;

    gap: 17px;

    padding:
        14px 24px;

    border-radius: 28px;

    font-size: 12px;

    color: white;
}

.button span {

    font-size: 18px;
}

.purple {

    background: #8f77aa;
}


/* CONTACT */

.contact-item {

    padding-top: 12px;
}

.contact-item span {

    display: block;

    font-size: 11px;

    color: #777181;

    margin-bottom: 12px;
}

.contact-item strong {

    display: block;

    font-size: 13px;

    line-height: 1.75;

    font-weight: 400;

    color: #4e4a55;
}


/* =========================================================
   MAP
========================================================= */

.footer-location {

    width: 245px;

    height: 64px;

    border-radius: 15px;

    background: #e4ddea;

    border:
        1px solid
        rgba(120,110,130,.12);

    transition:
        transform .25s ease,
        background .25s ease;
}

.footer-location a {

    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        0 18px;
}

.footer-location:hover {

    transform:
        translateY(-2px);

    background: #ddd4e5;
}

.map-icon {

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #f4f0f6;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 21px;

    color: #8f77aa;
}

.map-text {

    font-size: 13px;

    color: #686474;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    border-top:
        1px solid
        rgba(100,90,110,.14);

    padding-top: 18px;

    margin-top: 42px;

    display: flex;

    justify-content: space-between;

    font-size: 10px;

    color: #777181;
}

.footer-bottom div {

    display: flex;

    gap: 32px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-hero-content h1 {

        font-size: 44px;
    }

    .service-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 35px 18px;
    }

    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 35px;
    }

    .footer-location {

        grid-column: 2;
    }

}


/* =========================================================
   TABLET / MOBILE NAV
========================================================= */

@media (max-width: 760px) {

    .nav {

        height: 64px;

        padding:
            0 6%;
    }

    .brand {

        gap: 8px;
    }

    .brand-mark {

        width: 37px;
        height: 37px;

        font-size: 20px;
    }

    .brand-main {

        font-size: 14px;

        letter-spacing: 2.7px;
    }

    .brand-sub {

        font-size: 7px;

        letter-spacing: 3px;
    }

    .top-cta {

        display: none;
    }

    .links {

        position: fixed;

        left: 0;
        right: 0;
        top: 64px;

        transform: none;

        padding:
            25px 7%;

        background: #ffffff;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        box-shadow:
            0 10px 30px
            rgba(0,0,0,.06);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transition:
            opacity .25s ease,
            visibility .25s ease;
    }

    .links.open {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;
    }

    .links .active::after {

        display: none;
    }


    /* HERO */

    .about-hero {

        min-height: 690px;
    }

    .about-hero-content {

        padding-top: 120px;

        margin-left: 7%;

        width: 86%;
    }

    .about-hero-content h1 {

        font-size: 39px;
    }

    .about-hero-content p {

        max-width: 350px;
    }

    .about-hero-image {

        top: 350px;

        width: 100%;

        height: 340px;
    }

    .about-hero::after {

        top: 320px;

        left: 0;

        width: 100%;

        height: 180px;

        background:
            linear-gradient(
                180deg,
                #f6f1eb 0%,
                rgba(246,241,235,.65) 35%,
                rgba(246,241,235,0) 100%
            );
    }


    /* STORY */

    .story {

        display: block;

        padding:
            60px 7%;
    }

    .story-label {

        margin-bottom: 30px;
    }

    .story-content h2 {

        font-size: 33px;
    }


    /* CORPORATE */

    .corporate-focus {

        display: block;
    }

    .corporate-image {

        height: 330px;
    }

    .corporate-content {

        padding:
            55px 7%;
    }

    .corporate-content h2 {

        font-size: 33px;
    }


    /* SERVICES */

    .services {

        padding:
            60px 7%;
    }

    .services-heading {

        display: block;

        margin-bottom: 35px;
    }

    .services-heading h2 {

        font-size: 33px;
    }

    .service-grid {

        grid-template-columns: 1fr;
    }

    .service-image {

        height: 240px;
    }


    /* WHY */

    .why-premier {

        display: block;
    }

    .why-image {

        height: 330px;
    }

    .why-content {

        padding:
            60px 7%;
    }

    .why-content h2 {

        font-size: 33px;
    }


    /* STATEMENT */

    .statement {

        padding:
            70px 7%;
    }

    .statement h2 {

        font-size: 38px;
    }


    /* FOOTER */

    footer {

        padding:
            60px 7% 22px;
    }

    .footer-main {

        display: flex;

        flex-direction: column;

        gap: 30px;
    }

    .footer-location {

        width: 100%;

        max-width: 320px;

        height: 60px;
    }

    .footer-bottom {

        display: block;

        line-height: 1.7;

        margin-top: 35px;
    }

    .footer-bottom div {

        margin-top: 10px;

        flex-wrap: wrap;

        gap: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-hero-content h1 {

        font-size: 34px;

        letter-spacing: -1.4px;
    }

    .about-hero-content p {

        font-size: 11px;
    }

    .story-content h2,
    .corporate-content h2,
    .services-heading h2,
    .why-content h2 {

        font-size: 29px;
    }

    .corporate-list {

        grid-template-columns: 1fr;
    }

    .statement h2 {

        font-size: 32px;
    }

}