:root {
    --hmj-orange: #de6828;
    --hmj-gray: #868686;
    --hmj-dark: #232323;
    --hmj-light: #f7f7f7;
    --hmj-border: #e6e6e6;
}

html, body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--hmj-dark);
    background: #fff;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .brand-text {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 700;
}

a {
    color: #de6828;
}

a:hover,
a:focus {
    color: #de6828;
}

.prose a,
.entry-content a,
.content a {
    color: #de6828;
    text-decoration-color: rgba(222, 104, 40, 0.45);
}

.prose a:hover,
.entry-content a:hover,
.content a:hover {
    color: #de6828;
    text-decoration-color: #de6828;
}

.site-header {
    background: #fff;
}

.topbar {
    background: #fff;
}

.site-logo {
    max-height: 64px;
    width: auto;
}

.brand-text {
    font-size: 1.35rem;
    color: var(--hmj-dark);
}

.phone-link {
    color: var(--hmj-dark);
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover,
.phone-link:focus {
    color: var(--hmj-orange);
}

.btn-brand {
    background: var(--hmj-orange);
    color: #fff;
    border-color: var(--hmj-orange);
    font-weight: 600;
    border-radius: 999px;
    padding: .75rem 1.25rem;
}

.btn-brand:hover,
.btn-brand:focus {
    background: #c7591d;
    border-color: #c7591d;
    color: #fff;
}

.navbar .nav-link {
    font-weight: 600;
    color: var(--hmj-dark);
    position: relative;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--hmj-orange);
}

.hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #111;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 5rem 0;
}

.hero-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .875rem;
    color: #ffd5c2;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.05;
    max-width: 820px;
}

.hero p {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    max-width: 700px;
    color: rgba(255,255,255,.92);
}

.section-pad {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 1rem;
}

.card-service {
    border: 1px solid var(--hmj-border);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    height: 100%;
}

.card-service img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-service .card-body {
    padding: 1.5rem;
}

.page-hero {
    background: linear-gradient(135deg, #fff 0%, #f4f4f4 100%);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--hmj-border);
}

.content-image {
    width: 100%;
    border-radius: 1.5rem;
    object-fit: cover;
    min-height: 320px;
    max-height: 520px;
}

.prose p,
.prose li {
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-card {
    border: 1px solid var(--hmj-border);
    border-radius: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.site-footer {
    background: var(--hmj-dark);
    color: #fff;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.form-control,
.form-select {
    border-radius: .9rem;
    padding: .9rem 1rem;
}

.alert {
    border-radius: 1rem;
}

.hp-wrap,
.trap-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 991.98px) {
    .hero {
        min-height: 62vh;
    }

    .site-logo {
        max-height: 52px;
    }
}

.site-logo {
    max-height: 56px;
    width: auto;
    display: block;
}

.brand-text {
    font-weight: 700;
    color: #1f1f1f;
    font-size: 1.125rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #1f1f1f;
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    color: #de6828;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #f5f5f5;
    color: #1f1f1f;
    border: 1px solid rgba(0,0,0,.08);
    transition: all .2s ease;
}

.icon-btn:hover {
    background: #de6828;
    color: #fff;
    border-color: #de6828;
}

.icon-btn i {
    font-size: 1.1rem;
    line-height: 1;
}

.custom-toggler {
    border: 1px solid rgba(0,0,0,.08);
    background: #f5f5f5;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    box-shadow: none !important;
}

.custom-toggler:hover {
    background: #de6828;
    border-color: #de6828;
}

.custom-toggler {
    border: 1px solid rgba(0,0,0,.08);
    background: #f5f5f5;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-toggler:hover {
    background: #de6828;
    border-color: #de6828;
}

.custom-toggler i {
    font-size: 1.35rem;
    line-height: 1;
    color: #1f1f1f;
}

.custom-toggler:hover i,
.custom-toggler[aria-expanded="true"] i {
    color: #fff;
}

.navbar .nav-link {
    font-weight: 600;
    color: #1f1f1f;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #de6828;
}

@media (max-width: 991.98px) {
    .site-logo {
        max-height: 46px;
    }

    .brand {
        min-width: 0;
        max-width: calc(100% - 170px);
    }

    .navbar-collapse {
        border-top: 1px solid rgba(0,0,0,.08);
    }

    .navbar .nav-link {
        padding-top: .85rem;
        padding-bottom: .85rem;
    }
}

.site-logo {
    max-height: 56px;
    width: auto;
    display: block;
}

.brand-text {
    font-weight: 700;
    color: #1f1f1f;
    font-size: 1.125rem;
}

.desktop-nav .nav-link {
    font-weight: 600;
    color: #1f1f1f;
    padding: .5rem .85rem;
    white-space: nowrap;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active,
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #de6828;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #1f1f1f;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.phone-link:hover {
    color: #de6828;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #f5f5f5;
    color: #1f1f1f;
    border: 1px solid rgba(0,0,0,.08);
    transition: all .2s ease;
}

.icon-btn:hover {
    background: #de6828;
    color: #fff;
    border-color: #de6828;
}

.icon-btn i {
    font-size: 1.1rem;
    line-height: 1;
}

.custom-toggler {
    border: 1px solid rgba(0,0,0,.08);
    background: #f5f5f5;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-toggler:hover {
    background: #de6828;
    border-color: #de6828;
}

.custom-toggler i {
    font-size: 1.35rem;
    line-height: 1;
    color: #1f1f1f;
}

.custom-toggler:hover i,
.custom-toggler[aria-expanded="true"] i {
    color: #fff;
}

.navbar .nav-link {
    font-weight: 600;
    color: #1f1f1f;
}

@media (max-width: 991.98px) {
    .site-logo {
        max-height: 46px;
    }

    .brand {
        min-width: 0;
        max-width: calc(100% - 170px);
        overflow: hidden;
    }

    .navbar-collapse {
        border-top: 1px solid rgba(0,0,0,.08);
    }

    .navbar .nav-link {
        padding-top: .85rem;
        padding-bottom: .85rem;
    }
}