.contact-section{padding:100px 0}.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:100px}.contact-section h2{font:800 clamp(36px,4vw,55px)/1.05 Oswald;margin:14px 0}.contact-item{padding:18px 0;border-top:1px solid #dfe5e7;display:flex;flex-direction:column;font-size:13px}.contact-item strong{font:700 11px Oswald;text-transform:uppercase;letter-spacing:.15em;margin-bottom:4px}.contact-item a{color:#98763b}.contact-form{border:1px solid #dfe5e7;padding:35px}.contact-form label{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.1em;font-weight:700;margin-bottom:20px}.contact-form input,.contact-form select,.contact-form textarea{display:block;width:100%;border:1px solid #ccd5d7;background:#fafbfa;padding:13px 14px;margin-top:7px;font:14px Roboto Slab;color:#172026;outline:none}.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{border-color:#a27e38}.contact-form .btn{border:0;cursor:poRoboto Slab}@media(max-width:800px){.contact-grid{grid-template-columns:1fr;gap:55px}.contact-section{padding:70px 0}}
.contact-form h3{font:800 25px Oswald;margin:0 0 20px}.form-alert{padding:14px 16px;margin-bottom:18px;font-size:13px;line-height:1.5}.form-alert.success{background:#e7f4ec;color:#205d39}.form-alert.warning{background:#fff4d9;color:#72551d}.form-alert.error{background:#fde8e8;color:#8b2525}

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

.contact-hero {
    position: relative;

    min-height: 620px;
    height: 70vh;
    max-height: 760px;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* Dark overlay */

.contact-hero .page-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.80) 0%,
            rgba(0, 0, 0, 0.58) 45%,
            rgba(0, 0, 0, 0.20) 100%
        );
}


/* Hero content */

.contact-hero .page-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1240px;

    margin: 0 auto;

    padding: 40px 55px 0;

    box-sizing: border-box;
}


/* Eyebrow */

.contact-hero .eyebrow {
    display: block;

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    margin-bottom: 22px;
}


/* Heading */

.contact-hero h1 {
    color: #fff;

    font-size: clamp(52px, 5.4vw, 78px);

    font-weight: 800;

    line-height: 0.98;

    letter-spacing: -0.045em;

    max-width: 760px;

    margin: 0 0 28px;
}


/* Description */

.contact-hero p {
    color: rgba(255, 255, 255, 0.90);

    max-width: 610px;

    font-size: 17px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

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

.contact-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: start;
}


/* Contact information */

.contact-information h2 {
    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.05;

    letter-spacing: -0.035em;

    margin: 15px 0 25px;
}

.contact-information .lead {
    color: #435057;

    font-size: 18px;

    line-height: 1.7;

    max-width: 540px;
}


/* Contact items */

.contact-item {
    display: flex;

    flex-direction: column;

    gap: 7px;

    padding: 22px 0;

    border-bottom: 1px solid #e3e7e5;
}

.contact-item strong {
    color: #172026;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}

.contact-item a,
.contact-item span {
    color: #435057;

    font-size: 16px;

    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {
    padding: 45px;

    background: #f4f6f5;
}

.contact-form h3 {
    font-size: 28px;

    margin: 0 0 30px;
}

.contact-form label {
    display: block;

    color: #172026;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    display: block;

    width: 100%;

    margin-top: 8px;

    padding: 15px 16px;

    border: 1px solid #d9dfdc;

    background: #fff;

    color: #172026;

    font-family: inherit;

    font-size: 15px;

    box-sizing: border-box;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #172026;

    box-shadow: 0 0 0 3px rgba(23, 32, 38, 0.08);
}

.contact-form textarea {
    resize: vertical;

    min-height: 160px;
}


/* =========================================================
   FORM ALERTS
========================================================= */

.form-alert {
    padding: 14px 16px;

    margin-bottom: 25px;

    font-size: 14px;

    line-height: 1.5;
}

.form-alert.success {
    background: #e8f5ec;

    color: #176b35;
}

.form-alert.error {
    background: #fcebea;

    color: #a32920;
}

.form-alert.warning {
    background: #fff5dc;

    color: #805b00;
}


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

@media (max-width: 900px) {

    .contact-hero {
        min-height: 600px;
    }

    .contact-hero .page-hero-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .contact-hero h1 {
        font-size: clamp(46px, 8vw, 68px);
    }

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

        gap: 55px;
    }

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

}


@media (max-width: 600px) {

    .contact-hero {
        min-height: 600px;

        background-position: center;
    }

    .contact-hero .page-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.82),
                rgba(0, 0, 0, 0.42)
            );
    }

    .contact-hero .page-hero-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .contact-hero h1 {
        font-size: 44px;

        line-height: 1;

        margin-bottom: 24px;
    }

    .contact-hero p {
        font-size: 15px;

        line-height: 1.65;
    }

    .contact-form {
        padding: 28px 22px;
    }

}


/* =========================================================
   AJAX CONTACT TOAST
========================================================= */

.contact-toast {
    position: fixed;
    top: 110px;
    right: 30px;
    z-index: 99999;

    width: min(440px, calc(100vw - 40px));

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px 18px 18px 20px;

    background: #ffffff;
    color: #111111;

    border: 1px solid rgba(0,0,0,.08);

    border-radius: 14px;

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);

    opacity: 0;

    poRoboto Slab-events: none;

    transform:
        translateY(-35px)
        scale(.92);

    visibility: hidden;
}


/* =========================================================
   TOAST ICON
========================================================= */

.contact-toast-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

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

    border-radius: 50%;

    background: #111111;
    color: #ffffff;

    font-size: 19px;
}


/* =========================================================
   TOAST CONTENT
========================================================= */

.contact-toast-content {
    display: flex;
    flex-direction: column;
    gap: 3px;

    flex: 1;
}

.contact-toast-content strong {
    font-size: 15px;
    font-weight: 800;
}

.contact-toast-content span {
    font-size: 13px;
    line-height: 1.5;
    color: #666666;
}


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

.contact-toast-close {
    width: 30px;
    height: 30px;

    border: 0;
    background: transparent;

    color: #777777;

    font-size: 24px;
    line-height: 1;

    cursor: poRoboto Slab;

    transition:
        color .2s ease,
        transform .2s ease;
}

.contact-toast-close:hover {
    color: #111111;
    transform: rotate(90deg);
}


/* =========================================================
   ENTRANCE
========================================================= */

.contact-toast.toast-show {

    visibility: visible;

    poRoboto Slab-events: auto;

    animation:
        toastEntrance .55s cubic-bezier(.22,1,.36,1) forwards,
        toastEmphasis .45s ease .55s forwards;
}


/*
|--------------------------------------------------------------------------
| Entrance animation
|--------------------------------------------------------------------------
*/

@keyframes toastEntrance {

    0% {
        opacity: 0;
        transform:
            translateY(-35px)
            scale(.92);
    }

    60% {
        opacity: 1;
        transform:
            translateY(7px)
            scale(1.02);
    }

    100% {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}


/*
|--------------------------------------------------------------------------
| Emphasis animation
|--------------------------------------------------------------------------
*/

@keyframes toastEmphasis {

    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.025);
    }

    70% {
        transform: scale(.99);
    }

    100% {
        transform: scale(1);
    }
}


/*
|--------------------------------------------------------------------------
| Exit animation
|--------------------------------------------------------------------------
*/

.contact-toast:not(.toast-show) {

    animation:
        toastExit .35s ease forwards;

}


/*
|--------------------------------------------------------------------------
| Exit
|--------------------------------------------------------------------------
*/

@keyframes toastExit {

    0% {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }

    100% {
        opacity: 0;
        transform:
            translateY(-20px)
            scale(.96);
    }
}


/* =========================================================
   ERROR STATE
========================================================= */

.contact-toast.toast-error .contact-toast-icon {
    background: #333333;
}


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

.contact-form .btn {
    position: relative;
    transition:
        opacity .2s ease,
        transform .2s ease;
}

.contact-form .btn:disabled {
    cursor: not-allowed;
    opacity: .7;
}


/* =========================================================
   SPINNER
========================================================= */

.contact-spinner {

    width: 15px;
    height: 15px;

    display: inline-block;

    margin-right: 8px;

    border: 2px solid rgba(255,255,255,.4);

    border-top-color: #ffffff;

    border-radius: 50%;

    vertical-align: middle;

    animation:
        contactSpin .7s linear infinite;
}

@keyframes contactSpin {

    to {
        transform: rotate(360deg);
    }
}


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

@media (max-width: 600px) {

    .contact-toast {

        top: 85px;
        right: 20px;

        width: calc(100vw - 40px);

        padding: 15px;
    }

    .contact-toast-icon {

        width: 42px;
        height: 42px;

        flex-basis: 42px;

        font-size: 16px;
    }

    .contact-toast-content strong {
        font-size: 14px;
    }

    .contact-toast-content span {
        font-size: 12px;
    }

}


/* =========================================================
   CONTACT MAP
   ========================================================= */

.contact-map-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.contact-map-header {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}

.contact-map-header .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
}

.contact-map-header h2 {
    margin: 0 0 12px;
}

.contact-map-header p {
    margin: 0;
    line-height: 1.7;
    color: #666;
}

.contact-map {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    background: #eee;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

@media (max-width: 768px) {

    .contact-map-section {
        padding: 55px 0;
    }

    .contact-map {
        border-radius: 5px;
    }

    .contact-map iframe {
        height: 330px;
    }
}