/* ================================================================
   Elite Hands — elitehands.css
   Hand-authored (no build step). Single stylesheet for the index
   and the generated facility / city / country pages.

   Palette and type are carried over from the original SCSS so the
   whole site reads as one system.
   ================================================================ */

:root {
    --coarse-wool:   #192027; /* dark hero / cta / footer background */
    --almost-black:  #072229; /* headings on light                  */
    --long-island:   #96D1FE; /* eyebrow blue / primary button      */
    --adamantine:    #4AB0FF; /* accent + links                     */
    --dun-blue:      #80B4DD; /* button hover                       */
    --veiling:       #D6EDFF;
    --orochimaru:    #D9D9D9; /* light text on dark                 */
    --mourn-snow:    #E9EAEC;
    --light-gray:    #F6F8FA; /* light section background           */
    --dark-spell:    #2F3D4D; /* muted body text                    */

    --headline-font: 'Open Sans', sans-serif;
    --body-font:     'Manrope', sans-serif;

    --header-h:      5.6875rem; /* fixed-header offset (91px)        */
    --radius:        4px;
    --max:           1240px;
    --max-large:     1420px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, img, ul, ol, li, fieldset, form, label, legend, section, article,
aside, footer, header, nav, figure, figcaption, button, input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--almost-black);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; }
:focus-visible { outline: 2px solid var(--adamantine); outline-offset: 2px; }

/* ---------- layout ---------- */
.container       { width: 100%; max-width: var(--max);       padding: 0 20px; margin: 0 auto; }
.container-large { width: 100%; max-width: var(--max-large); padding: 0 20px; margin: 0 auto; }

.main { overflow-clip-margin: content-box; }

section[id] { scroll-margin-top: var(--header-h); }

/* ---------- helpers ---------- */
.h-highlight { color: var(--adamantine); }

.eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--adamantine);
    margin-bottom: 0.75rem;
}

.h-separator {
    background-color: var(--coarse-wool);
}
.h-separator::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    background-color: var(--orochimaru);
    opacity: 0.2;
}

/* ---------- buttons ---------- */
.button {
    display: inline-flex;
    gap: 13px;
    align-items: center;
    background-color: var(--long-island);
    color: var(--almost-black);
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 36px;
    border: 1px solid transparent;
    border-radius: 100px;
    transition: background-color 0.2s linear;
}
.button:hover, .button:active { background-color: var(--dun-blue); }
.button:hover .button__arrow-wrapper { transform: rotate(45deg); }
.button__arrow-wrapper {
    display: inline-flex;
    transition: transform 0.2s linear;
}

.button--ghost {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}
.button--ghost:hover, .button--ghost:active {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}
.button--ghost .button__arrow-wrapper path { fill: #fff; }

/* ================================================================
   HEADER
   ================================================================ */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background-color: transparent;
    transition: background-color 0.3s linear, box-shadow 0.3s linear;
}
.header__content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.header__logo { color: #fff; transition: color 0.2s linear; display: block; }
.header__logo svg { display: block; height: 40px; width: auto; }

.header--scrolled {
    background-color: #fff;
    box-shadow: 0 1px 0 var(--mourn-snow);
}
.header--scrolled .header__logo { color: var(--almost-black); }
.header--scrolled .nav__link { color: var(--almost-black); }
.header--scrolled .header__burger-stripe { background-color: var(--almost-black); }

.nav {
    display: flex;
    align-items: center;
    gap: 48px;
}
.nav__link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s linear;
}
.nav__link:hover { color: var(--long-island); }
.header--scrolled .nav__link:hover { color: var(--adamantine); }

.header__burger {
    display: none;
    width: 26px;
    z-index: 110;
}
.header__burger-stripe {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    margin-bottom: 5px;
    transition: background-color 0.2s linear, transform 0.3s linear, opacity 0.1s linear;
}
.header__burger-stripe:last-child { margin-bottom: 0; }
.header__burger--active .header__burger-stripe { background-color: #fff; }
.header__burger--active .header__burger-stripe:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger--active .header__burger-stripe:nth-child(2) { opacity: 0; }
.header__burger--active .header__burger-stripe:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.responsive-nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 90px 20px;
    background-color: var(--coarse-wool);
    display: flex;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s linear, opacity 0.3s linear;
}
.responsive-nav--active { transform: translateX(0); opacity: 1; pointer-events: all; }
.responsive-nav__link { color: #fff; font-size: 1.125rem; font-weight: 500; }

@media (max-width: 920px) {
    .nav { display: none; }
    .header__burger { display: block; }
}

/* ================================================================
   HERO (home)
   ================================================================ */
.hero {
    background-color: var(--coarse-wool);
    color: #fff;
    padding: calc(var(--header-h) + 4rem) 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(closest-side, rgba(74, 176, 255, 0.14), transparent 70%);
    pointer-events: none;
}
.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.hero__headline {
    font-family: var(--headline-font);
    font-weight: 800;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}
.hero__lead {
    font-size: 1.1875rem;
    line-height: 1.65;
    color: var(--orochimaru);
    max-width: 36rem;
    margin-bottom: 2.25rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__media {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 920px) {
    .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero__media { display: none; }
}

/* ---------- stat strip ---------- */
.stats {
    background-color: var(--coarse-wool);
    border-top: 1px solid rgba(217, 217, 217, 0.12);
    padding: 2.5rem 0;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stats__num {
    font-family: var(--headline-font);
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stats__label {
    font-size: 0.875rem;
    color: var(--orochimaru);
    letter-spacing: 0.02em;
}
@media (max-width: 720px) {
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}

/* ================================================================
   SECTION SCAFFOLDING
   ================================================================ */
.section { padding: 5.5rem 0; }
.section--light { background-color: var(--light-gray); }
.section--white { background-color: #fff; }
.section--dark  { background-color: var(--coarse-wool); color: #fff; }

.section-header { max-width: 46rem; margin-bottom: 3rem; }
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header__title {
    font-family: var(--headline-font);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    color: var(--almost-black);
    margin-bottom: 1rem;
}
.section--dark .section-header__title { color: #fff; }
.section-header__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--dark-spell);
}
.section--dark .section-header__lead { color: var(--orochimaru); }

/* ---------- generic card grids ---------- */
.card-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 920px) {
    .card-grid--2, .card-grid--3 { grid-template-columns: 1fr; }
}

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.card--hover:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12); transform: translateY(-2px); }
.card__title {
    font-family: var(--headline-font);
    font-weight: 700;
    font-size: 1.1875rem;
    color: var(--almost-black);
    margin-bottom: 0.6rem;
}
.card__text { font-size: 0.9875rem; line-height: 1.65; color: var(--dark-spell); }

/* ---------- feature list (ticks) ---------- */
.feature-list { margin-top: 1rem; }
.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--dark-spell);
    margin-bottom: 0.55rem;
}
.feature-list li:last-child { margin-bottom: 0; }
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--long-island);
}

/* ================================================================
   SERVICES (what we do)
   ================================================================ */
.service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.75rem;
}
.service:last-child { margin-bottom: 0; }
.service:nth-child(even) .service__media { order: 2; }
.service__media { min-height: 320px; }
.service__media img { width: 100%; height: 100%; object-fit: cover; }
.service__body { padding: 2.75rem; }
.service__count {
    font-family: var(--headline-font);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--adamantine);
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}
.service__title {
    font-family: var(--headline-font);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--almost-black);
    margin-bottom: 0.9rem;
}
.service__text { font-size: 1rem; line-height: 1.7; color: var(--dark-spell); }

@media (max-width: 920px) {
    .service { grid-template-columns: 1fr; }
    .service:nth-child(even) .service__media { order: 0; }
    .service__media { min-height: 220px; }
    .service__body { padding: 2rem 1.5rem; }
}

/* ================================================================
   FEATURES (3-up icon row)
   ================================================================ */
.features__item { text-align: left; }
.features__icon { width: 48px; height: 48px; margin-bottom: 1.25rem; }
.features__title {
    font-family: var(--headline-font);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--almost-black);
    margin-bottom: 0.75rem;
}
.features__text { font-size: 1rem; line-height: 1.7; color: var(--dark-spell); }

/* ================================================================
   MAP (locations)
   ================================================================ */
.map { background-color: var(--coarse-wool); padding: 5.5rem 0; color: #fff; }
.map__headline {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--long-island);
    text-align: center;
    margin-bottom: 0.75rem;
}
.map__subheadline {
    font-family: var(--headline-font);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    text-align: center;
    margin-bottom: 0.75rem;
}
.map__intro {
    text-align: center;
    color: var(--orochimaru);
    max-width: 40rem;
    margin: 0 auto 1rem;
}
.map__headline-highlight { color: var(--long-island); }
.map__element { width: 100%; color: #fff; }

.map__regions { margin-bottom: 28px; }
@media (min-width: 920px) { .map__regions { display: none; } }
.map__select { display: none; }
.map__dropdown-title { font-size: 0.9375rem; margin-bottom: 8px; text-align: center; }
.map__dropdown-inner-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s;
}
.map__dropdown-inner-wrapper--active { grid-template-rows: 1fr; }
.map__dropdown { overflow: hidden; }
.map__dropdown-display, .map__dropdown-item {
    padding: 14px 20px;
    background-color: #fff;
    color: #000;
    font-size: 1rem;
    text-transform: capitalize;
    text-align: left;
    cursor: pointer;
}
.map__dropdown-display { position: relative; }
.map__dropdown-indicator {
    position: absolute;
    right: 20px;
    top: calc(50% - 3px);
    width: 12px;
    height: 12px;
    border-bottom: 2px solid var(--almost-black);
    border-right: 2px solid var(--almost-black);
    transform: rotate(45deg) translateY(-50%);
    transition: transform 0.3s linear;
}
.map__dropdown-display--active .map__dropdown-indicator { transform: rotate(-135deg) translateY(-50%); }
.map__dropdown-item { transition: background-color 0.2s linear; }
.map__dropdown-item--active, .map__dropdown-item:hover { background-color: var(--veiling); }

.map__list-wrapper { display: none; }
.map__item { display: none; }
.map__item--active { display: block; }
.map__list { padding-left: 20px; }
.map__list-item {
    margin-bottom: 16px;
    color: #fff;
    font-size: 0.9375rem;
}
.map__list-item::before {
    content: "\2022";
    color: var(--long-island);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.map__list-item a { color: inherit; }
.map__list-item a:hover { color: var(--long-island); text-decoration: underline; }

.map__root-wrapper { margin-top: 3rem; width: 100%; }
.map__root { width: 100%; margin: 0 auto; }
.map__root circle { r: 2; stroke-width: 4; }

@media (max-width: 920px) {
    .map { padding: 3.5rem 0; }
    .map__list-wrapper { display: block; }
    .map__root-wrapper { display: none; }
}

.jvm-tooltip.active {
    background-color: #292929;
    padding: 5px 10px;
    font-size: 1rem;
    border: 1px solid #cdcdcd;
}

/* ================================================================
   CTA BAND  (shared with facility pages: .facility-cta)
   ================================================================ */
.facility-cta, .cta {
    background-color: var(--coarse-wool);
    padding: 5rem 0;
    text-align: center;
    color: #fff;
}
.facility-cta__headline, .cta__headline {
    font-family: var(--headline-font);
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    margin-bottom: 0.875rem;
}
.facility-cta__sub, .cta__sub {
    font-size: 1.125rem;
    color: var(--orochimaru);
    margin-bottom: 2.5rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background-color: var(--coarse-wool); padding: 40px 0; color: #fff; }
.footer__wrapper { display: flex; justify-content: space-between; gap: 30px; }
.footer__logo { color: #fff; display: block; margin-bottom: 30px; }
.footer__logo svg { height: 44px; width: auto; display: block; }
.footer__copyright { font-size: 0.75rem; font-weight: 600; opacity: 0.6; }
.footer__copyright--responsive { display: none; margin-top: 30px; }
.footer__main-nav { display: flex; gap: 48px; justify-content: flex-end; margin-bottom: 40px; }
.footer__main-nav-link {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s linear;
}
.footer__main-nav-link--button { border: 0; }
.footer__main-nav-link:hover { color: var(--long-island); }
.footer__sub-nav { display: flex; justify-content: flex-end; gap: 32px; }
.footer__sub-nav-link { color: #fff; font-size: 0.75rem; opacity: 0.6; transition: opacity 0.3s linear; }
.footer__sub-nav-link:hover { opacity: 1; }

@media (max-width: 920px) {
    .footer__wrapper { flex-direction: column; }
    .footer__main-nav { justify-content: flex-start; gap: 32px; margin-bottom: 24px; }
    .footer__sub-nav { justify-content: flex-start; }
    .footer__copyright { display: none; }
    .footer__copyright--responsive { display: block; }
}

/* ================================================================
   MODAL + CONTACT FORM
   ================================================================ */
body.modal-open { overflow: hidden; }

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s linear;
}
.modal--active { opacity: 1; pointer-events: all; }
.modal::before {
    content: '';
    position: fixed;
    inset: 0;
    background-color: var(--almost-black);
    opacity: 0.9;
}
.modal__content-wrapper {
    position: relative;
    background-color: #fff;
    width: 100%;
    max-width: 720px;
    max-height: 100vh;
    overflow: auto;
    z-index: 30;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s linear, transform 0.3s linear;
    border-radius: var(--radius);
}
.modal--active .modal__content-wrapper { opacity: 1; transform: none; }
.modal__close-wrapper { display: flex; justify-content: flex-end; padding: 18px 18px 0; }
.modal__close { width: 18px; height: 18px; position: relative; }
.modal__close-stripe {
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 1.5px;
    background-color: var(--almost-black);
}
.modal__close-stripe:nth-child(1) { transform: rotate(45deg); }
.modal__close-stripe:nth-child(2) { transform: rotate(-45deg); }

.contact-form__title {
    text-align: center;
    font-family: var(--headline-font);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--almost-black);
    margin-bottom: 0.5rem;
}
.contact-form__subtitle {
    font-size: 0.9375rem;
    color: var(--dark-spell);
    text-align: center;
    margin-bottom: 2rem;
}
.contact-form__form { padding: 0 60px 50px; }
.contact-form__row--split { display: flex; gap: 24px; }
.contact-form__row--split .contact-form__form-item { width: 50%; }
.contact-form__form-item { display: flex; flex-direction: column; margin-bottom: 12px; }
.contact-form__form-item--checkbox { flex-direction: row; gap: 12px; margin-top: 18px; align-items: flex-start; }
.contact-form__label-wrapper { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.contact-form__label { color: #000; font-size: 0.9375rem; font-weight: 500; }
.contact-form__label--checkbox { font-size: 0.8125rem; line-height: 1.4; }
.contact-form__error-text { font-size: 0.6875rem; color: #d92020; display: none; }
.contact-form__input-text,
.contact-form__input-email,
.contact-form__input-textarea {
    background-color: var(--light-gray);
    padding: 16px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    width: 100%;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.15s linear;
}
.contact-form__input-text:focus,
.contact-form__input-email:focus,
.contact-form__input-textarea:focus { outline: none; border-color: var(--adamantine); }
.contact-form__input-textarea { resize: vertical; min-height: 120px; }
.contact-form__input-checkbox { width: 18px; height: 18px; margin: 2px 0 0; }
.contact-form__submit-wrapper { text-align: center; margin-top: 28px; }
.contact-form__form-item--invalid .contact-form__input-text,
.contact-form__form-item--invalid .contact-form__input-email,
.contact-form__form-item--invalid .contact-form__input-textarea { border-color: #d92020; color: #d92020; }
.contact-form__form-item--invalid .contact-form__input-text::placeholder,
.contact-form__form-item--invalid .contact-form__input-email::placeholder,
.contact-form__form-item--invalid .contact-form__input-textarea::placeholder { color: #d92020; }
.contact-form__form-item--invalid .contact-form__error-text { display: block; }
.contact-form__label--checkbox-invalid { color: #d92020; }

.contact__message-wrapper { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1rem 2.5rem 3rem; }
.contact__message-title { font-family: var(--headline-font); font-weight: 700; font-size: 1.875rem; color: var(--almost-black); margin-bottom: 1rem; }
.contact__message-text { font-size: 1.0625rem; color: var(--dark-spell); margin-bottom: 2rem; }

@media (max-width: 600px) {
    .contact-form__form { padding: 0 24px 40px; }
    .contact-form__row--split { flex-direction: column; gap: 0; }
    .contact-form__row--split .contact-form__form-item { width: 100%; }
}

/* ================================================================
   FACILITY / CITY / COUNTRY PAGES (generated by tools/generate.php)
   Kept here so the whole site shares one stylesheet.
   ================================================================ */
.facility-breadcrumb { padding: calc(1.25rem + var(--header-h)) 0 1.25rem; background: var(--coarse-wool); }
.facility-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0 0.5rem; font-size: 0.875rem; color: var(--orochimaru); }
.facility-breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; color: var(--dun-blue); }
.facility-breadcrumb a { color: var(--long-island); }
.facility-breadcrumb a:hover { text-decoration: underline; }

.city-hero { background: var(--coarse-wool); padding: calc(3rem + var(--header-h)) 0 4rem; }
.facility-hero { background: var(--coarse-wool); padding: 3rem 0 4rem; }
.city-hero__label, .facility-hero__label {
    font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--long-island); margin-bottom: 0.75rem;
}
.city-hero__label a { color: inherit; }
.city-hero__label a:hover { text-decoration: underline; }
.city-hero__name, .facility-hero__name {
    font-family: var(--headline-font); font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 0.5rem;
}
.city-hero__count, .facility-hero__operator { font-size: 1.125rem; color: var(--orochimaru); }

.city-facilities { padding: 4rem 0; background: var(--light-gray); }
.city-facilities h2 { font-family: var(--headline-font); font-size: 1.375rem; font-weight: 700; color: var(--almost-black); margin-bottom: 2rem; }
.city-facilities__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }

.facility-card {
    background: #fff; border-radius: var(--radius); padding: 1.5rem;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06); display: block; color: inherit;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.facility-card:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12); transform: translateY(-2px); }
.facility-card__name { font-family: var(--headline-font); font-size: 1rem; font-weight: 700; color: var(--almost-black); margin-bottom: 0.3rem; line-height: 1.3; }
.facility-card__operator, .facility-card__address { font-size: 0.875rem; color: var(--dark-spell); margin-bottom: 0.6rem; }
.facility-card__address { margin-bottom: 1rem; }
.facility-card__link { font-size: 0.875rem; color: var(--adamantine); }

.facility-detail { padding: 4rem 0; background: var(--light-gray); }
.facility-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.facility-detail__info h2 { font-family: var(--headline-font); font-size: 1.375rem; font-weight: 700; color: var(--almost-black); margin-bottom: 1.5rem; }
.facility-detail__field { margin-bottom: 1.25rem; }
.facility-detail__field-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark-spell); margin-bottom: 0.25rem; }
.facility-detail__field-value { font-size: 1rem; color: var(--almost-black); }
.facility-detail__field-value a { color: var(--adamantine); word-break: break-all; }
.facility-detail__field-value a:hover { text-decoration: underline; }

.city-map-section { padding: 4rem 0; background: #fff; }
.city-map-section h2 { font-family: var(--headline-font); font-size: 1.375rem; font-weight: 700; color: var(--almost-black); margin-bottom: 1.5rem; }
.city-map, .facility-map {
    height: 460px; border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.facility-map { height: 420px; }
.city-map .leaflet-tile-pane, .facility-map .leaflet-tile-pane { filter: grayscale(100%) brightness(1.05); }

@media (max-width: 768px) {
    .facility-detail__grid { grid-template-columns: 1fr; }
    .city-map { height: 320px; }
    .facility-map { height: 300px; }
}
