.svc-contact,
.svc-contact * {
    box-sizing: border-box;
}

.svc-contact {
    --svc-accent: #b48a3b;
    --svc-heading: #061a2f;
    --svc-bg: #fbfaf8;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--svc-bg);
    color: #171717;
    font-family: Arial, Helvetica, sans-serif;
    padding: clamp(54px, 6vw, 92px) 24px clamp(48px, 5.4vw, 82px);
}

.svc-contact-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.svc-contact-header {
    text-align: center;
}

.svc-contact-header h1 {
    margin: 0;
    color: var(--svc-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: .025em;
}

.svc-title-rule,
.svc-mini-rule {
    display: block;
    background: var(--svc-accent);
}

.svc-title-rule {
    width: 96px;
    height: 4px;
    margin: 25px auto 26px;
}

.svc-contact-header p {
    margin: 0;
    font-size: clamp(17px, 1.6vw, 22px);
    line-height: 1.5;
}

.svc-email {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    color: #111;
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 600;
    text-decoration: none;
}

.svc-email:hover,
.svc-phone:hover {
    color: var(--svc-accent);
}

.svc-envelope {
    width: 34px;
    height: 27px;
    color: var(--svc-accent);
}

.svc-envelope svg,
.svc-small-icon svg,
.svc-pin svg,
.svc-landmark svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svc-offices {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    gap: clamp(45px, 6vw, 85px);
    align-items: stretch;
    margin-top: clamp(36px, 4vw, 58px);
}

.svc-office-divider {
    width: 1px;
    min-height: 355px;
    background: rgba(6, 26, 47, .28);
    align-self: center;
}

.svc-office {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.svc-landmark {
    color: var(--svc-accent);
    height: 105px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 5px;
}

.svc-office:first-child .svc-landmark {
    width: 76px;
}

.svc-office:last-child .svc-landmark {
    width: 170px;
}

.svc-landmark svg {
    stroke-width: 2.2;
}

.svc-office h2 {
    color: var(--svc-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 2.8vw, 39px);
    font-weight: 500;
    letter-spacing: .025em;
    margin: 0;
    line-height: 1.1;
}

.svc-mini-rule {
    width: 52px;
    height: 3px;
    margin: 15px auto 17px;
}

.svc-address {
    min-height: 94px;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.55;
}

.svc-separator {
    width: min(300px, 90%);
    height: 1px;
    background: rgba(6, 26, 47, .15);
    margin: 18px auto 16px;
}

.svc-phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #111;
    text-decoration: none;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    line-height: 1.3;
}

.svc-small-icon {
    width: 30px;
    height: 30px;
    color: var(--svc-accent);
}

.svc-map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-width: 245px;
    min-height: 58px;
    margin-top: 24px;
    border: 2px solid var(--svc-accent);
    color: var(--svc-accent);
    background: transparent;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .035em;
    transition: background-color .2s ease, color .2s ease;
}

.svc-map-button:hover,
.svc-map-button:focus {
    color: #fff;
    background: var(--svc-accent);
}

.svc-pin {
    width: 23px;
    height: 29px;
}

.svc-map-button:hover .svc-pin,
.svc-map-button:focus .svc-pin {
    color: #fff;
}

@media (max-width: 767px) {
    .svc-contact {
        padding-left: 18px;
        padding-right: 18px;
    }

    .svc-offices {
        grid-template-columns: 1fr;
        gap: 42px;
        margin-top: 44px;
    }

    .svc-office-divider {
        width: min(360px, 90%);
        min-height: 1px;
        height: 1px;
        justify-self: center;
    }

    .svc-address {
        min-height: 0;
    }

    .svc-map-button {
        width: min(290px, 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .svc-map-button {
        transition: none;
    }
}
