@layer reset, tokens, base, layout, components, pages, utilities;

@layer reset {
    *, *::before, *::after { box-sizing: border-box; }
    html { color-scheme: light; scroll-behavior: smooth; }
    body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
    ul, ol { margin: 0; padding: 0; }
    img, picture, video, canvas, svg { display: block; max-width: 100%; }
    button, input, textarea, select { font: inherit; }
    button { color: inherit; }
    a { color: inherit; text-decoration: none; }
    table { border-collapse: collapse; }
}

@layer tokens {
    @font-face {
        font-family: "Inter";
        font-style: normal;
        font-weight: 400 700;
        font-display: swap;
        src: url("../fonts/inter-latin-ext.woff2") format("woff2");
        unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    @font-face {
        font-family: "Inter";
        font-style: normal;
        font-weight: 400 700;
        font-display: swap;
        src: url("../fonts/inter-latin.woff2") format("woff2");
        unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }
    @font-face {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600 800;
        font-display: swap;
        src: url("../fonts/manrope-latin-ext.woff2") format("woff2");
        unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }
    @font-face {
        font-family: "Manrope";
        font-style: normal;
        font-weight: 600 800;
        font-display: swap;
        src: url("../fonts/manrope-latin.woff2") format("woff2");
        unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }

    :root {
        --red: #df252b;
        --red-dark: #b9181d;
        --red-soft: #fff1f1;
        --ink: #101214;
        --graphite: #1b1e21;
        --steel: #3f454b;
        --muted: #686f75;
        --concrete: #e9e9e6;
        --surface: #f6f6f3;
        --surface-2: #efefec;
        --white: #fff;
        --border: #dfe1df;
        --border-dark: rgb(255 255 255 / .14);
        --container: 1360px;
        --gutter: clamp(1.125rem, 3vw, 2.125rem);
        --radius-sm: 6px;
        --radius: 10px;
        --radius-lg: 16px;
        --shadow-soft: 0 16px 45px rgb(15 18 20 / .08);
        --shadow-strong: 0 28px 70px rgb(15 18 20 / .16);
        --transition-fast: 180ms ease;
        --transition: 280ms cubic-bezier(.2, .7, .2, 1);
        --header-height: 5rem;
    }
}

@layer base {
    body {
        min-width: 320px;
        background: var(--white);
        color: var(--ink);
        font-family: Inter, "Segoe UI", Arial, sans-serif;
        font-size: 1rem;
        line-height: 1.65;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
    }

    body.is-locked { overflow: hidden; }

    ::selection { background: var(--red); color: var(--white); }

    :focus-visible {
        outline: 3px solid rgb(223 37 43 / .42);
        outline-offset: 3px;
    }

    h1, h2, h3, h4 {
        font-family: Manrope, "Segoe UI", Arial, sans-serif;
        font-weight: 800;
        line-height: 1.08;
        letter-spacing: -.035em;
    }

    h1 { font-size: clamp(2.5rem, 5vw, 4.75rem); }
    h2 { font-size: clamp(2rem, 3.35vw, 3rem); }
    h3 { font-size: clamp(1.15rem, 1.6vw, 1.45rem); }
    em { color: var(--red); font-style: normal; }
    p { color: var(--steel); }

    .skip-link {
        position: fixed;
        z-index: 1000;
        top: .75rem;
        left: .75rem;
        padding: .75rem 1rem;
        transform: translateY(-160%);
        background: var(--red);
        color: var(--white);
        font-weight: 800;
    }
    .skip-link:focus { transform: translateY(0); }
}

@layer layout {
    .container {
        width: min(calc(100% - (var(--gutter) * 2)), var(--container));
        margin-inline: auto;
    }

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

    .section-heading {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 2rem;
        margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
    }
    .section-heading > div { max-width: 52rem; }
    .section-heading h2 { margin-top: .85rem; }
    .section-heading p { max-width: 43rem; margin-top: 1rem; font-size: 1.075rem; }
    .section-heading--light h2,
    .section-heading--light p { color: var(--white); }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
        align-items: stretch;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@layer components {
    .icon { width: 1.35rem; height: 1.35rem; flex: 0 0 auto; }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: .65rem;
        color: var(--red);
        font-size: .75rem;
        font-weight: 800;
        letter-spacing: .14em;
        line-height: 1.2;
        text-transform: uppercase;
    }
    .eyebrow > span { width: 1.55rem; height: 2px; background: currentColor; }

    .button {
        display: inline-flex;
        min-height: 3.25rem;
        align-items: center;
        justify-content: center;
        gap: .75rem;
        padding: .8rem 1.2rem;
        border: 1px solid transparent;
        border-radius: var(--radius-sm);
        cursor: pointer;
        font-size: .9rem;
        font-weight: 800;
        transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
    }
    .button:hover { transform: translateY(-2px); }
    .button .icon { width: 1.1rem; height: 1.1rem; transition: transform var(--transition-fast); }
    .button:hover .icon { transform: translateX(3px); }
    .button--red { background: var(--red); color: var(--white); }
    .button--red:hover { background: var(--red-dark); }
    .button--dark { background: var(--ink); color: var(--white); }
    .button--dark:hover { background: var(--red); }
    .button--outline { border-color: var(--red); background: transparent; color: var(--red); }
    .button--outline:hover { background: var(--red); color: var(--white); }
    .button--ghost { border-color: rgb(255 255 255 / .55); background: rgb(16 18 20 / .18); color: var(--white); }
    .button--ghost:hover { border-color: var(--white); background: rgb(16 18 20 / .45); }

    .text-link {
        display: inline-flex;
        min-height: 2.75rem;
        align-items: center;
        gap: .55rem;
        color: var(--red);
        font-size: .9rem;
        font-weight: 800;
    }
    .text-link .icon { width: 1.05rem; height: 1.05rem; transition: transform var(--transition-fast); }
    .text-link:hover .icon { transform: translateX(4px); }

    .topbar { min-height: 2.25rem; background: var(--ink); color: rgb(255 255 255 / .78); }
    .topbar__inner { display: flex; min-height: 2.25rem; align-items: center; justify-content: space-between; gap: 1.5rem; font-size: .75rem; }
    .topbar span, .topbar a { display: inline-flex; align-items: center; gap: .5rem; }
    .topbar .icon { width: .9rem; height: .9rem; color: var(--red); }
    .topbar a { align-self: stretch; padding-inline: 1.1rem; background: var(--red); color: var(--white); }

    .site-header {
        position: sticky;
        z-index: 100;
        top: 0;
        height: var(--header-height);
        border-bottom: 1px solid rgb(16 18 20 / .08);
        background: rgb(255 255 255 / .96);
        box-shadow: 0 4px 22px rgb(16 18 20 / .05);
        backdrop-filter: blur(12px);
        transition: transform var(--transition), box-shadow var(--transition);
    }
    .site-header.is-hidden { transform: translateY(-105%); }
    .site-header__inner { display: flex; height: 100%; align-items: center; gap: 1.3rem; }
    .brand {
        display: flex;
        width: 15.5rem;
        height: 100%;
        flex: 0 0 auto;
        align-items: center;
        margin-right: auto;
        padding: .7rem 1rem .7rem 0;
        background: transparent;
        box-shadow: none;
    }
    .brand img { width: 100%; height: auto; max-height: 3rem; object-fit: contain; }

    .desktop-nav { align-self: stretch; }
    .desktop-nav > ul { display: flex; height: 100%; align-items: stretch; list-style: none; }
    .desktop-nav > ul > li { position: relative; display: flex; }
    .desktop-nav > ul > li > a {
        position: relative;
        display: flex;
        min-width: 2.75rem;
        align-items: center;
        gap: .3rem;
        padding-inline: .72rem;
        font-size: .84rem;
        font-weight: 750;
        white-space: nowrap;
    }
    .desktop-nav > ul > li > a::after {
        position: absolute;
        right: .72rem;
        bottom: 0;
        left: .72rem;
        height: 3px;
        background: var(--red);
        content: "";
        transform: scaleX(0);
        transition: transform var(--transition-fast);
    }
    .desktop-nav > ul > li > a:hover::after,
    .desktop-nav > ul > li > a[aria-current="page"]::after { transform: scaleX(1); }
    .desktop-nav .icon { width: .9rem; height: .9rem; }
    .nav-dropdown {
        position: absolute;
        top: calc(100% - 1px);
        left: 0;
        visibility: hidden;
        min-width: 14rem;
        padding: .75rem;
        transform: translateY(.65rem);
        border: 1px solid var(--border);
        background: var(--white);
        box-shadow: var(--shadow-strong);
        opacity: 0;
        transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    }
    .has-dropdown:hover > .nav-dropdown,
    .has-dropdown:focus-within > .nav-dropdown { visibility: visible; transform: translateY(0); opacity: 1; }
    .nav-dropdown--small a { display: block; padding: .85rem; font-size: .9rem; font-weight: 750; }
    .nav-dropdown--small a:hover { background: var(--red-soft); color: var(--red); }
    .mega-menu { left: auto; right: -11rem; display: grid; width: min(60rem, calc(100vw - 2rem)); grid-template-columns: 15rem 1fr; gap: 1.5rem; padding: 1.5rem; }
    .mega-menu__intro { padding: 1.25rem; background: var(--graphite); color: var(--white); }
    .mega-menu__intro span { display: block; margin-bottom: 1.2rem; color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
    .mega-menu__intro strong { display: block; font-family: Manrope, sans-serif; font-size: 1.35rem; line-height: 1.25; }
    .mega-menu__links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .mega-menu__links a { display: grid; min-height: 4rem; grid-template-columns: 1.5rem 1fr auto; align-items: center; gap: .5rem; padding: .7rem; border-bottom: 1px solid var(--border); font-size: .82rem; font-weight: 750; }
    .mega-menu__links a:hover { background: var(--surface); color: var(--red); }
    .mega-menu__links small { color: var(--muted); }
    .mega-menu__links .icon { width: 1rem; height: 1rem; }

    .header-call {
        display: inline-flex;
        min-width: 3rem;
        min-height: 3rem;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        border-radius: var(--radius-sm);
        background: var(--red);
        color: var(--white);
        font-size: .8rem;
        font-weight: 800;
    }
    .header-call span { display: none; }
    .header-call .icon { width: 1.1rem; height: 1.1rem; }
    .menu-toggle { display: none; width: 3rem; height: 3rem; align-items: center; justify-content: center; border: 0; background: var(--ink); color: var(--white); cursor: pointer; }

    .drawer-backdrop { position: fixed; z-index: 198; inset: 0; background: rgb(10 12 14 / .72); opacity: 0; transition: opacity var(--transition); }
    .drawer-backdrop.is-open { opacity: 1; }
    .mobile-drawer {
        position: fixed;
        z-index: 199;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        width: min(29rem, 92vw);
        flex-direction: column;
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
        transform: translateX(105%);
        background: var(--white);
        box-shadow: -20px 0 60px rgb(0 0 0 / .25);
        transition: transform var(--transition);
    }
    .mobile-drawer.is-open { transform: translateX(0); }
    .mobile-drawer__head { display: flex; min-height: 5rem; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1rem; background: var(--graphite); }
    .mobile-drawer__head img { width: 13rem; }
    .mobile-drawer__head button { display: grid; width: 2.75rem; height: 2.75rem; place-items: center; border: 1px solid var(--border-dark); background: transparent; color: var(--white); cursor: pointer; }
    .mobile-drawer nav { overflow-y: auto; padding: 1rem; }
    .mobile-drawer nav > a,
    .mobile-drawer nav > .mobile-submenu { display: block; border-bottom: 1px solid var(--border); }
    .mobile-drawer nav > a,
    .mobile-submenu > button { display: flex; width: 100%; min-height: 3.5rem; align-items: center; justify-content: space-between; border: 0; background: transparent; font-size: 1rem; font-weight: 800; text-align: left; cursor: pointer; }
    .mobile-submenu > div { padding: 0 0 .8rem 1rem; }
    .mobile-submenu > div a { display: flex; min-height: 2.75rem; align-items: center; color: var(--steel); font-size: .9rem; font-weight: 650; }
    .mobile-submenu > button .icon { transition: transform var(--transition-fast); }
    .mobile-submenu > button[aria-expanded="true"] .icon { transform: rotate(180deg); }
    .mobile-drawer__call { margin: auto 1rem 0; }

    .service-card {
        position: relative;
        display: flex;
        min-height: 100%;
        flex-direction: column;
        border: 1px solid var(--border);
        background: var(--white);
        box-shadow: 0 8px 24px rgb(15 18 20 / .04);
        transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .service-card::after { position: absolute; right: -1px; bottom: -1px; width: 2.2rem; height: 2.2rem; border-right: 3px solid var(--red); border-bottom: 3px solid var(--red); content: ""; opacity: 0; transition: opacity var(--transition-fast); }
    .service-card:hover { transform: translateY(-4px); border-color: #c8cbca; box-shadow: var(--shadow-soft); }
    .service-card:hover::after { opacity: 1; }
    .service-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 3 / 2; background: var(--concrete); }
    .service-card__media picture,
    .blog-card__media picture,
    .page-hero__image picture,
    .detail-image picture,
    .article-cover picture { display: block; width: 100%; height: 100%; }
    .service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms cubic-bezier(.2, .7, .2, 1); }
    .service-card:hover .service-card__media img { transform: scale(1.04); }
    .service-card__number { position: absolute; top: 1rem; right: 1rem; padding: .35rem .55rem; background: rgb(16 18 20 / .78); color: var(--white); font-size: .68rem; font-weight: 800; letter-spacing: .08em; backdrop-filter: blur(8px); }
    .service-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 1.35rem; }
    .service-card__category { margin-bottom: .8rem; color: var(--red); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
    .service-card h3 a { transition: color var(--transition-fast); }
    .service-card h3 a:hover { color: var(--red); }
    .service-card p { margin-top: .75rem; font-size: .92rem; line-height: 1.6; }
    .service-card .text-link { margin-top: auto; padding-top: 1rem; }

    .blog-card { display: flex; min-height: 100%; flex-direction: column; border-bottom: 3px solid var(--ink); background: var(--white); box-shadow: 0 10px 35px rgb(16 18 20 / .07); transition: transform var(--transition), border-color var(--transition); }
    .blog-card:hover { transform: translateY(-4px); border-color: var(--red); }
    .blog-card__media { display: block; overflow: hidden; aspect-ratio: 16 / 9; background: var(--concrete); }
    .blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms ease; }
    .blog-card:hover .blog-card__media img { transform: scale(1.04); }
    .blog-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.25rem; }
    .blog-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .85rem; color: var(--muted); font-size: .7rem; font-weight: 750; text-transform: uppercase; }
    .blog-card__meta span { color: var(--red); }
    .blog-card h3 { font-size: 1.15rem; line-height: 1.3; letter-spacing: -.02em; }
    .blog-card h3 a:hover { color: var(--red); }
    .blog-card p { margin-top: .7rem; font-size: .9rem; line-height: 1.55; }
    .blog-card .text-link { margin-top: auto; padding-top: .85rem; }

    .breadcrumbs { margin-bottom: 2rem; }
    .breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; list-style: none; color: rgb(255 255 255 / .72); font-size: .78rem; }
    .breadcrumbs li:not(:last-child)::after { margin-left: .6rem; color: var(--red); content: "/"; }
    .breadcrumbs a:hover { color: var(--white); }

    .page-hero { position: relative; overflow: hidden; min-height: 27rem; background: var(--graphite); color: var(--white); }
    .page-hero::before { position: absolute; z-index: 1; inset: 0; background-image: linear-gradient(rgb(255 255 255 / .045) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / .045) 1px, transparent 1px); background-size: 64px 64px; content: ""; mask-image: linear-gradient(to right, #000, transparent 75%); }
    .page-hero::after { position: absolute; right: 9%; bottom: -35%; width: 16rem; height: 34rem; transform: skewX(-18deg); background: var(--red); content: ""; opacity: .8; }
    .page-hero__image { position: absolute; inset: 0; }
    .page-hero__image::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(10 12 14 / .96) 0%, rgb(10 12 14 / .82) 44%, rgb(10 12 14 / .25) 100%); content: ""; }
    .page-hero__image img { width: 100%; height: 100%; object-fit: cover; }
    .page-hero__inner { position: relative; z-index: 2; display: flex; min-height: 27rem; max-width: var(--container); flex-direction: column; justify-content: center; padding-block: 4rem; }
    .page-hero h1 { max-width: 56rem; margin-top: .9rem; font-size: clamp(2.5rem, 4vw, 3.85rem); }
    .page-hero p { max-width: 48rem; margin-top: 1.25rem; color: rgb(255 255 255 / .78); font-size: 1.075rem; line-height: 1.7; }

    .accordion { border-top: 1px solid var(--border); }
    .accordion__item { border-bottom: 1px solid var(--border); }
    .accordion__item h3 { font-size: 1rem; letter-spacing: 0; }
    .accordion__item button { display: flex; width: 100%; min-height: 4.5rem; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1rem 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
    .accordion__item button > span:first-child { font-weight: 800; }
    .accordion__icon { display: grid; width: 2.5rem; height: 2.5rem; flex: 0 0 auto; place-items: center; border: 1px solid var(--border); color: var(--red); }
    .accordion__icon .icon { grid-area: 1 / 1; width: 1rem; height: 1rem; }
    .accordion__icon .minus { display: none; }
    .accordion__item.is-open .accordion__icon { border-color: var(--red); background: var(--red); color: var(--white); }
    .accordion__item.is-open .accordion__icon .plus { display: none; }
    .accordion__item.is-open .accordion__icon .minus { display: block; }
    .accordion__panel { overflow: hidden; }
    .accordion__panel > div { padding: 0 4rem 1.4rem 0; }
    .accordion__panel p { font-size: .96rem; }

    .cta-band { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 6vw, 5.5rem); background: var(--ink); color: var(--white); }
    .cta-band::before { position: absolute; inset: 0; background: linear-gradient(100deg, rgb(16 18 20 / .96), rgb(16 18 20 / .78)), url("../images/stock/saha-ekskavator.jpg") center 54% / cover; content: ""; }
    .cta-band::after { position: absolute; top: -50%; right: 1.5rem; width: 6rem; height: 200%; transform: skewX(-18deg); background: var(--red); content: ""; opacity: .9; }
    .cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 3rem; padding-right: clamp(7.5rem, 10vw, 10rem); }
    .cta-band h2 { max-width: 50rem; margin-top: .8rem; font-size: clamp(2rem, 3.5vw, 3.3rem); }
    .cta-band p { max-width: 42rem; margin-top: .8rem; color: rgb(255 255 255 / .68); }
    .cta-band .button { z-index: 1; flex: 0 0 auto; }

    .gallery-card { position: relative; overflow: hidden; min-width: 24rem; aspect-ratio: 4 / 3; padding: 0; border: 0; background: var(--graphite); color: var(--white); cursor: zoom-in; scroll-snap-align: start; }
    .gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 650ms ease, opacity var(--transition); }
    .gallery-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgb(8 10 12 / .8)); content: ""; }
    .gallery-card:hover img { transform: scale(1.04); opacity: .9; }
    .gallery-card__meta { position: absolute; z-index: 1; right: 1rem; bottom: 1rem; left: 1rem; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
    .gallery-card__meta strong { font-family: Manrope, sans-serif; font-size: 1.15rem; }
    .gallery-card__meta small { color: rgb(255 255 255 / .65); font-size: .7rem; text-transform: uppercase; }
    .gallery-card__expand { position: absolute; z-index: 2; top: 1rem; right: 1rem; display: grid; width: 2.6rem; height: 2.6rem; place-items: center; background: rgb(16 18 20 / .72); }
    .gallery-card__expand .icon { width: 1rem; height: 1rem; }

    .lightbox { position: fixed; z-index: 300; inset: 0; display: grid; grid-template-columns: 5rem 1fr 5rem; grid-template-rows: 4.5rem 1fr 6.5rem; background: rgb(10 12 14 / .96); color: var(--white); }
    .lightbox[hidden] { display: none; }
    .lightbox__top { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.5rem; padding-inline: 1.5rem; border-bottom: 1px solid var(--border-dark); }
    .lightbox__top strong { margin-right: auto; }
    .lightbox__top span { color: rgb(255 255 255 / .62); font-size: .8rem; }
    .lightbox__top button, .lightbox__nav { display: grid; width: 3rem; height: 3rem; place-items: center; border: 1px solid var(--border-dark); background: transparent; color: var(--white); cursor: pointer; }
    .lightbox__top button:hover, .lightbox__nav:hover { background: var(--red); border-color: var(--red); }
    .lightbox__nav { align-self: center; justify-self: center; }
    .lightbox__nav--prev { grid-column: 1; grid-row: 2; }
    .lightbox__nav--next { grid-column: 3; grid-row: 2; }
    .lightbox__stage { display: grid; grid-column: 2; grid-row: 2; min-width: 0; min-height: 0; place-items: center; padding: 1.5rem; }
    .lightbox__stage img, .lightbox__stage video { max-width: 100%; max-height: 100%; object-fit: contain; }
    .lightbox__thumbs { display: flex; grid-column: 1 / -1; grid-row: 3; gap: .5rem; overflow-x: auto; padding: .8rem 1.5rem; border-top: 1px solid var(--border-dark); }
    .lightbox__thumbs button { width: 5.5rem; flex: 0 0 auto; overflow: hidden; padding: 0; border: 2px solid transparent; background: var(--graphite); cursor: pointer; }
    .lightbox__thumbs button.is-active { border-color: var(--red); }
    .lightbox__thumbs img { width: 100%; height: 100%; object-fit: cover; }

    .detail-sidebar { position: sticky; top: calc(var(--header-height) + 2rem); align-self: start; border: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow-soft); }
    .detail-sidebar__title { display: flex; flex-direction: column; padding: 1.4rem; background: var(--graphite); color: var(--white); }
    .detail-sidebar__title span { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
    .detail-sidebar__title strong { margin-top: .2rem; font-family: Manrope, sans-serif; }
    .detail-sidebar nav a { display: grid; min-height: 3.65rem; grid-template-columns: 1.5rem 1fr auto; align-items: center; gap: .65rem; padding: .65rem 1rem; border-bottom: 1px solid var(--border); font-size: .86rem; font-weight: 750; }
    .detail-sidebar nav a small { color: var(--muted); }
    .detail-sidebar nav a .icon { width: 1rem; height: 1rem; }
    .detail-sidebar nav a:hover,
    .detail-sidebar nav a[aria-current="page"] { background: var(--red-soft); color: var(--red); }
    .detail-sidebar__contact { padding: 1.25rem; background: var(--surface); }
    .detail-sidebar__contact span { display: block; color: var(--muted); font-size: .75rem; font-weight: 750; text-transform: uppercase; }
    .detail-sidebar__contact a { display: flex; align-items: center; gap: .55rem; margin-top: .4rem; color: var(--red); font-weight: 850; }
}

@layer pages {
    .hero { position: relative; height: min(48rem, calc(100svh - 7.25rem)); min-height: 37rem; overflow: hidden; background: var(--ink); color: var(--white); }
    .hero__slides, .hero-slide { position: absolute; inset: 0; }
    .hero-slide { visibility: hidden; opacity: 0; transition: opacity 720ms ease, visibility 720ms ease; }
    .hero-slide.is-active { visibility: visible; opacity: 1; }
    .hero-slide > picture { position: absolute; inset: 0; }
    .hero-slide > picture img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
    .hero-slide.is-active > picture img { animation: hero-zoom 20s linear both; }
    .hero-slide:nth-child(2) > picture img { object-position: center 48%; }
    .hero-slide__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgb(9 11 13 / .94) 0%, rgb(9 11 13 / .78) 43%, rgb(9 11 13 / .16) 78%), linear-gradient(0deg, rgb(9 11 13 / .34), transparent 45%); }
    .hero-slide__shade::before { position: absolute; inset: 0; background-image: linear-gradient(rgb(255 255 255 / .04) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / .04) 1px, transparent 1px); background-size: 72px 72px; content: ""; mask-image: linear-gradient(to right, #000, transparent 80%); }
    .hero-slide__content { position: relative; z-index: 2; display: flex; height: 100%; max-width: var(--container); flex-direction: column; justify-content: center; padding-bottom: 3.5rem; }
    .hero-slide h1, .hero-slide h2 { max-width: 58rem; margin-top: 1rem; font-size: clamp(2.75rem, 5.1vw, 4.9rem); }
    .hero-slide p { max-width: 46rem; margin-top: 1.25rem; color: rgb(255 255 255 / .78); font-size: clamp(1rem, 1.35vw, 1.15rem); line-height: 1.65; }
    .hero-slide__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
    .hero__controls { position: absolute; z-index: 5; right: 0; bottom: 0; left: 0; display: grid; height: 4.5rem; grid-template-columns: auto minmax(8rem, 22rem) 3rem 3rem; align-items: center; justify-content: end; gap: 1rem; color: var(--white); }
    .hero__count { display: flex; align-items: baseline; gap: .3rem; font-size: .75rem; }
    .hero__count strong { color: var(--red); font-family: Manrope, sans-serif; font-size: 1.3rem; }
    .hero__progress { overflow: hidden; height: 2px; background: rgb(255 255 255 / .3); }
    .hero__progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: var(--red); }
    .hero__progress span.is-running { animation: slide-progress 6s linear both; }
    .hero__controls button { display: grid; width: 3rem; height: 3rem; place-items: center; border: 1px solid var(--border-dark); background: rgb(16 18 20 / .4); color: var(--white); cursor: pointer; }
    .hero__controls button:hover { background: var(--red); border-color: var(--red); }
    .hero__badge { position: absolute; z-index: 4; top: 2.25rem; right: 6vw; display: flex; width: 9.5rem; min-height: 11rem; flex-direction: column; justify-content: space-between; padding: 1.25rem; border-top: 4px solid var(--red); background: rgb(16 18 20 / .82); box-shadow: var(--shadow-strong); backdrop-filter: blur(10px); }
    .hero__badge span { font-family: Manrope, sans-serif; font-size: 1.25rem; font-weight: 800; line-height: 1.05; }
    .hero__badge small { color: rgb(255 255 255 / .55); font-size: .58rem; font-weight: 800; letter-spacing: .1em; }

    .solution-strip { background: var(--graphite); color: var(--white); }
    .solution-strip .container { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .solution-strip a { display: grid; min-height: 7.5rem; grid-template-columns: 2rem 1fr auto; align-items: center; gap: .8rem; padding: 1.1rem 1.25rem; border-right: 1px solid var(--border-dark); transition: background var(--transition-fast); }
    .solution-strip a:first-child { border-left: 1px solid var(--border-dark); }
    .solution-strip a:hover { background: var(--red); }
    .solution-strip a > small { align-self: start; margin-top: 1rem; color: var(--red); font-weight: 800; }
    .solution-strip a:hover > small { color: var(--white); }
    .solution-strip a > span { display: flex; flex-direction: column; font-size: .78rem; color: rgb(255 255 255 / .56); }
    .solution-strip a strong { color: var(--white); font-family: Manrope, sans-serif; font-size: 1rem; }
    .solution-strip .icon { width: 1.05rem; height: 1.05rem; }

    .services-home, .services-page { position: relative; background: var(--surface); }
    .services-home::before { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgb(16 18 20 / .028) 1px, transparent 1px), linear-gradient(90deg, rgb(16 18 20 / .028) 1px, transparent 1px); background-size: 78px 78px; content: ""; mask-image: linear-gradient(to bottom, #000, transparent 38%); }
    .services-home > .container { position: relative; }

    .about-home { background: var(--white); }
    .about-home__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
    .about-collage { position: relative; min-height: 40rem; }
    .about-collage__main { width: calc(100% - 4rem); height: 36rem; object-fit: cover; filter: saturate(.82) contrast(1.03); }
    .about-collage__quote { position: absolute; right: 0; bottom: 0; display: flex; width: 15rem; min-height: 13rem; flex-direction: column; justify-content: end; padding: 1.6rem; background: var(--red); color: var(--white); font-family: Manrope, sans-serif; line-height: 1.15; }
    .about-collage__quote strong { margin-bottom: .4rem; font-size: 1.7rem; }
    .about-collage__line { position: absolute; top: 2rem; right: 1.6rem; width: 5rem; height: 5rem; border-top: 2px solid var(--red); border-right: 2px solid var(--red); }
    .about-home__content h2 { margin-top: .9rem; }
    .about-home__content > p { margin-top: 1rem; font-size: 1.04rem; }
    .value-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .5rem; margin: 2rem 0; border-block: 1px solid var(--border); padding-block: 1.5rem; }
    .value-row > span { display: grid; grid-template-columns: auto 1fr; gap: .1rem .55rem; padding-inline: .65rem; border-right: 1px solid var(--border); }
    .value-row > span:last-child { border: 0; }
    .value-row .icon { grid-row: 1 / 3; color: var(--red); }
    .value-row strong { font-size: .78rem; line-height: 1.3; }
    .value-row small { color: var(--muted); font-size: .67rem; }

    .projects-home { background: var(--surface-2); }
    .project-tabs { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: 1.25rem; }
    .project-tabs button { min-height: 3rem; padding: .7rem 1.2rem; border: 1px solid var(--border); background: var(--white); font-size: .82rem; font-weight: 800; cursor: pointer; }
    .project-tabs button:hover, .project-tabs button.is-active { border-color: var(--red); background: var(--red); color: var(--white); }
    .empty-projects { display: grid; min-height: 23rem; grid-template-columns: minmax(19rem, .8fr) minmax(0, 1.2fr); align-items: stretch; border: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow-soft); }
    .empty-projects__graphic { position: relative; overflow: hidden; min-height: 19rem; background: var(--graphite); }
    .empty-projects__graphic::before { position: absolute; inset: 0; background-image: linear-gradient(rgb(255 255 255 / .07) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / .07) 1px, transparent 1px); background-size: 52px 52px; content: ""; }
    .empty-projects__graphic span { position: absolute; bottom: -22%; width: 24%; height: 75%; transform: skewX(-18deg); background: var(--red); }
    .empty-projects__graphic span:nth-child(1) { left: 22%; opacity: .42; }
    .empty-projects__graphic span:nth-child(2) { left: 46%; opacity: .75; }
    .empty-projects__graphic span:nth-child(3) { left: 70%; }
    .empty-projects > div:last-child { align-self: center; padding: clamp(2rem, 4vw, 4.5rem); }
    .empty-projects > div:last-child > span { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
    .empty-projects h3, .empty-projects h2 { max-width: 38rem; margin-top: .75rem; }
    .empty-projects p { max-width: 44rem; margin-top: 1rem; }
    .empty-projects .button { margin-top: 1.4rem; }

    .process-band { padding-block: clamp(4rem, 7vw, 6.5rem); background: var(--graphite); color: var(--white); }
    .process-band .container { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 6vw, 6rem); }
    .process-band__intro h2 { margin-top: .9rem; }
    .process-band ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); list-style: none; }
    .process-band li { display: grid; min-height: 11rem; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.5rem; border-top: 1px solid var(--border-dark); border-left: 1px solid var(--border-dark); }
    .process-band li:nth-child(2n) { border-right: 1px solid var(--border-dark); }
    .process-band li:nth-last-child(-n+2) { border-bottom: 1px solid var(--border-dark); }
    .process-band li > span { color: var(--red); font-family: Manrope, sans-serif; font-weight: 800; }
    .process-band strong { font-family: Manrope, sans-serif; }
    .process-band p { margin-top: .55rem; color: rgb(255 255 255 / .58); font-size: .85rem; }

    .why-us { background: var(--white); }
    .why-us__grid { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: clamp(3rem, 8vw, 8rem); }
    .why-us__title h2 { margin-top: .9rem; }
    .why-us__title p { margin-top: 1rem; }
    .why-us__items { border-top: 1px solid var(--border); }
    .why-us__items article { display: grid; grid-template-columns: 4rem 1fr; gap: 1.5rem; padding: 1.65rem 0; border-bottom: 1px solid var(--border); }
    .why-us__items article > span { color: var(--red); font-family: Manrope, sans-serif; font-size: 1.15rem; font-weight: 800; }
    .why-us__items p { margin-top: .5rem; }

    .gallery-preview { overflow: hidden; background: var(--ink); color: var(--white); }
    .gallery-filmstrip { display: flex; gap: 1rem; overflow-x: auto; padding: 0 max(var(--gutter), calc((100vw - var(--container)) / 2)) 1.25rem; scroll-padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2)); scroll-snap-type: x mandatory; scrollbar-color: var(--red) var(--graphite); }
    .gallery-filmstrip .gallery-card:nth-child(3n+1) { min-width: 31rem; }

    .faq-preview { background: var(--surface); }
    .faq-preview__grid { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: clamp(3rem, 8vw, 8rem); }
    .faq-preview__grid > div:first-child h2 { margin-top: .9rem; }
    .faq-preview__grid > div:first-child p { margin-top: 1rem; }
    .faq-preview__grid > div:first-child .text-link { margin-top: 1rem; }

    .blog-preview { background: var(--white); }

    .local-context { position: relative; overflow: hidden; padding-block: clamp(4.5rem, 8vw, 7rem); background: var(--red); color: var(--white); }
    .local-context::after { position: absolute; top: -45%; right: -3%; width: 28rem; height: 50rem; transform: rotate(18deg); border: 5rem solid rgb(255 255 255 / .07); content: ""; }
    .local-context__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .45fr 1.55fr; align-items: center; gap: clamp(2rem, 7vw, 7rem); }
    .local-context__grid > div:first-child { display: flex; flex-direction: column; border-right: 1px solid rgb(255 255 255 / .3); }
    .local-context__number { font-family: Manrope, sans-serif; font-size: clamp(7rem, 16vw, 14rem); font-weight: 800; line-height: .8; letter-spacing: -.1em; }
    .local-context__grid > div:first-child small { margin-top: 1rem; font-weight: 800; letter-spacing: .25em; }
    .local-context .eyebrow { color: var(--white); }
    .local-context h2 { max-width: 48rem; margin-top: .9rem; }
    .local-context p { max-width: 46rem; margin-top: 1rem; color: rgb(255 255 255 / .78); }
    .local-context__links { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
    .local-context__links a { display: inline-flex; min-height: 2.75rem; align-items: center; gap: .4rem; padding: .55rem .8rem; border: 1px solid rgb(255 255 255 / .35); font-size: .78rem; font-weight: 750; }
    .local-context__links a:hover { background: var(--white); color: var(--red); }
    .local-context__links .icon { width: .9rem; height: .9rem; }

    .editorial-section { background: var(--white); }
    .editorial-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); }
    .editorial-grid h2 { margin-top: .9rem; }
    .editorial-grid p + p { margin-top: 1rem; }
    .lead { color: var(--ink); font-size: clamp(1.15rem, 1.7vw, 1.35rem); font-weight: 550; line-height: 1.6; }

    .service-scope { background: var(--surface); }
    .scope-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
    .scope-grid article { min-height: 18rem; padding: clamp(1.5rem, 3vw, 2.5rem); background: var(--white); }
    .scope-grid article > span { color: var(--red); font-family: Manrope, sans-serif; font-size: 1.35rem; font-weight: 800; }
    .scope-grid h3 { margin-top: 4rem; }
    .scope-grid p { margin-top: .75rem; }

    .about-feature { background: var(--white); }
    .about-feature__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
    .about-feature__grid > img { width: 100%; height: 38rem; object-fit: cover; }
    .about-feature h2 { margin-top: .9rem; }
    .check-list { margin-top: 1.5rem; list-style: none; border-top: 1px solid var(--border); }
    .check-list li { display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; padding-block: 1rem; border-bottom: 1px solid var(--border); }
    .check-list .icon { color: var(--red); }
    .check-list strong { display: block; }

    .malatya-block { background: var(--graphite); color: var(--white); }
    .malatya-block .container { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(2rem, 7vw, 7rem); }
    .malatya-block span { color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
    .malatya-block h2 { margin-top: .7rem; }
    .malatya-block p { color: rgb(255 255 255 / .68); }

    .services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }

    .projects-page { background: var(--surface); }
    .empty-projects--page { min-height: 31rem; }
    .project-ready { background: var(--white); }
    .project-ready .container > div:first-child { max-width: 45rem; margin-bottom: 2.5rem; }
    .project-ready h2 { margin-top: .8rem; }

    .faq-page { background: var(--surface); }
    .faq-page__grid { display: grid; grid-template-columns: minmax(18rem, .65fr) minmax(0, 1.35fr); gap: clamp(2rem, 7vw, 7rem); }
    .faq-page aside { position: sticky; top: calc(var(--header-height) + 2rem); align-self: start; padding: 2rem; background: var(--graphite); color: var(--white); }
    .faq-page aside > span { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
    .faq-page aside h2 { margin-top: .8rem; font-size: 1.8rem; }
    .faq-page aside a { display: flex; min-height: 3.5rem; align-items: center; gap: .65rem; margin-top: 1.5rem; padding: .75rem; background: var(--red); }
    .faq-page aside p { margin-top: 1rem; color: rgb(255 255 255 / .62); font-size: .85rem; }

    .gallery-page { background: var(--surface); }
    .gallery-notice { display: grid; grid-template-columns: .35fr 1.65fr; gap: 2rem; margin-bottom: 2rem; padding: 1.25rem; border-left: 4px solid var(--red); background: var(--white); }
    .gallery-editorial { display: grid; grid-auto-rows: 17rem; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1rem; }
    .gallery-editorial .gallery-card { min-width: 0; aspect-ratio: auto; grid-column: span 4; }
    .gallery-editorial .gallery-card:nth-child(1), .gallery-editorial .gallery-card:nth-child(6) { grid-column: span 7; grid-row: span 2; }
    .gallery-editorial .gallery-card:nth-child(2), .gallery-editorial .gallery-card:nth-child(5) { grid-column: span 5; }
    .gallery-editorial .gallery-card:nth-child(3), .gallery-editorial .gallery-card:nth-child(4), .gallery-editorial .gallery-card:nth-child(7), .gallery-editorial .gallery-card:nth-child(8) { grid-column: span 5; }

    .blog-page { background: var(--surface); }
    .blog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
    .blog-toolbar p { max-width: 35rem; }
    .topic-row { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .5rem; }
    .topic-row span { padding: .45rem .7rem; border: 1px solid var(--border); background: var(--white); font-size: .72rem; font-weight: 750; }
    .blog-grid--all { row-gap: 2rem; }

    .contact-page { background: var(--white); }
    .contact-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 4.5rem); }
    .contact-intro { max-width: 52rem; }
    .contact-intro h2 { max-width: 46rem; margin-top: .9rem; }
    .contact-intro p { max-width: 42rem; margin-top: 1rem; }
    .contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
    .contact-card { display: flex; min-width: 0; min-height: 17.5rem; flex-direction: column; align-items: flex-start; padding: clamp(1.75rem, 3vw, 2.5rem); border: 1px solid var(--border); background: var(--surface); transition: border-color var(--transition), transform var(--transition); }
    a.contact-card:hover { transform: translateY(-4px); border-color: var(--red); }
    .contact-card > span { display: grid; width: 3.5rem; height: 3.5rem; place-items: center; margin-bottom: auto; background: var(--red); color: var(--white); }
    .contact-card > small { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
    .contact-card > strong { max-width: 100%; margin-top: .5rem; overflow-wrap: anywhere; font-family: Manrope, sans-serif; font-size: 1.35rem; line-height: 1.35; }
    .contact-card > em { display: flex; align-items: center; gap: .4rem; margin-top: 1rem; color: var(--red); font-size: .8rem; font-style: normal; font-weight: 750; }
    .contact-card > em .icon { width: 1rem; height: 1rem; }
    .contact-card > p { margin-top: .7rem; font-size: .9rem; }
    .contact-form-panel { display: grid; grid-template-columns: minmax(16rem, .72fr) minmax(0, 1.28fr); gap: clamp(2.5rem, 6vw, 6rem); padding: clamp(2rem, 5vw, 4.5rem); border-top: 4px solid var(--red); background: var(--graphite); color: var(--white); }
    .contact-form-panel__intro { align-self: start; }
    .contact-form-panel__intro h2 { max-width: 30rem; margin-top: .9rem; }
    .contact-form-panel__intro p { max-width: 30rem; margin-top: 1rem; color: rgb(255 255 255 / .7); }
    .contact-form-panel__intro > small { display: block; margin-top: 1.5rem; color: rgb(255 255 255 / .5); font-size: .78rem; }
    .contact-form { min-width: 0; }
    .contact-form__notice { margin-bottom: 1.25rem; padding: .9rem 1rem; border-left: 3px solid currentColor; background: rgb(255 255 255 / .07); color: rgb(255 255 255 / .86); font-size: .8rem; }
    .contact-form__notice.is-error { color: #ff9da0; }
    .contact-form__notice.is-success { color: #9ee0b8; }
    .contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
    .contact-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
    .contact-field { display: grid; min-width: 0; gap: .55rem; }
    .contact-field > span { color: rgb(255 255 255 / .82); font-size: .8rem; font-weight: 750; }
    .contact-field > small { color: #ff9da0; font-size: .7rem; line-height: 1.4; }
    .contact-field > small[hidden] { display: none; }
    .contact-field b { color: var(--red); }
    .contact-field input, .contact-field select, .contact-field textarea { width: 100%; min-width: 0; min-height: 3.5rem; padding: .85rem 1rem; border: 1px solid rgb(255 255 255 / .2); border-radius: 0; outline: 0; background: #24282b; color: var(--white); transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast); }
    .contact-field textarea { min-height: 10rem; resize: vertical; line-height: 1.55; }
    .contact-field select { color-scheme: dark; }
    .contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus { border-color: var(--red); background: #202427; box-shadow: 0 0 0 3px rgb(228 35 42 / .18); }
    .contact-field [aria-invalid="true"] { border-color: #ff676c; box-shadow: 0 0 0 3px rgb(228 35 42 / .14); }
    .contact-field--full { grid-column: 1 / -1; }
    .contact-captcha { min-width: 0; grid-column: 1 / -1; margin: .25rem 0 0; padding: 1.35rem 0 0; border: 0; border-top: 1px solid rgb(255 255 255 / .14); }
    .contact-captcha legend { padding-right: .75rem; color: rgb(255 255 255 / .82); font-size: .8rem; font-weight: 750; }
    .contact-captcha legend b { color: var(--red); }
    .contact-captcha__layout { display: grid; grid-template-columns: 15rem 3.5rem minmax(12rem, 1fr); align-items: start; gap: .75rem; }
    .contact-captcha__layout > img { width: 15rem; height: 4.5rem; border: 1px solid rgb(255 255 255 / .2); background: var(--surface); object-fit: cover; }
    .contact-captcha__refresh { display: grid; width: 3.5rem; height: 4.5rem; place-items: center; padding: 0; border: 1px solid var(--red); border-radius: 0; background: var(--red); color: var(--white); cursor: pointer; transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast); }
    .contact-captcha__refresh:hover { border-color: var(--red-dark); background: var(--red-dark); transform: translateY(-2px); }
    .contact-captcha__refresh:disabled { cursor: wait; opacity: .72; }
    .contact-captcha__refresh:disabled .icon { animation: captcha-spin .7s linear infinite; }
    .contact-captcha__entry { display: grid; min-width: 0; gap: .45rem; }
    .contact-captcha__entry input { text-transform: uppercase; letter-spacing: .2em; font-weight: 750; }
    .contact-captcha__entry input::placeholder { text-transform: none; letter-spacing: 0; font-weight: 400; }
    .contact-captcha__help { display: flex; align-items: center; gap: .4rem; color: rgb(255 255 255 / .58); font-size: .7rem; line-height: 1.35; }
    .contact-captcha__help .icon { width: .9rem; height: .9rem; flex: 0 0 .9rem; color: var(--red); }
    .contact-captcha__error { color: #ff8589; font-size: .72rem; line-height: 1.4; }
    .contact-captcha__error[hidden] { display: none; }
    .contact-consent { display: grid; grid-template-columns: 1.15rem minmax(0, 1fr); align-items: start; gap: .2rem .7rem; padding: 1rem; border: 1px solid rgb(255 255 255 / .14); background: rgb(255 255 255 / .035); cursor: pointer; }
    .contact-consent input { width: 1.15rem; height: 1.15rem; margin: .2rem 0 0; accent-color: var(--red); }
    .contact-consent span { color: rgb(255 255 255 / .7); font-size: .75rem; line-height: 1.55; }
    .contact-consent b { color: var(--red); }
    .contact-consent small { grid-column: 2; color: #ff9da0; font-size: .7rem; }
    .contact-consent small[hidden] { display: none; }
    @keyframes captcha-spin { to { transform: rotate(360deg); } }
    .contact-form__actions { display: flex; min-height: 3.5rem; align-items: center; gap: 1rem 1.5rem; margin-top: 1.5rem; }
    .contact-form__actions p { color: rgb(255 255 255 / .68); font-size: .82rem; }
    .contact-form__actions p.is-error { color: #ff9da0; }
    .contact-form__actions p.is-success { color: #9ee0b8; }
    .contact-form__actions button:disabled { cursor: wait; opacity: .7; }

    .contact-map-empty { position: relative; overflow: hidden; padding-block: clamp(4rem, 7vw, 6rem); background: var(--surface-2); }
    .contact-map-empty .container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
    .contact-map-empty__grid { min-height: 22rem; background-color: var(--graphite); background-image: linear-gradient(rgb(255 255 255 / .08) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / .08) 1px, transparent 1px); background-size: 38px 38px; }
    .contact-map-empty__grid::before { display: block; width: 7rem; height: 7rem; margin: 7.5rem auto 0; transform: rotate(45deg); border: 1rem solid var(--red); content: ""; }
    .contact-map-empty span { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
    .contact-map-empty h2 { margin-top: .7rem; }
    .contact-map-empty p { margin-top: .8rem; }

    .detail-page { background: var(--white); }
    .detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 20rem; gap: clamp(2.5rem, 5vw, 5rem); }
    .detail-content { min-width: 0; }
    .detail-intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; }
    .detail-intro-grid h2 { margin-top: .8rem; }
    .detail-image { position: relative; margin-top: 3rem; }
    .detail-image img { width: 100%; max-height: 38rem; object-fit: cover; }
    .detail-image span { position: absolute; right: 0; bottom: 0; padding: .8rem 1rem; background: var(--red); color: var(--white); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
    .detail-section { padding-top: 4rem; }
    .detail-section > p { margin-top: 1rem; }
    .detail-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 1.5rem; background: var(--border); border: 1px solid var(--border); }
    .detail-list article { display: grid; min-height: 6rem; grid-template-columns: 2.5rem 1fr; align-items: center; gap: 1rem; padding: 1rem; background: var(--surface); }
    .detail-list span { color: var(--red); font-family: Manrope, sans-serif; font-weight: 800; }
    .detail-list p { color: var(--ink); font-weight: 700; }
    .criteria-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; }
    .criteria-grid article { padding: 1.5rem; border: 1px solid var(--border); }
    .criteria-grid .icon { color: var(--red); }
    .criteria-grid h3 { margin-top: 2rem; }
    .criteria-grid p { margin-top: .7rem; font-size: .9rem; }
    .process-detail { display: grid; grid-template-columns: .75fr 1.25fr; gap: 3rem; }
    .process-detail h2 { margin-top: .8rem; }
    .process-detail ol { list-style: none; border-top: 1px solid var(--border); }
    .process-detail li { display: grid; min-height: 4.5rem; grid-template-columns: 3rem 1fr; align-items: center; gap: 1rem; border-bottom: 1px solid var(--border); }
    .process-detail li span { color: var(--red); font-family: Manrope, sans-serif; font-weight: 800; }
    .local-service { display: grid; grid-template-columns: .45fr 1.55fr; padding: 2.5rem; background: var(--graphite); color: var(--white); }
    .local-service > span { color: var(--red); font-family: Manrope, sans-serif; font-size: 2rem; font-weight: 800; }
    .local-service h2 { font-size: 2rem; }
    .local-service p { margin-top: .8rem; color: rgb(255 255 255 / .66); }
    .related-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 1.5rem; background: var(--border); border: 1px solid var(--border); }
    .related-services a { display: grid; min-height: 8rem; grid-template-columns: 2rem 1fr auto; align-items: center; gap: .5rem; padding: 1rem; background: var(--surface); }
    .related-services a:hover { background: var(--red); color: var(--white); }
    .related-services span { color: var(--red); font-weight: 800; }
    .related-services a:hover span { color: var(--white); }
    .related-services .icon { width: 1rem; height: 1rem; }

    .article-hero { padding-block: clamp(4rem, 7vw, 6.5rem); background: var(--graphite); color: var(--white); }
    .article-hero .breadcrumbs { margin-bottom: 3rem; }
    .article-hero__meta { display: flex; flex-wrap: wrap; gap: 1rem; color: rgb(255 255 255 / .62); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
    .article-hero__meta span:first-child { color: var(--red); }
    .article-hero h1 { max-width: 65rem; margin-top: 1.2rem; font-size: clamp(2.5rem, 4.5vw, 4.25rem); }
    .article-hero > .container > p { max-width: 50rem; margin-top: 1.2rem; color: rgb(255 255 255 / .72); font-size: 1.15rem; }
    .article-hero__topics { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
    .article-hero__topics span { padding: .4rem .65rem; border: 1px solid var(--border-dark); font-size: .7rem; }
    .article-cover { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); height: min(56vw, 43rem); margin: 0 auto; transform: translateY(-1px); background: var(--concrete); }
    .article-cover img { width: 100%; height: 100%; object-fit: cover; }
    .article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 18rem; gap: clamp(3rem, 6vw, 6rem); padding-block: clamp(4rem, 7vw, 7rem); }
    .article-prose { max-width: 52rem; }
    .article-prose .article-lead { color: var(--ink); font-size: 1.25rem; font-weight: 550; line-height: 1.7; }
    .article-prose h2 { margin-top: 3.2rem; font-size: clamp(1.7rem, 2.6vw, 2.35rem); }
    .article-prose h3 { margin-top: 2rem; font-size: 1.2rem; }
    .article-prose p { margin-top: 1rem; }
    .article-prose ul, .article-prose ol { margin-top: 1rem; padding-left: 1.4rem; color: var(--steel); }
    .article-prose li + li { margin-top: .55rem; }
    .table-wrap { overflow-x: auto; margin-top: 1.5rem; border: 1px solid var(--border); }
    .article-prose table { width: 100%; min-width: 42rem; }
    .article-prose th, .article-prose td { padding: 1rem; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
    .article-prose thead th { background: var(--graphite); color: var(--white); font-size: .78rem; text-transform: uppercase; }
    .article-prose tbody th { width: 28%; color: var(--red); }
    .article-faq { max-width: 52rem; margin-top: 4rem; }
    .article-faq h2 { margin-bottom: 1.5rem; }
    .article-sidebar { position: sticky; top: calc(var(--header-height) + 2rem); align-self: start; }
    .article-sidebar > div:first-child { display: flex; flex-direction: column; padding: 1.25rem; border: 1px solid var(--border); }
    .article-sidebar > div:first-child span { margin-bottom: .75rem; color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
    .article-sidebar > div:first-child a { min-height: 2.75rem; padding: .6rem .65rem; border-bottom: 1px solid var(--border); border-left: 3px solid transparent; color: var(--steel); font-size: .85rem; font-weight: 700; transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast); }
    .article-sidebar > div:first-child a:hover { color: var(--ink); }
    .article-sidebar > div:first-child a.is-active { border-bottom-color: rgb(223 37 43 / .22); border-left-color: var(--red); background: var(--red-soft); color: var(--red-dark); }
    .article-prose h2[id] { scroll-margin-top: calc(var(--header-height) + 2rem); }
    .article-sidebar__service { margin-top: 1rem; padding: 1.3rem; background: var(--graphite); color: var(--white); }
    .article-sidebar__service small { color: var(--red); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
    .article-sidebar__service strong { display: block; margin-top: .5rem; font-family: Manrope, sans-serif; font-size: 1.15rem; }
    .article-sidebar__service p { margin-top: .7rem; color: rgb(255 255 255 / .62); font-size: .82rem; }
    .related-posts { background: var(--surface); }

    .not-found { min-height: 66vh; padding-block: clamp(5rem, 10vw, 9rem); background: var(--surface); }
    .not-found .container { position: relative; }
    .not-found .container > span { position: absolute; top: -3rem; right: 0; color: rgb(16 18 20 / .06); font-family: Manrope, sans-serif; font-size: clamp(9rem, 24vw, 22rem); font-weight: 800; line-height: .8; }
    .not-found h1 { max-width: 50rem; margin-top: 1rem; }
    .not-found p { max-width: 38rem; margin-top: 1rem; }
    .not-found .container > div:last-child { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

    .site-footer { background: var(--graphite); color: var(--white); }
    .footer-grid { display: grid; grid-template-columns: 1.15fr .7fr 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); padding-block: clamp(4rem, 7vw, 6rem); }
    .footer-brand img { width: 16rem; }
    .footer-brand p { max-width: 20rem; margin-top: 1.3rem; color: rgb(255 255 255 / .55); font-size: .86rem; }
    .site-footer h2 { margin-bottom: 1.1rem; color: var(--white); font-size: .9rem; letter-spacing: 0; }
    .site-footer ul { list-style: none; }
    .site-footer li + li { margin-top: .4rem; }
    .site-footer li a { color: rgb(255 255 255 / .58); font-size: .8rem; }
    .site-footer li a:hover { color: var(--red); }
    .footer-services ul { columns: 2; column-gap: 1.2rem; }
    .footer-services li { break-inside: avoid; }
    .footer-contact > a, .footer-contact > p { display: flex; align-items: flex-start; gap: .7rem; color: rgb(255 255 255 / .7); }
    .footer-contact > a + a, .footer-contact > p { margin-top: 1.1rem; }
    .footer-contact > p { font-size: .8rem; }
    .footer-contact .icon { color: var(--red); }
    .footer-contact small { display: block; color: rgb(255 255 255 / .38); font-size: .65rem; text-transform: uppercase; }
    .footer-contact strong { font-size: .9rem; }
    .footer-bottom { border-top: 1px solid var(--border-dark); background: var(--ink); }
    .footer-bottom .container { display: flex; min-height: 4rem; align-items: center; justify-content: space-between; gap: 1rem; color: rgb(255 255 255 / .45); font-size: .72rem; }
    .footer-bottom a:hover { color: var(--red); }
}

@layer utilities {
    [hidden] { display: none; }
    .sr-only {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }
    .reveal { opacity: 1; transform: none; }
    .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 620ms ease, transform 620ms ease; }
    .js .reveal.is-visible { opacity: 1; transform: translateY(0); }
}

@keyframes hero-zoom { from { transform: scale(1.02); } to { transform: scale(1.085); } }
@keyframes slide-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (max-width: 1199px) {
    :root { --header-height: 4.75rem; }
    .desktop-nav { display: none; }
    .menu-toggle { display: flex; }
    .header-call span { display: inline; }
    .brand { width: 14rem; }
    .hero { height: min(44rem, calc(100svh - 7rem)); }
    .hero__badge { right: var(--gutter); }
    .solution-strip .container { grid-template-columns: repeat(2, 1fr); }
    .solution-strip a:nth-child(2) { border-right: 1px solid var(--border-dark); }
    .solution-strip a:nth-child(-n+2) { border-bottom: 1px solid var(--border-dark); }
    .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-home__grid, .about-feature__grid { gap: 3.5rem; }
    .about-collage { min-height: 34rem; }
    .about-collage__main { height: 31rem; }
    .value-row { grid-template-columns: 1fr; }
    .value-row > span { padding-block: .6rem; border-right: 0; border-bottom: 1px solid var(--border); }
    .value-row > span:last-child { border-bottom: 0; }
    .detail-layout { grid-template-columns: minmax(0, 1fr) 18rem; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-contact { grid-column: 1 / -1; display: grid; grid-template-columns: .45fr .7fr .85fr 1.5fr; align-items: start; gap: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-dark); }
    .footer-contact > a + a, .footer-contact > p { margin-top: 0; }
}

@media (max-width: 1099px) {
    .cta-band::after { display: none; }
    .cta-band__inner { padding-right: 0; }
    .contact-form-panel { grid-template-columns: 1fr; }
}

@media (max-width: 899px) {
    .section-heading { align-items: flex-start; flex-direction: column; }
    .hero-slide__shade { background: linear-gradient(90deg, rgb(9 11 13 / .94), rgb(9 11 13 / .58)), linear-gradient(0deg, rgb(9 11 13 / .48), transparent); }
    .hero-slide__content { padding-bottom: 4.5rem; }
    .hero__badge { display: none; }
    .about-home__grid, .editorial-grid, .about-feature__grid, .malatya-block .container, .contact-grid, .contact-map-empty .container { grid-template-columns: 1fr; }
    .about-home__content { max-width: 45rem; }
    .about-collage { min-height: 32rem; }
    .about-collage__main { height: 29rem; }
    .process-band .container, .why-us__grid, .faq-preview__grid { grid-template-columns: 1fr; }
    .process-band__intro { max-width: 36rem; }
    .local-context__grid { grid-template-columns: 1fr; }
    .local-context__grid > div:first-child { border-right: 0; border-bottom: 1px solid rgb(255 255 255 / .3); padding-bottom: 2rem; }
    .local-context__number { font-size: 9rem; }
    .scope-grid { grid-template-columns: 1fr; }
    .scope-grid article { min-height: 13rem; }
    .scope-grid h3 { margin-top: 2.5rem; }
    .faq-page__grid { grid-template-columns: 1fr; }
    .faq-page aside { position: static; }
    .gallery-editorial { grid-auto-rows: 15rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery-editorial .gallery-card, .gallery-editorial .gallery-card:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .gallery-editorial .gallery-card:nth-child(1), .gallery-editorial .gallery-card:nth-child(6) { grid-row: span 2; }
    .blog-toolbar { align-items: flex-start; flex-direction: column; }
    .topic-row { justify-content: flex-start; }
    .blog-grid--all { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .detail-layout, .article-layout { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; order: -1; }
    .detail-sidebar nav { display: grid; grid-template-columns: repeat(3, 1fr); }
    .detail-intro-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .article-sidebar { position: static; }
    .article-sidebar > div:first-child { display: none; }
    .article-sidebar__service { max-width: 38rem; }
    .footer-grid { grid-template-columns: 1.2fr .8fr; }
    .footer-contact { grid-template-columns: 1fr 1fr; }
    .footer-contact h2 { grid-column: 1 / -1; }
    .footer-contact > p { margin-top: 0; }
    .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-card:last-child { grid-column: 1 / -1; }
    .contact-form-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    :root { --header-height: 4.25rem; }
    body { font-size: .98rem; }
    .section { padding-block: 4.25rem; }
    .topbar { display: none; }
    .brand { width: 12.5rem; padding-block: .65rem; }
    .header-call { display: none; }
    .site-header__inner { gap: .75rem; }
    .menu-toggle { margin-left: auto; }
    .hero { height: 42rem; min-height: 42rem; }
    .hero-slide > picture img { object-position: 60% center; }
    .hero-slide:nth-child(2) > picture img { object-position: center; }
    .hero-slide__shade { background: linear-gradient(90deg, rgb(9 11 13 / .94), rgb(9 11 13 / .42)), linear-gradient(0deg, rgb(9 11 13 / .55), transparent 65%); }
    .hero-slide h1, .hero-slide h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
    .hero-slide p { font-size: 1rem; }
    .hero-slide__actions { align-items: stretch; flex-direction: column; }
    .hero-slide__actions .button { width: 100%; }
    .hero__controls { height: 3.75rem; grid-template-columns: auto minmax(4rem, 1fr) 2.75rem 2.75rem; gap: .6rem; }
    .hero__controls button { width: 2.75rem; height: 2.75rem; }
    .solution-strip .container { width: 100%; grid-template-columns: 1fr; }
    .solution-strip .container > a { min-height: 5.75rem; border-right: 0; border-bottom: 1px solid var(--border-dark); border-left: 0; padding-inline: var(--gutter); }
    .services-grid, .blog-grid, .blog-grid--all { grid-template-columns: 1fr; }
    .service-card__media { aspect-ratio: 3 / 2; }
    .about-collage { min-height: 29rem; }
    .about-collage__main { width: calc(100% - 2rem); height: 25rem; }
    .about-collage__quote { width: 12.5rem; min-height: 10rem; padding: 1.2rem; }
    .about-collage__quote strong { font-size: 1.35rem; }
    .empty-projects { grid-template-columns: 1fr; }
    .empty-projects__graphic { min-height: 13rem; }
    .process-band ol { grid-template-columns: 1fr; }
    .process-band li, .process-band li:nth-child(n) { min-height: 8rem; border: 1px solid var(--border-dark); border-bottom: 0; }
    .process-band li:last-child { border-bottom: 1px solid var(--border-dark); }
    .why-us__items article { grid-template-columns: 3rem 1fr; }
    .gallery-card, .gallery-filmstrip .gallery-card:nth-child(n) { min-width: 78vw; }
    .gallery-filmstrip { scroll-padding-inline: var(--gutter); }
    .local-context__number { font-size: 7rem; }
    .cta-band::after { display: none; }
    .cta-band__inner { align-items: flex-start; flex-direction: column; }
    .cta-band .button { width: 100%; }
    .page-hero, .page-hero__inner { min-height: 25rem; }
    .page-hero__inner { padding-block: 3rem; }
    .page-hero::after { right: -5rem; opacity: .45; }
    .services-intro { grid-template-columns: 1fr; gap: 1rem; }
    .gallery-notice { grid-template-columns: 1fr; gap: .5rem; }
    .gallery-editorial { display: grid; grid-auto-rows: auto; grid-template-columns: 1fr; }
    .gallery-editorial .gallery-card, .gallery-editorial .gallery-card:nth-child(n) { min-width: 0; aspect-ratio: 4 / 3; grid-column: 1; grid-row: auto; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-card { min-height: 17rem; }
    .contact-card:last-child { grid-column: auto; }
    .contact-form__grid { grid-template-columns: 1fr; }
    .contact-field--full { grid-column: auto; }
    .contact-captcha { grid-column: auto; }
    .contact-captcha__layout { grid-template-columns: minmax(0, 1fr) 3.5rem; }
    .contact-captcha__layout > img { width: 100%; }
    .contact-captcha__entry { grid-column: 1 / -1; }
    .contact-form__actions { align-items: stretch; flex-direction: column; }
    .contact-form__actions .button { width: 100%; }
    .detail-sidebar nav { grid-template-columns: 1fr 1fr; }
    .detail-list, .criteria-grid, .process-detail, .local-service { grid-template-columns: 1fr; }
    .local-service { gap: 1rem; padding: 1.5rem; }
    .related-services { grid-template-columns: 1fr; }
    .article-cover { height: 64vw; }
    .article-hero__meta { flex-direction: column; gap: .35rem; }
    .lightbox { grid-template-columns: 3.5rem 1fr 3.5rem; grid-template-rows: 4rem 1fr 5.5rem; }
    .lightbox__top { padding-inline: .75rem; }
    .lightbox__top strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .lightbox__stage { padding: .5rem; }
    .lightbox__nav { width: 2.75rem; height: 2.75rem; }
    .lightbox__thumbs { padding-inline: .75rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-services ul { columns: 2; }
    .footer-contact { grid-template-columns: 1fr; }
    .footer-contact h2 { grid-column: auto; }
    .footer-bottom .container { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 1rem; }
}

@media (max-width: 420px) {
    .brand { width: 11rem; }
    .hero { height: 43rem; min-height: 43rem; }
    .hero-slide__content { padding-bottom: 4rem; }
    .hero-slide h1, .hero-slide h2 { font-size: 2.3rem; }
    .hero__count span { display: none; }
    .about-collage { min-height: 26rem; }
    .about-collage__main { height: 23rem; }
    .about-collage__quote { width: 11rem; min-height: 8.5rem; }
    .gallery-card, .gallery-filmstrip .gallery-card:nth-child(n) { min-width: 84vw; }
    .detail-sidebar nav { grid-template-columns: 1fr; }
    .footer-services ul { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .hero-slide > picture img { transform: none !important; }
    .js .reveal { opacity: 1; transform: none; }
}

/* 2026 visual refinement: strict industrial grid, balanced rhythm and square media. */
:root {
        --red: #e4232a;
        --red-dark: #b9161c;
        --ink: #0d1012;
        --graphite: #191d20;
        --steel: #4d545a;
        --muted: #747a7f;
        --surface: #f5f5f3;
        --surface-2: #eceeec;
        --border: #d9dcda;
        --container: 1280px;
        --gutter: clamp(1rem, 3vw, 2rem);
        --radius-sm: 2px;
        --radius: 3px;
        --radius-lg: 4px;
        --shadow-soft: 0 18px 45px rgb(13 16 18 / .09);
        --shadow-strong: 0 30px 80px rgb(13 16 18 / .24);
        --header-height: 5.25rem;
    }

    body { background: var(--white); }
    .site-shell { overflow: clip; }
    .container { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); }
    .section { padding-block: clamp(4.75rem, 7vw, 7rem); }
    .section-heading { align-items: flex-end; margin-bottom: clamp(2rem, 3vw, 3rem); }
    .section-heading > div { max-width: 48rem; }
    .section-heading h2 { max-width: 46rem; line-height: 1.04; }
    .section-heading p { max-width: 38rem; }
    .services-grid, .blog-grid, .projects-grid { gap: 1.5rem; }

    .button { min-height: 3.4rem; padding-inline: 1.35rem; border-radius: 0; }
    .eyebrow { gap: .75rem; font-size: .74rem; letter-spacing: .16em; }
    .eyebrow > span { width: 2rem; }

    .topbar, .topbar__inner { min-height: 2.1rem; }
    .topbar { border-bottom: 1px solid rgb(255 255 255 / .08); }
    .topbar a { align-self: stretch; padding-inline: 1rem; border-right: 1px solid rgb(255 255 255 / .1); border-left: 1px solid rgb(255 255 255 / .1); background: rgb(255 255 255 / .035); color: var(--white); }
    .topbar a:hover { background: rgb(255 255 255 / .075); }
    .topbar a .icon { color: var(--red); }
    .site-header { height: var(--header-height); border-bottom-color: #cfd2d0; box-shadow: 0 8px 28px rgb(13 16 18 / .08); }
    .site-header__inner { gap: 1rem; }
    .brand {
        width: 17.25rem;
        height: 100%;
        margin-right: auto;
        padding: .55rem 1.25rem .55rem 0;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }
    .brand-logo { position: relative; display: block; overflow: hidden; }
    .brand-logo img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; max-height: none; object-fit: cover; object-position: center; }
    .brand-logo__mark { clip-path: inset(0 73.5% 0 0); }
    .brand-logo__type { clip-path: inset(0 0 0 26.5%); filter: brightness(0) saturate(100%); }
    .brand-logo--light .brand-logo__type { filter: none; }
    .brand .brand-logo { width: 15.5rem; height: 4.25rem; }
    .desktop-nav > ul > li > a { padding-inline: .68rem; font-size: .8rem; }
    .header-call { width: 3.4rem; min-width: 3.4rem; min-height: 3.4rem; flex: 0 0 3.4rem; padding: 0; border: 1px solid var(--red); border-radius: 0; background: transparent; color: var(--red); }
    .header-call:hover { background: var(--red); color: var(--white); }
    .menu-toggle { width: 3.4rem; height: 3.4rem; }

    .hero { height: min(47rem, calc(100svh - 7.35rem)); min-height: 40rem; }
    .hero__slides, .hero-slide { z-index: 0; }
    .hero__slides { cursor: grab; touch-action: pan-y; user-select: none; }
    .hero__slides.is-dragging { cursor: grabbing; }
    .hero-slide.is-active { z-index: 2; }
    .hero-slide > img { position: absolute; z-index: 0; inset: 0; user-select: none; -webkit-user-drag: none; }
    .hero-slide__shade { z-index: 1; background: linear-gradient(90deg, rgb(7 9 11 / .96) 0%, rgb(7 9 11 / .86) 34%, rgb(7 9 11 / .28) 70%, rgb(7 9 11 / .08) 100%), linear-gradient(0deg, rgb(7 9 11 / .52), transparent 55%); }
    .hero-slide__content {
        position: absolute;
        z-index: 3;
        inset: 0;
        width: min(calc(100% - (var(--gutter) * 2)), var(--container));
        height: 100%;
        margin-inline: auto;
        padding: 0 0 5rem;
        justify-content: center;
        pointer-events: none;
    }
    .hero-slide__copy { width: min(47rem, 68%); padding: 2rem 2.25rem 2.15rem; border-left: 4px solid var(--red); background: linear-gradient(90deg, rgb(7 9 11 / .75), rgb(7 9 11 / .2)); pointer-events: auto; }
    .hero-slide h1, .hero-slide h2 { max-width: 45rem; margin-top: 1rem; font-size: clamp(2.85rem, 4.45vw, 4.6rem); }
    .hero-slide p { max-width: 40rem; font-size: 1.06rem; }
    .hero__controls { z-index: 6; height: 5rem; }
    .hero__badge { z-index: 5; top: 2.2rem; width: 9rem; min-height: 11rem; border-radius: 0; }
    .solution-strip a { min-height: 7rem; }

    .service-card { border: 0; box-shadow: 0 0 0 1px var(--border), 0 12px 34px rgb(13 16 18 / .05); }
    .service-card__media { aspect-ratio: 4 / 3; }
    .service-card__body { padding: 1.5rem; }
    .service-card__heading { display: flex; width: 100%; align-items: center; gap: .75rem; margin-bottom: 1rem; }
    .service-card__icon { display: grid; width: 2.65rem; height: 2.65rem; flex: 0 0 auto; place-items: center; background: var(--red); color: var(--white); }
    .service-card__icon .icon { width: 1.25rem; height: 1.25rem; }
    .service-card__category { margin: 0; }
    .service-card h3 { min-height: 3.1rem; }

    .projects-home, .projects-page { background: var(--surface); }
    .projects-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .project-card { display: flex; min-width: 0; min-height: 100%; flex-direction: column; background: var(--white); box-shadow: 0 0 0 1px var(--border); transition: transform var(--transition), box-shadow var(--transition); }
    .project-card[hidden] { display: none; }
    .project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
    .project-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--graphite); }
    .project-card__media picture, .project-card__media img { width: 100%; height: 100%; }
    .project-card__media img { object-fit: cover; transition: transform 650ms ease; }
    .project-card:hover .project-card__media img { transform: scale(1.04); }
    .project-card__status { position: absolute; top: 1rem; left: 1rem; padding: .5rem .7rem; background: var(--red); color: var(--white); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
    .project-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.5rem; border-top: 3px solid var(--red); }
    .project-card__meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .08em; }
    .project-card__meta span:first-child { color: var(--red); }
    .project-card h3 { margin-top: .85rem; font-size: 1.35rem; }
    .project-card p { margin-top: .75rem; font-size: .92rem; }
    .project-card__link { display: inline-flex; align-items: center; gap: .5rem; margin-top: auto; padding-top: 1.15rem; color: var(--red); font-size: .85rem; font-weight: 800; }
    .project-card__link .icon { width: 1rem; height: 1rem; }
    .project-tabs { gap: .5rem; margin-bottom: 2rem; }
    .project-tabs button { min-height: 3.25rem; padding-inline: 1.4rem; border-radius: 0; }

    .gallery-preview { overflow: visible; }
    .gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.125rem; }
    .gallery-card,
    .gallery-editorial .gallery-card,
    .gallery-filmstrip .gallery-card:nth-child(n) { min-width: 0; aspect-ratio: 1 / 1; grid-column: auto; grid-row: auto; border: 1px solid rgb(255 255 255 / .12); }
    .gallery-page .gallery-card { border-color: var(--border); }
    .gallery-card picture, .gallery-card img { width: 100%; height: 100%; }
    .gallery-card img { object-fit: cover; }
    .gallery-card::after { background: linear-gradient(180deg, transparent 52%, rgb(8 10 12 / .88)); }
    .gallery-card__meta { right: 1.1rem; bottom: 1.1rem; left: 1.1rem; }
    .gallery-card__meta strong { font-size: 1rem; line-height: 1.25; }
    .gallery-card__expand { top: .75rem; right: .75rem; }
    .gallery-card--video .gallery-card__expand { border-radius: 50%; background: var(--red); }
    .gallery-card--video .gallery-card__meta small { margin-top: .3rem; color: rgb(255 255 255 / .72); font-size: .62rem; font-weight: 800; letter-spacing: .12em; }

    .lightbox { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: minmax(0, 1fr); padding: 0; place-items: stretch; background: rgb(5 6 7 / .985); backdrop-filter: none; }
    .lightbox[hidden] { display: none; }
    .lightbox__dialog { display: grid; grid-column: 1; grid-row: 1; width: 100%; min-width: 0; height: 100svh; min-height: 0; grid-template-rows: 4.5rem minmax(0, 1fr) 5.75rem; align-self: stretch; justify-self: stretch; overflow: hidden; border: 0; background: transparent; box-shadow: none; }
    .lightbox__top { grid-column: 1; grid-row: 1; padding: 1rem 1.5rem; border: 0; }
    .lightbox__top strong { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
    .lightbox__top span { color: rgb(255 255 255 / .9); font-size: .85rem; font-weight: 700; letter-spacing: .02em; }
    .lightbox__top button { width: 3rem; height: 3rem; margin-left: auto; border-color: rgb(255 255 255 / .3); border-radius: 50%; background: rgb(31 34 36 / .78); }
    .lightbox__top button .icon { width: 1.65rem; height: 1.65rem; stroke-width: 2.2; }
    .lightbox__top button:hover, .lightbox__nav:hover { border-color: rgb(255 255 255 / .72); background: #24282a; }
    .lightbox__viewport { position: relative; grid-column: 1; grid-row: 2; min-width: 0; min-height: 0; overflow: hidden; background: transparent; cursor: grab; touch-action: none; }
    .lightbox__viewport.is-dragging { cursor: grabbing; }
    .lightbox__stage { display: grid; grid-column: auto; grid-row: auto; width: 100%; height: 100%; padding: .25rem clamp(7.5rem, 12.5vw, 15rem) 1rem; place-items: center; }
    .lightbox__stage img, .lightbox__stage video { width: 100%; height: 100%; max-width: 100%; max-height: 100%; overflow: hidden; border-radius: .75rem; clip-path: inset(0 round .75rem); object-fit: contain; }
    .lightbox__stage img { pointer-events: none; user-select: none; -webkit-user-drag: none; }
    .lightbox__stage video { background: #050607; cursor: grab; user-select: none; -webkit-user-drag: none; }
    .lightbox__viewport.is-dragging video { cursor: grabbing; }
    .lightbox__nav { position: absolute; z-index: 2; top: 50%; grid-column: auto; grid-row: auto; width: 3.1rem; height: 3.1rem; border-color: rgb(255 255 255 / .3); border-radius: 50%; transform: translateY(-50%); background: rgb(31 34 36 / .72); }
    .lightbox__nav .icon { width: 1.65rem; height: 1.65rem; stroke-width: 2.2; }
    .lightbox__nav--prev { left: 1.25rem; }
    .lightbox__nav--next { right: 1.25rem; }
    .lightbox__thumbs { display: flex; grid-column: 1; grid-row: 3; width: fit-content; max-width: min(62rem, calc(100vw - 10rem)); height: 5rem; align-self: center; justify-self: center; gap: .55rem; overflow-x: auto; overscroll-behavior-inline: contain; padding: .45rem; border: 1px solid rgb(255 255 255 / .14); border-radius: .25rem; background: rgb(26 29 31 / .9); cursor: grab; scrollbar-width: none; touch-action: pan-x; user-select: none; -webkit-overflow-scrolling: touch; }
    .lightbox__thumbs:active { cursor: grabbing; }
    .lightbox__thumbs::-webkit-scrollbar { display: none; }
    .lightbox__thumbs button { position: relative; width: 4.5rem; height: 4rem; border-radius: .2rem; }
    .lightbox__thumbs button.is-video::after { position: absolute; top: 50%; left: 50%; display: grid; width: 1.65rem; height: 1.65rem; transform: translate(-50%, -50%); place-items: center; border-radius: 50%; background: rgb(223 37 43 / .92); color: var(--white); font-size: .65rem; line-height: 1; content: "▶"; }

    .accordion { display: grid; gap: .75rem; border: 0; }
    .accordion__item { overflow: hidden; border: 1px solid var(--border); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); }
    .accordion__item:hover { border-color: #bfc3c0; }
    .accordion__item.is-open { border-color: var(--red); box-shadow: 0 12px 34px rgb(13 16 18 / .08); }
    .accordion__item h3 { font-size: 1rem; }
    .accordion__item button { min-height: 5rem; display: grid; grid-template-columns: 2.75rem 1fr 3rem; gap: 1rem; padding: .85rem 1rem; }
    .accordion__number { display: grid; width: 2.75rem; height: 2.75rem; place-items: center; background: var(--surface-2); color: var(--red); font-family: Manrope, sans-serif; font-size: .75rem; font-weight: 800; }
    .accordion__question { font-weight: 800; line-height: 1.35; }
    .accordion__icon { width: 3rem; height: 3rem; }
    .accordion__item.is-open .accordion__number { background: var(--graphite); color: var(--white); }
    .accordion__panel > div { padding: 0 5rem 1.4rem 4.75rem; }

    .breadcrumbs { width: fit-content; max-width: 100%; margin-bottom: 1.8rem; padding: .6rem .85rem; border: 1px solid rgb(255 255 255 / .2); background: rgb(9 11 13 / .55); backdrop-filter: blur(8px); }
    .breadcrumbs ol { gap: .5rem; }
    .breadcrumbs a { display: inline-flex; align-items: center; gap: .4rem; }
    .breadcrumbs .icon { width: .9rem; height: .9rem; color: var(--red); }
    .page-hero, .page-hero__inner { min-height: 25rem; }
    .page-hero__image::after { background: linear-gradient(90deg, rgb(8 10 12 / .96) 0%, rgb(8 10 12 / .8) 47%, rgb(8 10 12 / .36) 100%), linear-gradient(0deg, rgb(8 10 12 / .5), transparent 60%); }
    .page-hero::after { right: 8%; bottom: -55%; width: 10rem; opacity: .88; }
    .page-hero__inner { padding-block: 3rem; }
    .page-hero h1 { max-width: 52rem; font-size: clamp(2.6rem, 4vw, 4rem); }
    .page-hero p { max-width: 44rem; }

    .article-hero { position: relative; padding: clamp(3.75rem, 6vw, 5.5rem) 0; overflow: hidden; }
    .article-hero::after { position: absolute; right: -6rem; bottom: -11rem; width: 22rem; height: 22rem; transform: rotate(18deg); border: 1px solid rgb(255 255 255 / .06); background-image: linear-gradient(rgb(255 255 255 / .035) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / .035) 1px, transparent 1px); background-size: 3rem 3rem; content: ""; }
    .article-hero > .container { position: relative; z-index: 1; }
    .article-hero .breadcrumbs { margin-bottom: 2rem; }
    .article-hero h1 { max-width: 60rem; line-height: 1.04; }
    .article-hero > .container > p { max-width: 52rem; }
    .article-hero__topics span { display: inline-flex; min-height: 2.25rem; align-items: center; background: rgb(255 255 255 / .025); }
    .article-cover { position: relative; z-index: auto; width: 100%; height: auto; aspect-ratio: 16 / 9; margin: 0 0 clamp(2rem, 4vw, 3rem); padding: 0; transform: none; overflow: hidden; border: 1px solid var(--border); background: var(--graphite); box-shadow: none; }
    .article-cover::before { display: none; }
    .article-cover picture { display: block; width: 100%; height: 100%; overflow: hidden; background: var(--graphite); }
    .article-cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
    .article-layout { padding-top: clamp(3.5rem, 5vw, 5rem); }
    .article-layout > * { min-width: 0; }
    .article-prose, .article-faq { width: 100%; min-width: 0; max-width: 52rem; }
    .article-prose h2, .article-prose h3, .article-prose p, .article-prose li { overflow-wrap: anywhere; }
    .article-prose .table-wrap { width: 100%; max-width: 100%; overscroll-behavior-inline: contain; }

    .service-related-guides > h2 { margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
    .service-related-guides__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .process-band__intro,
    .why-us__title,
    .faq-preview__grid > div:first-child,
    .editorial-grid > div:first-child,
    .process-detail > div:first-child { position: sticky; top: calc(var(--header-height) + 2rem); align-self: start; transition: top var(--transition); }

    .contact-map { padding-block: clamp(4.75rem, 7vw, 7rem); background: var(--surface); }
    .contact-map__frame { min-height: 30rem; overflow: hidden; background: var(--graphite); box-shadow: var(--shadow-soft); }
    .contact-map__frame iframe { display: block; width: 100%; height: 100%; min-height: 30rem; border: 0; filter: grayscale(.2) contrast(1.04); }

    .project-detail { background: var(--white); }
    .project-detail__layout { display: grid; grid-template-columns: minmax(0, 1fr) 20rem; gap: clamp(2.5rem, 5vw, 5rem); }
    .project-detail__intro { max-width: 52rem; }
    .project-detail__intro h2 { margin-top: .8rem; }
    .project-detail__intro p { margin-top: 1rem; }
    .project-detail__gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 2.5rem; }
    .project-facts { position: sticky; top: calc(var(--header-height) + 2rem); align-self: start; border-top: 4px solid var(--red); background: var(--graphite); color: var(--white); }
    .project-facts > span { display: block; padding: 1.25rem 1.4rem 0; color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
    .project-facts dl { padding: .8rem 1.4rem 1.4rem; }
    .project-facts dl div { display: flex; justify-content: space-between; gap: 1rem; padding-block: .75rem; border-bottom: 1px solid var(--border-dark); }
    .project-facts dt { color: rgb(255 255 255 / .55); font-size: .78rem; }
    .project-facts dd { color: var(--white); font-size: .8rem; font-weight: 800; text-align: right; }
    .project-facts h2 { padding: 1.25rem 1.4rem .6rem; font-size: 1rem; letter-spacing: 0; }
    .project-facts nav { padding-bottom: 1rem; }
    .project-facts nav a { display: grid; min-height: 3.7rem; grid-template-columns: 1.5rem 1fr 1rem; align-items: center; gap: .7rem; padding: .7rem 1.4rem; border-top: 1px solid var(--border-dark); font-size: .8rem; font-weight: 700; }
    .project-facts nav a:hover { background: var(--red); }
    .project-facts nav .icon { width: 1rem; height: 1rem; }

    .detail-sidebar, .article-sidebar, .faq-page aside, .project-facts { transition: top var(--transition); }
    .site-shell:has(> .site-header.is-hidden) .detail-sidebar,
    .site-shell:has(> .site-header.is-hidden) .article-sidebar,
    .site-shell:has(> .site-header.is-hidden) .faq-page aside,
    .site-shell:has(> .site-header.is-hidden) .project-facts,
    .site-shell:has(> .site-header.is-hidden) .process-band__intro,
    .site-shell:has(> .site-header.is-hidden) .why-us__title,
    .site-shell:has(> .site-header.is-hidden) .faq-preview__grid > div:first-child,
    .site-shell:has(> .site-header.is-hidden) .editorial-grid > div:first-child,
    .site-shell:has(> .site-header.is-hidden) .process-detail > div:first-child { top: 2rem; }

    .site-footer { position: relative; }
    .site-footer::before { position: absolute; top: 0; right: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(--red) 0 22%, transparent 22% 100%); content: ""; }
    .footer-grid { grid-template-columns: 1.15fr .7fr 1.05fr 1.15fr; gap: clamp(2rem, 4vw, 4rem); padding-block: clamp(4rem, 6vw, 5.5rem); }
    .footer-brand > a { display: block; width: 18rem; height: 5.1rem; overflow: hidden; }
    .footer-brand .brand-logo { width: 18rem; height: 5.1rem; }
    .footer-brand p { max-width: 19rem; margin-top: 1.2rem; }
    .site-footer h2 { padding-bottom: .75rem; border-bottom: 1px solid var(--border-dark); font-size: .88rem; }
    .site-footer li + li { margin-top: .55rem; }
    .site-footer li a { font-size: .82rem; }
    .footer-contact > a, .footer-contact > p { line-height: 1.55; }
    .mobile-drawer__head { overflow: hidden; border-bottom: 1px solid var(--border); background: var(--white); }
    .mobile-drawer__head .brand-logo { width: 13rem; height: 4.2rem; }
    .mobile-drawer__head button { border-color: var(--border); background: var(--graphite); color: var(--white); }

    @media (max-width: 1199px) {
        .brand { width: 16rem; }
        .brand .brand-logo { width: 14.5rem; }
        .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .footer-contact { grid-column: auto; display: block; padding-top: 0; border-top: 0; }
    }

    @media (max-width: 899px) {
        .hero-slide__copy { width: min(42rem, 88%); }
        .process-band__intro,
        .why-us__title,
        .faq-preview__grid > div:first-child,
        .editorial-grid > div:first-child { position: static; }
        .article-cover { width: 100%; margin-top: 0; }
        .article-layout { grid-template-columns: minmax(0, 1fr); }
        .project-detail__layout { grid-template-columns: 1fr; }
        .project-facts { position: static; order: -1; }
        .project-detail__gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        .contact-map__frame, .contact-map__frame iframe { min-height: 26rem; }
    }

    @media (max-width: 680px) {
        :root { --header-height: 4.5rem; }
        .section { padding-block: 4.25rem; }
        .brand { width: 12rem; padding-right: .75rem; }
        .brand .brand-logo { width: 11rem; height: 3.7rem; }
        .hero { height: 42rem; min-height: 42rem; }
        .hero-slide__content { padding-bottom: 4.25rem; }
        .hero-slide__copy { width: 100%; padding: 1.4rem 1rem 1.5rem; }
        .hero-slide h1, .hero-slide h2 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
        .hero-slide__actions { flex-direction: column; }
        .article-hero { padding: 3rem 0; }
        .article-hero .breadcrumbs { margin-bottom: 1.5rem; }
        .article-hero h1 { font-size: clamp(2.15rem, 10vw, 3rem); }
        .article-hero__topics { gap: .4rem; }
        .article-cover { width: 100%; aspect-ratio: 16 / 10; margin: 0 0 2rem; padding: 0; }
        .article-layout { padding-top: 3rem; }
        .process-detail > div:first-child { position: static; }
        .service-related-guides__grid { grid-template-columns: minmax(0, 1fr); }
        .projects-grid { grid-template-columns: 1fr; }
        .gallery-grid, .project-detail__gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .gallery-grid { gap: 1rem; }
        .gallery-card__meta { right: .65rem; bottom: .65rem; left: .65rem; }
        .gallery-card__meta strong { font-size: .82rem; }
        .gallery-card__meta small { font-size: .58rem; }
        .gallery-card__expand { top: .5rem; right: .5rem; width: 2.2rem; height: 2.2rem; }
        .accordion__item button { grid-template-columns: 2.5rem 1fr 2.75rem; gap: .7rem; padding-inline: .75rem; }
        .accordion__number { width: 2.5rem; height: 2.5rem; }
        .accordion__icon { width: 2.75rem; height: 2.75rem; }
        .accordion__panel > div { padding: 0 1rem 1.2rem 4rem; }
        .lightbox { padding: 0; }
        .lightbox__dialog { width: 100%; height: 100svh; grid-template-rows: 4.5rem minmax(0, 1fr) 5.75rem; border: 0; }
        .lightbox__top { padding: .75rem 1rem; }
        .lightbox__viewport { overflow: visible; }
        .lightbox__stage { padding: .35rem 1rem .75rem; }
        .lightbox__nav { top: auto; bottom: -4.95rem; width: 2.9rem; height: 2.9rem; transform: none; }
        .lightbox__nav--prev { left: .75rem; }
        .lightbox__nav--next { right: .75rem; }
        .lightbox__thumbs { width: calc(100% - 8.5rem); max-width: none; height: 4.6rem; gap: .45rem; padding: .4rem; }
        .lightbox__thumbs button { width: 4.2rem; height: 3.7rem; }
        .footer-grid { grid-template-columns: 1fr; }
        .footer-brand > a, .footer-brand .brand-logo { width: 15rem; height: 4.5rem; }
    }
