:root {
    --bg: #f3f4f5;
    --surface: #ffffff;
    --surface-soft: #f8f8f8;
    --text: #101113;
    --muted: #545861;
    --line: #dfe2e6;
    --line-strong: #cfd4da;
    --shadow-soft: 0 12px 30px rgba(16, 17, 19, 0.08);
    --shadow-card: 0 16px 40px rgba(16, 17, 19, 0.09);
    --radius-lg: 22px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --header-height: 88px;
    --section-space-y: 20px;
}

* { box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
@supports (overflow: clip) {
    html, body {
        overflow-x: clip;
    }
}
body {
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 85% -10%, #ffffff 0%, #f6f7f8 42%, #eef0f2 100%);
    color: var(--text);
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { width: min(1160px, 92vw); margin-inline: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    overflow: visible;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
}

.logo-link { display: inline-flex; align-items: center; }
.logo { width: 195px; height: auto; display: block; }

.menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    gap: 6px;
    border: 1px solid var(--line-strong);
    border-radius: 11px;
    background: #fff;
}

.menu-toggle span { display: block; height: 2px; background: #0e0e10; }

.site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    z-index: 35;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.menu-list, .submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item { position: relative; }

.menu-item > a {
    display: block;
    padding: 15px 52px 15px 20px;
    font-weight: 600;
    border-bottom: 1px solid #f0f1f3;
}

.submenu {
    display: none;
    background: #fafafa;
}

.menu-item.open > .submenu { display: block; }
.submenu .menu-item > a { padding-left: 38px; }

.submenu-toggle {
    position: absolute;
    top: 7px;
    right: 8px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    border-radius: 10px;
}

.submenu-toggle span {
    display: block;
    width: 11px;
    height: 11px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    margin: auto;
}

body.menu-open {
    overflow: hidden;
}

.section { padding: var(--section-space-y) 0; }
.section.muted { background: linear-gradient(180deg, #f7f8f9, #f2f3f5); }
.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}
.section-head h2 {
    margin: 0;
    font-size: clamp(1.3rem, 2.3vw, 2rem);
    letter-spacing: -0.01em;
}
.section-head a {
    color: #0f1115;
    font-weight: 700;
    border-bottom: 1px solid #0f1115;
}

.section-subtitle {
    margin: -6px 0 18px;
    color: #5a6270;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 880px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #d8dce1;
    background: #fff;
    color: #2f353d;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
}

.hero-home {
    padding: 34px 0 32px;
}

.hero-home-media {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    min-height: 440px;
    display: flex;
    align-items: flex-end;
    padding: 68px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-home-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-home-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-home-media .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 12, 0.35), rgba(8, 10, 12, 0.72));
    z-index: 1;
}

.hero-home-media .eyebrow {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
}

.hero-home-media h1,
.hero-home-media .hero-subtitle {
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-home-grid {
    display: grid;
    gap: 18px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-main {
    max-width: 760px;
}

.hero-home h1 {
    margin: 14px 0 12px;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    max-width: 760px;
}

.hero-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.02rem, 2vw, 1.18rem);
    max-width: 760px;
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-panel {
    background: linear-gradient(165deg, #101216 0%, #1c2129 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-card);
    align-self: center;
}

.hero-panel-label {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .72rem;
    opacity: .78;
}

.hero-panel ul { margin: 0; padding-left: 18px; }
.hero-panel li { margin-bottom: 7px; }

.hero-page {
    padding: 40px 0 18px;
}
.hero-page h1 {
    margin: 14px 0 6px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
}

.breadcrumb-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.breadcrumbs {
    padding: 12px 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    color: #616876;
    font-size: 0.9rem;
    line-height: 1.4;
}

.breadcrumb-list li + li::before {
    content: "/";
    margin-right: 10px;
    color: #a1a8b5;
}

.breadcrumb-list a {
    color: #404754;
    border-bottom: 1px solid transparent;
}

.breadcrumb-list a:hover {
    border-bottom-color: #404754;
}

.breadcrumb-list .current {
    color: #111318;
    font-weight: 700;
}

.category-grid,
.service-grid,
.gallery-grid,
.location-grid {
    display: grid;
    gap: 14px;
}

.category-grid { grid-template-columns: 1fr; }
.service-grid { grid-template-columns: 1fr; }
.gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.location-grid { grid-template-columns: 1fr; }

.category-card,
.service-card,
.content-card,
.gallery-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.category-card,
.service-card,
.content-card {
    padding: 20px;
}

.category-card h3,
.service-card h3 {
    margin: 0 0 8px;
    font-size: 1.14rem;
    line-height: 1.3;
}

.category-card p,
.service-card p {
    margin: 0;
    color: var(--muted);
}

.category-card:hover,
.service-card:hover {
    border-color: #c5ccd4;
    transform: translateY(-2px);
    transition: .22s ease;
}

.service-kicker {
    margin: 0 0 8px;
    color: #6b7280;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}

.service-card a {
    display: inline-block;
    margin-top: 14px;
    font-weight: 700;
    border-bottom: 1px solid #111;
}

.service-card {
    overflow: hidden;
    padding: 0;
}

.service-card > *:not(.service-card-media) {
    padding-inline: 18px;
}

.service-card .service-kicker {
    padding-top: 14px;
}

.service-card h3 {
    padding-top: 2px;
}

.service-card p {
    padding-bottom: 4px;
}

.service-card a {
    margin: 0 18px 16px;
    width: fit-content;
}

.service-card-media {
    margin: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid #e7eaee;
    background: #eceff2;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.service-card:hover .service-card-media img {
    transform: scale(1.04);
}

.service-card-minimal {
    padding: 0;
    display: block;
}

.service-card.service-card-minimal > a {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    color: inherit;
    margin: 0;
    padding: 0;
    border: 0;
    text-decoration: none;
}

.service-card-minimal h3 {
    margin: 0;
    padding: 16px 18px 18px;
    font-size: 1.28rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    min-height: 84px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-minimal .service-card-media {
    margin: 0;
    border-bottom: 1px solid #e7eaee;
}

.home-services-by-category {
    display: grid;
    gap: 18px;
}

.home-category-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.home-category-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.home-category-head h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
    line-height: 1.25;
}

.home-category-head p {
    margin: 0;
    color: #566071;
}

.home-category-head a {
    white-space: nowrap;
    border: 1px solid #cfd7e2;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: .88rem;
}

.home-category-head a:hover {
    background: #f4f7fa;
}

.section-related .section-head {
    margin-bottom: 14px;
}

.hierarchy-section .section-head {
    margin-bottom: 16px;
}

.hierarchy-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

.hierarchy-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform .22s ease, border-color .22s ease;
}

.hierarchy-card:hover {
    transform: translateY(-2px);
    border-color: #c7ced6;
}

.hierarchy-card > a {
    display: grid;
    grid-template-rows: auto 1fr;
    color: inherit;
    text-decoration: none;
}

.hierarchy-media {
    margin: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eceff2;
    border-bottom: 1px solid #e6eaf0;
}

.hierarchy-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .32s ease;
}

.hierarchy-card:hover .hierarchy-media img {
    transform: scale(1.03);
}

.hierarchy-body {
    padding: 14px 16px 16px;
}

.hierarchy-body h3 {
    margin: 0 0 8px;
    font-size: 1.13rem;
    line-height: 1.3;
}

.hierarchy-body p {
    margin: 0;
    color: #565e6d;
    font-size: .97rem;
    line-height: 1.5;
}

.related-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

.related-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, border-color .2s ease;
}

.related-card:hover {
    transform: translateY(-2px);
    border-color: #c7ced6;
}

.related-kicker {
    margin: 0 0 6px;
    color: #5f6978;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
}

.related-card h3 {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.3;
}

.related-card h3 a {
    text-decoration: none;
    border: 0;
}

.gallery-item {
    overflow: hidden;
    padding: 0;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.gallery-open {
    border: 0;
    padding: 0;
    display: block;
    width: 100%;
    background: transparent;
    cursor: zoom-in;
}

.gallery-item h3 {
    margin: 0;
    padding: 12px 14px 14px;
    font-size: .94rem;
}

.instagram-feed-wrap {
    overflow: hidden;
}

.instagram-feed-wrap iframe {
    width: 100%;
    min-height: 520px;
    border: 0;
    display: block;
}

.instagram-cta-card {
    margin-top: 14px;
    margin-bottom: 18px;
    padding: 16px 18px;
    border: 1px solid #d8dde4;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #f7f9fb 100%);
    box-shadow: 0 10px 24px rgba(16, 17, 19, 0.06);
}

.instagram-cta-eyebrow {
    margin: 0 0 8px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #5f6876;
}

.instagram-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #161a20;
    border: 1px solid #cfd6df;
    border-radius: 999px;
    padding: 10px 14px;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.instagram-cta-link:hover {
    background: #edf2f7;
    border-color: #bbc5d2;
    transform: translateY(-1px);
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
}

.gallery-modal.open {
    display: block;
}

.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 12, 0.72);
}

.gallery-modal-content {
    position: relative;
    width: min(1080px, 92vw);
    margin: 5vh auto 0;
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.gallery-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid #d7dce2;
    background: #fff;
    color: #111;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.gallery-modal-image {
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 10px;
    background: #f3f4f6;
}

.gallery-modal-title {
    margin: 10px 0 0;
    color: #394150;
    font-weight: 600;
}

body.modal-open {
    overflow: hidden;
}

.full-width-card { grid-column: 1 / -1; }
.location-card h3 { margin: 0 0 8px; }
.location-card a {
    display: inline-block;
    margin-top: 14px;
    font-weight: 700;
    border-bottom: 1px solid #111;
}
.map-card {
    padding: 0;
    overflow: hidden;
}
.map-card iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.cta-band { padding-top: 8px; }

.cta-grid {
    display: grid;
    gap: 14px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.cta-grid h2 { margin: 0 0 8px; }
.cta-grid p { margin: 0; color: var(--muted); }

.form-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

.form-grid label {
    display: grid;
    gap: 6px;
    font-weight: 600;
    color: #2b3038;
    font-size: .95rem;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
    width: 100%;
    border: 1px solid #d3d8de;
    border-radius: var(--radius-sm);
    padding: 12px;
    font: inherit;
    background: #fff;
    color: #14171c;
}

.form-grid .full { grid-column: 1 / -1; }

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 11px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.btn-primary {
    border: 1px solid #111;
    background: #111;
    color: #fff;
}

.btn-outline {
    border: 1px solid #c5ccd4;
    background: #fff;
    color: #161a20;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-1px);
}

.hero-actions.light .btn-primary.light {
    border-color: rgba(255, 255, 255, 0.22);
    background: #ffffff;
    color: #111318;
}

.hero-actions.light .btn-outline.light {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    backdrop-filter: blur(4px);
}

.alert { border-radius: 10px; padding: 11px 14px; margin: 10px 0 18px; }
.alert.success { background: #eefcf2; color: #0f5132; border: 1px solid #caefd5; }
.alert.error { background: #fff3f4; color: #842029; border: 1px solid #f4ccd1; }

.text-content { white-space: normal; }
.text-content h2,
.text-content h3,
.text-content h4 { line-height: 1.25; margin-top: 1.2em; }
.text-content p { margin: 0 0 1em; }
.text-content img { max-width: 100%; height: auto; border-radius: 14px; display: block; }
.text-content iframe { width: 100%; min-height: 340px; border: 0; border-radius: 14px; }
.text-content ul, .text-content ol { padding-left: 1.2rem; }
.text-content a { text-decoration: underline; }
.text-content mark { background: transparent; color: inherit; padding: 0; }
.text-content .wp-block-columns,
.text-content .legacy-columns { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin: 18px 0; }
.text-content .wp-block-column,
.text-content .legacy-column { min-width: 0; }
.text-content .legacy-image-block {
    width: min(100%, 900px);
    margin: 20px auto;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid #dfe5ec;
    background: #fff;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.10);
}
.text-content .legacy-image-block img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: 12px;
    margin-inline: auto;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.13);
    background: #f1f4f7;
}
.text-content .legacy-columns .legacy-image-block {
    width: 100%;
    margin: 0;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
.text-content .legacy-columns .legacy-image-block img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 88px;
    object-fit: contain;
    background: #f5f7fa;
}

.text-content .legacy-columns .legacy-image-block img[alt*="Audi" i] {
    width: 200px;
    max-width: 200px;
    height: auto;
}
.text-content .legacy-video {
    margin: 20px 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dfe6ee;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
    background: #000;
}
.text-content .legacy-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    border-radius: 0;
}

.service-catalog-section {
    background: linear-gradient(180deg, #f7f9fb 0%, #f2f5f8 100%);
}

.service-catalog-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
}

.service-catalog-category {
    border: 1px solid #d9e1ea;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    padding: 14px 14px 12px;
}

.service-catalog-category-title {
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5ebf2;
    font-size: 1.15rem;
    line-height: 1.25;
}

.service-catalog-category-title a {
    color: #111827;
    text-decoration: none;
}

.service-catalog-category-title a:hover {
    color: #0f3b72;
    text-decoration: underline;
}

.service-catalog-services {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.service-catalog-service-item > a {
    border: 1px solid #e1e8f0;
    border-radius: 10px;
    background: #f8fafc;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.3;
    min-height: 90px;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.service-catalog-service-item > a:hover {
    transform: translateY(-1px);
    border-color: #bcc9d8;
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.service-catalog-service-media {
    margin: 0;
}

.service-catalog-service-media img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #dfe6ee;
    background: #f1f4f7;
}

.service-catalog-service-name {
    display: block;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 26px 0;
    background: #fff;
}

.footer-inner {
    display: grid;
    gap: 12px;
}

.footer-inner p {
    margin: 0;
    color: #5a6069;
}

.footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s ease, border-color .18s ease;
}

.footer-social a:hover {
    transform: translateY(-1px);
    border-color: #bdc5ce;
}

.footer-social img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.footer-copy {
    font-size: .92rem;
    color: #6a7280;
}

.floating-whatsapp {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: #25D366;
    border: 1px solid #1fb958;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 70;
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.admin-social-block {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    background: #fff;
}

.admin-social-block h2 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.admin-social-block p {
    margin: 0 0 14px;
    color: #5a6270;
}

.admin-social-rows {
    display: grid;
    gap: 10px;
    margin-bottom: 10px;
}

.admin-social-row {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
}

@media (min-width: 740px) {
    .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hierarchy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .location-grid { grid-template-columns: .95fr 1.3fr; }
    .hero-home-grid { grid-template-columns: minmax(0, 1.25fr) minmax(260px, .95fr); align-items: center; }
    .cta-grid { grid-template-columns: 1fr auto; }
    .home-category-block {
        padding: 18px;
    }
    .service-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-catalog-service-item > a {
        min-height: 110px;
        grid-template-columns: 110px 1fr;
        align-items: center;
    }
    .service-catalog-service-media img {
        height: 70px;
    }
}

@media (min-width: 980px) {
    .menu-toggle { display: none; }
    body.menu-open {
        overflow: auto;
    }
    .site-nav {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        max-height: none;
        overflow: visible;
        z-index: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        border: 0;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    .menu-list {
        display: flex;
        gap: 28px;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .menu-item {
        position: relative;
    }
    .menu-item > a {
        border: 0;
        padding: 8px 34px 8px 0;
        font-weight: 650;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .submenu-toggle {
        display: none;
        top: 4px;
        right: -8px;
        width: 36px;
        height: 36px;
        cursor: pointer;
    }
    .menu-item.has-children > .submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .menu-item.has-children > .submenu-toggle span {
        width: 8px;
        height: 8px;
    }
    .menu-item.has-children > .submenu-toggle[aria-expanded="true"] span {
        transform: rotate(-135deg);
    }

    .submenu {
        display: none;
        position: static;
        min-width: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        padding: 6px 0 0;
        margin: 0;
    }

    .menu-list > .menu-item > .submenu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        min-width: 320px;
        max-width: min(520px, 75vw);
        border: 1px solid #dbe2ea;
        border-radius: 12px;
        background: #f3f4f5;
        box-shadow: 0 18px 34px rgba(16, 17, 19, 0.08);
        padding: 10px;
        z-index: 30;
    }

    .menu-item.open > .submenu {
        display: block;
    }

    .menu-item.has-children:focus-within > .submenu {
        display: block;
    }

    .submenu .menu-item {
        display: block;
    }

    .submenu .menu-item > a {
        border: 0;
        border-radius: 8px;
        padding: 8px 28px 8px 12px;
        white-space: normal;
        width: 100%;
        justify-content: flex-start;
        font-weight: 600;
    }

    .submenu .menu-item > a:hover {
        background: #f4f6f8;
    }

    .submenu .submenu {
        padding-top: 2px;
        margin-left: 14px;
        border-left: 2px solid #e2e8f0;
        padding-left: 8px;
    }

    .submenu .menu-item > .submenu-toggle {
        top: 3px;
        right: 0;
        width: 30px;
        height: 30px;
    }

    .section { padding: var(--section-space-y) 0; }
    .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hierarchy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .form-grid { grid-template-columns: 1fr 1fr; }
    .admin-social-row { grid-template-columns: 1fr 1.3fr 1.3fr auto; }
    .service-catalog-grid {
        grid-template-columns: 1fr;
    }
    .service-catalog-services {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hero-page-media {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    padding: 54px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-page-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-page-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-page-media .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 12, 0.32), rgba(8, 10, 12, 0.72));
    z-index: 1;
}

.hero-page-content {
    position: relative;
    z-index: 2;
}

.hero-page-media .eyebrow {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
}

.hero-page-media h1 {
    color: #fff;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
}

.hero-page-media .hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
}
