/* BFF Hoch- und Tiefbau — modern multi-page interface */
:root {
    --paper: #f7f4ec;
    --surface: #fff;
    --surface-2: #eef1f2;
    --ink: #26343d;
    --muted: #66747c;
    --line: #d8dedf;
    --gold: #c99631;
    --gold-2: #e8c978;
    --blue: #315667;
    --blue-2: #e5edf0;
    --white: #fff;
    --shadow: 0 24px 70px rgba(40, 52, 60, .14);
    --radius: 26px;
    --header: 88px;
    --container: min(1380px, calc(100% - 48px));
    --ease: cubic-bezier(.2, .75, .2, 1)
}

html[data-theme="dark"] {
    --paper: #1d2b32;
    --surface: #263740;
    --surface-2: #31444e;
    --ink: #f5f1e7;
    --muted: #b7c2c6;
    --line: #43565f;
    --gold: #e0ad4c;
    --gold-2: #f0cf82;
    --blue: #84aabd;
    --blue-2: #293e48;
    --shadow: 0 26px 75px rgba(5, 12, 16, .26)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    background: var(--paper)
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden
}

body.no-scroll {
    overflow: hidden
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    color: inherit
}

.container {
    width: var(--container);
    margin-inline: auto
}

.sr-only,
.sr-only-focusable:not(:focus),
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.skip-link:focus {
    position: fixed;
    left: 20px;
    top: 20px;
    z-index: 9999;
    background: var(--surface);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: var(--shadow)
}

.section-pad {
    padding: 118px 0
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase
}

.kicker:before {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor
}

.section-heading {
    max-width: 820px;
    margin-bottom: 52px
}

.section-heading h2,
.split-heading h2 {
    margin: 12px 0 16px;
    font-size: clamp(2.2rem, 4.4vw, 5rem);
    line-height: 1.04;
    letter-spacing: -.045em
}

.section-heading p,
.split-heading p {
    color: var(--muted);
    font-size: 1.08rem
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
    align-items: end;
    gap: 70px;
    max-width: none
}

.split-heading p {
    margin: 0 0 12px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .015em;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s
}

.button:hover {
    transform: translateY(-2px)
}

.button-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 13px 28px rgba(201, 150, 49, .26)
}

.button-gold:hover {
    background: #b98728
}

.button-dark {
    background: var(--ink);
    color: var(--paper)
}

.button-light {
    background: #fff;
    color: #26343d
}

.button-outline {
    border-color: var(--line);
    background: transparent
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800
}

.arrow-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s
}

.text-link:hover .arrow-icon,
.button:hover .arrow-icon,
.circle-link:hover .arrow-icon {
    transform: translateX(4px)
}

.site-loader {
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 9998;
    display: grid;
    place-items: center;
    transition: opacity .65s, visibility .65s
}

.site-loader.hidden {
    opacity: 0;
    visibility: hidden
}

.loader-mark {
    width: 150px;
    position: relative
}

.loader-mark img {
    width: 100%;
    filter: drop-shadow(0 12px 22px rgba(40, 52, 60, .12))
}

.loader-mark span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -24px;
    height: 3px;
    background: var(--line);
    overflow: hidden
}

.loader-mark span:after {
    content: "";
    position: absolute;
    inset: 0;
    width: 45%;
    background: var(--gold);
    animation: loader 1.05s infinite var(--ease)
}

@keyframes loader {
    from {
        transform: translateX(-120%)
    }

    to {
        transform: translateX(260%)
    }
}

.page-curtain {
    position: fixed;
    inset: 0;
    z-index: 9997;
    background: var(--gold);
    transform: translateX(-105%) skewX(-8deg);
    pointer-events: none
}

.page-leaving .page-curtain {
    animation: curtain .55s var(--ease) forwards
}

@keyframes curtain {
    to {
        transform: translateX(0) skewX(0)
    }
}

.scroll-progress {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    z-index: 1200
}

.scroll-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-2))
}

.utility-bar {
    height: 34px;
    background: var(--blue);
    color: #fff;
    font-size: .72rem;
    letter-spacing: .04em
}

.utility-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.utility-inner div {
    display: flex;
    gap: 28px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    background: color-mix(in srgb, var(--paper) 82%, transparent);
    backdrop-filter: blur(18px)
}

.header-shell {
    height: var(--header);
    display: flex;
    align-items: center;
    padding: 8px 12px 8px 18px;
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    border: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
    border-radius: 22px;
    box-shadow: 0 12px 42px rgba(41, 55, 64, .08)
}

.brand {
    width: 92px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto
}

.brand img {
    max-height: 68px;
    width: auto
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: auto
}

.nav-link,
.nav-drop {
    border: 0;
    background: none;
    padding: 15px 14px;
    font-size: .85rem;
    font-weight: 750;
    white-space: nowrap;
    border-radius: 12px;
    cursor: pointer;
    transition: background .2s, color .2s
}

.nav-link:hover,
.nav-drop:hover,
.nav-link.is-active,
.nav-group.is-active>.nav-drop {
    background: var(--surface-2);
    color: var(--gold)
}

.nav-drop {
    display: flex;
    align-items: center;
    gap: 8px
}

.nav-drop>span {
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px)
}

.nav-group {
    position: relative
}

.mega-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 15px);
    width: 330px;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: .25s var(--ease)
}

.mega-wide {
    width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr
}

.nav-group:hover .mega-menu,
.nav-group.open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0)
}

.mega-label {
    grid-column: 1/-1;
    padding: 8px 10px;
    color: var(--gold);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .24em
}

.mega-menu a {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 13px 12px;
    border-radius: 13px
}

.mega-menu a:hover {
    background: var(--surface-2)
}

.mega-menu a>b {
    color: var(--gold);
    font-size: .72rem
}

.mega-menu a span {
    display: grid;
    font-weight: 800;
    font-size: .88rem
}

.mega-menu small {
    color: var(--muted);
    font-weight: 500;
    font-size: .72rem;
    margin-top: 2px
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px
}

.icon-button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    cursor: pointer
}

.theme-toggle svg {
    position: absolute;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: .3s
}

.theme-toggle .moon {
    opacity: 0;
    transform: rotate(-50deg) scale(.5)
}

html[data-theme="dark"] .theme-toggle .sun {
    opacity: 0;
    transform: rotate(50deg) scale(.5)
}

html[data-theme="dark"] .theme-toggle .moon {
    opacity: 1;
    transform: none
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    padding: 0;
    cursor: pointer
}

.menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--paper);
    margin: 5px auto
}

.mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(420px, 100%);
    z-index: 1500;
    background: var(--surface);
    padding: 24px;
    box-shadow: var(--shadow);
    overflow: auto
}

.mobile-drawer[hidden] {
    display: none
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 900
}

.drawer-close {
    font-size: 1.5rem
}

.mobile-nav {
    display: grid;
    margin-top: 24px
}

.mobile-nav>a,
.mobile-nav summary {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 850;
    cursor: pointer;
    list-style: none
}

.mobile-nav details a {
    display: block;
    padding: 12px 18px;
    color: var(--muted)
}

.drawer-cta {
    width: 100%;
    margin-top: 24px
}

.hero-modern {
    position: relative;
    min-height: calc(100svh - 122px);
    display: grid;
    grid-template-columns: 47% 53%;
    overflow: hidden;
    background: var(--paper)
}

.hero-copy {
    grid-column: 1/-1;
    grid-row: 1;
    display: grid;
    grid-template-columns: 47% 53%;
    z-index: 4
}

.hero-text {
    align-self: center;
    padding: 80px 74px 80px 0
}

.hero-text h1 {
    font-size: clamp(3rem, 5.6vw, 6.8rem);
    line-height: .96;
    letter-spacing: -.062em;
    margin: 16px 0 26px;
    max-width: 760px
}

.hero-text>p {
    font-size: clamp(1rem, 1.35vw, 1.24rem);
    color: var(--muted);
    max-width: 660px
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 62px
}

.hero-proof span {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    font-size: .73rem;
    color: var(--muted)
}

.hero-proof b {
    font-size: 1.55rem;
    color: var(--ink)
}

.hero-picture {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    min-height: 720px;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 13% 55%)
}

.hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-picture-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(33, 49, 59, .18), transparent 36%), linear-gradient(0deg, rgba(33, 49, 59, .44), transparent 42%)
}

.hero-float-card {
    position: absolute;
    left: 12%;
    bottom: 90px;
    width: 255px;
    padding: 20px 23px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .9);
    color: #26343d;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow)
}

.hero-float-card span {
    display: block;
    color: #9a742a;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase
}

.hero-float-card b {
    display: block;
    margin-top: 5px
}

.hero-index {
    position: absolute;
    right: 25px;
    bottom: 25px;
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18em
}

.blueprint-grid {
    position: absolute;
    inset: 0 53% 0 0;
    pointer-events: none;
    opacity: .18;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to right, transparent 0, #000 55%, transparent 100%)
}

.trust-band {
    background: var(--surface);
    border-block: 1px solid var(--line)
}

.trust-grid {
    min-height: 92px;
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    align-items: center;
    gap: 30px
}

.trust-grid div {
    display: flex;
    align-items: center;
    gap: 12px
}

.trust-grid p {
    padding-left: 20px;
    border-left: 1px solid var(--line);
    font-size: .78rem;
    color: var(--muted)
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4ca475;
    box-shadow: 0 0 0 7px rgba(76, 164, 117, .12)
}

.section-flow {
    position: relative
}

.section-flow:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 72px;
    background: linear-gradient(var(--gold), transparent);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 1s var(--ease)
}

.section-flow.in-view:before {
    transform: scaleY(1)
}

.service-image-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    grid-auto-rows: 330px;
    gap: 18px
}

.service-image-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #1d2b32;
    color: #fff
}

.service-image-card:first-child {
    grid-row: span 2
}

.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.35) contrast(.95);
    transition: filter .7s, transform 1s var(--ease)
}

.service-image-card:hover img {
    filter: saturate(1) contrast(1);
    transform: scale(1.045)
}

.service-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(23, 38, 47, .9), rgba(23, 38, 47, .03) 68%)
}

.service-image-card>div {
    position: absolute;
    inset: auto 34px 30px
}

.service-image-card small {
    color: var(--gold-2);
    font-weight: 900
}

.service-image-card h3 {
    font-size: clamp(1.7rem, 2.4vw, 3rem);
    margin: 4px 0
}

.service-image-card p {
    max-width: 560px;
    color: rgba(255, 255, 255, .78);
    margin: 0 0 12px
}

.service-image-card b {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem
}

.projects-home {
    background: var(--surface)
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.project-card {
    min-width: 0
}

.project-media {
    position: relative;
    display: block;
    aspect-ratio: 1.23;
    overflow: hidden;
    border-radius: 24px;
    background: var(--surface-2)
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease)
}

.project-card:hover .project-media img {
    transform: scale(1.045)
}

.status {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    color: #26343d;
    font-size: .69rem;
    font-weight: 900
}

.status-ongoing:before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 7px;
    background: #4ca475
}

.status-completed:before {
    content: "✓";
    margin-right: 7px;
    color: #9a742a
}

.project-number {
    position: absolute;
    right: 18px;
    top: 18px;
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .4)
}

.project-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 5px
}

.project-info small {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .66rem
}

.project-info h3 {
    font-size: 1.45rem;
    margin: 4px 0
}

.circle-link {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border: 1px solid var(--line);
    border-radius: 50%
}

.section-action {
    text-align: center;
    margin-top: 42px
}

.process {
    background: var(--blue-2)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden
}

.process-grid article {
    min-height: 300px;
    padding: 32px;
    background: var(--surface);
    position: relative
}

.process-grid article:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: var(--gold);
    transition: width .6s var(--ease)
}

.process-grid article:hover:after {
    width: 100%
}

.process-grid b {
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 500
}

.process-grid h3 {
    font-size: 1.45rem;
    margin: 70px 0 12px
}

.process-grid p {
    color: var(--muted)
}

.quality-split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 720px
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.quality-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px max(6vw, 48px);
    background: var(--blue);
    color: #fff
}

.quality-copy h2 {
    font-size: clamp(2.5rem, 4.4vw, 5rem);
    line-height: 1.02;
    letter-spacing: -.045em;
    margin: 16px 0 22px
}

.quality-copy>p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.08rem
}

.quality-copy ul {
    list-style: none;
    padding: 0;
    margin: 26px 0 34px
}

.quality-copy li {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden
}

.blog-media {
    position: relative;
    display: block;
    aspect-ratio: 1.42;
    overflow: hidden
}

.blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease)
}

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

.blog-media>span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 7px 11px;
    background: rgba(255, 255, 255, .92);
    color: #26343d;
    border-radius: 999px;
    font-size: .68rem;
    font-weight: 800
}

.blog-card-copy {
    padding: 24px
}

.blog-card-copy>small {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .12em
}

.blog-card-copy h3 {
    font-size: 1.35rem;
    line-height: 1.25;
    margin: 10px 0
}

.blog-card-copy p {
    color: var(--muted)
}

.final-cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 56px;
    border-radius: var(--radius);
    background: linear-gradient(120deg, var(--gold-2), var(--gold));
    color: #2b3134
}

.final-cta-shell h2 {
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.05;
    max-width: 900px;
    margin: 10px 0
}

.newsletter {
    padding-top: 0
}

.newsletter-shell {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 50px;
    padding: 42px 50px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line)
}

.newsletter-shell h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin: 8px 0
}

.newsletter-shell p {
    color: var(--muted);
    margin: 0
}

.newsletter-form {
    display: flex;
    gap: 10px;
    padding: 8px;
    background: var(--surface-2);
    border-radius: 999px
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0 18px;
    color: var(--ink);
    outline: none
}

.site-footer {
    background: #dfe5e5;
    color: #293942;
    padding: 70px 0 24px
}

html[data-theme="dark"] .site-footer {
    background: #15242b;
    color: #eff3f1
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 60px
}

.footer-brand img {
    width: 120px
}

.footer-brand p {
    max-width: 390px
}

.footer-grid h3 {
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #9a742a
}

.footer-grid>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.footer-grid a:hover {
    color: var(--gold)
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(48, 67, 76, .16);
    font-size: .76rem
}

.footer-bottom div {
    display: flex;
    gap: 24px
}

.inner-hero {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #243740;
    color: #fff
}

.inner-hero-media {
    position: absolute;
    inset: 0
}

.inner-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.inner-hero-media>span {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 48, 58, .9), rgba(30, 48, 58, .32) 63%, rgba(30, 48, 58, .08)), linear-gradient(0deg, rgba(30, 48, 58, .55), transparent 55%)
}

.inner-hero-copy {
    position: relative;
    z-index: 2;
    padding-bottom: 76px
}

.inner-hero-copy h1 {
    max-width: 980px;
    font-size: clamp(3rem, 6vw, 7rem);
    line-height: .95;
    letter-spacing: -.055em;
    margin: 14px 0 24px
}

.inner-hero-copy p {
    max-width: 760px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .8)
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 100px;
    align-items: start
}

.editorial-grid h2,
.two-col-content h2 {
    font-size: clamp(2.4rem, 4.8vw, 5.4rem);
    line-height: 1.04;
    letter-spacing: -.045em;
    margin: 14px 0 26px
}

.large-copy {
    font-size: clamp(1.1rem, 1.6vw, 1.38rem);
    color: var(--muted)
}

blockquote {
    margin: 0;
    padding: 46px;
    border-radius: var(--radius);
    background: var(--blue-2);
    font-size: clamp(1.6rem, 2.8vw, 3rem);
    line-height: 1.18;
    font-weight: 750
}

blockquote span {
    display: block;
    margin-top: 28px;
    color: var(--gold);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase
}

.company-facts {
    background: var(--surface)
}

.fact-grid,
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.fact-grid article,
.value-grid article {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper)
}

.fact-grid b,
.value-grid b {
    color: var(--gold);
    font-size: 1.6rem
}

.fact-grid h3 {
    font-size: 1.45rem;
    margin: 70px 0 10px
}

.fact-grid p,
.value-grid p {
    color: var(--muted)
}

.value-grid {
    grid-template-columns: repeat(2, 1fr)
}

.value-grid article {
    min-height: 340px
}

.value-grid h2 {
    font-size: clamp(1.8rem, 3vw, 3.4rem);
    margin: 100px 0 16px
}

.safety-banner {
    padding: 105px 0;
    background: var(--gold);
    color: #26343d
}

.safety-banner h2 {
    font-size: clamp(2.5rem, 5vw, 6rem);
    line-height: 1;
    max-width: 1100px;
    margin: 16px 0
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
}

.service-feature {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--radius);
    color: #fff
}

.service-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(.88);
    transition: filter .8s, transform 1s var(--ease)
}

.service-feature:hover img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.05)
}

.service-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(23, 38, 47, .92), rgba(23, 38, 47, .05) 70%)
}

.service-feature>div {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 34px
}

.service-feature small {
    color: var(--gold-2);
    font-weight: 900
}

.service-feature h2 {
    font-size: clamp(2rem, 4vw, 4.4rem);
    line-height: 1;
    margin: 8px 0
}

.service-feature p {
    color: rgba(255, 255, 255, .75)
}

.service-feature b {
    display: flex;
    align-items: center;
    gap: 10px
}

.expertise-strip {
    background: var(--surface)
}

.two-col-content {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 100px;
    align-items: start
}

.deliverable-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line)
}

.deliverable-list li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line)
}

.deliverable-list span {
    color: var(--gold);
    font-weight: 900
}

.wide-image-section {
    position: relative;
    height: 720px
}

.wide-image-section>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.wide-image-caption {
    position: absolute;
    right: 6vw;
    bottom: 50px;
    max-width: 420px;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .92);
    color: #26343d;
    backdrop-filter: blur(12px)
}

.wide-image-caption span {
    color: #9a742a;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .15em
}

.project-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 38px
}

.project-filter a {
    padding: 11px 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 800
}

.project-filter a.active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink)
}

.project-grid-large {
    row-gap: 55px
}

.project-facts {
    background: var(--surface);
    border-bottom: 1px solid var(--line)
}

.project-facts .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.project-facts div div {
    padding: 26px 28px;
    border-right: 1px solid var(--line)
}

.project-facts small {
    display: block;
    color: var(--muted);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em
}

.project-facts b {
    display: block;
    margin-top: 4px
}

.gallery-section {
    background: var(--surface)
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 190px;
    gap: 15px
}

.gallery-item {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--surface-2)
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.gallery-item:hover img {
    transform: scale(1.04)
}

.gallery-item span {
    position: absolute;
    right: 14px;
    bottom: 12px;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

.gallery-1 {
    grid-column: span 7;
    grid-row: span 3
}

.gallery-2 {
    grid-column: span 5;
    grid-row: span 2
}

.gallery-3 {
    grid-column: span 5;
    grid-row: span 2
}

.gallery-4,
.gallery-5,
.gallery-6 {
    grid-column: span 4;
    grid-row: span 2
}

.lightbox {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    margin: 0;
    border: 0;
    padding: 0;
    background: rgba(15, 27, 34, .94);
    color: #fff
}

.lightbox[open] {
    display: grid;
    grid-template-columns: 90px 1fr 90px;
    align-items: center
}

.lightbox::backdrop {
    background: rgba(15, 27, 34, .94)
}

.lightbox figure {
    margin: 0;
    display: grid;
    place-items: center;
    gap: 15px
}

.lightbox figure img {
    max-width: min(1180px, calc(100vw - 220px));
    max-height: 78vh;
    object-fit: contain
}

.lightbox figcaption {
    width: min(1180px, calc(100vw - 220px));
    display: flex;
    justify-content: space-between
}

.lightbox button {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 3rem
}

.lightbox-close {
    position: absolute;
    right: 28px;
    top: 20px
}

.blog-grid-list {
    margin-bottom: 55px
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.pagination>a {
    display: grid;
    place-items: center;
    min-width: 46px;
    height: 46px;
    padding: 0 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800
}

.pagination>a.active {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

.pagination-next {
    display: flex !important;
    gap: 8px !important
}

.article-meta {
    display: flex;
    gap: 30px;
    padding-block: 22px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: .8rem
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
    padding: 80px 0
}

.article-body section {
    margin-bottom: 58px
}

.article-body h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.15
}

.article-body p {
    font-size: 1.12rem;
    color: var(--muted)
}

.article-body aside {
    padding: 30px;
    border-left: 5px solid var(--gold);
    background: var(--surface)
}

.article-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 25px;
    padding: 35px 0 90px;
    border-top: 1px solid var(--line)
}

.article-nav>a {
    display: grid
}

.article-nav>a:last-child {
    text-align: right
}

.article-nav small {
    color: var(--gold);
    font-weight: 900
}

.article-nav-center {
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px
}

.contact-panel {
    padding: 45px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line)
}

.contact-panel h2 {
    font-size: clamp(2rem, 3.5vw, 4rem);
    margin: 10px 0 30px
}

.contact-form {
    display: grid;
    gap: 18px
}

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

.contact-form label {
    display: grid;
    gap: 8px;
    font-size: .78rem;
    font-weight: 800
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    border-radius: 13px;
    padding: 14px 15px;
    outline: none
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 18%, transparent)
}

.check {
    display: flex !important;
    grid-template-columns: auto 1fr !important;
    align-items: center
}

.check input {
    width: 18px;
    height: 18px
}

.contact-aside {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--blue);
    color: #fff
}

.contact-aside img {
    width: 100%;
    aspect-ratio: 1.3;
    object-fit: cover
}

.contact-aside>div {
    display: grid;
    padding: 34px
}

.contact-aside small {
    margin-top: 18px;
    color: var(--gold-2);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em
}

.contact-aside a {
    font-size: 1.2rem;
    font-weight: 800
}

.legal-copy {
    max-width: 820px
}

.legal-copy h2 {
    font-size: clamp(2.5rem, 5vw, 5rem)
}

.legal-copy p {
    color: var(--muted);
    font-size: 1.08rem
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center
}

.error-page span {
    display: block;
    color: var(--gold);
    font-size: clamp(6rem, 18vw, 15rem);
    line-height: .8;
    font-weight: 900
}

.error-page h1 {
    font-size: clamp(2rem, 5vw, 5rem);
    max-width: 900px
}

.language-fab {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 1000;
    height: 50px;
    padding: 0 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer
}

.language-fab b {
    font-size: .72rem;
    letter-spacing: .08em
}

.language-dialog {
    width: min(620px, calc(100% - 30px));
    border: 0;
    border-radius: 28px;
    background: var(--surface);
    color: var(--ink);
    padding: 42px;
    box-shadow: var(--shadow)
}

.language-dialog::backdrop {
    background: rgba(24, 38, 46, .62);
    backdrop-filter: blur(5px)
}

.dialog-close {
    position: absolute;
    right: 18px;
    top: 16px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    font-size: 1.4rem;
    cursor: pointer
}

.dialog-kicker {
    color: var(--gold);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .16em
}

.language-dialog h2 {
    font-size: 2.2rem;
    margin: 8px 0
}

.language-dialog p {
    color: var(--muted)
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 26px
}

.language-option {
    display: grid;
    justify-items: center;
    padding: 22px 12px;
    border: 1px solid var(--line);
    border-radius: 18px
}

.language-option:hover,
.language-option.active {
    border-color: var(--gold);
    background: var(--surface-2)
}

.language-option>span {
    font-size: 2rem
}

.language-option small {
    color: var(--muted)
}

.swal2-popup {
    font-family: inherit !important;
    border-radius: 24px !important
}

.swal2-confirm {
    background: var(--gold) !important;
    border-radius: 999px !important
}

[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .85s var(--ease), transform .85s var(--ease)
}

[data-reveal].visible {
    opacity: 1;
    transform: none
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    [data-reveal] {
        opacity: 1;
        transform: none
    }
}

@media(max-width:1180px) {
    :root {
        --container: min(100% - 34px, 1100px)
    }

    .desktop-nav,
    .header-cta {
        display: none
    }

    .menu-button {
        display: block
    }

    .header-actions {
        margin-left: auto
    }

    .hero-modern {
        grid-template-columns: 1fr
    }

    .hero-copy {
        grid-template-columns: 1fr
    }

    .hero-text {
        max-width: 720px;
        padding: 80px 0 670px
    }

    .hero-picture {
        grid-column: 1;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 620px;
        min-height: 0;
        clip-path: polygon(0 13%, 100% 0, 100% 100%, 0 100%)
    }

    .blueprint-grid {
        inset: 0
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
        padding: 20px 0
    }

    .trust-grid p {
        padding: 12px 0;
        border-left: 0;
        border-top: 1px solid var(--line)
    }

    .quality-split {
        grid-template-columns: 1fr
    }

    .quality-image {
        height: 560px
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr
    }

    .footer-grid>div:last-child {
        grid-column: 2
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .newsletter-shell {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .editorial-grid,
    .two-col-content {
        gap: 50px
    }
}

@media(max-width:760px) {
    :root {
        --container: calc(100% - 26px);
        --header: 70px
    }

    .utility-bar {
        display: none
    }

    .site-header {
        padding: 7px 0
    }

    .header-shell {
        padding: 5px 8px 5px 12px;
        border-radius: 17px
    }

    .brand {
        width: 70px;
        height: 58px
    }

    .brand img {
        max-height: 56px
    }

    .theme-toggle {
        width: 42px;
        height: 42px
    }

    .menu-button {
        width: 42px;
        height: 42px
    }

    .section-pad {
        padding: 78px 0
    }

    .split-heading,
    .editorial-grid,
    .two-col-content {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .hero-modern {
        min-height: auto
    }

    .hero-text {
        padding: 70px 0 430px
    }

    .hero-text h1 {
        font-size: clamp(3rem, 14vw, 5.2rem)
    }

    .hero-buttons {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px
    }

    .hero-proof {
        grid-template-columns: 1fr 1fr;
        margin-top: 36px
    }

    .hero-picture {
        height: 400px
    }

    .hero-float-card {
        left: 18px;
        bottom: 32px;
        width: 235px
    }

    .trust-grid {
        grid-template-columns: 1fr
    }

    .service-image-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 340px
    }

    .service-image-card:first-child {
        grid-row: auto
    }

    .project-grid,
    .blog-grid,
    .fact-grid,
    .value-grid,
    .service-feature-grid {
        grid-template-columns: 1fr
    }

    .process-grid {
        grid-template-columns: 1fr
    }

    .quality-image {
        height: 420px
    }

    .quality-copy {
        padding: 64px 25px
    }

    .final-cta-shell {
        align-items: flex-start;
        flex-direction: column;
        padding: 36px 26px
    }

    .newsletter-shell {
        padding: 30px 24px
    }

    .newsletter-form {
        border-radius: 18px;
        flex-direction: column;
        background: transparent;
        padding: 0
    }

    .newsletter-form input {
        height: 52px;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: var(--surface-2)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-grid>div:last-child {
        grid-column: auto
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px
    }

    .inner-hero {
        min-height: 540px
    }

    .inner-hero-copy {
        padding-bottom: 50px
    }

    .inner-hero-copy h1 {
        font-size: clamp(3rem, 13vw, 5.4rem)
    }

    .service-feature {
        min-height: 430px
    }

    .wide-image-section {
        height: 520px
    }

    .wide-image-caption {
        left: 18px;
        right: 18px;
        bottom: 18px
    }

    .project-facts .container {
        grid-template-columns: 1fr 1fr
    }

    .project-facts div div {
        border-bottom: 1px solid var(--line)
    }

    .masonry-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 290px
    }

    .gallery-item {
        grid-column: auto !important;
        grid-row: auto !important
    }

    .lightbox[open] {
        grid-template-columns: 48px 1fr 48px
    }

    .lightbox figure img {
        max-width: calc(100vw - 110px)
    }

    .lightbox figcaption {
        max-width: calc(100vw - 110px)
    }

    .article-nav {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .article-nav>a:last-child {
        text-align: left
    }

    .article-nav-center {
        justify-self: start;
        grid-row: 3
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .contact-panel {
        padding: 30px 22px
    }

    .language-grid {
        grid-template-columns: 1fr
    }

    .language-dialog {
        padding: 34px 22px
    }

    .language-fab {
        left: 14px;
        bottom: 14px
    }

    .project-grid-large {
        row-gap: 25px
    }
}


/* ========================================================================== 
   GOOGLE TRANSLATE DİL SEÇİMİ
   ========================================================================== */

.google-translate-hidden,
#google_translate_element {
    position: fixed !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.language-fab {
    min-width: 76px;
    justify-content: center;
    isolation: isolate;
}

.language-fab svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.language-fab::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 9px;
    width: 7px;
    height: 7px;
    border: 2px solid var(--surface);
    border-radius: 50%;
    background: var(--gold);
}

.language-dialog {
    overflow: hidden;
}

.language-dialog::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), #ebc875, var(--gold));
}

.language-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

button.language-option {
    width: 100%;
    min-height: 88px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: stretch;
    gap: 15px;
    padding: 15px;
    color: var(--ink);
    background: var(--surface);
    font: inherit;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(25, 45, 58, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

button.language-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(25, 45, 58, 0.11);
}

button.language-option.is-active {
    border-color: var(--gold);
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--gold) 13%, var(--surface)),
            var(--surface) 72%);
}

.language-flag {
    display: block;
    width: 52px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 5px 14px rgba(15, 30, 39, 0.16);
}

.language-option-copy {
    display: grid;
    gap: 4px;
}

.language-option-copy b {
    font-size: 0.96rem;
}

.language-option-copy small {
    color: var(--muted);
    font-size: 0.75rem;
}

.language-code {
    display: inline-grid;
    place-items: center;
    min-width: 40px;
    height: 29px;
    padding-inline: 8px;
    border-radius: 9px;
    color: var(--gold);
    background: color-mix(in srgb, var(--gold) 12%, transparent);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.language-notice {
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.65;
    text-align: center;
}

.language-fab:focus-visible,
.language-option:focus-visible,
.dialog-close:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--gold) 42%, transparent);
    outline-offset: 3px;
}

/* Google Translate varsayılan arayüzünü görünmez hâle getirir. */
.goog-te-banner-frame,
iframe.goog-te-banner-frame,
.goog-te-balloon-text,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-te-gadget,
.goog-te-combo,
.goog-logo-link,
.goog-te-menu-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-yAWNEb-L7lbkb {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Google'ın sayfayı aşağı itmesini engeller. */
html,
body,
html.translated-ltr body,
html.translated-rtl body {
    top: 0 !important;
    margin-top: 0 !important;
}

body {
    position: static !important;
}

/* Yalnızca body içine Google tarafından eklenen üst çubuğu gizler. */
body > .skiptranslate:not(#google_translate_element) {
    display: none !important;
}

/* Çevrilmiş metinlerin üzerindeki sarı/mavi vurguyu kaldırır. */
.goog-text-highlight,
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q {
    border: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

@media (max-width: 640px) {
    .language-grid {
        grid-template-columns: 1fr;
    }

    button.language-option {
        min-height: 78px;
    }
}


/* =========================================================
   BFF PHP TEMA ENTEGRASYONU
   ========================================================= */
.bff-php-theme .brand img,
.bff-php-theme .drawer-head img,
.bff-php-theme .footer-brand img { object-fit: contain; }
.nav-group.is-current > .nav-drop { color: var(--gold); }
.mobile-nav-group { border-bottom: 1px solid var(--line); }
.mobile-nav-group summary { cursor: pointer; padding: 15px 0; font-weight: 750; list-style: none; }
.mobile-nav-group summary::-webkit-details-marker { display: none; }
.mobile-nav-group summary::after { content: "+"; float: right; color: var(--gold); }
.mobile-nav-group[open] summary::after { content: "−"; }
.mobile-nav-group > div { display: grid; padding: 0 0 12px 14px; }
.mobile-nav-group > div a { padding: 9px 0; color: var(--muted); }
.drawer-contact { display: grid; gap: 8px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 24px; font-size: 13px; color: rgba(255,255,255,.75); }
.breadcrumb a { color: #fff; }
.cms-content { max-width: 900px; margin-inline: auto; font-size: 17px; line-height: 1.85; }
.cms-content h2, .cms-content h3, .cms-content h4 { margin: 1.8em 0 .65em; line-height: 1.2; }
.cms-content img { max-width: 100%; height: auto; border-radius: 22px; }
.cms-content table { width: 100%; border-collapse: collapse; overflow-x: auto; }
.cms-content th, .cms-content td { padding: 12px; border: 1px solid var(--line); }
.cms-empty { grid-column: 1 / -1; padding: 48px; border: 1px dashed var(--line); border-radius: 24px; text-align: center; background: var(--surface); }
.cms-empty strong { display: block; margin-bottom: 8px; font-size: 22px; }
.cms-pagination { margin-top: 44px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.cms-pagination ul { display: contents; }
.cms-pagination li { list-style: none; }
.cms-pagination a, .cms-pagination span { min-width: 42px; height: 42px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink); }
.cms-pagination .active a, .cms-pagination .active span, .cms-pagination a.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.hero-slider { position: relative; min-height: min(760px, calc(100vh - 126px)); overflow: hidden; background: #1a2931; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,31,39,.92) 0%, rgba(17,31,39,.65) 48%, rgba(17,31,39,.12) 100%); }
.hero-slide-copy { position: absolute; z-index: 2; left: max(24px, calc((100vw - 1240px)/2)); top: 50%; transform: translateY(-50%); width: min(700px, calc(100% - 48px)); color: #fff; }
.hero-slide-copy h1 { max-width: 760px; margin: 14px 0 20px; font-size: clamp(44px, 7vw, 88px); line-height: .98; letter-spacing: -.045em; }
.hero-slide-copy > p:not(.eyebrow) { max-width: 650px; font-size: 18px; color: rgba(255,255,255,.82); }
.hero-slider-controls { position: absolute; z-index: 3; left: max(24px, calc((100vw - 1240px)/2)); bottom: 34px; display: flex; align-items: center; gap: 10px; }
.hero-slider-controls button { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(12,25,32,.35); cursor: pointer; }
.hero-dots { display: flex; gap: 8px; margin-left: 8px; }
.hero-dot { width: 30px !important; height: 4px !important; border: 0 !important; border-radius: 99px !important; padding: 0; background: rgba(255,255,255,.35) !important; }
.hero-dot.is-active { background: var(--gold) !important; }
.trust-band { border-block: 1px solid var(--line); background: var(--surface); }
.trust-band-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-band-inner > div { padding: 24px; border-right: 1px solid var(--line); }
.trust-band-inner > div:last-child { border-right: 0; }
.trust-band small { display:block; color:var(--muted); text-transform:uppercase; letter-spacing:.12em; font-size:10px; }
.trust-band b { display:block; margin-top:5px; font-size:15px; }
.home-about-media { position: relative; min-height: 520px; border-radius: 28px; overflow: hidden; }
.home-about-media img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.home-about-stat { position:absolute; z-index:2; right:20px; bottom:20px; max-width:220px; padding:22px; border-radius:20px; background:rgba(255,255,255,.92); color:#24343d; backdrop-filter:blur(10px); }
.home-about-stat b { display:block; font-size:34px; color:#b77f1e; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; counter-reset:process; }
.process-card { position:relative; padding:30px; border:1px solid var(--line); border-radius:22px; background:var(--surface); }
.process-card::before { counter-increment:process; content:"0" counter(process); display:block; margin-bottom:28px; color:var(--gold); font-size:13px; font-weight:800; letter-spacing:.12em; }
.process-card h3 { margin:0 0 10px; }
.faq-list { display:grid; gap:12px; max-width:920px; margin-inline:auto; }
.faq-item { border:1px solid var(--line); border-radius:18px; background:var(--surface); overflow:hidden; }
.faq-item summary { padding:22px 24px; cursor:pointer; font-weight:750; list-style:none; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:"+"; float:right; color:var(--gold); }
.faq-item[open] summary::after { content:"−"; }
.faq-answer { padding:0 24px 22px; color:var(--muted); line-height:1.75; }
.team-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.team-card { border-radius:24px; overflow:hidden; background:var(--surface); border:1px solid var(--line); }
.team-card img { width:100%; aspect-ratio:4/5; object-fit:cover; filter:saturate(.82); transition:.5s ease; }
.team-card:hover img { filter:saturate(1); transform:scale(1.025); }
.team-card-copy { padding:20px; }
.team-card-copy small { color:var(--gold); font-weight:750; text-transform:uppercase; letter-spacing:.08em; }
.team-card-copy h3 { margin:6px 0 0; }
.logo-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; align-items:center; }
.logo-card { min-height:110px; padding:22px; display:flex; align-items:center; justify-content:center; border:1px solid var(--line); border-radius:18px; background:var(--surface); }
.logo-card img { max-width:100%; max-height:62px; object-fit:contain; filter:grayscale(1); opacity:.75; transition:.3s; }
.logo-card:hover img { filter:grayscale(0); opacity:1; }
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.gallery-card { position:relative; border-radius:20px; overflow:hidden; min-height:260px; }
.gallery-card img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.gallery-card:hover img { transform:scale(1.04); }
.gallery-card span { position:absolute; inset:auto 14px 14px; padding:8px 12px; border-radius:10px; background:rgba(20,34,42,.76); color:#fff; backdrop-filter:blur(8px); }
.video-card iframe { width:100%; aspect-ratio:16/9; border:0; border-radius:20px; }
.branch-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.branch-card { padding:28px; border:1px solid var(--line); border-radius:22px; background:var(--surface); }
.branch-card h2 { margin-top:0; }
.branch-card p { color:var(--muted); }
.contact-panel .form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact-form .full { grid-column:1 / -1; }
.contact-form button:disabled, .newsletter button:disabled { opacity:.6; cursor:wait; }
.footer-socials { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.footer-socials a { display:inline-flex; min-width:34px; height:34px; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.18); border-radius:50%; }
.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; }
@media (max-width: 980px) {
  .trust-band-inner, .process-grid { grid-template-columns:repeat(2,1fr); }
  .team-grid, .branch-grid, .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .logo-grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width: 640px) {
  .trust-band-inner, .process-grid, .team-grid, .branch-grid, .gallery-grid, .logo-grid { grid-template-columns:1fr; }
  .trust-band-inner > div { border-right:0; border-bottom:1px solid var(--line); }
  .contact-panel .form-row { grid-template-columns:1fr; }
  .hero-slide-copy h1 { font-size:clamp(38px,13vw,60px); }
  .hero-slider { min-height:690px; }
}
