/* =====================================================
   SHULAB CONTACT PAGE
===================================================== */

:root {
    --shContact63-brown: #9a674a;
    --shContact63-brown-dark: #7f5138;
    --shContact63-black: #171717;
    --shContact63-text: #66615d;
    --shContact63-light-text: #817a75;
    --shContact63-border: #ded8d2;
    --shContact63-soft-border: #ebe6e1;
    --shContact63-bg: #faf9f7;
    --shContact63-white: #ffffff;
    --shContact63-error: #a63f35;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--shContact63-black);
    background: #ffffff;
    font-family: "Manrope", Arial, sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

.shContact63 {
    width: 100%;
    overflow: hidden;
}

.shContact63__container {
    width: min(1350px, calc(100% - 40px));
    margin: 0 auto;
}

.shContact63__eyebrow,
.shContact63__sectionLabel {
    display: block;
    color: var(--shContact63-brown);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.shContact63__smallLine {
    display: block;
    width: 27px;
    height: 2px;
    margin-top: 10px;
    background: var(--shContact63-brown);
}


/* =====================================================
   CONTACT HERO
===================================================== */

.shContact63__hero {
    width: 100%;
background-image: url('./assets/contact-hero1.jpg');
}

.shContact63__heroGrid {
    min-height: 520px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
}

.shContact63__heroContent {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 60px 70px 45px 0;
}

.shContact63__heroContent h1 {
    margin-top: 18px;
    color: var(--shContact63-black);
    font-size: 46px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -2.7px;
}

.shContact63__heroContent > p {
    max-width: 570px;
    margin-top: 20px;
    color: var(--shContact63-text);
    font-size: 14px;
    line-height: 1.8;
}

.shContact63__heroFeatures {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 38px;
    padding-top: 25px;
    border-top: 1px solid var(--shContact63-border);
    /* background-image: url('./assets/contact-hero.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
}

.shContact63__heroFeature {
    min-height: 130px;
    padding: 0 25px;
    border-right: 1px solid var(--shContact63-border);
}

.shContact63__heroFeature:first-child {
    padding-left: 0;
}

.shContact63__heroFeature:last-child {
    padding-right: 0;
    border-right: none;
}

.shContact63__featureIcon {
    min-height: 39px;
    color: var(--shContact63-brown);
}

.shContact63__featureIcon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.3;
}

.shContact63__heroFeature h3 {
    margin-top: 9px;
    color: var(--shContact63-black);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.shContact63__heroFeature p {
    max-width: 180px;
    margin-top: 7px;
    color: var(--shContact63-light-text);
    font-size: 11px;
    line-height: 1.6;
}

.shContact63__heroImage {
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.shContact63__heroImage img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.shContact63__heroImage:hover img {
    transform: scale(1.035);
}

.shContact63__heroFade {
    width: 145px;
    position: absolute;
    inset: 0 auto 0 0;
    background:
        linear-gradient(
            90deg,
            var(--shContact63-bg),
            rgba(250, 249, 247, 0)
        );
}


/* =====================================================
   MAIN CONTACT AREA
===================================================== */

.shContact63__main {
    padding: 52px 0 35px;
    background: #ffffff;
}

.shContact63__mainGrid {
    display: grid;
    grid-template-columns: 1.45fr 0.9fr 0.9fr;
    gap: 50px;
    align-items: stretch;
}

.shContact63__formColumn,
.shContact63__detailsColumn {
    min-width: 0;
}

.shContact63__form {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.shContact63__field {
    position: relative;
}

.shContact63__field input,
.shContact63__field select,
.shContact63__field textarea {
    width: 100%;
    border: 1px solid var(--shContact63-border);
    outline: none;
    color: var(--shContact63-black);
    background: #ffffff;
    font-size: 13px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.shContact63__field input,
.shContact63__field select {
    height: 49px;
    padding: 0 47px 0 16px;
}

.shContact63__field textarea {
    min-height: 80px;
    /* padding: 15px 47px 15px 16px; */
    padding: 10px;
    resize: vertical;
}

.shContact63__field input::placeholder,
.shContact63__field textarea::placeholder {
    color: #8d8782;
}

.shContact63__field select {
    appearance: none;
    color: #77716c;
}

.shContact63__field > svg {
    width: 17px;
    height: 17px;
    position: absolute;
    top: 16px;
    right: 15px;
    color: #b39683;
    pointer-events: none;
    stroke-width: 1.4;
}

.shContact63__field--textarea > svg {
    top: auto;
    right: 15px;
    bottom: 18px;
}

.shContact63__field input:focus,
.shContact63__field select:focus,
.shContact63__field textarea:focus {
    border-color: var(--shContact63-brown);
    box-shadow: 0 0 0 3px rgba(154, 103, 74, 0.08);
}

.shContact63__field.shContact63__field--invalid input,
.shContact63__field.shContact63__field--invalid select,
.shContact63__field.shContact63__field--invalid textarea {
    border-color: var(--shContact63-error);
}

.shContact63__error {
    display: none;
    margin-top: 5px;
    color: var(--shContact63-error);
    font-size: 10px;
    line-height: 1.4;
}

.shContact63__field--invalid .shContact63__error {
    display: block;
}

.shContact63__submit {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--shContact63-brown);
    color: #ffffff;
    background: var(--shContact63-brown);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.shContact63__submit:hover {
    color: var(--shContact63-brown);
    background: #ffffff;
    transform: translateY(-2px);
}

.shContact63__submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.shContact63__submit svg {
    width: 15px;
    height: 15px;
}

.shContact63__formStatus {
    min-height: 20px;
    color: var(--shContact63-brown);
    font-size: 12px;
    line-height: 1.5;
}


/* =====================================================
   CONTACT DETAILS
===================================================== */

.shContact63__detailsColumn {
    padding-left: 10px;
}

.shContact63__details {
    display: grid;
    gap: 26px;
    margin-top: 27px;
}

.shContact63__detailItem {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: start;
}

.shContact63__detailIcon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--shContact63-brown);
    background: #faf7f3;
}

.shContact63__detailIcon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.35;
}

.shContact63__detailItem h3 {
    color: var(--shContact63-black);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.shContact63__detailItem p,
.shContact63__detailItem a,
.shContact63__detailItem span {
    color: var(--shContact63-text);
    font-size: 12px;
    line-height: 1.65;
}

.shContact63__detailItem a {
    transition: color 0.25s ease;
}

.shContact63__detailItem a:hover {
    color: var(--shContact63-brown);
}


/* =====================================================
   QUOTE CARD
===================================================== */

.shContact63__quoteCard {
    max-height: 480px;
    border: 1px solid var(--shContact63-soft-border);
    background-color: #E9E0D8;
}

.shContact63__sketch {
    height: 235px;
    padding: 20px;
    overflow: hidden;
}

.shContact63__sketch img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.shContact63__quoteContent {
    padding: 12px 28px 28px;
}

.shContact63__quoteMark {
    display: block;
    height: 30px;
    color: var(--shContact63-brown);
    font-family: Georgia, serif;
    font-size: 40px;
    line-height: 1;
}

.shContact63__quoteContent blockquote {
    margin-top: 7px;
    color: #4f4a46;
    font-size: 14px;
    font-style: normal;
    line-height: 1.7;
}

.shContact63__quoteAuthor {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 17px;
}

.shContact63__quoteAuthor span {
    width: 25px;
    height: 1px;
    background: var(--shContact63-brown);
}

.shContact63__quoteAuthor strong {
    color: var(--shContact63-brown);
    font-size: 11px;
    font-weight: 600;
}


/* =====================================================
   LOCATIONS
===================================================== */

.shContact63__locations {
    padding: 0 0 38px;
    background: #ffffff;
}

.shContact63__locationsBox {
    min-height: 82px;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) auto;
    align-items: center;
    border: 1px solid var(--shContact63-soft-border);
    background: #fdfcfb;
}

.shContact63__locationsTitle {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
    border-right: 1px solid var(--shContact63-border);
}

.shContact63__locationsTitle span {
    color: var(--shContact63-brown);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.shContact63__locationList {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.shContact63__locationItem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 15px;
    border-right: 1px solid var(--shContact63-soft-border);
    color: #4c4743;
    font-size: 11px;
    font-weight: 500;
}

.shContact63__locationItem svg {
    width: 16px;
    height: 16px;
    color: #a6775b;
    stroke-width: 1.35;
}

.shContact63__locationButton {
    min-width: 185px;
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0 20px;
    border: 1px solid #b88b6f;
    color: var(--shContact63-brown);
    background: transparent;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.shContact63__locationButton:hover {
    color: #ffffff;
    background: var(--shContact63-brown);
}

.shContact63__locationButton svg {
    width: 14px;
    height: 14px;
}


/* =====================================================
   REVEAL ANIMATION
===================================================== */

.shContact63__reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.shContact63__reveal.shContact63__visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   RESPONSIVE 1100PX
===================================================== */

@media (max-width: 1100px) {

    .shContact63__heroContent {
        padding-right: 45px;
    }

    .shContact63__mainGrid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .shContact63__quoteCard {
        grid-column: 1 / -1;
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .shContact63__sketch {
        height: 290px;
    }

    .shContact63__quoteContent {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .shContact63__locationsBox {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .shContact63__locationButton {
        grid-column: 1 / -1;
        width: calc(100% - 40px);
        margin: 15px 20px 20px;
    }

}


/* =====================================================
   RESPONSIVE 850PX
===================================================== */

@media (max-width: 850px) {

    .shContact63__heroGrid {
        grid-template-columns: 1fr;
    }

    .shContact63__heroContent {
        padding: 52px 0 38px;
    }

    .shContact63__heroImage,
    .shContact63__heroImage img {
        min-height: 430px;
    }

    .shContact63__heroFade {
        width: 100%;
        height: 90px;
        inset: 0 0 auto;
        background:
            linear-gradient(
                180deg,
                var(--shContact63-bg),
                rgba(250, 249, 247, 0)
            );
    }

    .shContact63__mainGrid {
        grid-template-columns: 1fr;
    }

    .shContact63__detailsColumn {
        padding: 10px 0;
    }

    .shContact63__details {
        grid-template-columns: repeat(2, 1fr);
    }

    .shContact63__quoteCard {
        grid-column: auto;
    }

    .shContact63__locationsBox {
        grid-template-columns: 1fr;
    }

    .shContact63__locationsTitle {
        min-height: 60px;
        border-right: none;
        border-bottom: 1px solid var(--shContact63-border);
    }

    .shContact63__locationList {
        grid-template-columns: repeat(3, 1fr);
    }

    .shContact63__locationItem {
        min-height: 58px;
        border-bottom: 1px solid var(--shContact63-soft-border);
    }

}


/* =====================================================
   RESPONSIVE 600PX
===================================================== */

@media (max-width: 600px) {

    .shContact63__container {
        width: min(100% - 28px, 1350px);
    }

    .shContact63__heroContent h1 {
        font-size: 35px;
        letter-spacing: -1.7px;
    }

    .shContact63__heroContent > p {
        font-size: 14px;
    }

    .shContact63__heroFeatures {
        grid-template-columns: 1fr;
    }

    .shContact63__heroFeature,
    .shContact63__heroFeature:first-child,
    .shContact63__heroFeature:last-child {
        min-height: auto;
        padding: 20px 0;
        border-right: none;
        border-bottom: 1px solid var(--shContact63-border);
    }

    .shContact63__heroFeature:last-child {
        border-bottom: none;
    }

    .shContact63__heroFeature p {
        max-width: 100%;
    }

    .shContact63__heroImage,
    .shContact63__heroImage img {
        min-height: 330px;
    }

    .shContact63__main {
        padding-top: 42px;
    }

    .shContact63__details {
        grid-template-columns: 1fr;
    }

    .shContact63__quoteCard {
        display: block;
    }

    .shContact63__sketch {
        height: 250px;
    }

    .shContact63__locationList {
        grid-template-columns: repeat(2, 1fr);
    }

    .shContact63__locationButton {
        width: calc(100% - 28px);
        margin: 14px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .shContact63__heroContent h1 {
        font-size: 31px;
    }

    .shContact63__heroImage,
    .shContact63__heroImage img {
        min-height: 285px;
    }

    .shContact63__locationList {
        grid-template-columns: 1fr;
    }

    .shContact63__locationItem {
        justify-content: flex-start;
        padding-left: 25px;
    }

}