.v-page-head {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #8d9caf 0%, #74879d 52%, #7f91a6 100%);
    color: var(--v-color-white);
    padding-block: clamp(18px, 2.2vw, 30px);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.2), inset 0 -10px 20px rgba(18, 33, 51, 0.16);
}

.v-page-head::before,
.v-page-head::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.v-page-head::before {
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 42%),
        radial-gradient(circle at 82% 12%, rgba(213, 177, 113, 0.22) 0%, rgba(213, 177, 113, 0) 46%);
}

.v-page-head::after {
    left: 50%;
    bottom: 8px;
    width: min(220px, 36vw);
    height: 2px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(213, 177, 113, 0) 0%, rgba(213, 177, 113, 0.95) 48%, rgba(213, 177, 113, 0) 100%);
    box-shadow: 0 0 10px rgba(213, 177, 113, 0.34);
}

.v-page-head .v-container {
    position: relative;
    z-index: 1;
}

.v-page-head h1 {
    font-family: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.03em;
    text-transform: none;
    text-align: center;
    text-shadow: 0 10px 24px rgba(12, 24, 39, 0.35);
}

.v-page-head p {
    margin-top: 6px;
    max-width: 760px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.92;
}

.v-listing-section .v-card {
    min-height: 100%;
}

.v-listing-toolbar {
    margin-bottom: var(--v-space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--v-space-3);
}

.v-listing-toolbar__meta {
    color: var(--v-color-muted);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.v-listing-toolbar__controls {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
}

.v-mini-field {
    border: 1px solid var(--v-color-line);
    border-radius: var(--v-radius-sm);
    min-height: 40px;
    padding: 0 12px;
    background: var(--v-color-surface);
    color: var(--v-color-text);
}

.v-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--v-space-4);
}

.v-detail-aside {
    position: sticky;
    top: 20px;
    align-self: start;
}

.v-content-stack {
    display: grid;
    gap: var(--v-space-4);
}

.v-content-stack h2 {
    font-size: clamp(28px, 3.6vw, 38px);
    letter-spacing: 0.05em;
}

.v-content-stack p {
    color: var(--v-color-muted);
}

.v-doc-list {
    list-style: none;
    display: grid;
    gap: var(--v-space-3);
}

.v-doc-list a {
    text-decoration: none;
}

.v-doc-item {
    border: 1px solid var(--v-color-line);
    border-radius: var(--v-radius-md);
    background: var(--v-color-surface);
    padding: var(--v-space-4);
    box-shadow: var(--v-shadow-soft);
}

.v-doc-item h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.v-doc-item p {
    color: var(--v-color-muted);
}

.v-contacts-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--v-space-4);
}

.v-contact-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.v-contact-list strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.v-contact-list span,
.v-contact-list a {
    color: var(--v-color-muted);
    text-decoration: none;
}

.v-map-frame {
    width: 100%;
    min-height: 360px;
    border: 1px solid var(--v-color-line);
    border-radius: var(--v-radius-md);
    background:
        linear-gradient(135deg, rgba(134, 149, 167, 0.14), rgba(255, 255, 255, 0.9));
    display: grid;
    place-items: center;
    color: var(--v-color-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

@media (max-width: 1100px) {
    .v-detail-layout {
        grid-template-columns: 1fr;
    }

    .v-detail-aside {
        position: static;
    }

    .v-contacts-grid {
        grid-template-columns: 1fr;
    }
}
