:root {
    color-scheme: dark;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
}

.section-pad {
    padding-block: clamp(4.5rem, 8vw, 7rem);
}

.page-hero {
    padding-top: 9.5rem;
    padding-bottom: clamp(4rem, 8vw, 7rem);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .25), #050505 100%),
        radial-gradient(circle at 16% 20%, rgba(245, 165, 36, .2), transparent 32%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
    color: #f5a524;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 2rem;
    height: 2px;
    background: #f5a524;
}

.section-title {
    max-width: 56rem;
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    line-height: 1.02;
    font-weight: 900;
}

.glass-panel {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .5rem;
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
    backdrop-filter: blur(18px);
}

.feature-card,
.service-card,
.gallery-item {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035));
    box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.feature-card {
    padding: 1.5rem;
}

.service-card {
    overflow: hidden;
}

.gallery-item {
    display: block;
    width: 100%;
    padding: .75rem;
}

.feature-card:hover,
.service-card:hover,
.gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 165, 36, .45);
    background: linear-gradient(180deg, rgba(245, 165, 36, .1), rgba(255, 255, 255, .04));
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    padding: .7rem 1rem;
    color: #d4d4d8;
    font-size: .85rem;
    font-weight: 800;
    transition: all .2s ease;
}

.filter-chip:hover,
.filter-chip-active {
    border-color: #f5a524;
    background: #f5a524;
    color: #050505;
}

.field {
    display: grid;
    gap: .55rem;
}

.field span {
    color: #f5a524;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .5rem;
    background: rgba(0, 0, 0, .42);
    padding: .9rem 1rem;
    color: #fff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #f5a524;
    background: rgba(0, 0, 0, .62);
    box-shadow: 0 0 0 4px rgba(245, 165, 36, .12);
}

.field ::placeholder {
    color: #71717a;
}

.time-slot {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .5rem;
    background: rgba(0, 0, 0, .45);
    padding: .9rem .75rem;
    color: #fff;
    font-weight: 900;
    transition: all .2s ease;
}

.time-slot:hover,
.time-slot-active {
    border-color: #f5a524;
    background: #f5a524;
    color: #050505;
}

.leaflet-container {
    background: #111214;
    font-family: inherit;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: #050505;
    color: #fff;
}

.mobile-menu.is-open {
    display: block;
}

@media (max-width: 420px) {
    .section-title {
        font-size: 2.15rem;
    }
}
