/* =========================================================
   PREMIER EVENTS — CONTACT 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: 15px;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================================================
   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: 12px;
}

.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 ACTION
========================================================= */

.nav-actions {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 10px;
}

.top-cta {
    background: #ffffff;

    padding:
        11px 25px;

    border-radius: 30px;

    font-size: 12px;
}


/* =========================================================
   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: 10px;

    letter-spacing: 1.7px;

    color: #bd8fae;

    margin-bottom: 20px;
}


/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
    min-height: 560px;

    background: #f6f1eb;

    position: relative;

    display: flex;

    align-items: center;

    padding:
        105px 6.5% 75px;

    overflow: hidden;
}

.contact-hero::after {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: 10%;

    top: 110px;

    border-radius: 50%;

    background: #faeef2;

    opacity: .8;
}

.contact-hero::before {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: 29%;

    bottom: -80px;

    border-radius: 50%;

    background: #eaf2f8;

    opacity: .8;
}

.hero-content {
    position: relative;

    z-index: 3;

    max-width: 760px;
}

.hero-content h1 {
    margin: 0 0 28px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 68px;

    line-height: 1.02;

    font-weight: 400;

    letter-spacing: -2.8px;
}

.hero-content p {
    max-width: 520px;

    margin: 0;

    font-size: 15px;

    line-height: 1.8;

    color: #5c565c;
}

.hero-note {
    position: absolute;

    right: 6.5%;

    bottom: 50px;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    font-size: 9px;

    letter-spacing: 1.7px;

    color: #777177;
}

.hero-arrow {
    font-size: 19px;

    color: #bd8fae;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: #faf8f4;

    padding:
        95px 6.5% 110px;
}

.contact-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        40%
        60%;

    gap: 70px;

    align-items: start;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info {
    padding-top: 15px;
}

.contact-info h2 {
    margin:
        0 0 25px;

    max-width: 500px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 48px;

    line-height: 1.08;

    font-weight: 400;

    letter-spacing: -1.8px;
}

.contact-info > p {
    max-width: 500px;

    margin:
        0 0 42px;

    color: #656067;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   INFO ITEMS
========================================================= */

.info-item {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 27px;
}

.info-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #faeef2;

    color: #bd8fae;

    font-size: 15px;
}

.info-item span {
    display: block;

    margin-bottom: 6px;

    font-size: 11px;

    letter-spacing: .8px;

    color: #89818a;
}

.info-item a,
.info-item strong {
    font-size: 14px;

    font-weight: 400;

    line-height: 1.65;

    color: #464149;
}

.info-item a:hover {
    color: #bd8fae;
}


/* =========================================================
   MAP CARD
========================================================= */

.map-card {
    width: 100%;

    max-width: 450px;

    min-height: 88px;

    margin-top: 38px;

    padding:
        16px 19px;

    display: flex;

    align-items: center;

    gap: 16px;

    border-radius: 13px;

    background: #eaf2f8;

    transition:
        transform .25s ease;
}

.map-card:hover {
    transform:
        translateY(-2px);
}

.map-circle {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #7195b2;

    font-size: 21px;
}

.map-card strong {
    display: block;

    margin-bottom: 6px;

    font-size: 13px;

    font-weight: 500;
}

.map-card span {
    display: block;

    font-size: 11px;

    color: #777177;
}


/* =========================================================
   FORM CARD
========================================================= */

.form-card {
    position: relative;

    background: #ffffff;

    padding:
        46px 48px 40px;

    border-radius: 14px;

    box-shadow:
        0 18px 50px
        rgba(50,45,55,.06);

    border:
        1px solid #eeeeee;
}

.form-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    padding-bottom: 24px;

    margin-bottom: 30px;

    border-bottom:
        1px solid #eeeeee;
}

.form-header span {
    font-size: 12px;

    letter-spacing: 1.5px;

    color: #bd8fae;
}

.form-header small {
    font-size: 11px;

    color: #99939a;
}


/* =========================================================
   FORM FIELDS
========================================================= */

.field {
    margin-bottom: 23px;
}

.field-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}

.field label {
    display: block;

    margin-bottom: 9px;

    font-size: 12px;

    font-weight: 500;

    color: #514b53;
}

.field input,
.field textarea,
.field select {
    width: 100%;

    border:
        1px solid #e6e3e5;

    border-radius: 7px;

    background: #fcfbfa;

    color: #242127;

    font-size: 13px;

    outline: none;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.field input,
.field select {
    height: 49px;

    padding:
        0 15px;
}

.field textarea {
    resize: vertical;

    min-height: 140px;

    padding:
        14px 15px;

    line-height: 1.65;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #aaa4aa;

    font-size: 12px;
}

.field select {
    appearance: none;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #999 50%
        ),
        linear-gradient(
            135deg,
            #999 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 17px) 20px,
        calc(100% - 13px) 20px;

    background-size:
        4px 4px,
        4px 4px;

    background-repeat: no-repeat;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: #c391b0;

    background: #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(195,145,176,.08);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.submit-button {
    width: 100%;

    height: 54px;

    border: none;

    border-radius: 28px;

    background: #c391b0;

    color: #ffffff;

    font-size: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    cursor: pointer;

    transition:
        transform .2s ease,
        background .2s ease;
}

.submit-button:hover {
    transform:
        translateY(-1px);

    background: #b786a5;
}

.submit-button span {
    font-size: 18px;
}

.form-note {
    margin:
        16px 0 0;

    text-align: center;

    font-size: 10px;

    color: #9a949b;

    line-height: 1.6;
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.success-message {
    display: none;

    text-align: center;

    padding:
        75px 30px;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 58px;
    height: 58px;

    margin:
        0 auto 21px;

    border-radius: 50%;

    background: #eaf2f8;

    color: #718fa8;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;
}

.success-message h3 {
    margin:
        0 0 11px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 32px;

    font-weight: 400;
}

.success-message p {
    max-width: 340px;

    margin:
        0 auto 22px;

    font-size: 12px;

    line-height: 1.7;

    color: #777177;
}

.success-message button {
    border: none;

    background: transparent;

    color: #bd8fae;

    border-bottom:
        1px solid #bd8fae;

    padding:
        0 0 3px;

    font-size: 11px;

    cursor: pointer;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.contact-cta {
    background: #eee8f3;

    padding:
        100px 6.5%;
}

.cta-inner {
    text-align: center;

    max-width: 700px;

    margin: auto;
}

.cta-inner h2 {
    margin:
        0 0 22px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 52px;

    line-height: 1.05;

    font-weight: 400;

    letter-spacing: -1.9px;
}

.cta-inner p {
    max-width: 500px;

    margin:
        0 auto 30px;

    color: #6d6672;

    font-size: 13px;

    line-height: 1.75;
}

.cta-button {
    display: inline-flex;

    align-items: center;

    gap: 17px;

    padding:
        14px 25px;

    border-radius: 27px;

    background: #8f77aa;

    color: #ffffff;

    font-size: 12px;
}

.cta-button span {
    font-size: 18px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #ffffff;

    padding:
        78px 6.5% 27px;
}

.footer-main {
    display: grid;

    grid-template-columns:
        31%
        18%
        18%
        18%
        15%;

    min-height: 270px;

    align-items: start;
}

.footer-intro .eyebrow {
    margin-bottom: 21px;
}

.footer-intro h2 {
    margin:
        0 0 30px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 42px;

    line-height: 1.06;

    font-weight: 400;

    letter-spacing: -1.5px;
}

.footer-button {
    display: inline-flex;

    align-items: center;

    gap: 17px;

    padding:
        15px 25px;

    border-radius: 28px;

    background: #8f77aa;

    color: #ffffff;

    font-size: 13px;
}

.footer-button span {
    font-size: 19px;
}

.contact-item {
    padding-top: 13px;
}

.contact-item span {
    display: block;

    font-size: 12px;

    color: #777181;

    margin-bottom: 13px;
}

.contact-item strong {
    display: block;

    font-size: 14px;

    line-height: 1.8;

    font-weight: 400;

    color: #4e4a55;
}


/* =========================================================
   LOCATION
========================================================= */

.footer-location {
    width: 250px;
    height: 66px;

    border-radius: 15px;

    background: #f5f3f6;

    border:
        1px solid
        rgba(120,110,130,.12);

    transition:
        transform .25s ease,
        background .25s ease;
}

.footer-location:hover {
    transform:
        translateY(-2px);

    background: #efedf1;
}

.footer-location a {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    gap: 14px;

    padding:
        0 18px;
}

.map-icon {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    color: #8f77aa;
}

.map-text {
    font-size: 14px;

    color: #686474;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top:
        1px solid #eeeeee;

    padding-top: 19px;

    margin-top: 43px;

    display: flex;

    justify-content: space-between;

    font-size: 11px;

    color: #777181;
}

.footer-bottom div {
    display: flex;

    gap: 32px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .contact-grid {
        grid-template-columns:
            1fr;

        gap: 60px;
    }

    .contact-info {
        max-width: 700px;
    }

    .map-card {
        max-width: 500px;
    }

    .footer-main {
        grid-template-columns:
            1fr 1fr;

        gap: 38px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    /* NAV */

    .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:
            27px 7%;

        background: #ffffff;

        flex-direction: column;

        align-items: flex-start;

        gap: 21px;

        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 */

    .contact-hero {
        min-height: 520px;

        padding:
            125px 7% 70px;
    }

    .contact-hero::after {
        width: 290px;
        height: 290px;

        right: -70px;

        top: 175px;
    }

    .hero-content h1 {
        font-size: 43px;

        letter-spacing: -1.8px;
    }

    .hero-content p {
        max-width: 390px;

        font-size: 13px;

        line-height: 1.75;
    }

    .hero-note {
        right: 7%;

        bottom: 30px;

        font-size: 8px;
    }


    /* CONTACT */

    .contact-section {
        padding:
            65px 7% 80px;
    }

    .contact-grid {
        gap: 55px;
    }

    .contact-info h2 {
        font-size: 35px;

        letter-spacing: -1.1px;
    }

    .contact-info > p {
        font-size: 13px;
    }

    .info-item span {
        font-size: 10px;
    }

    .info-item a,
    .info-item strong {
        font-size: 13px;
    }

    .form-card {
        padding:
            30px 21px 27px;

        border-radius: 10px;
    }

    .form-header {
        display: block;
    }

    .form-header span {
        font-size: 11px;
    }

    .form-header small {
        display: block;

        margin-top: 7px;

        font-size: 10px;
    }

    .field-row {
        grid-template-columns:
            1fr;

        gap: 0;
    }

    .field label {
        font-size: 11px;
    }

    .field input,
    .field textarea,
    .field select {
        font-size: 13px;
    }

    .field input,
    .field select {
        height: 48px;
    }

    .field textarea {
        min-height: 135px;
    }

    .submit-button {
        height: 53px;

        font-size: 12px;
    }

    .form-note {
        font-size: 9px;
    }


    /* CTA */

    .contact-cta {
        padding:
            75px 7%;
    }

    .cta-inner h2 {
        font-size: 38px;

        letter-spacing: -1.2px;
    }

    .cta-inner p {
        font-size: 12px;
    }


    /* FOOTER */

    footer {
        padding:
            62px 7% 23px;
    }

    .footer-main {
        display: flex;

        flex-direction: column;

        gap: 31px;
    }

    .footer-intro h2 {
        font-size: 34px;
    }

    .contact-item span {
        font-size: 11px;
    }

    .contact-item strong {
        font-size: 13px;
    }

    .footer-location {
        width: 100%;

        max-width: 320px;
    }

    .map-text {
        font-size: 13px;
    }

    .footer-bottom {
        display: block;

        line-height: 1.7;

        margin-top: 36px;

        font-size: 10px;
    }

    .footer-bottom div {
        margin-top: 11px;

        flex-wrap: wrap;

        gap: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 37px;

        letter-spacing: -1.5px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .contact-info h2 {
        font-size: 31px;
    }

    .contact-info > p {
        font-size: 12px;
    }

    .form-card {
        padding:
            27px 17px 24px;
    }

    .cta-inner h2 {
        font-size: 32px;
    }

    .footer-intro h2 {
        font-size: 31px;
    }
}