*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Acumin Variable';
    src: url('../assets/fonts/Acumin-Variable-Concept.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #ffffff;
    --text: #2c3a50;
    --font-h1: 'Acumin Variable', 'PP Neue Montreal', sans-serif;
    --font-head: 'Acumin Variable', 'PP Neue Montreal', sans-serif;
    --font-p: 'Acumin Variable', 'SF Pro', sans-serif;
    --font-ui: 'Acumin Variable', 'Schibsted Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-p);
    color: var(--text);
    overflow-x: hidden;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================= */
/* 🔥 NAVBAR FINAL PERFECT   */
/* ========================= */

.site-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
}

/* subtle bottom border */
.site-nav::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

/* FULL WIDTH CONTAINER */
.site-nav .container {
    max-width: 100%;
    padding: 0 40px;
    position: relative;
}

/* NAV LAYOUT */
.nav-inner {
    height: 90px;
    display: flex;
    align-items: center;
    position: relative;
}

/* ================= LEFT (LOGO) ================= */
.nav-inner>a:first-child {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.logo-img {
    width: 180px;
    height: auto;
}

/* ================= CENTER (MENU) ================= */
.nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* ================= RIGHT (PHONE CTA) ================= */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    color: #fff;
    text-decoration: none;
}

/* PHONE ICON */
.phone-icon {
    width: 34px;
    height: 34px;
    fill: #ffffff;
}

/* TEXT BLOCK */
.nav-cta>div {
    display: flex;
    flex-direction: column;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 1.1;
}

/* LABEL */
.nav-cta-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(209, 235, 255, 0.95);
}

/* NUMBER */
.nav-cta-num {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #ffffff;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
}

/* MOBILE NAV */
.mobile-nav {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(10, 30, 60, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 9999;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav>a {
    display: block;
    padding: 14px 24px;
    color: #fff;
    text-decoration: none;
    font-family: 'Acumin Variable', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    cursor: pointer;
}

.mobile-dropdown-toggle a {
    color: #fff;
    text-decoration: none;
    font-family: 'Acumin Variable', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none !important;
    padding: 0 !important;
}

.mobile-arrow {
    width: 12px;
    height: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-dropdown.open>.mobile-dropdown-toggle .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown.open>.mobile-submenu {
    display: block;
}

.mobile-submenu>a {
    display: block;
    padding: 12px 24px 12px 40px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-family: 'Acumin Variable', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu>.mobile-dropdown .mobile-dropdown-toggle {
    padding: 12px 24px 12px 40px;
}

.mobile-submenu>.mobile-dropdown .mobile-dropdown-toggle a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.mobile-submenu-l3 {
    background: rgba(255, 255, 255, 0.03);
}

.mobile-submenu-l3 a {
    padding-left: 56px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

.contact-hero {
    position: relative;
    min-height: clamp(320px, 44vw, 460px);
    background: url('../assets/contactPage/hero section/img1.jpg') center center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 40px;
}

.contact-hero-overlay {
    display: none;
}

.contact-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-hero-copy {
    max-width: 760px;
    padding: 0 0 0 clamp(18px, 3.8vw, 70px);
    color: #ffffff;
}

.contact-hero-kicker {
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    opacity: 0.8;

}

.contact-hero-copy h1 {
    font-family: var(--font-h1);
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 0.4px;
}

.contact-hero-copy h1 span,
.contact-hero-copy h1 strong {
    display: block;
}

.contact-hero-copy h1 span {
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
    margin-top: 0;
    line-height: 1.05;
    letter-spacing: 2px;
}

.contact-hero-copy h1 strong {
    font-size: clamp(44px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-top: 6px;
    white-space: nowrap;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 35px;
    }

    .site-nav .container {
        padding: 0 35px;
    }

    /* Paragraph text size on tablet */
    p {
        font-size: 17px;
    }

    /* Contact info rail — 2 standalone cards above form on tablet */
    .contact-form-panel {
        grid-template-columns: 1fr !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        gap: 20px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .contact-info-rail {
        border: none !important;
        background: transparent !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 16px !important;
        padding: 0 !important;
        align-items: stretch !important;
    }

    .contact-rail-logo {
        display: none !important;
    }

    .contact-rail-divider {
        display: none !important;
    }

    .contact-rail-building {
        display: none !important;
    }

    .contact-rail-block {
        flex: 1 !important;
        background: #ffffff !important;
        border: 1px solid rgba(123, 148, 179, 0.2) !important;
        border-radius: 6px !important;
        padding: 24px 28px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        box-shadow: none !important;
    }

    .contact-form-content {
        background: rgba(255, 255, 255, 0.65) !important;
        border: 1px solid rgba(84, 121, 164, 0.18) !important;
        border-radius: 4px !important;
    }

    .contact-rail-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        background: linear-gradient(135deg, #118CF0, #2BA0FF) !important;
        border-radius: 50% !important;
        margin-bottom: 14px !important;
        color: #ffffff !important;
    }

    .contact-rail-icon svg {
        width: 22px !important;
        height: 22px !important;
        stroke: #ffffff !important;
    }

    .contact-rail-block h3 {
        font-size: 11px !important;
        margin-bottom: 6px !important;
    }

    .contact-rail-block a {
        font-size: 20px !important;
        font-weight: 600 !important;
        color: #1a2a3a !important;
    }
}

@media (max-width: 1200px) {
    .site-nav .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 64px;
        gap: 0;
    }

    .nav-inner>a {
        justify-content: flex-start;
    }

    .logo-img {
        width: 136px;
        height: 42px;
    }

    .nav-links,
    .nav-cta {
        display: none !important;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .mobile-nav {
        top: 64px;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        backdrop-filter: blur(4px);
    }

    .contact-hero {
        min-height: 360px;
        padding-top: 64px;
    }

    .contact-hero-copy {
        max-width: 620px;
        padding: 34px 0 0 12px;
    }

    .contact-hero-copy h1 span {
        font-size: clamp(34px, 5.8vw, 52px);
    }

    .contact-hero-copy h1 strong {
        font-size: clamp(44px, 7vw, 68px);
    }
}

@media (max-width: 767px) {
    .contact-hero {
        min-height: 300px;
        background-position: center top;
    }

    .contact-hero-copy {
        max-width: 100%;
        padding-left: 0;
        padding-top: 26px;
    }

    .contact-hero-kicker {
        font-size: 10px;
        letter-spacing: 2.2px;
    }

    .contact-hero-copy h1 span,
    .contact-hero-copy h1 strong {
        font-size: clamp(30px, 10vw, 44px);
    }
}

@media (max-width: 480px) {
    .nav-inner {
        height: 60px;
    }

    .logo-img {
        width: 124px;
        height: 38px;
    }

    .mobile-nav {
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    .contact-hero {
        min-height: 250px;
        padding-top: 60px;
    }

    .contact-hero-copy {
        padding-top: 20px;
    }

    .contact-hero-copy h1 span,
    .contact-hero-copy h1 strong {
        font-size: clamp(26px, 12vw, 36px);
    }
}

/* ================= CONTACT SECTION TWO ================= */
.contact-form-section {
    background: #dfecf6;
    padding: clamp(28px, 4vw, 52px) 0 clamp(38px, 5vw, 60px);
}

.contact-form-section>.container {
    max-width: 1500px;
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
}

/* Outer wrapper: semi-transparent glassy panel matching Figma */
.contact-form-panel {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(84, 121, 164, 0.18);
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

/* LEFT RAIL — pure white */
.contact-info-rail {
    background: #ffffff;
    padding: 36px 28px 0;
    border-right: 1px solid rgba(123, 148, 179, 0.18);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contact-rail-logo {
    width: 120px;
    height: auto;
    margin-bottom: 32px;
}

.contact-rail-block {
    margin-bottom: 28px;
}

.contact-rail-block h3 {
    font-family: var(--font-h1);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #2e3c50, #425369);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-rail-block a {
    font-family: var(--font-p);
    font-size: 17px;
    line-height: 1.45;
    color: rgba(49, 89, 141, 0.85);
    display: block;
}

.contact-rail-icon {
    display: none;
}

.contact-rail-divider {
    width: 80%;
    height: 1px;
    background: rgba(132, 158, 191, 0.28);
    margin: 4px 0 24px;
}

/* Building photo fills bottom of the rail */
.contact-rail-building {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    object-fit: cover;
    object-position: center top;
}

/* RIGHT FORM AREA */
.contact-form-content {
    padding: clamp(36px, 4.5vw, 56px) clamp(28px, 3.5vw, 44px) 40px clamp(28px, 3.5vw, 44px);
    position: relative;
    background: transparent;
}

.contact-form-content h2 {
    font-family: var(--font-h1);
    text-transform: uppercase;
    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 28px;
    background: linear-gradient(90deg, #2e3c50, #425369);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-case-form {
    max-width: 100%;
}

.contact-case-form label {
    display: block;
    font-family: var(--font-p);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #6b7a90;
    margin-bottom: 6px;
}

.contact-case-form input,
.contact-case-form textarea {
    width: 100%;
    border: 1.5px solid #dde3ec;
    background: #f8fafd;
    color: #1a2a3a;
    font-family: var(--font-p);
    font-size: 15px;
    padding: 13px 16px;
    margin-bottom: 18px;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.contact-case-form input:focus,
.contact-case-form textarea:focus {
    border-color: #118CF0;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(17, 140, 240, 0.12);
}

.contact-case-form input::placeholder,
.contact-case-form textarea::placeholder {
    color: #b0bac8;
}

.contact-case-form textarea {
    min-height: 148px;
    resize: vertical;
}

.contact-form-note {
    font-family: var(--font-p);
    font-size: 13px;
    line-height: 1.55;
    color: rgba(63, 70, 77, 0.6);
    margin-top: 2px;
    margin-bottom: 22px;
}

.contact-case-form button {
    height: 54px;
    padding: 0 40px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #118CF0 0%, #2BA0FF 100%);
    color: #ffffff;
    font-family: var(--font-h1);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(17, 140, 240, 0.3);
}

.contact-case-form button:hover {
    background: linear-gradient(90deg, #0F7FFF 0%, #1A8FFF 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(17, 140, 240, 0.4);
}

/* Dark blue corner accent */
.contact-form-corner {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 54px;
    height: 54px;
    background: #2A5995;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .contact-form-panel {
        grid-template-columns: 260px minmax(0, 1fr);
        min-height: 580px;
    }
}

@media (max-width: 860px) {
    .contact-form-panel {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .contact-info-rail {
        border-right: none;
        border-bottom: 1px solid rgba(123, 148, 179, 0.2);
        padding: 26px 22px 18px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0 32px;
        align-items: flex-start;
    }

    .contact-rail-logo {
        width: 140px !important;
        max-width: 140px !important;
        margin-bottom: 18px;
    }

    .contact-rail-building {
        display: none;
    }

    .contact-rail-divider {
        display: none;
    }

    .contact-form-content {
        padding: 36px 24px 36px;
    }
}

.contact-mobile-cards {
    display: none;
}

@media (max-width: 767px) {
    .contact-form-section {
        padding: 40px 0 32px;
    }

    .contact-form-section>.container {
        max-width: 1500px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-info-rail {
        display: none !important;
    }

    .contact-mobile-cards {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 16px;
    }

    .contact-mobile-card {
        background: #ffffff;
        border: 1px solid rgba(123, 148, 179, 0.2);
        border-radius: 6px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: none;
    }

    .contact-mobile-card .contact-rail-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #118CF0, #2BA0FF);
        border-radius: 50%;
        margin-bottom: 12px;
    }

    .contact-mobile-card .contact-rail-icon svg {
        width: 20px;
        height: 20px;
        stroke: #ffffff;
    }

    .contact-mobile-card h3 {
        font-family: var(--font-h1);
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #6b7a90;
        margin-bottom: 4px;
        font-weight: 700;
    }

    .contact-mobile-card a {
        font-size: 17px;
        font-weight: 600;
        color: #1a2a3a;
    }

    .contact-rail-block h3 {
        font-size: 12px;
    }

    .contact-rail-block a {
        font-size: 16px;
    }

    .contact-form-content h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .contact-case-form label {
        font-size: 15px;
    }

    .contact-case-form input,
    .contact-case-form textarea {
        font-size: 15px;
        padding: 10px 12px;
    }

    .contact-case-form button {
        width: 100%;
        min-height: 64px;
        letter-spacing: 2px;
    }

    .contact-form-corner {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 14px 0 24px;
    }

    .contact-info-rail {
        padding: 20px 16px 16px;
        gap: 0 20px;
    }

    .contact-rail-logo {
        width: 100px;
        margin-bottom: 14px;
    }

    .contact-rail-block {
        margin-bottom: 16px;
    }

    .contact-form-content {
        padding: 36px 16px 28px;
    }

    .contact-case-form label {
        font-size: 15px;
    }

    .contact-case-form input,
    .contact-case-form textarea {
        font-size: 15px;
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .contact-case-form textarea {
        min-height: 120px;
    }

    .contact-form-note {
        font-size: 13px;
    }
}

/* ================= CONTACT SECTION THREE ================= */
.contact-directions-section {
    background: #eff8ff;
    padding: clamp(36px, 5vw, 60px) 0 clamp(44px, 6vw, 72px);
}

.contact-directions-section>.container {
    max-width: 1500px;
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
}

.contact-directions-section h2 {
    font-family: var(--font-h1);
    font-size: clamp(28px, 2.8vw, 44px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    background: linear-gradient(90deg, #2e3c50, #425369);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: clamp(22px, 3vw, 36px);
}

.contact-directions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 40px);
    align-items: start;
}

/* No white card — just map + address directly on section bg */
.contact-direction-card {
    min-width: 0;
}

.contact-direction-map-embed {
    width: 100%;
    height: clamp(300px, 32vw, 480px);
    border: none;
    display: block;
    border-radius: 4px;
    filter: grayscale(8%);
}

.contact-direction-address {
    margin-top: 18px;
    padding-inline: 2px;
}

.contact-direction-address p {
    font-family: var(--font-p);
    font-size: clamp(16px, 1.3vw, 21px);
    line-height: 1.55;
    color: rgba(49, 89, 141, 0.85);
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

.contact-direction-address p:last-child {
    margin-bottom: 0;
    font-size: clamp(13px, 1vw, 16px);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(49, 89, 141, 0.6);
    margin-top: 4px;
}

@media (max-width: 767px) {
    .contact-directions-section {
        padding: 28px 0 40px;
    }

    .contact-directions-section>.container {
        max-width: 1500px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-directions-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-direction-map-embed {
        height: 280px;
    }

    .contact-direction-address p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .contact-directions-section {
        padding: 22px 0 32px;
    }

    .contact-directions-section h2 {
        margin-bottom: 18px;
    }

    .contact-direction-map-embed {
        height: 240px;
    }

    .contact-direction-address p {
        font-size: 16px;
        line-height: 1.4;
    }
}

/* ================= FOOTER ================= */
.site-footer {
    background: #15345B;
    padding: 80px 0 60px;
}

.site-footer-inner {
    max-width: 1500px;
}

.site-footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(220px, .8fr) minmax(420px, 1.2fr);
    gap: 0;
}

.site-footer-col {
    color: rgba(173, 197, 229, .78);
    padding: 0 30px;
}

.site-footer-col:first-child {
    padding-left: 0;
}

.site-footer-col:last-child {
    padding-right: 0;
}

.site-footer-col:not(:last-child) {
    border-right: 1px solid rgba(76, 117, 167, .36);
}

.site-footer-logo {
    width: 172px;
    height: auto;
    margin-bottom: 28px;
}

.site-footer-brand p {
    font-family: 'Acumin Variable', sans-serif !important;
    font-size: 18px !important;
    font-weight: 500;
    line-height: 1.72;
    color: rgba(173, 197, 229, .72);
    max-width: 430px;
    letter-spacing: 0 !important;
}

.site-footer-contact h3,
.site-footer-practice h3 {
    font-family: 'Acumin Variable', sans-serif;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 22px;
}

.site-footer-contact p,
.site-footer-contact address {
    font-family: 'Acumin Variable', sans-serif !important;
    font-style: normal;
    font-size: 18px !important;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(173, 197, 229, .76);
    letter-spacing: 0 !important;
}

.site-footer-contact p {
    margin-bottom: 5px;
}

.site-footer-contact p strong {
    font-weight: 500;
    color: rgba(206, 223, 245, .9);
}

.site-footer-contact address {
    margin-top: 16px;
}

.site-footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 32px;
}

.site-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-links li {
    margin-bottom: 7px;
}

.site-footer-links a {
    font-family: var(--font-p);
    font-size: 15px;
    line-height: 1.25;
    color: rgba(173, 197, 229, .76);
}

.site-footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(76, 117, 167, .35);
}

.site-footer-bottom p {
    font-family: var(--font-p);
    color: rgba(161, 187, 221, .68);
    font-size: 15px;
    line-height: 1.58;
    max-width: 900px;
}

.site-footer-copy {
    margin-top: 12px;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .site-footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer-col:not(:last-child) {
        border-right: none;
        padding-right: 0;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(76, 117, 167, .42);
    }

    .site-footer-links {
        gap: 10px 24px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 32px 0 22px;
    }

    .site-footer-logo {
        width: 150px;
        margin-bottom: 14px;
    }

    .site-footer-brand p,
    .site-footer-contact p,
    .site-footer-contact address,
    .site-footer-links a,
    .site-footer-bottom p,
    .site-footer-copy {
        font-size: 14px;
    }

    .site-footer-contact h3,
    .site-footer-practice h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .site-footer-links {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer-links li {
        margin-bottom: 8px;
    }

    .site-footer-bottom {
        margin-top: 22px;
        padding-top: 16px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 26px 0 18px;
    }

    .site-footer .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-footer-top {
        gap: 20px;
    }

    .site-footer-col:not(:last-child) {
        padding-bottom: 14px;
    }

    .site-footer-logo {
        width: 136px;
    }

    .site-footer-brand p,
    .site-footer-contact p,
    .site-footer-contact address,
    .site-footer-links a,
    .site-footer-bottom p,
    .site-footer-copy {
        font-size: 13px;
        line-height: 1.5;
    }

    .site-footer-contact h3,
    .site-footer-practice h3 {
        font-size: 16px;
    }
}