:root {
    --hndl-navy: #08213b;
    --hndl-ink: #102942;
    --hndl-gold: #c89a45;
    --hndl-cream: #f6f2e9;
    --hndl-line: #dfd8ca;
    --hndl-white: #fff;
}
.hndl-directory {
    font-family: inherit;
    color: var(--hndl-ink);
    background: transparent;
    margin: 0 calc(50% - 50vw);
    padding-bottom: 0;
}
.hndl-directory * {
    box-sizing: border-box;
}
.hndl-hero {
    min-height: 330px;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
    background: var(--hndl-navy);
    color: #fff;
    overflow: hidden;
}
.hndl-hero__copy {
    padding: 70px clamp(28px, 7vw, 110px);
    align-self: center;
}
.hndl-kicker {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--hndl-gold);
}
.hndl-hero h1,
.hndl-map-section h2,
.hndl-cta h2,
.hndl-single h1,
.hndl-single h2 {
    font-family: Georgia, "Times New Roman", serif;
}
.hndl-hero h1 {
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1;
    margin: 0 0 18px;
    font-weight: 500;
}
.hndl-hero p:not(.hndl-kicker) {
    font-size: 17px;
    line-height: 1.65;
    max-width: 700px;
    margin: 0;
}
.hndl-hero__mark {
    position: relative;
    background: linear-gradient(135deg, #173d62, #0c2b49);
    display: grid;
    place-items: center;
    font-family: Georgia, serif;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.09);
}
.hndl-hero__mark:before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transform: rotate(45deg);
}
.hndl-ornament {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0 20px;
    color: var(--hndl-gold);
}
.hndl-ornament span {
    width: 55px;
    height: 1px;
    background: var(--hndl-gold);
}
.hndl-ornament b {
    font-size: 10px;
}
.hndl-filters {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.hndl-filters button {
    border: 0;
    background: transparent;
    padding: 12px 22px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
    font-size: 12px;
    color: var(--hndl-navy);
    cursor: pointer;
    border-radius: 3px;
}
.hndl-filters button.is-active,
.hndl-filters button:hover {
    background: var(--hndl-navy);
    color: #fff;
}
.hndl-grid:before {
    content: none;
}
.hndl-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 24px 70px;
    display: grid;
    gap: 20px;
}
.hndl-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.hndl-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hndl-grid__item.is-hidden {
    display: none;
}
.hndl-card {
    background: #fff;
    border: 1px solid #e7e2d9;
    border-radius: 7px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 22px rgba(8, 33, 59, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.hndl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(8, 33, 59, 0.12);
}
.hndl-card__media {
    height: 165px;
    background: #faf9f5;
    display: grid;
    place-items: center;
    padding: 18px;
    border-bottom: 1px solid #eee9df;
}
.hndl-card__crest {
    max-width: 140px;
    max-height: 135px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.hndl-card__crest--placeholder {
    width: 120px;
    height: 120px;
    border: 2px solid var(--hndl-gold);
    border-radius: 50%;
    color: var(--hndl-gold);
    font:
        48px Georgia,
        serif;
    display: grid;
    place-items: center;
}
.hndl-card__body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hndl-card__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 10px;
    color: #7b7f84;
    font-weight: 700;
    text-align: center;
}
.hndl-card__title {
    text-align: center;
    font:
        700 23px/1.08 Georgia,
        "Times New Roman",
        serif;
    color: var(--hndl-navy);
    margin: 7px 0 0;
}
.hndl-rule {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: 15px 0;
    color: var(--hndl-gold);
    font-size: 8px;
}
.hndl-rule:before,
.hndl-rule:after {
    content: "";
    width: 60px;
    height: 1px;
    background: var(--hndl-gold);
    opacity: 0.55;
}
.hndl-detail {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.45;
    margin: 8px 0;
}
.hndl-icon {
    width: 17px;
    color: var(--hndl-gold);
    font-weight: 700;
    text-align: center;
}
.hndl-detail--address {
    margin-bottom: 18px;
}
.hndl-button,
.hndl-outline-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    padding: 13px 16px;
    border-radius: 3px;
    transition: 0.2s;
}
.hndl-button {
    margin-top: auto;
    background: var(--hndl-navy);
    color: #fff !important;
}
.hndl-button:hover {
    background: #14395d;
    color: #fff !important;
}
.hndl-button--gold {
    background: var(--hndl-gold);
    color: #fff !important;
}
.hndl-outline-button {
    border: 1px solid var(--hndl-navy);
    color: var(--hndl-navy) !important;
    background: transparent;
}
.hndl-outline-button:hover {
    background: var(--hndl-navy);
    color: #fff !important;
}
.hndl-map-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 420px;
    background: #f0eee7;
}
.hndl-map-copy {
    padding: 65px clamp(28px, 6vw, 90px);
    align-self: center;
}
.hndl-map-section h2 {
    font-size: 42px;
    line-height: 1.08;
    margin: 0;
    color: var(--hndl-navy);
    font-weight: 500;
}
.hndl-map-copy p:not(.hndl-kicker) {
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 25px;
}
.hndl-map-placeholder {
    position: relative;
    min-height: 420px;
    background-color: #e6e8e4;
    background-image: linear-gradient(
            30deg,
            transparent 48%,
            rgba(8, 33, 59, 0.07) 49%,
            rgba(8, 33, 59, 0.07) 50%,
            transparent 51%
        ),
        linear-gradient(120deg, transparent 48%, rgba(8, 33, 59, 0.06) 49%, rgba(8, 33, 59, 0.06) 50%, transparent 51%);
    background-size:
        110px 80px,
        150px 120px;
}
.hndl-map-placeholder:before {
    content: "";
    position: absolute;
    inset: 15% 12%;
    border: 1px solid rgba(8, 33, 59, 0.15);
    transform: rotate(-12deg);
    border-radius: 45%;
}
.hndl-map-label {
    position: absolute;
    background: var(--hndl-navy);
    color: #fff;
    padding: 7px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.hndl-map-label:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--hndl-navy);
    transform: rotate(45deg);
    left: calc(50% - 5px);
    bottom: -4px;
    z-index: -1;
}
.hndl-map-label--1 {
    left: 26%;
    top: 23%;
}
.hndl-map-label--2 {
    right: 17%;
    top: 31%;
}
.hndl-map-label--3 {
    right: 20%;
    top: 56%;
}
.hndl-map-label--4 {
    left: 45%;
    bottom: 25%;
}
.hndl-map-label--5 {
    left: 32%;
    bottom: 12%;
}
.hndl-cta {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 25px;
    align-items: center;
    background: var(--hndl-navy);
    color: #fff;
    padding: 42px clamp(28px, 7vw, 110px);
}
.hndl-cta h2 {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 7px;
}
.hndl-cta p:not(.hndl-kicker) {
    margin: 0;
    max-width: 650px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.8);
}
.hndl-cta__symbol {
    width: 60px;
    height: 60px;
    border: 1px solid var(--hndl-gold);
    display: grid;
    place-items: center;
    color: var(--hndl-gold);
    font-size: 22px;
    transform: rotate(45deg);
}
.hndl-cta__symbol::first-letter {
    transform: rotate(-45deg);
}
.hndl-single {
    background: #fbfaf7;
    margin: 0 calc(50% - 50vw);
    padding: 70px 24px;
}
.hndl-single__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.hndl-back {
    display: inline-block;
    margin-bottom: 40px;
    color: var(--hndl-navy);
    text-decoration: none;
    font-weight: 700;
}
.hndl-single__header {
    display: flex;
    grid-template-columns: 260px 1fr;
    gap: 55px;
    align-items: center;
    padding-bottom: 55px;
    border-bottom: 1px solid var(--hndl-line);
}
.hndl-single__crest {
    height: 240px;
    display: grid;
    place-items: center;
}
.hndl-single__crest img {
    max-width: 230px;
    max-height: 230px;
    object-fit: contain;
}
.hndl-single h1 {
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--hndl-navy);
    margin: 0;
}
.hndl-single__lead {
    font-size: 19px;
    line-height: 1.6;
}
.hndl-single__columns {
    display: flex;
    grid-template-columns: 1fr 360px;
    gap: 65px;
    padding-top: 55px;
}
.hndl-single h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--hndl-navy);
}
.hndl-single__columns section {
    font-size: 17px;
    line-height: 1.75;
}
.hndl-single__info {
    background: #fff;
    border: 1px solid var(--hndl-line);
    padding: 28px;
    border-radius: 6px;
    height: max-content;
}
.hndl-single__info div {
    padding: 14px 0;
    border-bottom: 1px solid #eee9df;
}
.hndl-single__info div:last-of-type {
    margin-bottom: 20px;
}
.hndl-single__info strong,
.hndl-single__info span {
    display: block;
}
.hndl-single__info strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #777;
    margin-bottom: 4px;
}
.hndl-single__info .hndl-button,
.hndl-single__info .hndl-outline-button {
    width: 100%;
    margin-top: 10px;
}
@media (max-width: 900px) {
    .hndl-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hndl-hero {
        grid-template-columns: 1fr;
    }
    .hndl-hero__mark {
        display: none;
    }
    .hndl-map-section {
        grid-template-columns: 1fr;
    }
    .hndl-map-placeholder {
        min-height: 320px;
    }
    .hndl-cta {
        grid-template-columns: 1fr;
    }
    .hndl-cta__symbol {
        display: none;
    }
    .hndl-single__header {
        display: block;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    .hndl-single .hndl-ornament {
        justify-content: center;
    }
    .hndl-single__columns {
        display: block;
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .hndl-grid,
    .hndl-grid--2,
    .hndl-grid--3 {
        grid-template-columns: 1fr;
        padding-left: 16px;
        padding-right: 16px;
    }
    .hndl-hero__copy {
        padding: 50px 24px;
    }
    .hndl-card__media {
        height: 145px;
    }
    .hndl-map-copy {
        padding: 50px 24px;
    }
    .hndl-map-section h2 {
        font-size: 34px;
    }
    .hndl-cta {
        padding: 40px 24px;
    }
    .hndl-filters {
        padding-left: 12px;
        padding-right: 12px;
    }
    .hndl-filters button {
        padding: 10px 13px;
    }
}
