/**
 * Balca İnşaat — Industrial Construction Theme
 * Override layer loaded AFTER site.css
 * Identity: steel, concrete, red accent — NOT furniture showroom
 */

/* ═══════════════════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Balca palette — charcoal, ash, signal red */
    --b-ink: #0B0D10;
    --b-steel: #14181F;
    --b-slate: #252B36;
    --b-ash: #D8D4CE;
    --b-concrete: #ECEAE6;
    --b-fog: #F5F3EF;
    --b-red: #E30613;
    --b-red-deep: #A80410;
    --b-muted: #5C6470;
    --b-white: #fff;

    /* Typography — architectural condensed + geometric body */
    --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
    --font-body: 'Sora', system-ui, sans-serif;

    /* Layout — single compact header bar */
    --header-height: 72px;
    --header-top: 0px;
    --header-total: 72px;

    /* Motion */
    --b-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --b-transition: 0.4s var(--b-ease);
    --b-transition-slow: 0.75s var(--b-ease);
}

/* Remap legacy site.css tokens → industrial palette */
:root {
    --color-walnut: var(--b-ink);
    --color-walnut-deep: #06070A;
    --color-brass: var(--b-red);
    --color-brass-bright: #FF2A36;
    --color-paper: var(--b-fog);
    --color-soft: var(--b-concrete);
    --color-charcoal: var(--b-ink);
    --color-muted: var(--b-muted);
    --color-white: var(--b-white);
    --color-burgundy: var(--b-red-deep);
    --font-weight-display: 700;
    --font-weight-body: 400;
    --font-weight-emphasis: 600;
    --line-height-body: 1.7;
    --line-height-hero-title: 0.95;
}


/* ═══════════════════════════════════════════════════════════════════════════
   BASE OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════ */

body {
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(227, 6, 19, 0.06), transparent 55%),
        linear-gradient(180deg, #f7f5f1 0%, #efede8 45%, #f4f2ee 100%);
    color: var(--b-ink);
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: -0.011em;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

a:hover {
    color: var(--b-red);
}

code {
    background: rgba(14, 16, 20, 0.06);
    border-radius: 2px;
}

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


/* ═══════════════════════════════════════════════════════════════════════════
   HIDE FURNITURE-ERA CHROME
   ═══════════════════════════════════════════════════════════════════════════ */

/* Thin industrial contact strip — keep İG TR/DE + phone visible (desktop) */
.site-header__top {
    display: block !important;
    height: 32px;
    max-height: 32px;
    overflow: hidden;
    background: #0A0C10;
    border-bottom: 1px solid rgba(227, 6, 19, 0.45);
    color: rgba(255, 255, 255, 0.7);
}
.site-header__top .topbar-link,
.site-header__top .topbar-link:hover {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.site-header__top-inner {
    gap: 0.5rem;
    min-width: 0;
}
.site-header__top-left,
.site-header__top-right {
    flex-wrap: nowrap;
    min-width: 0;
    overflow: hidden;
}
.site-header__sep {
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

:root {
    --header-top: 32px;
    --header-height: 68px;
    --header-total: 100px;
}

.hero__nav,
.hero__numbers,
.hero__scroll,
.hero__veil,
.about-split__mark,
.about-split__caption {
    display: none !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */

.b-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0 0 1rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--b-red);
}

.b-kicker::before {
    content: "";
    width: 1.75rem;
    height: 2px;
    background: currentColor;
}

.b-kicker--on-dark {
    color: rgba(255, 255, 255, 0.62);
}

.b-kicker--on-dark::before {
    background: var(--b-red);
}

.b-title {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.25rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--b-ink);
}

.b-title--light {
    color: var(--b-white);
}

.b-lead {
    max-width: 34rem;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--b-muted);
    font-weight: 400;
}

.b-lead--light {
    color: rgba(255, 255, 255, 0.72);
}

.b-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.b-section-head--light .b-btn--ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.b-section-head--light .b-btn--ghost:hover {
    background: #fff;
    color: var(--b-ink);
    border-color: #fff;
}

.b-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--b-ink);
    transition: color var(--b-transition);
}

.b-link:hover {
    color: var(--b-red);
}

.b-link--light {
    color: var(--b-white);
}

.b-link--light:hover {
    color: var(--b-red-bright, var(--color-brass-bright));
}


/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS — .b-btn + legacy overrides
   ═══════════════════════════════════════════════════════════════════════════ */

.b-btn,
.btn--brass,
.btn--light,
.btn--cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.65rem;
    border: 2px solid transparent;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition:
        background var(--b-transition),
        color var(--b-transition),
        border-color var(--b-transition),
        transform 0.2s ease;
}

.b-btn--red,
.btn--brass,
.btn--cta {
    background: var(--b-red);
    border-color: var(--b-red);
    color: var(--b-white);
}

.b-btn--red:hover,
.btn--brass:hover,
.btn--cta:hover {
    background: var(--b-red-deep);
    border-color: var(--b-red-deep);
    color: var(--b-white);
}

.b-btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--b-white);
}

.b-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--b-white);
    color: var(--b-white);
}

.b-btn--outline {
    background: transparent;
    border-color: var(--b-ink);
    color: var(--b-ink);
}

.b-btn--outline:hover {
    background: var(--b-ink);
    border-color: var(--b-ink);
    color: var(--b-white);
}

.b-btn--block {
    width: 100%;
}

.btn--light {
    background: transparent;
    border: 2px solid var(--b-ink);
    color: var(--b-ink);
    border-radius: 2px;
}

.btn--light:hover {
    background: var(--b-ink);
    color: var(--b-white);
}


/* ═══════════════════════════════════════════════════════════════════════════
   HEADER — compact industrial steel bar
   ═══════════════════════════════════════════════════════════════════════════ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--b-steel);
    border-bottom: 2px solid transparent;
    transition:
        background var(--b-transition),
        border-color var(--b-transition),
        box-shadow var(--b-transition);
}

.is-scrolled .site-header,
.is-inner .site-header {
    background: var(--b-steel);
    border-bottom-color: var(--b-red);
    box-shadow: 0 4px 24px rgba(8, 9, 12, 0.35);
}

.is-home:not(.is-scrolled) .site-header {
    background: rgba(26, 30, 38, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header__main {
    height: var(--header-height);
    background: transparent !important;
    border: none !important;
}

.site-header__inner {
    height: 100%;
    align-items: center;
}

/* Logo — transparent brand mark (white wordmark for dark chrome) */
.site-brand__logo,
.site-brand__logo--wide {
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    transition: opacity var(--b-transition);
}

.site-brand__text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--b-white) !important;
}

/* Nav links */
.nav-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82) !important;
}

.nav-link::after {
    background: var(--b-red) !important;
    height: 2px;
}

.nav-link:hover,
.nav-link.is-active,
.nav-link[aria-expanded="true"] {
    color: var(--b-white) !important;
}

.is-home:not(.is-scrolled) .nav-link,
.is-home:not(.is-scrolled) .nav-link:hover,
.is-home:not(.is-scrolled) .nav-link.is-active,
.is-scrolled .nav-link,
.is-inner .nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
}

.is-home:not(.is-scrolled) .nav-link:hover,
.is-home:not(.is-scrolled) .nav-link.is-active,
.is-scrolled .nav-link:hover,
.is-scrolled .nav-link.is-active,
.is-inner .nav-link:hover,
.is-inner .nav-link.is-active {
    color: var(--b-white) !important;
}

.nav-search {
    color: rgba(255, 255, 255, 0.75);
}

.nav-search:hover {
    color: var(--b-red);
}

.site-header__toggle {
    color: var(--b-white) !important;
}

.site-header__toggle span {
    background: currentColor;
}

.site-header__actions .btn--cta {
    padding: 0.65rem 1.25rem;
    font-size: 0.75rem;
    border-radius: 2px;
}

/* Dropdown panels */
.nav-dropdown__panel {
    background: var(--b-steel);
    border: 1px solid var(--b-slate);
    border-radius: 2px;
    box-shadow: 0 12px 40px rgba(8, 9, 12, 0.4);
}

.nav-dropdown__panel a {
    color: rgba(255, 255, 255, 0.78);
}

.nav-dropdown__panel a:hover {
    background: var(--b-slate);
    color: var(--b-white);
}

.nav-search-panel {
    background: var(--b-steel);
    border-bottom: 2px solid var(--b-red);
}

.nav-search-panel__input {
    background: var(--b-slate);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    color: var(--b-white);
}

.nav-search-panel__input:focus {
    border-color: var(--b-red);
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.25);
}

/* Mobile nav */
.mobile-nav {
    background: var(--b-steel);
    border-top: 2px solid var(--b-red);
}

.mobile-nav__link,
.mobile-nav__group summary {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.mobile-nav__link.is-active,
.mobile-nav__link:hover {
    color: var(--b-red);
}

.mobile-nav__sub a {
    color: rgba(255, 255, 255, 0.65);
}

.mobile-nav__sub a:hover {
    color: var(--b-white);
}


/* ═══════════════════════════════════════════════════════════════════════════
   PAGE LAYOUT — home edge-to-edge hero
   ═══════════════════════════════════════════════════════════════════════════ */

.page-home #main,
.page-home .site-main,
.page-home main {
    padding-top: 0;
}

.is-inner #main,
.is-inner main {
    padding-top: var(--header-total);
}

.section-eyebrow {
    display: block;
    margin: 0 0 0.75rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--b-red) !important;
}

.section-title {
    font-family: var(--font-display) !important;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem) !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.08;
}

.section-lead {
    color: var(--b-muted);
    max-width: 36rem;
}

/* Voices / testimonials — strip furniture softness */
.voices,
.voices-stage {
    border-radius: 0 !important;
    box-shadow: none !important;
}
.voices-score__value strong {
    font-family: var(--font-display);
    color: var(--b-red);
}
.voices-slide__author strong,
.voices-person__name {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ── Reviews — dark typographic rail ── */
.b-reviews {
    background:
        radial-gradient(700px 320px at 0% 100%, rgba(227, 6, 19, 0.22), transparent 60%),
        var(--b-ink);
    color: #fff;
}

.b-reviews__rail,
.b-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.b-review {
    margin: 0;
    padding: 1.85rem 1.65rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--b-red);
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    min-height: 100%;
}

.b-review__mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.7;
    color: var(--b-red);
}

.b-review__text {
    margin: 0;
    flex: 1;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.b-review__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.b-review__initial {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--b-red);
    color: var(--b-white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.b-review__meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.b-review__meta strong {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}

.b-review__meta span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .b-reviews__rail,
    .b-reviews__grid {
        grid-template-columns: 1fr;
    }
}


.section--alt {
    background: var(--b-concrete);
}

.section--soft {
    background: var(--b-fog);
}

.section--dark {
    background: var(--b-steel);
    color: rgba(255, 255, 255, 0.82);
}

/* Homepage — full-bleed planes, no boxed modules */
.page-home {
    background: transparent;
}

.page-home .section,
.page-home .b-about,
.page-home .b-services,
.page-home .b-cats,
.page-home .b-products,
.page-home .b-reviews,
.page-home .b-quote,
.page-home .section--news,
.page-home .section--brands {
    position: relative;
}

.page-home .section-title,
.page-home .section-eyebrow {
    font-family: var(--font-display);
}

.page-home .section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.page-home .section-eyebrow {
    font-family: var(--font-body);
    letter-spacing: 0.2em;
}


/* ═══════════════════════════════════════════════════════════════════════════
   HERO — .b-hero
   ═══════════════════════════════════════════════════════════════════════════ */

.b-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background: var(--b-ink);
}

.b-hero__slides,
.hero__slides {
    position: relative;
    height: 100%;
    min-height: 100%;
}

.b-hero__slide,
.hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s var(--b-ease), visibility 0.9s;
    z-index: 0;
}

.b-hero__slide.is-active,
.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.b-hero__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    will-change: transform;
}

.b-hero__slide.is-active .b-hero__media,
.hero__slide.is-active .b-hero__media {
    animation: b-hero-zoom 12s var(--b-ease) forwards;
}

.b-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8, 9, 12, 0.88) 0%,
        rgba(8, 9, 12, 0.55) 45%,
        rgba(8, 9, 12, 0.25) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.b-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.12;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 39px,
            rgba(255, 255, 255, 0.08) 39px,
            rgba(255, 255, 255, 0.08) 40px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 39px,
            rgba(255, 255, 255, 0.08) 39px,
            rgba(255, 255, 255, 0.08) 40px
        );
}

.b-hero__content {
    position: absolute;
    top: var(--header-total);
    bottom: 4.75rem;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0;
    max-width: var(--container, 1240px);
    padding-top: 1rem;
    padding-bottom: 1.25rem;
    overflow: hidden;
    box-sizing: border-box;
}

.b-hero__logo {
    height: 64px;
    width: auto;
    max-width: min(280px, 70vw);
    margin-bottom: 1.25rem;
    filter: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.b-hero__brand {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--b-white);
    margin-bottom: 1rem;
}

.b-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 6.4vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--b-white);
    max-width: 14ch;
    margin: 0 0 1rem;
    padding-top: 0.12em;
    overflow-wrap: anywhere;
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.b-hero__lead {
    max-width: 30rem;
    font-size: clamp(0.98rem, 1.6vw, 1.12rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.75rem;
    font-weight: 400;
}

.b-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* Hero control bar */
.b-hero__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
    background: linear-gradient(to top, rgba(8, 9, 12, 0.92) 0%, rgba(8, 9, 12, 0.4) 70%, transparent 100%);
}

.b-hero__dots {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.b-hero__dot {
    width: 28px;
    height: 3px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition:
        width var(--b-transition),
        background var(--b-transition);
}

.b-hero__dot.is-active {
    width: 48px;
    background: var(--b-red);
}

.b-hero__dot:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.55);
}

.b-hero__arrows {
    display: flex;
    gap: 0.5rem;
}

.b-hero__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--b-white);
    cursor: pointer;
    transition:
        background var(--b-transition),
        border-color var(--b-transition),
        color var(--b-transition);
}

.b-hero__arrow:hover {
    background: var(--b-red);
    border-color: var(--b-red);
}

.b-hero__progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
}

.b-hero__progress-bar {
    height: 100%;
    width: 0;
    background: var(--b-red);
    transition: width 0.1s linear;
}

.b-hero__scroll {
    position: absolute;
    bottom: 5.5rem;
    right: clamp(1.25rem, 4vw, 2.5rem);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--b-transition);
}

.b-hero__scroll:hover {
    color: var(--b-white);
}

.b-hero__scroll-line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--b-red), rgba(255, 255, 255, 0.2));
    animation: b-scroll-pulse 2s ease-in-out infinite;
}


/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT — .b-about
   ═══════════════════════════════════════════════════════════════════════════ */

.b-about {
    position: relative;
    background:
        linear-gradient(135deg, rgba(227, 6, 19, 0.04), transparent 40%),
        var(--b-fog);
    overflow: hidden;
    padding-bottom: 0;
}

.b-about__watermark {
    position: absolute;
    top: 4%;
    right: -2%;
    font-family: var(--font-display);
    font-size: clamp(6rem, 22vw, 18rem);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.04em;
    color: rgba(14, 16, 20, 0.045);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.b-about__band {
    display: none;
}

.b-about__layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: end;
    position: relative;
    z-index: 1;
}

.b-about__copy {
    position: relative;
    z-index: 1;
    padding-bottom: 1rem;
}

.b-about__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

.b-markets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.b-markets__item {
    padding: 1.15rem 0 0;
    border-top: 3px solid var(--b-red);
}

.b-markets__item + .b-markets__item {
    border-top-color: var(--b-ink);
}

.b-markets__item strong {
    display: block;
    margin-bottom: 0.4rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--b-ink);
}

.b-markets__item span {
    font-size: 0.9rem;
    color: var(--b-muted);
    line-height: 1.55;
}

.b-about__figure {
    position: relative;
    margin: 0;
}

.b-about__figure::before {
    content: "";
    position: absolute;
    inset: 1.25rem -1.25rem -1.25rem 1.25rem;
    border: 1px solid rgba(227, 6, 19, 0.35);
    z-index: 0;
    pointer-events: none;
}

.b-about__figure img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.92);
}

.b-about__caption {
    position: absolute;
    left: 0;
    bottom: 1.25rem;
    z-index: 2;
    margin: 0;
    padding: 0.55rem 0.95rem;
    background: var(--b-red);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--b-white);
}

.b-stats {
    margin-top: clamp(3rem, 6vw, 5rem);
    background: var(--b-ink);
    color: #fff;
}

.b-stats__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding-block: clamp(1.75rem, 3vw, 2.5rem);
}

.b-stats__item {
    text-align: left;
    border-left: 2px solid rgba(227, 6, 19, 0.7);
    padding-left: 1rem;
}

.b-stats__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 0.9;
    color: #fff;
    margin-bottom: 0.4rem;
}

.b-stats__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}


/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES — .b-service-list
   ═══════════════════════════════════════════════════════════════════════════ */

.b-services {
    background:
        radial-gradient(800px 400px at 90% 0%, rgba(227, 6, 19, 0.18), transparent 55%),
        var(--b-steel);
    color: rgba(255, 255, 255, 0.85);
}

.b-service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.b-service-list__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.b-service-list__link {
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.65rem 0.5rem;
    color: inherit;
    text-decoration: none;
    transition: background var(--b-transition), padding-left var(--b-transition);
}

.b-service-list__link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    padding-left: 0.85rem;
}

.b-service-list__idx {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 0.85;
    color: rgba(255, 255, 255, 0.14);
    transition: color var(--b-transition);
}

.b-service-list__link:hover .b-service-list__idx {
    color: var(--b-red);
}

.b-service-list__body h3 {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
}

.b-service-list__body p {
    margin: 0;
    max-width: 38rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.55;
}

.b-service-list__thumb {
    width: 160px;
    height: 100px;
    overflow: hidden;
    flex-shrink: 0;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.b-service-list__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.35) contrast(1.05);
    transition: transform var(--b-transition-slow), filter var(--b-transition);
}

.b-service-list__link:hover .b-service-list__thumb img {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1.05);
}

.b-service-list__go {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--b-red);
}

.b-service-list__go em {
    font-style: normal;
    font-size: 1.15rem;
    transition: transform var(--b-transition);
}

.b-service-list__link:hover .b-service-list__go em {
    transform: translateX(6px);
}


/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORIES — .b-cats
   ═══════════════════════════════════════════════════════════════════════════ */

.b-cats {
    background: var(--b-concrete);
    padding-bottom: 0 !important;
}

.b-cats .container {
    margin-bottom: 2rem;
}

.b-cats__mosaic,
.b-cats__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.65rem;
    padding: 0 clamp(1rem, 4vw, 2rem) clamp(2.5rem, 5vw, 4rem);
}

.b-cats__tile {
    position: relative;
    display: block;
    grid-column: span 4;
    min-height: 16rem;
    overflow: hidden;
    background: var(--b-steel);
    text-decoration: none;
}

.b-cats__tile:nth-child(1) {
    grid-column: span 7;
    min-height: 22rem;
}

.b-cats__tile:nth-child(2) {
    grid-column: span 5;
    min-height: 22rem;
}

.b-cats__tile:nth-child(3),
.b-cats__tile:nth-child(4) {
    grid-column: span 3;
    min-height: 14rem;
}

.b-cats__tile:nth-child(5),
.b-cats__tile:nth-child(6) {
    grid-column: span 3;
    min-height: 14rem;
}

.b-cats__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--b-slate);
    transition: transform var(--b-transition-slow);
}

.b-cats__tile:hover .b-cats__media {
    transform: scale(1.07);
}

.b-cats__tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8, 9, 12, 0.88) 0%, rgba(8, 9, 12, 0.15) 55%, transparent 100%);
    pointer-events: none;
}

.b-cats__index {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.28);
}

.b-cats__name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 1.35rem 1.25rem;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--b-white);
    border-bottom: 4px solid var(--b-red);
}


/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCTS — .b-products + .product-card overrides
   ═══════════════════════════════════════════════════════════════════════════ */

.b-products {
    background:
        linear-gradient(180deg, #fff 0%, var(--b-fog) 100%);
}

.b-products__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.b-products__cell--feature {
    grid-column: span 2;
    grid-row: span 2;
}

.b-products__cell--feature .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.b-products__cell--feature .product-card__link {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.b-products__cell--feature .product-card__frame {
    flex: 1;
    min-height: 22rem;
}

.b-products__cell--feature .product-card__title {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.product-card {
    border-radius: 0;
    box-shadow: none;
    border: none;
    background: transparent;
    transition: transform var(--b-transition);
}

.product-card:hover {
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: none;
}

.product-card__frame {
    border-radius: 0;
    box-shadow: none !important;
    background: var(--b-concrete);
    overflow: hidden;
}

.product-card__frame::before {
    display: none;
}

.product-card:hover .product-card__frame {
    box-shadow: none !important;
}

.product-card__media img {
    border-radius: 0;
}

.product-card__badge {
    border-radius: 0;
    font-family: var(--font-body);
    letter-spacing: 0.1em;
}

.product-card__badge--sale {
    background: var(--b-red);
}

.product-card__body {
    padding: 1rem 0 0.35rem;
}

.product-card__category {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--b-muted);
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.1;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(14, 16, 20, 0.12);
}

.product-card__price,
.product-card__badge--sale {
    display: none !important;
}

.product-card__quote-text {
    color: var(--b-red);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-card__quote {
    border-radius: 0;
    width: 100%;
    margin: 0.85rem 0 0;
    background: var(--b-ink);
    color: #fff;
    border: 1px solid var(--b-ink);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card__quote:hover {
    background: var(--b-red);
    border-color: var(--b-red);
    color: #fff;
}

.product-detail__quote-note {
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    background: rgba(227, 6, 19, 0.08);
    border-left: 3px solid var(--b-red);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--b-red);
}

.product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

.product-item__price,
.product-item__price--lg {
    display: none !important;
}


/* ═══════════════════════════════════════════════════════════════════════════
   CTA — .b-cta
   ═══════════════════════════════════════════════════════════════════════════ */

.b-cta {
    position: relative;
    padding: clamp(4.5rem, 9vw, 7rem) 0;
    background:
        linear-gradient(120deg, var(--b-red) 0%, var(--b-red-deep) 38%, transparent 38.2%),
        var(--b-ink);
    overflow: hidden;
}

.b-cta::before {
    content: 'BALCA';
    position: absolute;
    right: -2%;
    bottom: -18%;
    font-family: var(--font-display);
    font-size: clamp(8rem, 24vw, 18rem);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.b-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.b-cta__copy {
    flex: 1;
    min-width: 260px;
    max-width: 38rem;
}

.b-cta__copy .b-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.b-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}


/* ═══════════════════════════════════════════════════════════════════════════
   QUOTE — .b-quote
   ═══════════════════════════════════════════════════════════════════════════ */

.b-quote {
    padding: 0;
    background: var(--b-fog);
}

.b-quote__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    max-width: none;
    width: 100%;
    padding: 0;
}

.b-quote__intro {
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
    background: var(--b-steel);
    color: #fff;
}

.b-quote__intro .b-title {
    color: #fff;
}

.b-quote__intro .b-lead {
    color: rgba(255, 255, 255, 0.7);
}

.b-quote__perks {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.b-quote__perks li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.25rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
}

.b-quote__perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--b-red);
}

.b-quote__phones {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 1rem;
}

.b-quote__phone {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #fff;
    text-decoration: none;
    transition: color var(--b-transition);
}

.b-quote__phone:hover {
    color: var(--b-red);
}

.b-quote__form {
    background: #fff;
    color: var(--b-ink);
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
    border-radius: 0;
    border-left: 1px solid rgba(14, 16, 20, 0.08);
}

.b-quote__form-head h3 {
    margin: 0 0 0.25rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--b-ink);
}

.b-quote__form-head p {
    margin: 0 0 1.5rem;
    font-size: 0.875rem;
    color: var(--b-muted);
}

.b-quote__form label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--b-muted);
}

.b-quote__form input,
.b-quote__form textarea {
    width: 100%;
    padding: 0.85rem 0.95rem;
    background: var(--b-fog);
    border: 1px solid rgba(14, 16, 20, 0.12);
    border-radius: 0;
    color: var(--b-ink);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition:
        border-color var(--b-transition),
        box-shadow var(--b-transition);
}

.b-quote__form input::placeholder,
.b-quote__form textarea::placeholder {
    color: rgba(14, 16, 20, 0.35);
}

.b-quote__form input:focus,
.b-quote__form textarea:focus {
    outline: none;
    border-color: var(--b-red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.15);
}

.b-quote__form .form__check span,
.b-quote__form .form__check a {
    color: var(--b-muted);
}

.b-quote__form .form__check a:hover {
    color: var(--b-red);
}


/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS & NEWS — industrial sharp overrides
   ═══════════════════════════════════════════════════════════════════════════ */

.section--testimonials {
    background: var(--b-steel);
}

.testimonial-slide,
.voices-card {
    border-radius: 0;
    border: 1px solid var(--b-slate);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.testimonial-slider__dot {
    border-radius: 0;
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
}

.testimonial-slider__dot.is-active {
    background: var(--b-red);
    width: 40px;
}

.section--news {
    background: var(--b-fog);
}

.news-feature__link,
.news-row__link,
.news-card {
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--b-concrete);
}

.news-feature__link:hover,
.news-row__link:hover {
    border-color: var(--b-red);
}

.news-feature__tag {
    background: var(--b-red);
    border-radius: 2px;
}

.news-feature__media img,
.news-row__media img {
    border-radius: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   FLOAT DOCK
   ═══════════════════════════════════════════════════════════════════════════ */

.float-dock__btn {
    background: var(--b-steel);
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--b-slate);
    box-shadow: -6px 0 24px rgba(8, 9, 12, 0.3);
    border-radius: 0;
}

.float-dock__btn:hover {
    background: var(--b-slate);
    color: var(--b-white);
    width: 54px;
}

.float-dock__btn--call:hover {
    background: var(--b-red);
    color: var(--b-white);
}

.float-dock__btn--wa:hover {
    background: #1a9e4a;
    color: var(--b-white);
}

.float-dock__btn--quote:hover {
    background: var(--b-red-deep);
    color: var(--b-white);
}

.float-dock__label {
    background: var(--b-ink);
    border-radius: 2px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER — Balca industrial
   ═══════════════════════════════════════════════════════════════════════════ */

.b-footer {
    background: var(--b-ink);
    color: rgba(255, 255, 255, 0.68);
    margin-top: 0;
}

.b-footer__cta {
    background: var(--b-steel);
    border-top: 3px solid var(--b-red);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.b-footer__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.75rem 0;
}

.b-footer__cta-kicker {
    margin: 0 0 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--b-red);
}

.b-footer__cta-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--b-white);
    line-height: 1.15;
}

.b-footer__cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.b-footer__main {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
    gap: 2.5rem 2rem;
    padding: 3.25rem 0 2.5rem;
}

.b-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.b-footer__logo {
    height: 52px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.b-footer__name {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--b-white);
}

.b-footer__tagline {
    margin: 0 0 1rem;
    max-width: 22rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}

.b-footer__markets {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.b-footer__markets span:nth-child(odd)::after {
    content: none;
}

.b-footer__social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
}

.b-footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--b-transition);
}

.b-footer__social-link:hover {
    color: var(--b-red);
}

.b-footer__col h3 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--b-red);
}

.b-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.b-footer__col li {
    margin-bottom: 0.55rem;
}

.b-footer__col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--b-transition);
}

.b-footer__col a:hover {
    color: var(--b-white);
}

.b-footer__contact {
    font-style: normal;
}

.b-footer__contact-row {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.45;
}

a.b-footer__contact-row:hover {
    color: var(--b-white);
}

.b-footer__contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.b-footer__contact-cta {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--b-red);
}

.b-footer__contact-cta:hover {
    color: #ff2a36;
}

.b-footer__legal {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.b-footer__legal nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
}

.b-footer__legal a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.b-footer__legal a:hover {
    color: var(--b-white);
}

.b-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    padding: 1.15rem 0 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.42);
}

.b-footer__bottom p {
    margin: 0;
}

.b-footer__note {
    max-width: 28rem;
}

.b-footer__domain {
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.design-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
}

.design-orbit {
    position: relative;
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    animation: design-orbit-spin 7s linear infinite;
}

.design-orbit::before {
    content: "";
    position: absolute;
    top: -0.17rem;
    left: 50%;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: #ffffff;
    transform: translateX(-50%);
    box-shadow: 0 0 0.7rem rgba(255, 255, 255, 0.65);
}

.design-orbit i {
    position: absolute;
    inset: 0.38rem;
    display: block;
    border: 1px dashed rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    animation: design-orbit-spin 3.5s linear infinite reverse;
}

.design-orbit b {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.32rem;
    height: 0.32rem;
    display: block;
    background: #ffffff;
    transform: translate(-50%, -50%) rotate(45deg);
    animation: design-pulse 1.8s ease-in-out infinite;
}

.design-credit-copy {
    display: grid;
    gap: 0.16rem;
}

.design-credit-copy small,
.design-credit-copy small a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 0;
}

.design-credit-copy small a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.design-credit-copy > a {
    width: fit-content;
    color: #d7d7d7;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(215, 215, 215, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.design-credit-copy > a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

@keyframes design-orbit-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes design-pulse {
    0%,
    100% {
        opacity: 0.45;
        transform: translate(-50%, -50%) rotate(45deg) scale(0.75);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .design-orbit,
    .design-orbit i,
    .design-orbit b {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .b-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .b-footer__cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .b-footer__main {
        grid-template-columns: 1fr;
        padding-top: 2.5rem;
    }

    .b-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Legacy footer class safety */
.site-footer {
    background: var(--b-ink);
    border-top: 3px solid var(--b-red);
}


/* ═══════════════════════════════════════════════════════════════════════════
   MISC GLOBAL OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════ */

.skip-link {
    background: var(--b-red);
    border-radius: 2px;
}

.page-progress__bar {
    background: var(--b-red);
    height: 2px;
}

.back-top {
    background: var(--b-steel);
    border: 2px solid var(--b-slate);
    border-radius: 2px;
    color: var(--b-white);
}

.back-top:hover {
    background: var(--b-red);
    border-color: var(--b-red);
}

.flash {
    border-radius: 2px;
}

.flash--success {
    background: var(--b-steel);
    color: var(--b-white);
    border-left: 4px solid var(--b-red);
}

/* Legacy section titles on inner pages */
.section-eyebrow {
    color: var(--b-red);
    letter-spacing: 0.16em;
}

.section-title {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section--alt,
.about-split {
    background: var(--b-fog);
}

.about-split__frame {
    border-radius: 0;
    box-shadow: none;
}

.about-split__frame::before {
    display: none;
}

.about-split__frame img {
    border-radius: 0;
    filter: grayscale(0.12);
}


/* ═══════════════════════════════════════════════════════════════════════════
   MOTION — reveal + hero animations
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes b-rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes b-hero-zoom {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1.12);
    }
}

@keyframes b-scroll-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scaleY(0.85);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s var(--b-ease),
        transform 0.7s var(--b-ease);
    transition-delay: var(--delay, 0s);
}

.reveal.is-visible,
.reveal.in-view {
    opacity: 1;
    transform: none;
    animation: b-rise 0.7s var(--b-ease) both;
    animation-delay: var(--delay, 0s);
}

.reveal-hero {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s var(--b-ease),
        transform 0.8s var(--b-ease);
}

.b-hero__slide.is-active .reveal-hero,
.hero__slide.is-active .reveal-hero {
    opacity: 1;
    transform: none;
}

.b-hero__slide.is-active .b-hero__logo.reveal-hero,
.hero__slide.is-active .b-hero__logo.reveal-hero {
    transition-delay: 0.12s;
}

.b-hero__slide.is-active .b-hero__brand.reveal-hero,
.hero__slide.is-active .b-hero__brand.reveal-hero {
    transition-delay: 0.12s;
}

.b-hero__slide.is-active .b-hero__title.reveal-hero,
.hero__slide.is-active .b-hero__title.reveal-hero {
    transition-delay: 0.28s;
}

.b-hero__slide.is-active .b-hero__lead.reveal-hero,
.hero__slide.is-active .b-hero__lead.reveal-hero {
    transition-delay: 0.42s;
}

.b-hero__slide.is-active .b-hero__actions.reveal-hero,
.hero__slide.is-active .b-hero__actions.reveal-hero {
    transition-delay: 0.56s;
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .b-about__layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .b-about__figure img {
        aspect-ratio: 16 / 10;
    }

    .b-cats__mosaic,
    .b-cats__grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .b-cats__tile,
    .b-cats__tile:nth-child(n) {
        grid-column: span 3;
        min-height: 14rem;
    }

    .b-cats__tile:nth-child(1),
    .b-cats__tile:nth-child(2) {
        min-height: 18rem;
    }

    .b-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .b-products__cell--feature {
        grid-column: span 2;
        grid-row: span 1;
    }

    .b-stats__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .b-quote__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    /* Mobil / tablet: üst şerit taşmasın — telefonlar float dock’ta */
    .site-header__top {
        display: none !important;
        height: 0 !important;
        max-height: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
    }

    :root {
        --header-top: 0px;
        --header-height: 64px;
        --header-total: 64px;
    }

    .site-header {
        border-bottom: 2px solid var(--b-red);
    }

    .is-inner #main {
        padding-top: var(--header-height);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
        --header-total: 64px;
        --header-top: 0px;
    }

    .site-brand__logo--wide {
        height: 36px;
    }

    .b-hero__title {
        font-size: clamp(2.1rem, 10vw, 3.1rem);
        max-width: 100%;
        line-height: 1.08;
    }

    .b-hero__content {
        top: var(--header-total);
        bottom: 4.25rem;
        justify-content: flex-end;
        padding-top: 0.75rem;
    }

    .b-hero__scroll {
        display: none;
    }

    .b-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .b-markets {
        grid-template-columns: 1fr;
    }

    .b-markets__item + .b-markets__item {
        padding-left: 0;
    }

    .b-service-list__link {
        grid-template-columns: 3.25rem 1fr;
        gap: 0.85rem;
    }

    .b-service-list__thumb,
    .b-service-list__go span {
        display: none;
    }

    .b-cats__mosaic,
    .b-cats__grid {
        grid-template-columns: 1fr;
        padding-inline: 1rem;
    }

    .b-cats__tile,
    .b-cats__tile:nth-child(n) {
        grid-column: span 1;
        min-height: 12.5rem;
    }

    .b-products__grid {
        grid-template-columns: 1fr;
    }

    .b-products__cell--feature {
        grid-column: span 1;
    }

    .b-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .b-cta {
        background: var(--b-ink);
    }

    .b-hero__bar {
        padding: 1rem 1.25rem;
    }

    .b-hero__arrows {
        display: none;
    }

    .b-stats__row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .b-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .b-stats__value {
        font-size: 2.25rem;
    }

    .b-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .b-hero__actions .b-btn {
        width: 100%;
    }

    .b-quote__form {
        padding: 1.5rem;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   BRANDS — .b-brands
   ═══════════════════════════════════════════════════════════════════════════ */

.b-brands .section-head {
    margin-bottom: 1.5rem;
}

.section--brands.b-brands {
    background: #fff;
}

.b-news {
    background: var(--b-fog);
}

.b-news .news-feature__link,
.b-news .news-row__link,
.b-news .news-card__link {
    border-radius: 0 !important;
}

.b-news .news-feature h3,
.b-news .news-row h3,
.b-news .news-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.05;
}

.b-brands__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.85rem;
}

.b-brands__cell {
    margin: 0;
    min-width: 0;
}

.b-brands__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 5.75rem;
    padding: 1.1rem 1rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(26, 30, 38, 0.08);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.b-brands__item:hover,
.b-brands__item:focus-visible {
    background: #fff;
    border-color: rgba(227, 6, 19, 0.35);
    transform: translateY(-2px);
    outline: none;
}

.b-brands__logo {
    display: block;
    max-width: 148px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 0.92;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.b-brands__item:hover .b-brands__logo,
.b-brands__item:focus-visible .b-brands__logo {
    opacity: 1;
    transform: scale(1.03);
}

.b-brands__name {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.15;
    color: var(--b-ink);
    opacity: 0.78;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.b-brands__item:hover .b-brands__name,
.b-brands__item:focus-visible .b-brands__name {
    color: var(--b-red);
    opacity: 1;
}

/* Hide legacy marquee if cached markup still appears */
.section--brands .brands-marquee {
    display: none !important;
}

@media (max-width: 1100px) {
    .b-brands__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .b-brands__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .b-brands__grid {
        grid-template-columns: 1fr;
    }

    .b-brands__item {
        min-height: 4.5rem;
    }
}

@media (max-height: 820px) {
    .b-hero__logo {
        height: 44px;
        margin-bottom: 0.65rem;
    }

    .b-hero__brand {
        font-size: clamp(1.2rem, 3vh, 1.75rem);
        margin-bottom: 0.55rem;
    }

    .b-hero__title {
        font-size: clamp(1.85rem, 7vh, 3.6rem);
        margin-bottom: 0.65rem;
    }

    .b-hero__lead {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .b-hero__slide.is-active .b-hero__media,
    .hero__slide.is-active .b-hero__media {
        animation: none;
        transform: scale(1);
    }

    .reveal,
    .reveal-hero {
        opacity: 1;
        transform: none;
    }
}
