
:root {
    --red: #c91f1f;
    --red-dark: #9b1717;
    --red-soft: rgba(201, 31, 31, 0.12);
    --black: #0f1114;
    --steel: #181b20;
    --steel-2: #242932;
    --text: #20242b;
    --muted: #68707d;
    --line: #e4e7ec;
    --bg: #f3f4f6;
    --white: #ffffff;
    --radius: 22px;
    --radius-lg: 34px;
    --shadow: 0 24px 70px rgba(15, 17, 20, 0.14);
    --shadow-soft: 0 14px 40px rgba(15, 17, 20, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    background:
        linear-gradient(160deg, rgba(15,17,20,.04) 0 20%, transparent 20% 100%),
        linear-gradient(180deg, #f7f7f8 0%, #eeeeef 100%);
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: .45;
    background-image:none;
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, black 0%, transparent 85%);
}
a { color: inherit; }
.container { min-height: 100vh; }

/* Header / navigation */
header.site-header,
header {
    position: sticky;
    top: 14px;
    z-index: 50;
    width: min(1240px, calc(100% - 32px));
    min-height: 82px;
    margin: 14px auto 0;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: rgba(15,17,20,.94);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(15,17,20,.22);
    backdrop-filter: blur(16px);
}
.logo-link { display: flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
header img {
    width: auto;
    height: 58px;
    padding: 8px 12px;
    border-radius: 16px;
    background: #0a0b0d;
    border: 1px solid rgba(255,255,255,.08);
}
.main-nav { display: flex; align-items: center; }
.header-nabidka {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    margin: 0;
    list-style: none;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
}
.nabidka a {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: rgba(255,255,255,.84);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .095em;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.nabidka a:hover,
.nabidka a.active {
    color: #fff;
    background: var(--red);
    box-shadow: 0 10px 26px rgba(201,31,31,.30);
}
.menu-toggle {
    display: none;
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    cursor: pointer;
}
.menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
}
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Page titles / hero */
.pc h2,
body > h2,
.container > h2 {
    width: min(1240px, calc(100% - 32px));
    margin: 34px auto 24px;
    padding: clamp(38px, 7vw, 86px) clamp(24px, 6vw, 78px);
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: left;
    font-size: clamp(34px, 6vw, 78px);
    line-height: .98;
    font-weight: 950;
    letter-spacing: -.065em;
    border-radius: 36px;
    background:
        linear-gradient(115deg, rgba(201,31,31,.55) 0%, rgba(201,31,31,.18) 21%, transparent 43%),
        radial-gradient(circle at 82% 20%, rgba(255,255,255,.12), transparent 30%),
        linear-gradient(135deg, #0f1114 0%, #1b1f26 56%, #101216 100%);
    box-shadow: var(--shadow);
}
.pc h2::before,
body > h2::before,
.container > h2::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -110px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
}
.pc h2::after,
body > h2::after,
.container > h2::after {
    content: "";
    display: block;
    width: 96px;
    height: 5px;
    margin-top: 26px;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 0 8px rgba(201,31,31,.14);
}
.mobile { display: none; }

/* Home layout */
.content {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 90px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
    gap: 28px;
    align-items: stretch;
}
.content-item {
    position: relative;
    min-height: 610px;
    padding: clamp(30px, 4.6vw, 58px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(15,17,20,.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.content-item:hover {
    transform: none;
    border-color: rgba(201,31,31,.28);
    box-shadow: 0 24px 66px rgba(15,17,20,.13), inset 0 0 0 1px rgba(201,31,31,.08);
    background: #fff;
}
.content-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 34px;
    bottom: 34px;
    width: 7px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, var(--red), var(--red-dark));
}
.content-item::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(201,31,31,.07);
    pointer-events: none;
}
.content-item p {
    position: relative;
    z-index: 1;
    margin: 0 0 17px;
    text-align: left;
    font-size: 17px;
    line-height: 1.72;
}
.content-item p:first-child {
    margin-bottom: 22px;
    color: var(--black);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.48;
}
button,
.content-item button,
.sluzby-button button {
    width: auto;
    min-width: 188px;
    margin-top: 14px;
    padding: 16px 28px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: .08em;
    box-shadow: 0 14px 34px rgba(201,31,31,.30);
    cursor: pointer;
    transition: filter .2s ease, box-shadow .2s ease;
}
button:hover,
.content-item button:hover,
.sluzby-button button:hover {
    filter: brightness(.94);
    box-shadow: 0 18px 44px rgba(201,31,31,.36);
}
#slider {
    min-height: 610px;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15,17,20,.10);
    box-shadow: var(--shadow);
    background: var(--black);
}
#slider::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(201,31,31,.30), transparent 38%),
        linear-gradient(180deg, rgba(15,17,20,.02), rgba(15,17,20,.42));
}
#slider::after {
    content: "GRINGOMONT";
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(15,17,20,.72);
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .18em;
    backdrop-filter: blur(10px);
}
#slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 7s ease;
}
#slider img.active { opacity: 1; transform: scale(1.035); }

/* Services */
.sluzby {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.uvodni-text {
    width: 100%;
    margin: 0 auto;
    padding: clamp(26px, 4vw, 44px);
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(15,17,20,.08);
    border-radius: var(--radius-lg);
    text-align: left;
    font-size: 18px;
    line-height: 1.78;
    box-shadow: var(--shadow-soft);
}
.sluzby .uvodni-text:first-child {
    border-left: 7px solid var(--red);
}
.sluzby-chat {
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr .95fr .9fr;
    gap: 22px;
    align-items: stretch;
}
.service {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 34px;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.93)),
        linear-gradient(135deg, rgba(201,31,31,.10), transparent);
    border: 1px solid rgba(15,17,20,.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: border-color .22s ease, box-shadow .22s ease;
}
.service:hover {
    transform: none;
    border-color: rgba(201,31,31,.24);
    box-shadow: 0 22px 58px rgba(15,17,20,.13);
}
.service:nth-child(2) { margin-top: 34px; }
.service:nth-child(3) { margin-top: 68px; }
.service::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 7px;
    background: linear-gradient(90deg, var(--red), rgba(201,31,31,.25));
}
.service::after {
    content: "";
    position: absolute;
    right: -64px;
    bottom: -64px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(201,31,31,.16);
    border-radius: 50%;
}
.service h2 {
    margin: 0 0 20px;
    padding: 0 0 17px;
    text-align: left;
    color: var(--black);
    border-bottom: 1px solid var(--line);
    font-size: 22px;
    line-height: 1.16;
    letter-spacing: -.025em;
}
.service h2::before,
.service h2::after { display: none; }
.service ul { list-style: none; padding: 0; margin: 0; }
.service ul li {
    position: relative;
    padding: 11px 0 11px 24px;
    font-size: 16px;
    line-height: 1.48;
    color: var(--text);
}
.service ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: var(--red);
    transform: rotate(45deg);
}
.sluzby-button { margin-bottom: 36px; }

/* Contact / gallery placeholder */
.contact-container,
.fotogalerie-section {
    width: min(1120px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}
.contact-section,
.fotogalerie-section {
    margin: 34px auto 42px;
    padding: clamp(26px, 4vw, 48px);
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(15,17,20,.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}
.contact-section::before,
.fotogalerie-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, var(--red), rgba(201,31,31,.22));
}
.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
p { margin: 8px 0; }
.contact-column {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font-size: 17px;
    line-height: 1.48;
}
.contact-column p[style*="underline"] {
    color: var(--black);
    text-decoration-color: var(--red) !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 8px;
}
.contact-column a { color: var(--red-dark); font-weight: 900; }
.contact-column i { margin-right: 10px; color: var(--red); }
.postaveni {
    margin-top: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
}
.vlozka {
    margin-top: 30px;
    text-align: center;
    font-style: italic;
    color: var(--muted);
}
.slogan {
    width: min(980px, calc(100% - 32px));
    margin: 26px auto 72px !important;
    padding: 24px 30px;
    text-align: center;
    font-style: italic;
    font-weight: 950;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(201,31,31,.34), transparent 44%),
        var(--black);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    font-size: 20px;
}
.fotogalerie-section {
    background:
        linear-gradient(135deg, rgba(201,31,31,.10), transparent 34%),
        #fff;
}
.fotogalerie-text {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.82;
}

@media (max-width: 1100px) {
    .content { grid-template-columns: 1fr; gap: 24px; }
    .content-item { min-height: auto; order: 2; }
    #slider { min-height: 460px; order: 1; }
    .sluzby-chat { grid-template-columns: 1fr; max-width: 820px; }
    .service:nth-child(2), .service:nth-child(3) { margin-top: 0; }
}
@media (max-width: 800px) {
    body.menu-open { overflow: hidden; }
    header.site-header, header {
        top: 8px;
        width: calc(100% - 20px);
        min-height: 70px;
        padding: 10px 12px;
        border-radius: 20px;
    }
    header img { height: 48px; padding: 7px 10px; border-radius: 14px; }
    .menu-toggle { display: inline-flex; }
    .main-nav {
        position: fixed;
        left: 10px;
        right: 10px;
        top: 88px;
        display: block;
        padding: 14px;
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 22px;
        background: rgba(15,17,20,.98);
        box-shadow: 0 20px 70px rgba(15,17,20,.34);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }
    .menu-open .main-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .header-nabidka {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }
    .nabidka a {
        width: 100%;
        min-height: 52px;
        border-radius: 15px;
        background: rgba(255,255,255,.06);
        color: #fff;
    }
    .pc { display: none; }
    .mobile { display: initial; }
    .mobile h2 {
        width: calc(100% - 20px);
        margin: 28px auto 18px;
        padding: 28px 22px;
        color: #fff;
        text-align: left;
        font-size: 25px;
        line-height: 1.13;
        letter-spacing: -.035em;
        border-radius: 24px;
        background:
            linear-gradient(135deg, rgba(201,31,31,.38), transparent 46%),
            var(--black);
        box-shadow: var(--shadow-soft);
    }
    .mobile h2::after {
        content: "";
        display: block;
        width: 68px;
        height: 4px;
        margin-top: 17px;
        border-radius: 999px;
        background: var(--red);
    }
    body > h2, .container > h2 {
        width: calc(100% - 20px);
        margin-top: 28px;
        padding: 28px 22px;
        font-size: 28px;
        border-radius: 24px;
    }
    .content, .sluzby, .contact-container, .fotogalerie-section, .slogan {
        width: calc(100% - 20px);
    }
    .content { margin-top: 22px; margin-bottom: 50px; }
    .content-item, .uvodni-text, .service, .contact-section, .fotogalerie-section, .contact-column {
        padding: 22px;
        border-radius: 22px;
    }
    .content-item::before { top: 22px; bottom: 22px; width: 5px; }
    .content-item p { font-size: 16px; line-height: 1.64; }
    .content-item p:first-child { font-size: 18px; }
    #slider { display: none; }
    .uvodni-text, .fotogalerie-text { font-size: 16px; line-height: 1.65; }
    .contact-columns { grid-template-columns: 1fr; gap: 18px; }
    .contact-column { font-size: 15px; }
    .contact-column p { word-break: break-word; }
    p.postaveni { font-size: 12px; }
    .slogan { padding: 20px; font-size: 15px; margin-bottom: 42px !important; }
}
@media (max-width: 430px) {
    header.site-header, header { width: calc(100% - 16px); border-radius: 18px; }
    header img { height: 44px; }
    .menu-toggle { width: 44px; min-width: 44px; height: 44px; }
    .main-nav { top: 78px; }
    .mobile h2, body > h2, .container > h2 {
        width: calc(100% - 16px);
        padding: 23px 18px;
        font-size: 23px;
    }
    .content, .sluzby, .contact-container, .fotogalerie-section, .slogan { width: calc(100% - 16px); }
    .content-item, .uvodni-text, .service, .contact-section, .fotogalerie-section, .contact-column { padding: 18px; }
    button, .content-item button, .sluzby-button button { width: 100%; min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}

/* === LUXURY INDUSTRIAL PHOTO GALLERY === */
.gallery-page main {
    width: 100%;
}
.gallery-hero,
.project-showcase,
.gallery-wall {
    width: min(1240px, calc(100% - 32px));
    margin-inline: auto;
}
.gallery-hero {
    min-height: 520px;
    margin-top: 34px;
    padding: clamp(26px, 5vw, 58px);
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    background:
        linear-gradient(118deg, rgba(201,31,31,.42) 0%, rgba(201,31,31,.12) 28%, transparent 45%),
        radial-gradient(circle at 78% 16%, rgba(255,255,255,.12), transparent 30%),
        linear-gradient(135deg, #090a0c 0%, #181c22 52%, #0f1114 100%);
    box-shadow: var(--shadow);
    isolation: isolate;
}
.gallery-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:none;
    background-size: 46px 46px;
    opacity: .35;
    z-index: -1;
}
.gallery-hero::after {
    content: "";
    position: absolute;
    right: -130px;
    top: -140px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    z-index: -1;
}
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.section-kicker::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 0 6px rgba(201,31,31,.14);
}
.gallery-hero h1 {
    margin: 18px 0 20px;
    color: #fff;
    font-size: clamp(44px, 7vw, 92px);
    line-height: .92;
    letter-spacing: -.075em;
    font-weight: 950;
}
.gallery-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255,255,255,.74);
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.72;
}
.gallery-hero__visual {
    min-height: 430px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 32px 90px rgba(0,0,0,.34);
    transform: rotate(1deg);
}
.gallery-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
    filter: contrast(1.08) saturate(.9);
}
.gallery-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.62));
}
.gallery-hero__badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    padding: 12px 16px;
    border-radius: 999px;
    color: #fff;
    background: rgba(201,31,31,.92);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .16em;
    box-shadow: 0 15px 36px rgba(201,31,31,.28);
}
.project-showcase,
.gallery-wall {
    margin-top: 78px;
}
.section-heading {
    margin-bottom: 28px;
}
.section-heading .section-kicker {
    color: var(--red);
}
.section-heading h2 {
    margin: 14px 0 0;
    color: var(--black);
    font-size: clamp(32px, 4.8vw, 62px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 950;
}
.section-heading--inline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.project-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(15,17,20,.09);
    border-radius: 30px;
    background: var(--steel);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}
.project-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
    transition: transform .55s ease, filter .35s ease;
    filter: saturate(.86) contrast(1.04);
}
.project-card:hover img {
    transform: scale(1.045);
    filter: saturate(.98) contrast(1.08);
}
.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.06) 18%, rgba(0,0,0,.78) 100%);
}
.project-card::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 22px;
    z-index: 2;
    width: 58px;
    height: 5px;
    border-radius: 999px;
    background: var(--red);
}
.project-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px;
    color: #fff;
}
.project-card__content span {
    display: inline-flex;
    margin-bottom: 12px;
    color: rgba(255,255,255,.74);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.project-card__content h3 {
    margin: 0 0 10px;
    font-size: 25px;
    line-height: 1.05;
    letter-spacing: -.035em;
}
.project-card__content p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    line-height: 1.55;
}
.gallery-filters {
    max-width: 620px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px;
}
.gallery-filter {
    min-width: 0;
    margin: 0;
    padding: 11px 14px;
    border: 1px solid rgba(15,17,20,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: var(--black);
    box-shadow: none;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .055em;
    text-transform: uppercase;
}
.gallery-filter:hover,
.gallery-filter.active {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
    transform: none;
}
.masonry-gallery {
    columns: 4 250px;
    column-gap: 16px;
}
.gallery-tile {
    width: 100%;
    min-width: 0;
    margin: 0 0 16px;
    padding: 0;
    display: block;
    position: relative;
    overflow: hidden;
    break-inside: avoid;
    border: 1px solid rgba(15,17,20,.08);
    border-radius: 24px;
    background: #111;
    box-shadow: 0 16px 42px rgba(15,17,20,.10);
    cursor: zoom-in;
}
.gallery-tile[hidden] { display: none; }
.gallery-tile img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(.9) contrast(1.02);
    transition: transform .45s ease, filter .35s ease;
}
.gallery-tile:hover img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.08);
}
.gallery-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.72));
    opacity: 0;
    transition: opacity .25s ease;
}
.gallery-tile:hover::after { opacity: 1; }
.gallery-tile span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 1;
    color: #fff;
    text-align: left;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .03em;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
}
.gallery-tile:hover span {
    opacity: 1;
    transform: translateY(0);
}
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 74px 88px;
    background: rgba(6,7,9,.92);
    backdrop-filter: blur(14px);
}
.lightbox.is-open { display: flex; }
.lightbox figure {
    max-width: min(1100px, 100%);
    max-height: 100%;
    margin: 0;
    display: grid;
    gap: 14px;
    justify-items: center;
}
.lightbox img {
    max-width: 100%;
    max-height: calc(100vh - 180px);
    display: block;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 34px 100px rgba(0,0,0,.48);
}
.lightbox figcaption {
    color: rgba(255,255,255,.78);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.lightbox__close,
.lightbox__nav {
    position: fixed;
    min-width: 0;
    margin: 0;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: #fff;
    box-shadow: none;
    cursor: pointer;
}
.lightbox__close {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 16px;
    font-size: 34px;
    line-height: 1;
}
.lightbox__nav {
    top: 50%;
    width: 54px;
    height: 74px;
    padding: 0;
    border-radius: 18px;
    transform: translateY(-50%);
    font-size: 46px;
    line-height: 1;
}
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__close:hover,
.lightbox__nav:hover {
    background: var(--red);
    transform: none;
}
.lightbox__nav:hover { transform: translateY(-50%); }
body.lightbox-open { overflow: hidden; }

@media (max-width: 1100px) {
    .gallery-hero { grid-template-columns: 1fr; }
    .gallery-hero__visual { min-height: 340px; transform: none; }
    .gallery-hero__visual img { min-height: 340px; }
    .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section-heading--inline { align-items: flex-start; flex-direction: column; }
    .gallery-filters { justify-content: flex-start; max-width: none; }
}
@media (max-width: 760px) {
    .gallery-hero,
    .project-showcase,
    .gallery-wall {
        width: calc(100% - 18px);
    }
    .gallery-hero {
        min-height: auto;
        margin-top: 18px;
        padding: 26px 18px 18px;
        border-radius: 26px;
    }
    .gallery-hero h1 { font-size: clamp(40px, 14vw, 58px); }
    .gallery-hero p { font-size: 15px; line-height: 1.65; }
    .gallery-hero__visual,
    .gallery-hero__visual img { min-height: 280px; }
    .project-showcase,
    .gallery-wall { margin-top: 48px; }
    .project-grid { grid-template-columns: 1fr; }
    .project-card,
    .project-card img { min-height: 300px; }
    .project-card__content { padding: 22px; }
    .gallery-filters {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }
    .gallery-filter { width: 100%; }
    .masonry-gallery { columns: 1; column-gap: 0; }
    .gallery-tile { border-radius: 20px; }
    .gallery-tile span,
    .gallery-tile::after { opacity: 1; transform: none; }
    .lightbox { padding: 72px 12px 86px; }
    .lightbox img { max-height: calc(100vh - 170px); border-radius: 16px; }
    .lightbox__close { top: 14px; right: 14px; }
    .lightbox__nav {
        top: auto;
        bottom: 14px;
        width: 52px;
        height: 52px;
        border-radius: 16px;
        transform: none;
        font-size: 38px;
    }
    .lightbox__prev { left: calc(50% - 62px); }
    .lightbox__next { right: calc(50% - 62px); }
    .lightbox__nav:hover { transform: none; }
}


.contact-hero{
text-align:center;
padding:80px 20px 40px;
max-width:900px;
margin:auto;
}
.contact-hero h1{
font-size:clamp(42px,6vw,72px);
margin-bottom:15px;
}
.contact-hero p{
font-size:1.1rem;
opacity:.85;
}
.contact-container{
background:#fff;
border-radius:24px;
padding:40px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}


/* === CONTACT PAGE — PREMIUM RESPONSIVE REBUILD === */
.contact-page {
    width: 100%;
    padding: 0 0 90px;
}
.contact-premium-hero,
.contact-grid,
.contact-cta {
    width: min(1240px, calc(100% - 32px));
    margin-inline: auto;
}
.contact-premium-hero {
    position: relative;
    margin-top: 34px;
    padding: clamp(28px, 5vw, 64px);
    min-height: 470px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: end;
    gap: clamp(24px, 4vw, 56px);
    overflow: hidden;
    border-radius: 38px;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(201,31,31,.34), transparent 34%),
        linear-gradient(90deg, rgba(15,17,20,.98), rgba(15,17,20,.88)),
        radial-gradient(circle at 82% 20%, rgba(201,31,31,.22), transparent 32%),
        var(--black);
    box-shadow: 0 30px 90px rgba(15,17,20,.24);
}
.contact-premium-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:none;
    background-size: 54px 54px;
}
.contact-premium-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -130px;
    width: 430px;
    height: 430px;
    border: 44px solid rgba(201,31,31,.28);
    border-radius: 50%;
}
.contact-hero-copy,
.contact-hero-panel,
.contact-cta > * {
    position: relative;
    z-index: 1;
}
.eyebrow,
.card-kicker,
.panel-label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--red);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow::before,
.card-kicker::before,
.panel-label::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
}
.contact-hero-copy h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(42px, 7vw, 88px);
    line-height: .94;
    letter-spacing: -.065em;
}
.contact-hero-copy p {
    max-width: 690px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.82);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.7;
}
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}
.contact-action {
    min-height: 54px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.07);
    text-decoration: none;
    font-weight: 950;
    letter-spacing: .02em;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-action:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.30);
}
.contact-action--primary {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 14px 34px rgba(201,31,31,.34);
}
.contact-action--primary:hover {
    background: #e02626;
    border-color: #e02626;
    box-shadow: 0 18px 42px rgba(201,31,31,.42);
}
.contact-hero-panel {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 55px rgba(0,0,0,.18);
}
.contact-hero-panel strong {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.1;
}
.contact-hero-panel small {
    display: block;
    margin-bottom: 22px;
    color: rgba(255,255,255,.64);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.contact-hero-panel a {
    display: block;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 950;
    overflow-wrap: anywhere;
}
.contact-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.contact-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(15,17,20,.09);
    border-radius: 30px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 50px rgba(15,17,20,.08);
}
.contact-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--red), rgba(201,31,31,.08));
}
.contact-card h2 {
    margin: 0;
    color: var(--black);
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -.04em;
}
.contact-card .role,
.contact-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}
.role {
    margin: 10px 0 22px !important;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.info-list {
    display: grid;
    gap: 10px;
}
.info-list a,
.company-details > div {
    min-width: 0;
    padding: 17px 18px;
    display: block;
    border: 1px solid rgba(15,17,20,.08);
    border-radius: 18px;
    background: #f8f9fb;
    text-decoration: none;
}
.info-list a:hover {
    border-color: rgba(201,31,31,.35);
    background: #fff;
}
.info-list span,
.company-details span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.info-list strong,
.company-details strong {
    display: block;
    min-width: 0;
    color: var(--black);
    font-size: 17px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
.contact-card--wide {
    grid-column: 1 / -1;
}
.company-details {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.contact-card--dark {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(201,31,31,.24), transparent 46%),
        var(--black);
    border-color: rgba(255,255,255,.10);
}
.contact-card--dark h2,
.contact-card--dark strong { color: #fff; }
.contact-card--dark p { color: rgba(255,255,255,.76); }
.contact-card--dark .card-kicker { color: #ff4a4a; }
.contact-note {
    width: fit-content;
    max-width: 100%;
    margin-top: 22px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.07);
    line-height: 1.55;
}
.contact-cta {
    margin-top: 20px;
    padding: clamp(26px, 4vw, 46px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 30px;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(201,31,31,.30), transparent 42%),
        var(--steel);
    box-shadow: 0 18px 54px rgba(15,17,20,.16);
}
.contact-cta h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1;
    letter-spacing: -.05em;
}
.contact-cta p {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(255,255,255,.76);
    line-height: 1.65;
}

@media (max-width: 980px) {
    .contact-premium-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        align-items: start;
    }
    .contact-hero-panel {
        max-width: 620px;
    }
    .company-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .contact-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}
@media (max-width: 800px) {
    .contact-page { padding-bottom: 56px; }
    .contact-premium-hero,
    .contact-grid,
    .contact-cta {
        width: calc(100% - 20px);
    }
    .contact-premium-hero {
        margin-top: 24px;
        padding: 28px 20px;
        border-radius: 26px;
    }
    .contact-premium-hero::after {
        right: -180px;
        bottom: -190px;
        opacity: .7;
    }
    .contact-hero-copy h1 {
        font-size: clamp(38px, 12vw, 62px);
        line-height: .98;
    }
    .contact-actions,
    .contact-action {
        width: 100%;
    }
    .contact-hero-panel {
        width: 100%;
        padding: 22px;
        border-radius: 22px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .contact-card {
        padding: 22px;
        border-radius: 24px;
    }
    .contact-card--wide {
        grid-column: auto;
    }
    .company-details {
        grid-template-columns: 1fr;
    }
    .contact-cta {
        padding: 24px 20px;
        border-radius: 24px;
    }
}
@media (max-width: 430px) {
    .contact-premium-hero,
    .contact-grid,
    .contact-cta {
        width: calc(100% - 16px);
    }
    .contact-premium-hero {
        padding: 24px 18px;
        border-radius: 22px;
    }
    .contact-hero-copy p,
    .contact-card p,
    .contact-cta p {
        font-size: 15px;
    }
    .contact-action {
        min-height: 52px;
        padding-inline: 16px;
        font-size: 15px;
    }
    .info-list a,
    .company-details > div {
        padding: 15px;
        border-radius: 16px;
    }
    .info-list strong,
    .company-details strong,
    .contact-hero-panel a {
        font-size: 16px;
    }
}


/* ===== SITE-WIDE PREMIUM CONSOLIDATION 20260610 ===== */
body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}
.premium-page main,
.gallery-page main,
.contact-page {
    width: 100%;
}
.eyebrow,
.section-kicker,
.card-kicker,
.panel-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}
.premium-hero,
.gallery-hero,
.contact-premium-hero {
    width: min(1240px, calc(100% - 32px));
    margin: 34px auto 0;
    border-radius: 34px;
}
.premium-hero {
    min-height: 620px;
    padding: clamp(28px, 5vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
    align-items: center;
    gap: clamp(24px, 4vw, 58px);
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(201,31,31,.36), transparent 33%),
        radial-gradient(circle at 82% 20%, rgba(255,255,255,.13), transparent 29%),
        linear-gradient(135deg, #0e1013 0%, #1a1f26 58%, #090a0c 100%);
    box-shadow: var(--shadow);
}
.premium-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .46;
    background-image:none;
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, black, transparent 92%);
}
.premium-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}
.premium-hero__copy,
.home-visual,
.service-hero-panel {
    position: relative;
    z-index: 1;
}
.premium-hero h1,
.gallery-hero h1,
.contact-hero-copy h1 {
    margin: 18px 0 20px;
    font-size: clamp(44px, 7vw, 86px);
    line-height: .92;
    font-weight: 950;
    letter-spacing: -.07em;
    text-transform: none;
}
.premium-hero p,
.gallery-hero p,
.contact-hero-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.72;
}
.hero-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.home-visual {
    min-height: 440px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 32px;
    overflow: hidden;
    background: #050607;
    box-shadow: 0 28px 80px rgba(0,0,0,.32);
}
.home-visual img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    display: block;
    object-fit: cover;
    filter: saturate(.95) contrast(1.04) brightness(.86);
}
.home-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.65));
}
.home-visual__card {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    background: rgba(15,17,20,.78);
    backdrop-filter: blur(12px);
}
.home-visual__card span {
    display: block;
    margin-bottom: 6px;
    color: #ff4a4a;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.home-visual__card strong {
    color: #fff;
    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.05;
    letter-spacing: -.04em;
}
.premium-section {
    width: min(1240px, calc(100% - 32px));
    margin: 22px auto 0;
}
.intro-split {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 18px;
    align-items: stretch;
}
.intro-split > div:first-child,
.intro-panel,
.process-band,
.quality-strip,
.scope-section {
    border-radius: 30px;
    border: 1px solid rgba(15,17,20,.08);
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-soft);
}
.intro-split > div:first-child {
    padding: clamp(26px, 4vw, 46px);
    background:
        linear-gradient(135deg, rgba(201,31,31,.10), transparent 44%),
        #fff;
}
.intro-split h2,
.premium-heading h2,
.process-copy h2,
.quality-strip h2,
.scope-card h2,
.service-detail-card h2 {
    margin: 14px 0 0;
    color: var(--black);
    font-size: clamp(32px, 4.4vw, 58px);
    line-height: .98;
    font-weight: 950;
    letter-spacing: -.06em;
}
.intro-panel {
    padding: clamp(26px, 4vw, 46px);
}
.intro-panel p,
.premium-heading p,
.premium-card p,
.process-copy p,
.service-detail-card p,
.scope-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}
.intro-panel p:first-child { margin-top: 0; }
.intro-panel p:last-child { margin-bottom: 0; }
.premium-heading {
    max-width: 860px;
    margin-bottom: 20px;
}
.premium-heading h2 { margin-top: 12px; }
.premium-card-grid {
    display: grid;
    gap: 16px;
}
.premium-card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.premium-card,
.service-detail-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(15,17,20,.08);
    border-radius: 30px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-soft);
}
.premium-card::before,
.service-detail-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--red), rgba(201,31,31,.08));
}
.premium-card span:not(.section-kicker) {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--red);
    background: var(--red-soft);
    font-weight: 950;
}
.premium-card h3 {
    margin: 22px 0 10px;
    color: var(--black);
    font-size: clamp(24px, 2.7vw, 34px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -.045em;
}
.dark-card {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(201,31,31,.24), transparent 44%),
        var(--black) !important;
    border-color: rgba(255,255,255,.10) !important;
}
.dark-card h2,
.dark-card h3,
.dark-card strong { color: #fff !important; }
.dark-card p,
.dark-card li,
.dark-card span:not(.section-kicker):not(.card-kicker) { color: rgba(255,255,255,.74) !important; }
.process-band {
    padding: clamp(26px, 4vw, 48px);
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(20px, 4vw, 56px);
    align-items: center;
}
.process-list {
    display: grid;
    gap: 12px;
}
.process-list div,
.quality-grid article,
.scope-list div {
    padding: 18px;
    border: 1px solid rgba(15,17,20,.08);
    border-radius: 20px;
    background: #f8f9fb;
}
.process-list strong,
.quality-grid strong {
    display: block;
    margin-bottom: 6px;
    color: var(--black);
    font-size: 19px;
    font-weight: 950;
    letter-spacing: -.025em;
}
.process-list span,
.quality-grid span,
.scope-list p {
    color: var(--muted);
    line-height: 1.55;
}
.premium-bottom-cta {
    width: min(1240px, calc(100% - 32px));
    margin: 22px auto 70px;
}
.service-hero-panel {
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 30px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(14px);
}
.service-hero-panel ul {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}
.service-hero-panel li {
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.06);
    font-weight: 850;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.service-detail-card--featured { grid-row: span 2; }
.service-detail-card h2 {
    font-size: clamp(30px, 3.8vw, 50px);
}
.service-detail-card ul {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.service-detail-card li {
    position: relative;
    padding: 14px 16px 14px 42px;
    border-radius: 16px;
    background: #f8f9fb;
    color: var(--text);
    line-height: 1.45;
}
.service-detail-card li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 21px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
}
.quality-strip {
    padding: clamp(26px, 4vw, 46px);
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 22px;
}
.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.scope-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.scope-card {
    padding: clamp(28px, 4vw, 48px);
    border-radius: 0;
}
.scope-list {
    padding: clamp(24px, 4vw, 42px);
    display: grid;
    gap: 12px;
    align-content: center;
}
.scope-list div {
    display: flex;
    align-items: center;
    gap: 14px;
}
.scope-list div span {
    width: 12px;
    height: 12px;
    min-width: 12px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 8px rgba(201,31,31,.10);
}
.scope-list p { margin: 0; font-weight: 850; color: var(--text); }
/* sjednocení hero typografie na celé stránce */
.gallery-hero h1,
.contact-hero-copy h1,
.premium-hero h1 { font-family: inherit; }
.gallery-hero .section-kicker,
.gallery-hero .eyebrow { color: #ff4a4a; }
.gallery-hero p { font-size: clamp(16px, 1.8vw, 20px); }
.container > h2,
.pc h2,
body > h2 { font-family: inherit; }
/* zrušení starých homepage/služby layoutů, když by v cache zůstaly */
.pc, .mobile, #slider { display: none; }
@media (max-width: 1050px) {
    .premium-hero,
    .intro-split,
    .process-band,
    .quality-strip,
    .scope-section {
        grid-template-columns: 1fr;
    }
    .premium-hero { min-height: auto; }
    .home-visual,
    .home-visual img { min-height: 360px; }
    .premium-card-grid.three,
    .quality-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-detail-card--featured { grid-row: auto; }
}
@media (max-width: 800px) {
    .premium-hero,
    .gallery-hero,
    .contact-premium-hero,
    .premium-section,
    .premium-bottom-cta {
        width: calc(100% - 20px);
    }
    .premium-hero {
        margin-top: 24px;
        padding: 28px 20px;
        border-radius: 26px;
        grid-template-columns: 1fr;
    }
    .premium-hero h1,
    .gallery-hero h1,
    .contact-hero-copy h1 {
        font-size: clamp(38px, 12vw, 62px);
        line-height: .98;
        letter-spacing: -.065em;
    }
    .hero-actions,
    .hero-actions .contact-action { width: 100%; }
    .home-visual,
    .home-visual img { min-height: 300px; }
    .home-visual { border-radius: 24px; }
    .intro-split > div:first-child,
    .intro-panel,
    .premium-card,
    .service-detail-card,
    .process-band,
    .quality-strip,
    .scope-section {
        border-radius: 24px;
    }
    .intro-split h2,
    .premium-heading h2,
    .process-copy h2,
    .quality-strip h2,
    .scope-card h2,
    .service-detail-card h2 {
        font-size: clamp(30px, 10vw, 46px);
    }
    .premium-bottom-cta { margin-bottom: 56px; }
}
@media (max-width: 430px) {
    .premium-hero,
    .gallery-hero,
    .contact-premium-hero,
    .premium-section,
    .premium-bottom-cta {
        width: calc(100% - 16px);
    }
    .premium-hero { padding: 24px 18px; border-radius: 22px; }
    .home-visual__card { left: 14px; right: 14px; bottom: 14px; padding: 16px; }
    .premium-hero p,
    .gallery-hero p,
    .intro-panel p,
    .premium-card p,
    .process-copy p,
    .service-detail-card p,
    .scope-card p { font-size: 15px; }
}


/* === CLEAN FINAL RESET — requested fixes === */
:root{
    --clean-dark:#111418;
    --clean-dark-2:#181d22;
    --clean-red:#d8242a;
    --clean-red-soft:rgba(216,36,42,.12);
    --clean-border:rgba(17,20,24,.10);
    --clean-muted:#68717f;
}
.clean-page,
.clean-page *{ box-sizing:border-box; }
.clean-page{ background:#f4f5f7; color:#111418; }
.clean-main{ width:100%; overflow:hidden; }
.clean-hero,
.contact-premium-hero,
.gallery-hero{
    width:min(1240px, calc(100% - 32px));
    margin:28px auto 22px;
    border-radius:34px;
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(135deg, rgba(216,36,42,.18), transparent 34%),
        radial-gradient(circle at 96% 8%, rgba(216,36,42,.18), transparent 30%),
        linear-gradient(135deg,#111418 0%,#1b2027 100%);
    color:#fff;
    box-shadow:0 24px 70px rgba(0,0,0,.16);
}
.clean-hero{ min-height:auto; padding:clamp(46px,7vw,92px); display:block; }
.clean-hero::after,
.gallery-hero::after{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:none;
    background-size:44px 44px;
    mask-image:linear-gradient(120deg,#000,transparent 75%);
}
.clean-hero__content{ position:relative; z-index:1; max-width:900px; }
.clean-eyebrow,
.section-kicker,
.eyebrow,
.card-kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin:0 0 16px;
    color:#ff454b;
    font-size:12px;
    line-height:1.2;
    text-transform:uppercase;
    letter-spacing:.18em;
    font-weight:900;
}
.clean-eyebrow::before,
.section-kicker::before{
    content:"";
    width:34px;
    height:3px;
    border-radius:999px;
    background:currentColor;
}
.clean-hero h1,
.gallery-hero h1,
.contact-hero-copy h1,
.clean-heading h2,
.home-overview h2,
.simple-scope h2,
.service-clean-card h2,
.scope-simple-clean h2,
.contact-cta h2{
    font-family:inherit!important;
    font-weight:900!important;
    letter-spacing:-.045em!important;
    line-height:1.08!important;
    overflow-wrap:normal;
    word-break:normal;
    hyphens:none;
}
.clean-hero h1{
    max-width:900px;
    margin:0;
    font-size:clamp(42px,6.4vw,78px)!important;
}
.clean-hero p{
    max-width:760px;
    margin:22px 0 0;
    color:rgba(255,255,255,.78);
    font-size:clamp(17px,1.8vw,21px);
    line-height:1.65;
}
.clean-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:34px; }
.home-overview,
.simple-scope,
.services-list-clean,
.scope-simple-clean{
    width:min(1240px, calc(100% - 32px));
    margin:22px auto;
}
.home-overview{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.overview-card{
    min-height:330px;
    padding:clamp(28px,4vw,50px);
    border:1px solid rgba(17,20,24,.08);
    border-radius:30px;
    background:#fff;
    box-shadow:0 20px 55px rgba(13,18,26,.08);
}
.overview-card--dark{
    background:linear-gradient(145deg,#111418,#20262d);
    color:#fff;
    border-color:rgba(255,255,255,.10);
}
.overview-card h2,
.simple-scope h2,
.scope-simple-clean h2{ margin:0; font-size:clamp(32px,4vw,52px)!important; }
.overview-card p,
.scope-simple-clean p{ margin:20px 0 0; color:var(--clean-muted); font-size:17px; line-height:1.75; }
.overview-card--dark p{ color:rgba(255,255,255,.76); }
.simple-scope{
    padding:clamp(28px,4vw,48px);
    border-radius:30px;
    background:#fff;
    box-shadow:0 20px 55px rgba(13,18,26,.07);
}
.scope-clean-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:24px; }
.scope-clean-item{
    text-decoration:none;
    color:#111418;
    padding:22px;
    min-height:130px;
    border-radius:22px;
    background:#f4f5f7;
    border:1px solid rgba(17,20,24,.08);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:background .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.scope-clean-item:hover{ background:#fff; border-color:rgba(216,36,42,.25); box-shadow:0 14px 30px rgba(17,20,24,.08); }
.scope-clean-item strong{ font-size:20px; line-height:1.2; }
.scope-clean-item span{ color:var(--clean-muted); line-height:1.4; margin-top:14px; }
/* Services */
.services-list-clean{ display:grid; gap:18px; }
.service-clean-card{
    display:grid;
    grid-template-columns:90px 1fr;
    gap:26px;
    padding:clamp(26px,4vw,48px);
    border-radius:30px;
    background:#fff;
    border:1px solid rgba(17,20,24,.08);
    box-shadow:0 20px 55px rgba(13,18,26,.07);
}
.service-clean-number{
    width:64px;height:64px;border-radius:20px;
    display:grid;place-items:center;
    background:linear-gradient(135deg,var(--clean-red),#ff575c);
    color:#fff;font-weight:950;font-size:18px;
    box-shadow:0 14px 30px rgba(216,36,42,.22);
}
.service-clean-content h2{ margin:0; max-width:850px; font-size:clamp(30px,4vw,52px)!important; }
.service-clean-content p{ max-width:860px; margin:14px 0 0; color:var(--clean-muted); font-size:17px; line-height:1.7; }
.service-clean-content ul{ list-style:none; padding:0; margin:26px 0 0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
.service-clean-content li{
    position:relative;
    padding:15px 16px 15px 42px;
    border-radius:16px;
    background:#f4f5f7;
    color:#202833;
    line-height:1.45;
}
.service-clean-content li::before{ content:""; position:absolute; left:18px; top:21px; width:9px; height:9px; border-radius:50%; background:var(--clean-red); }
.scope-simple-clean{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    align-items:start;
    padding:clamp(30px,4vw,52px);
    border-radius:30px;
    background:linear-gradient(135deg,#111418,#20262d);
    color:#fff;
    box-shadow:0 24px 70px rgba(0,0,0,.15);
}
.scope-simple-clean p{ color:rgba(255,255,255,.72); }
.scope-simple-clean ul{ list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.scope-simple-clean li{ padding:18px 20px; border-radius:18px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.10); font-weight:800; }
/* Gallery no image hero */
.clean-gallery-hero{ padding:clamp(44px,7vw,82px); display:block!important; grid-template-columns:1fr!important; }
.clean-gallery-hero .gallery-hero__content{ max-width:900px; position:relative; z-index:1; }
.clean-gallery-hero h1{ font-size:clamp(42px,6vw,76px)!important; margin:0; }
.clean-gallery-hero p{ max-width:780px; margin-top:18px; line-height:1.65; color:rgba(255,255,255,.76); }
.clean-gallery-hero .gallery-hero__visual{ display:none!important; }
/* Remove old unwanted sections if somehow still present */
.home-visual,.service-hero-panel,.service-preview,.process-band,.quality-strip,.service-detail-grid{ display:none!important; }
.premium-card:hover,.content-item:hover{ transform:none!important; }
@media (max-width:1050px){
    .home-overview,.scope-simple-clean{ grid-template-columns:1fr; }
    .scope-clean-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:800px){
    .clean-hero,.gallery-hero,.contact-premium-hero,.home-overview,.simple-scope,.services-list-clean,.scope-simple-clean,.premium-bottom-cta{ width:calc(100% - 20px); }
    .clean-hero{ padding:36px 22px; border-radius:26px; }
    .clean-hero h1,.gallery-hero h1,.contact-hero-copy h1{ font-size:clamp(34px,10vw,54px)!important; line-height:1.1!important; letter-spacing:-.04em!important; }
    .clean-hero p{ font-size:16px; line-height:1.6; }
    .home-overview{ gap:12px; }
    .overview-card{ min-height:0; padding:28px 22px; border-radius:24px; }
    .overview-card h2,.simple-scope h2,.scope-simple-clean h2,.service-clean-content h2,.contact-cta h2{ font-size:clamp(28px,8vw,42px)!important; line-height:1.12!important; }
    .scope-clean-grid{ grid-template-columns:1fr; }
    .service-clean-card{ grid-template-columns:1fr; gap:18px; padding:28px 20px; border-radius:24px; }
    .service-clean-content ul{ grid-template-columns:1fr; }
    .scope-simple-clean{ padding:28px 20px; border-radius:24px; }
    .clean-actions,.clean-actions .contact-action{ width:100%; }
}
@media (max-width:430px){
    .clean-hero,.gallery-hero,.contact-premium-hero,.home-overview,.simple-scope,.services-list-clean,.scope-simple-clean,.premium-bottom-cta{ width:calc(100% - 16px); }
    .clean-hero{ padding:30px 18px; }
    .clean-hero h1,.gallery-hero h1,.contact-hero-copy h1{ font-size:34px!important; }
    .overview-card h2,.simple-scope h2,.scope-simple-clean h2,.service-clean-content h2,.contact-cta h2{ font-size:28px!important; }
}


/* final refinements */
.scope-clean-grid.premium{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}
.scope-clean-grid.premium .scope-clean-item{
background:linear-gradient(135deg,#fff,#f6f6f7);
padding:32px;
border-radius:24px;
min-height:180px;
display:flex;
flex-direction:column;
justify-content:center;
box-shadow:var(--shadow-soft);
border-top:4px solid var(--red);
}
.scope-clean-grid.premium strong{font-size:1.6rem;margin-bottom:12px}
.scope-clean-grid.premium span{font-size:1rem;line-height:1.6}

@media(max-width:1000px){
.scope-clean-grid.premium{grid-template-columns:1fr 1fr;}
}
@media(max-width:640px){
.scope-clean-grid.premium{grid-template-columns:1fr;}
}

.cooperation-grid,.cooperation-content{
align-items:center!important;
}

.gallery-hero,.hero-gallery,.gallery-page .hero-section{
min-height:auto!important;
padding-bottom:60px!important;
}
.gallery-page .hero-content{
max-width:900px;
}


/* =========================================================
   AGENCY FINAL ITERATION — unified premium system
   ========================================================= */
:root{
    --agency-red:#d8242a;
    --agency-red-soft:#ff454b;
    --agency-dark:#111418;
    --agency-panel:#1b2027;
    --agency-text:#111418;
    --agency-muted:#66707e;
    --agency-line:rgba(17,20,24,.08);
    --agency-card:#ffffff;
    --agency-radius:30px;
    --agency-radius-lg:36px;
    --agency-shadow:0 22px 60px rgba(13,18,26,.08);
    --agency-shadow-dark:0 26px 72px rgba(0,0,0,.16);
}
html{scroll-behavior:smooth;}
body{font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif!important;color:var(--agency-text);}
.clean-page, .gallery-page, .contact-page{background:#f3f4f6!important;}
.clean-main, .services-clean, .home-clean, main{overflow:hidden;}
.site-header{z-index:1000;}

/* unified wrappers */
.clean-hero,
.contact-premium-hero,
.gallery-hero,
.home-overview,
.simple-scope,
.services-list-clean,
.scope-simple-clean,
.contact-cta,
.project-showcase,
.gallery-section,
.contact-grid{
    width:min(1220px,calc(100% - 40px))!important;
    margin-left:auto!important;
    margin-right:auto!important;
}

/* typography — prevents ugly letter collisions */
.clean-hero h1,
.gallery-hero h1,
.contact-hero-copy h1,
.home-overview h2,
.simple-scope h2,
.service-clean-card h2,
.scope-simple-clean h2,
.contact-cta h2,
.section-heading h2{
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif!important;
    font-weight:850!important;
    letter-spacing:-.035em!important;
    line-height:1.06!important;
    word-break:normal!important;
    overflow-wrap:break-word!important;
    hyphens:none!important;
    text-wrap:balance;
}
.clean-hero h1,
.gallery-hero h1,
.contact-hero-copy h1{
    font-size:clamp(42px,5.2vw,68px)!important;
    max-width:880px!important;
}
.clean-hero p,
.gallery-hero p,
.contact-hero-copy p{
    font-size:clamp(16px,1.35vw,20px)!important;
    line-height:1.72!important;
    max-width:760px!important;
}
.clean-eyebrow,.section-kicker,.eyebrow,.card-kicker{
    letter-spacing:.16em!important;
    font-size:12px!important;
    font-weight:900!important;
}

/* compact but premium hero system */
.clean-hero,
.gallery-hero,
.contact-premium-hero{
    border-radius:var(--agency-radius-lg)!important;
    margin-top:26px!important;
    margin-bottom:24px!important;
    background:
        linear-gradient(135deg,rgba(216,36,42,.20),transparent 34%),
        radial-gradient(circle at 92% 4%,rgba(255,69,75,.18),transparent 32%),
        linear-gradient(135deg,#111418 0%,#1c222a 100%)!important;
    box-shadow:var(--agency-shadow-dark)!important;
}
.clean-hero{padding:clamp(52px,6vw,78px)!important;}
.gallery-hero.clean-gallery-hero{padding:clamp(46px,5vw,64px)!important;min-height:0!important;}
.contact-premium-hero{padding:clamp(48px,5vw,72px)!important;}
.gallery-hero::before,.clean-hero::before,.contact-premium-hero::before{opacity:.9;}

/* homepage — premium, simple and clear */
.home-overview{
    display:grid!important;
    grid-template-columns:1.05fr .95fr!important;
    gap:18px!important;
    margin-top:24px!important;
    margin-bottom:24px!important;
}
.overview-card{
    min-height:0!important;
    padding:clamp(30px,4vw,52px)!important;
    border-radius:var(--agency-radius)!important;
    border:1px solid rgba(17,20,24,.07)!important;
    box-shadow:var(--agency-shadow)!important;
    background:linear-gradient(145deg,#fff,#fafafa)!important;
}
.overview-card--dark{
    background:
        linear-gradient(135deg,rgba(216,36,42,.18),transparent 42%),
        linear-gradient(145deg,#111418,#20262d)!important;
    color:#fff!important;
}
.overview-card h2{font-size:clamp(30px,3.2vw,46px)!important;margin:0 0 22px!important;}
.overview-card p{font-size:17px!important;line-height:1.78!important;margin:0!important;color:var(--agency-muted)!important;}
.overview-card--dark p{color:rgba(255,255,255,.78)!important;}

/* homepage focus — richer cards, no cheap list feel */
.simple-scope{
    padding:clamp(30px,4.5vw,56px)!important;
    border-radius:var(--agency-radius)!important;
    box-shadow:var(--agency-shadow)!important;
    border:1px solid rgba(17,20,24,.07)!important;
    background:linear-gradient(180deg,#fff,#fbfbfc)!important;
}
.simple-scope .section-heading{max-width:780px;margin-bottom:26px!important;}
.simple-scope h2{font-size:clamp(32px,3.6vw,50px)!important;margin:0!important;}
.scope-clean-grid,
.scope-clean-grid.premium{
    display:grid!important;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:16px!important;
    margin-top:28px!important;
}
.scope-clean-grid .scope-clean-item,
.scope-clean-grid.premium .scope-clean-item{
    position:relative!important;
    min-height:210px!important;
    padding:28px 24px!important;
    border-radius:26px!important;
    background:#f5f6f8!important;
    border:1px solid rgba(17,20,24,.08)!important;
    border-top:0!important;
    box-shadow:none!important;
    overflow:hidden!important;
    justify-content:flex-end!important;
}
.scope-clean-grid .scope-clean-item::before{
    content:"";
    position:absolute;
    inset:0 0 auto 0;
    height:5px;
    background:linear-gradient(90deg,var(--agency-red),rgba(216,36,42,.08));
}
.scope-clean-grid .scope-clean-item::after{
    content:"";
    position:absolute;
    right:-38px;
    top:-38px;
    width:118px;
    height:118px;
    border-radius:50%;
    border:1px solid rgba(216,36,42,.16);
    background:rgba(216,36,42,.04);
}
.scope-clean-grid .scope-clean-item:hover{
    background:#fff!important;
    border-color:rgba(216,36,42,.18)!important;
    box-shadow:0 18px 38px rgba(13,18,26,.08)!important;
    transform:none!important;
}
.scope-clean-grid.premium strong,.scope-clean-item strong{
    font-size:clamp(20px,1.55vw,26px)!important;
    line-height:1.18!important;
    margin:0 0 14px!important;
    position:relative!important;
    z-index:1!important;
}
.scope-clean-grid.premium span,.scope-clean-item span{
    font-size:15.5px!important;
    line-height:1.55!important;
    color:var(--agency-muted)!important;
    margin:0!important;
    position:relative!important;
    z-index:1!important;
}

/* services — clean premium cards, no numbers */
.services-list-clean{gap:18px!important;margin-top:24px!important;margin-bottom:24px!important;}
.service-clean-card{
    display:block!important;
    padding:clamp(30px,4vw,52px)!important;
    border-radius:var(--agency-radius)!important;
    border:1px solid rgba(17,20,24,.07)!important;
    background:linear-gradient(145deg,#fff,#fbfbfc)!important;
    box-shadow:var(--agency-shadow)!important;
    overflow:hidden!important;
    position:relative!important;
}
.service-clean-card::before{
    content:"";
    position:absolute;
    left:0;top:0;right:0;height:5px;
    background:linear-gradient(90deg,var(--agency-red),rgba(216,36,42,.06));
}
.service-clean-number{display:none!important;}
.service-clean-content{max-width:none!important;}
.service-clean-content h2{font-size:clamp(30px,3.6vw,48px)!important;margin:0!important;max-width:860px!important;}
.service-clean-content p{font-size:16.5px!important;line-height:1.72!important;margin-top:14px!important;max-width:840px!important;color:var(--agency-muted)!important;}
.service-clean-content ul{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:12px!important;
    margin-top:28px!important;
}
.service-clean-content li{
    background:#f4f5f7!important;
    border:1px solid rgba(17,20,24,.05)!important;
    border-radius:16px!important;
    padding:16px 18px 16px 44px!important;
    color:#1d2530!important;
}

/* cooperation — symmetrical on desktop */
.scope-simple-clean{
    grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr)!important;
    align-items:center!important;
    gap:clamp(28px,5vw,64px)!important;
    padding:clamp(34px,5vw,62px)!important;
    border-radius:var(--agency-radius-lg)!important;
}
.scope-simple-clean > div{align-self:center!important;max-width:560px!important;}
.scope-simple-clean ul{align-self:center!important;width:100%!important;gap:14px!important;}
.scope-simple-clean li{
    min-height:58px!important;
    display:flex!important;
    align-items:center!important;
    padding:17px 20px!important;
    border-radius:17px!important;
}

/* gallery — compact hero and unified spacing */
.gallery-hero.clean-gallery-hero{margin-bottom:24px!important;}
.clean-gallery-hero .gallery-hero__content{max-width:820px!important;}
.clean-gallery-hero h1{font-size:clamp(42px,5.2vw,66px)!important;}
.clean-gallery-hero p{margin-top:16px!important;max-width:760px!important;}
.project-showcase{margin-top:24px!important;}
.project-grid{gap:18px!important;}
.project-card,.gallery-tile{border-radius:24px!important;}

/* CTA/cards common rhythm */
.contact-cta,
.premium-bottom-cta{
    border-radius:var(--agency-radius)!important;
    padding:clamp(30px,4vw,52px)!important;
    margin-top:24px!important;
    margin-bottom:34px!important;
}
.contact-action{white-space:nowrap;}

@media (max-width:1050px){
    .home-overview{grid-template-columns:1fr!important;}
    .scope-clean-grid,.scope-clean-grid.premium{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
    .scope-simple-clean{grid-template-columns:1fr!important;align-items:stretch!important;}
    .scope-simple-clean > div{max-width:720px!important;}
}
@media (max-width:800px){
    .clean-hero,.contact-premium-hero,.gallery-hero,.home-overview,.simple-scope,.services-list-clean,.scope-simple-clean,.contact-cta,.project-showcase,.gallery-section,.contact-grid{
        width:calc(100% - 20px)!important;
    }
    .clean-hero,.contact-premium-hero,.gallery-hero.clean-gallery-hero{padding:36px 22px!important;border-radius:26px!important;}
    .clean-hero h1,.gallery-hero h1,.contact-hero-copy h1{font-size:clamp(34px,10vw,50px)!important;line-height:1.08!important;letter-spacing:-.032em!important;}
    .overview-card,.simple-scope,.service-clean-card,.scope-simple-clean,.contact-cta{border-radius:24px!important;padding:28px 22px!important;}
    .overview-card h2,.simple-scope h2,.service-clean-content h2,.scope-simple-clean h2,.contact-cta h2{font-size:clamp(28px,8vw,40px)!important;line-height:1.1!important;}
    .scope-clean-grid,.scope-clean-grid.premium{grid-template-columns:1fr!important;gap:12px!important;}
    .scope-clean-grid .scope-clean-item,.scope-clean-grid.premium .scope-clean-item{min-height:154px!important;padding:24px 22px!important;}
    .service-clean-content ul{grid-template-columns:1fr!important;}
    .contact-action{width:100%;justify-content:center;white-space:normal;text-align:center;}
}
@media (max-width:430px){
    .clean-hero,.contact-premium-hero,.gallery-hero.clean-gallery-hero{padding:32px 18px!important;}
    .clean-hero h1,.gallery-hero h1,.contact-hero-copy h1{font-size:34px!important;}
    .clean-hero p,.gallery-hero p,.contact-hero-copy p{font-size:15.5px!important;}
    .overview-card,.simple-scope,.service-clean-card,.scope-simple-clean,.contact-cta{padding:24px 18px!important;}
}


/* === FINAL CLEANUP: remove technical grid patterns everywhere requested === */
body::before,
body::after,
.contact-hero::before,
.contact-hero::after,
.gallery-hero::before,
.gallery-hero::after,
.fotogalerie-hero::before,
.fotogalerie-hero::after,
.premium-hero::before,
.premium-hero::after,
.page-hero::before,
.page-hero::after,
.hero::before,
.hero::after,
.agency-hero::before,
.agency-hero::after,
.contact-premium-hero::before,
.contact-premium-hero::after,
.gallery-premium-hero::before,
.gallery-premium-hero::after {
    background-image: none !important;
    background: none !important;
    opacity: 0 !important;
    display: none !important;
}

.contact-hero,
.gallery-hero,
.fotogalerie-hero,
.premium-hero,
.page-hero,
.hero,
.agency-hero,
.contact-premium-hero,
.gallery-premium-hero {
    background-image: linear-gradient(135deg, #161a1f 0%, #101318 58%, #241216 100%) !important;
}

/* remove global page grid/technical overlay */
body {
    background-image: linear-gradient(180deg, #f4f5f7 0%, #ffffff 100%) !important;
}



/* === FINAL PRODUCTION HARDENING === */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

a[href^="tel:"],
a[href^="mailto:"] {
    word-break: break-word;
}

@media (max-width: 768px) {
    h1, .hero h1, .page-hero h1, .premium-hero h1, .contact-hero h1, .gallery-hero h1 {
        font-size: clamp(2.35rem, 11vw, 4.2rem) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.055em !important;
    }

    h2, .section-title, .section-heading {
        font-size: clamp(1.9rem, 8vw, 3rem) !important;
        line-height: 1.02 !important;
        letter-spacing: -0.045em !important;
    }

    .container, main, section {
        max-width: 100%;
    }
}

/* Disable leftover decorative grids in requested hero sections */
body::before,
body::after,
.hero::before,
.hero::after,
.page-hero::before,
.page-hero::after,
.premium-hero::before,
.premium-hero::after,
.contact-hero::before,
.contact-hero::after,
.gallery-hero::before,
.gallery-hero::after,
.fotogalerie-hero::before,
.fotogalerie-hero::after {
    background-image: none !important;
    background: none !important;
}


/* remove remaining grid overlays on homepage/services */
.hero::before,.hero::after,.page-hero::before,.page-hero::after,
.home-hero::before,.home-hero::after,
.services-hero::before,.services-hero::after{
display:none!important;
background:none!important;
background-image:none!important;
}


/* === FINAL HEADER POLISH: logo + hamburger alignment === */
header.site-header,
header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: clamp(12px, 2vw, 28px) !important;
    min-height: 78px !important;
    padding: 10px 18px !important;
}

.logo-link {
    height: 56px !important;
    min-width: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 1 auto !important;
    padding: 0 !important;
    border-radius: 17px !important;
    background: #08090b !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.025) !important;
    overflow: hidden !important;
}

header img {
    display: block !important;
    width: auto !important;
    height: 56px !important;
    max-width: 100% !important;
    padding: 7px 14px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    object-fit: contain !important;
}

.main-nav {
    margin-left: auto !important;
}

.menu-toggle {
    align-self: center !important;
    margin: 0 !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    flex: 0 0 52px !important;
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    border-radius: 16px !important;
    display: none;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 28px rgba(201,31,31,.18), inset 0 0 0 1px rgba(255,255,255,.035) !important;
}

@media (min-width: 801px) {
    header.site-header,
    header {
        min-height: 84px !important;
        padding: 12px 20px !important;
    }

    .logo-link {
        height: 58px !important;
    }

    header img {
        height: 58px !important;
        padding: 8px 16px !important;
    }
}

@media (max-width: 800px) {
    header.site-header,
    header {
        top: 8px !important;
        width: calc(100% - 16px) !important;
        min-height: 78px !important;
        padding: 10px 12px !important;
        border-radius: 20px !important;
    }

    .logo-link {
        height: 54px !important;
        max-width: calc(100% - 66px) !important;
        border-radius: 15px !important;
    }

    header img {
        height: 54px !important;
        max-width: min(210px, calc(100vw - 118px)) !important;
        padding: 7px 10px !important;
    }

    .menu-toggle {
        display: inline-flex !important;
        flex: 0 0 52px !important;
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
    }

    .main-nav {
        top: 92px !important;
    }
}

@media (max-width: 430px) {
    header.site-header,
    header {
        width: calc(100% - 14px) !important;
        min-height: 74px !important;
        padding: 9px 10px !important;
        border-radius: 18px !important;
    }

    .logo-link {
        height: 50px !important;
        max-width: calc(100% - 62px) !important;
        border-radius: 14px !important;
    }

    header img {
        height: 50px !important;
        max-width: min(205px, calc(100vw - 112px)) !important;
        padding: 7px 9px !important;
    }

    .menu-toggle {
        flex-basis: 50px !important;
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        border-radius: 15px !important;
    }

    .main-nav {
        top: 86px !important;
    }
}

@media (max-width: 360px) {
    header img {
        max-width: 172px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

