/* Contact SFH2026 — Figma 560:326 (desktop) / 560:686 (mobile) */

/* Gutter on the parent, inner un-padded: 20 + ((vw-40)-1280)/2 == (vw-1280)/2,
   the same left edge as every other sfh section. .sfh-container is deliberately
   NOT reused — it lives in productslider/sfh2026.css, which this page never
   loads, so it would be an undefined selector here. */
.sfh-contact { padding: clamp(48px, 5vw, 80px) 20px; background: #fff; }
.sfh-contact-in { max-width: var(--cms2-max-width, 1280px); margin: 0 auto; }

.sfh-contact-heading {
    margin: 0 0 40px;
    text-align: center;
    font-size: clamp(34px, 4.6vw, 60px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    color: #000;
}
.sfh-contact-intro {
    margin: -16px auto 40px;
    max-width: 720px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0,0,0,.7);
}
.sfh-contact-intro p { margin: 0 0 1em; }

/* soft-grey panel: form | map, map stretched to the panel height */
.sfh-contact-panel {
    display: flex;
    align-items: stretch;
    background: #f4f4f4;
    margin-bottom: 40px;
}
.sfh-contact-formcol { flex: 0 0 55.6%; padding: 50px; }   /* 730 of 1312 in the Figma frame */
.sfh-contact-nomap .sfh-contact-formcol { flex: 1 1 auto; }
.sfh-contact-map { flex: 1; min-width: 0; }
.sfh-contact-map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }

/* form — overrides contact/module.css, which loads first */
.sfh-contact-formcol .cms2-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
/* Name and Email take one column each; Message and the button span both.
   The honeypot is position:absolute, so it never claims a grid cell. */
.sfh-contact-formcol .cms2-contact-form label:nth-of-type(3),
.sfh-contact-formcol .cms2-contact-form button { grid-column: 1 / -1; }

.sfh-contact-formcol .cms2-contact-form label {
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.sfh-contact-formcol .cms2-contact-form input[type=text],
.sfh-contact-formcol .cms2-contact-form input[type=email],
.sfh-contact-formcol .cms2-contact-form textarea {
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 100px;
    padding: 14px;                
    font-size: 16px;
    letter-spacing: 150%;
    color: #000;
    background: #fff;
}
.sfh-contact-formcol .cms2-contact-form textarea {
    border-radius: 20px;
    min-height: 183px;
    resize: vertical;
}
/* Placeholder — 16px / regular / 150% / no tracking / black.
   opacity:1 is load-bearing, not decoration: Firefox paints placeholders at
   opacity .54 by default, so `color:#000` on its own renders grey there while
   Chrome shows it black — the two browsers would not match without it. */
.sfh-contact-formcol .cms2-contact-form input::placeholder,
.sfh-contact-formcol .cms2-contact-form textarea::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    color: #000;
    opacity: 1;
}

.sfh-contact-formcol .cms2-contact-form input:focus,
.sfh-contact-formcol .cms2-contact-form textarea:focus { border-color: #be202e; }

.sfh-contact-formcol .cms2-contact-form button {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 100px;
    background: #be202e;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.sfh-contact-formcol .cms2-contact-form button:hover { background: #9d1a26; opacity: 1; }
/* sized here, not in hero/sfh2026.css — that file is not loaded on this page */
.sfh-contact .sfh-btn-arrow { display: inline-flex; align-items: center; }
.sfh-contact .sfh-btn-arrow svg { width: 30px; height: 10px; display: block; }

/* details row: working hours | address + phone + email */
.sfh-contact-details {
    display: flex;
    align-items: flex-start;
    gap: clamp(32px, 7vw, 92px);
}
.sfh-contact-hours { flex: 0 0 48.5%; }   /* 637 of 1312 */
.sfh-contact-addr {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sfh-contact-label {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #898989;
}

.sfh-hours { margin: 0; }
.sfh-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #dadada;
    font-size: 18px;
    line-height: 1.5;
}
.sfh-hours-row dt { color: rgba(0,0,0,.7); }
.sfh-hours-row dd { margin: 0; font-weight: 600; color: #000; }

.sfh-contact-addr p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(0,0,0,.7);
    overflow-wrap: anywhere;       /* the sales email is long on narrow columns */
}
.sfh-contact-addr a { color: inherit; text-decoration: underline; }
.sfh-contact-addr-row { display: flex; gap: 24px; }
.sfh-contact-phone { flex: 0 0 200px; }
.sfh-contact-email { flex: 1; min-width: 0; }

@media (max-width: 820px) {
    .sfh-contact-panel { flex-direction: column; margin-bottom: 32px; }
    .sfh-contact-formcol { flex: none; width: 100%; padding: 24px 20px; }
    .sfh-contact-formcol .cms2-contact-form { grid-template-columns: 1fr; }
    .sfh-contact-map { width: 100%; }
    .sfh-contact-map iframe { height: 320px; }
    .sfh-contact-details { flex-direction: column; gap: 40px; }
    .sfh-contact-hours { flex: none; width: 100%; }
    .sfh-contact-addr-row { flex-direction: column; gap: 32px; }
    .sfh-contact-phone { flex: none; }
    .sfh-hours-row { font-size: 16px; }
    .sfh-contact-addr p { font-size: 16px; }
}
