*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #faf8f5;
    color: black;
    font-family: "Poppins",
        sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
}



/* ─────────────────────── bread BANNER ─────────────────────── */
.contact-bread {
    background: black;
    color: #fff;
    padding: 92px 0 76px;
    position: relative;
    overflow: hidden;
}

.contact-bread::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, .14);
    top: -100px;
    right: -80px;
    pointer-events: none;
}

.contact-bread::after {
    content: '';
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, .1);
    bottom: 20px;
    right: 180px;
    pointer-events: none;
}

.eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .45em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 10px;
}

.contact-bread h1 {
    font-size: 40px !important;
    line-height: 1.06;
    margin-bottom: 1.3rem;
}

.contact-bread h1 em {
    font-style: italic;
    color: #c9a96e;
}

@media screen and (max-width:575px) {
    .contact-bread h1 {
        font-size: 30px !important;

    }
}

.image {
    background-color: #fff;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border-radius: 10px;
}

.image img {
    /*width: 200px;*/
}

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, .55);
    max-width: 370px;
}

/* Contact blocks in hero */
.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
    animation: fadeUp .55s ease both;
}

.contact-block:first-child {
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.contact-block:nth-child(1) {
    animation-delay: .1s;
}

.contact-block:nth-child(2) {
    animation-delay: .22s;
}

.contact-block:nth-child(3) {
    animation-delay: .34s;
}

.cb-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, .32);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a96e;
    font-size: 1rem;
    flex-shrink: 0;
}

.cb-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8a8078;
    margin-bottom: 8px;
}

.contact-block a {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
}

/* ─────────────────────── MAIN CONTENT ─────────────────────── */
.main-section {
    padding: 90px 0;
}


.common-heading {
    font-size: 40px;
    text-transform: capitalize;
    line-height: 1.18;
    margin-bottom: 1rem;
}

@media screen and (max-width:575px) {
    .common-heading {
        font-size: 30px;
        text-transform: capitalize;
        line-height: 1.18;
        margin-bottom: 1rem;
    }

    .eyebrow {
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 2px;

    }
}



/* Hours card */
.hours-card {
    background: #f5f0e8;
    border: 1px solid #e0dbd2;
    padding: 1.5rem 1.7rem;
    margin-bottom: 2rem;
}

.hours-card h5 {
    font-size: .95rem;
    margin-bottom: .85rem;
    padding-bottom: .7rem;
    border-bottom: 1px solid #e0dbd2;
}

.hr-row {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    padding: .48rem 0;
    border-bottom: 1px solid #e0dbd2;
}

.hr-row:last-child {
    border-bottom: none;
}

.hr-row .day {
    font-weight: 500;
}

.hr-row .time {
    color: #8a8078;
}

/* Social row */
.soc-label {
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: #8a8078;
    margin-bottom: .82rem;
    display: block;
}

.soc-btn {
    width: 38px;
    height: 38px;
    border: 1px solid #e0dbd2;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .92rem;
    color: black;
    text-decoration: none;
    margin-right: .4rem;
    transition: all .2s;
}

.soc-btn:hover {
    background: black;
    border-color: black;
    color: #fff;
}

/* ─────────────────────── FORM CARD ─────────────────────── */
.form-card {
    background: #fff;
    border: 1px solid #e0dbd2;
    padding: 2.8rem 2.5rem;
}

.form-card h3 {
    font-size: 1.5rem;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid #e0dbd2;
    margin-bottom: 1.8rem;
}


.flabel {
    font-size: .58rem;
    font-weight: 500;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: #8a8078;
    margin-bottom: .5rem;
    display: block;
}

.req {
    color: #c9a96e;
}

.finput,
.fselect,
.ftextarea {
    width: 100%;
    border: 1px solid #e0dbd2;
    background: #faf8f5;
    padding: .8rem 1rem;
    font-size: .86rem;
    font-weight: 300;
    color: black;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .22s, background .22s, box-shadow .22s;
    outline: none;
}

.finput:focus,
.fselect:focus,
.ftextarea:focus {
    border-color: black;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, .12);
}



.finput::placeholder,
.ftextarea::placeholder {
    color: #c0bab4;
}

.ftextarea {
    resize: vertical;
    min-height: 120px;
}

.sel-wrap {
    position: relative;
}

.sel-wrap::after {
    content: '\F282';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a8078;
    font-size: .7rem;
    pointer-events: none;
}

/* Privacy checkbox */
.priv-check {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    margin-bottom: 1.5rem;
}

.priv-check input[type="checkbox"] {
    width: 15px;
    height: 15px;
    border-radius: 0;
    flex-shrink: 0;
    margin-top: 3px;
    cursor: pointer;
    accent-color: black;
}

.priv-check span {
    font-size: .76rem;
    color: #8a8078;
    line-height: 1.65;
}

.priv-check a {
    color: black;
}

/* Submit button */
.btn-submit {
    background: black;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 1rem 2rem;
    width: 100%;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .26em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    cursor: pointer;
    transition: background .25s;
}

.btn-submit:hover:not(:disabled) {
    background: #181818;
}

.btn-submit:disabled {
    background: #999;
    cursor: not-allowed;
}

/* ─────────────────────── MAP ─────────────────────── */
.map-section {
    background: #f5f0e8;
    border-top: 1px solid #e0dbd2;
    border-bottom: 1px solid #e0dbd2;
    padding: 80px 0;
}


.map-section p {
    font-size: .86rem;
    color: #8a8078;
    max-width: 440px;
    line-height: 1.85;
}

.map-embed {
    width: 100%;
    height: 380px;
    border: 1px solid #e0dbd2;
    filter: grayscale(20%) contrast(1.02);
}

.map-info-pill {
    background: black;
    color: #fff;
    padding: 1.1rem 1.6rem;
    display: flex;
    align-items: start;
    gap: .8rem;
    font-size: 16px;
    font-weight: 300;
}

.map-info-pill i {
    color: #c9a96e;
    font-size: 17px;
    flex-shrink: 0;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.6rem;
    border: 1.5px solid black;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    border-radius: 0;
    transition: all .2s;
}

.btn-map:hover {
    background: black;
    color: #fff;
}

/* ─────────────────────── TRUST STRIP ─────────────────────── */
.trust-strip {
    border-top: 1px solid #e0dbd2;
}

.trust-cell {
    padding: 2.2rem 1.6rem;
    border-right: 1px solid #e0dbd2;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-cell:last-child {
    border-right: none;
}

.trust-ico {
    width: 44px;
    height: 44px;
    border: 1px solid #e0dbd2;
    border-radius: 50%;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: black;
    flex-shrink: 0;
}

.trust-cell h6 {
    font-size: .9rem;
    margin-bottom: .2rem;
}

.trust-cell p {
    font-size: .75rem;
    color: #8a8078;
    margin: 0;
    line-height: 1.5;
}