:root {
    --white: #fff;
    --ivory: #f7f5f0;
    --beige: #efeae1;
    --ink: #111827;
    --navy: #0f172a;
    --muted: #6b7280;
    --gold: #b9975b;
    --bronze: #8c6a35;
    --border: #e5e0d6;
    --shadow: 0 24px 70px rgba(17, 24, 39, 0.09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(22px, 5vw, 76px);
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    backdrop-filter: blur(14px);
    transition: height 0.25s, box-shadow 0.25s;
}

.site-header.is-scrolled {
    height: 70px;
    box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
}

.site-logo {
    display: grid;
    gap: 1px;
    letter-spacing: 0.18em;
}

.site-logo span {
    font-size: 1.35rem;
    font-weight: 800;
}

.site-logo small {
    color: var(--bronze);
    font-size: 0.54rem;
}

.site-logo img {
    max-width: 160px;
    max-height: 48px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 48px);
    color: #303744;
    font-size: 0.77rem;
    font-weight: 500;
    letter-spacing: 0.075em;
}

.site-nav a {
    position: relative;
}

.site-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.2s;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    width: 100%;
}

.nav-cta {
    border: 1px solid var(--gold);
    padding: 12px 19px;
    color: var(--bronze);
}

.nav-cta span {
    margin-left: 7px;
    font-size: 0.85rem;
}

.nav-toggle {
    display: none;
    border: 0;
    background: none;
}

.nav-toggle span {
    transition: transform 0.2s, opacity 0.2s;
}

body.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.premium-hero {
    position: relative;
    overflow: hidden;
    padding: 130px clamp(22px, 5vw, 76px) 78px;
    background:
        linear-gradient(90deg, transparent 0 74%, rgba(185, 151, 91, 0.08) 74% 74.08%, transparent 74.08%),
        var(--ivory);
}

.premium-hero::before {
    content: "";
    position: absolute;
    top: 84px;
    right: 0;
    width: 31%;
    height: calc(100% - 84px);
    background: var(--beige);
}

.premium-hero__frame {
    position: relative;
    width: min(100%, 1500px);
    margin: 0 auto;
    padding-left: 38px;
}

.premium-vertical-label {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: -30px;
    color: var(--bronze);
    font-size: 0.61rem;
    font-weight: 750;
    letter-spacing: 0.24em;
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
}

.premium-slider {
    position: relative;
}

.premium-slider__track {
    position: relative;
    height: clamp(570px, 67vw, 710px);
    max-height: 710px;
}

.premium-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(20px);
    transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s;
}

.premium-slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.premium-slide__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: calc(100% - 34px);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--beige);
}

.premium-slide__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.14), transparent 42%);
    pointer-events: none;
}

.premium-slide__image picture,
.premium-slide__image img {
    width: 100%;
    height: 100%;
}

.premium-slide__image img {
    object-fit: cover;
    transform: scale(1.025);
    transition: transform 6s ease;
}

.premium-slide.is-active .premium-slide__image img {
    transform: scale(1);
}

.premium-slide__panel {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    width: min(475px, 42%);
    min-height: 390px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    border-top: 3px solid var(--gold);
    padding: clamp(34px, 4vw, 58px);
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 26px 65px rgba(15, 23, 42, 0.2);
}

.premium-slide__panel::after {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 28px;
    width: 48px;
    height: 48px;
    border-right: 1px solid rgba(185, 151, 91, 0.45);
    border-bottom: 1px solid rgba(185, 151, 91, 0.45);
}

.premium-slide__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #d2b47e;
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.premium-slide__eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}

.premium-slide__title {
    max-width: 390px;
    margin: 23px 0 18px;
    font-size: clamp(2.15rem, 3.6vw, 4rem);
    font-weight: 300;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.premium-slide__text {
    max-width: 370px;
    margin: 0;
    color: #b8c0cd;
    font-size: 0.9rem;
    line-height: 1.75;
}

.premium-slide__actions {
    margin-top: 28px;
}

.premium-slide__link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(185, 151, 91, 0.68);
    padding: 0 0 9px;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color 0.2s, gap 0.2s;
}

.premium-slide__link span {
    color: var(--gold);
}

.premium-slide__link:hover {
    gap: 25px;
    color: #dcc391;
}

.premium-slider__footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    margin: 22px 0 0 max(18%, 160px);
}

.premium-slider__nav {
    display: flex;
    gap: 8px;
}

.premium-slider__nav button {
    width: 48px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.premium-slider__nav button:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy);
}

.premium-slider__progress {
    display: flex;
    align-items: center;
    gap: 9px;
}

.premium-slider__progress button {
    position: relative;
    width: min(70px, 8vw);
    height: 18px;
    border: 0;
    padding: 8px 0;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
}

.premium-slider__progress button::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 8px;
    height: 1px;
    background: #cfc8bd;
}

.premium-slider__progress button span {
    position: absolute;
    left: 0;
    top: 8px;
    width: 0;
    height: 1px;
    background: var(--bronze);
}

.premium-slider__progress button.is-active span {
    width: 100%;
    animation: sliderProgress 5.6s linear;
}

.premium-slider__counter {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.premium-slider__counter strong {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 500;
}

@keyframes sliderProgress {
    from { width: 0; }
    to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .premium-slide,
    .premium-slide__image img,
    .premium-slider__progress button.is-active span {
        transition: none;
        animation: none;
    }
}

.kicker {
    display: block;
    color: var(--bronze);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.site-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    padding: 0 24px;
    background: var(--white);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.2s, background 0.2s;
}

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

.site-button--gold {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy);
}

.site-button--gold:hover {
    background: #c3a36b;
}

.section-space {
    padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px);
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: clamp(50px, 9vw, 140px);
    background: var(--white);
}

.split-copy h2,
.section-heading h2,
.site-cta h2,
.title-hero h1 {
    margin: 18px 0 26px;
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    font-weight: 300;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.split-copy p {
    color: var(--muted);
    line-height: 1.85;
}

.text-link {
    display: inline-block;
    margin-top: 22px;
    color: var(--bronze);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.split-image {
    position: relative;
}

.split-image::before {
    content: "";
    position: absolute;
    left: -24px;
    bottom: -24px;
    width: 45%;
    height: 45%;
    border-left: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.split-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.dark-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--ivory);
    color: var(--ink);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 55px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.dark-section .text-link {
    color: var(--bronze);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 340px;
    border: 1px solid var(--border);
    padding: 32px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 0 0 rgba(17, 24, 39, 0);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--bronze);
    opacity: 0.9;
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
}

.service-card--home .service-card__icon {
    display: flex;
    width: 54px;
    height: 54px;
    margin: 2px auto 58px;
    color: var(--bronze);
    opacity: 0.82;
}

.service-card--home h3 {
    margin-top: 0;
}

.service-card h3 {
    margin-top: 88px;
    font-size: 1.45rem;
    font-weight: 430;
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.87rem;
}

.service-card i {
    position: absolute;
    right: 28px;
    bottom: 25px;
    color: var(--bronze);
    font-style: normal;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.projects-section {
    background: var(--white);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.project-card {
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--ink);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.project-card img {
    width: 100%;
    aspect-ratio: 1.38 / 1;
    object-fit: cover;
    transition: transform 0.65s;
}

.project-card div {
    min-height: 128px;
    padding: 26px 28px 30px;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.project-card span {
    color: var(--bronze);
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-card h3 {
    margin: 11px 0 0;
    font-size: clamp(1.4rem, 2.5vw, 2.15rem);
    font-weight: 380;
}

.project-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.project-card:hover img {
    transform: scale(1.035);
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--beige);
    color: var(--ink);
}

.stats-band div {
    display: grid;
    gap: 12px;
    padding: 55px clamp(24px, 4vw, 60px);
    border-right: 1px solid #d9d1c3;
}

.stats-band div:last-child {
    border-right: 0;
}

.stats-band strong {
    color: var(--bronze);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 280;
}

.stats-band span {
    color: var(--muted);
    font-size: 0.78rem;
}

.journal {
    background: var(--ivory);
}

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

.blog-card {
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}

.blog-card img {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    margin-bottom: 22px;
}

.blog-card > span {
    color: var(--bronze);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card h3,
.blog-card h2 {
    margin: 12px 0;
    font-size: 1.35rem;
    font-weight: 450;
}

.blog-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.88rem;
}

.site-cta {
    position: relative;
    border-top: 1px solid var(--border);
    padding: clamp(90px, 12vw, 170px) 24px;
    overflow: hidden;
    background: var(--beige);
    color: var(--ink);
    text-align: center;
}

.site-cta::before,
.site-cta::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(185, 151, 91, 0.28);
}

.site-cta::before {
    left: 16%;
}

.site-cta::after {
    right: 16%;
}

.site-cta h2 {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 22px auto 20px;
}

.site-cta p {
    position: relative;
    z-index: 1;
    max-width: 670px;
    margin: 0 auto 35px;
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    padding: 75px clamp(24px, 7vw, 110px) 28px;
    background: var(--navy);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 70px;
}

.footer-main > div {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-brand span {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.footer-brand p,
.footer-main p {
    max-width: 380px;
    color: #aeb5c2;
    line-height: 1.7;
    font-size: 0.85rem;
}

.footer-main small {
    margin-bottom: 10px;
    color: #c7a76d;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-main a {
    color: #e2e6ec;
    font-size: 0.84rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #929baa;
    font-size: 0.68rem;
}

.title-hero {
    position: relative;
    padding: 195px clamp(24px, 7vw, 110px) 100px;
    border-bottom: 1px solid var(--border);
    background: var(--ivory);
    color: var(--ink);
}

.title-hero::after {
    content: "";
    position: absolute;
    right: 7vw;
    bottom: 0;
    width: 22%;
    height: 1px;
    background: var(--gold);
}

.title-hero h1 {
    max-width: 1050px;
}

.title-hero p {
    max-width: 650px;
    color: var(--muted);
    line-height: 1.75;
}

.inner-hero,
.project-hero {
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
    padding: 145px clamp(24px, 7vw, 110px) 70px;
    border-bottom: 1px solid var(--border);
    background: var(--ivory);
    color: var(--ink);
}

.inner-hero::after,
.project-hero::after {
    display: none;
}

.inner-hero img,
.project-hero img {
    grid-column: 2;
    width: 100%;
    height: min(560px, 62vh);
    border: 1px solid var(--border);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.inner-hero > div,
.project-hero > div {
    grid-column: 1;
    grid-row: 1;
    max-width: 820px;
}

.inner-hero h1,
.project-hero h1 {
    margin: 20px 0;
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    font-weight: 280;
    line-height: 0.97;
    letter-spacing: -0.055em;
}

.inner-hero p {
    max-width: 680px;
    color: var(--muted);
    line-height: 1.75;
}

.content-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(35px, 9vw, 130px);
    max-width: 1400px;
    margin: auto;
    background: var(--white);
}

.content-layout aside {
    color: var(--bronze);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rich-content {
    max-width: 850px;
    color: #4b5563;
    font-size: 1.02rem;
    line-height: 1.9;
}

.rich-content .lead {
    color: var(--ink);
    font-size: 1.35rem;
}

.rich-content h2 {
    margin: 1.8em 0 0.6em;
    color: var(--ink);
    font-size: 2rem;
    font-weight: 400;
}

.rich-content a {
    color: var(--bronze);
    text-decoration: underline;
}

.service-list {
    padding-top: 65px;
    background: var(--white);
    color: var(--ink);
}

.service-row {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    align-items: center;
    gap: 25px;
    border: 1px solid var(--border);
    border-bottom: 0;
    padding: 38px 32px;
    background: var(--white);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.service-row:last-child {
    border-bottom: 1px solid var(--border);
}

.service-row > span,
.service-row small {
    color: var(--bronze);
    font-size: 0.67rem;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.service-row h2 {
    margin: 8px 0;
    font-size: clamp(1.7rem, 4vw, 3.15rem);
    font-weight: 350;
}

.service-row p {
    max-width: 700px;
    color: var(--muted);
}

.service-row i {
    color: var(--bronze);
    font-style: normal;
}

.service-row:hover {
    z-index: 1;
    border-color: var(--gold);
    background: var(--ivory);
    transform: translateX(6px);
}

.filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 35px clamp(24px, 7vw, 110px);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.filter-nav a {
    padding-bottom: 8px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.filter-nav a.is-active {
    border-bottom: 1px solid var(--gold);
    color: var(--ink);
}

.project-grid--archive {
    padding-top: 70px;
    background: var(--ivory);
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
    color: var(--ink);
}

.project-meta div {
    display: grid;
    gap: 12px;
    padding: 30px clamp(20px, 4vw, 50px);
    border-right: 1px solid var(--border);
}

.project-meta div:last-child {
    border-right: 0;
}

.project-meta span {
    color: var(--bronze);
    font-size: 0.65rem;
    text-transform: uppercase;
}

.project-meta strong {
    font-weight: 450;
}

.technical-list {
    margin-top: 45px;
    border-top: 1px solid var(--border);
}

.technical-list div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.technical-list dt {
    color: var(--muted);
}

.technical-list dd {
    margin: 0;
    color: var(--ink);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-top: 0;
    background: var(--white);
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1.4 / 1;
    border: 1px solid var(--border);
    object-fit: cover;
}

.project-pagination {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    background: var(--ivory);
    color: var(--ink);
}

.project-pagination div {
    min-height: 180px;
    display: grid;
    align-content: center;
    padding: 35px clamp(24px, 7vw, 100px);
}

.project-pagination div:last-child {
    border-left: 1px solid var(--border);
    text-align: right;
}

.project-pagination small {
    color: var(--bronze);
    text-transform: uppercase;
}

.project-pagination a {
    margin-top: 12px;
    font-size: 1.25rem;
}

.blog-grid--archive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--white);
}

.article-page {
    padding: 185px clamp(24px, 7vw, 110px) 120px;
    background: var(--white);
}

.article-page header {
    max-width: 1000px;
    margin: 0 auto 70px;
    text-align: center;
}

.article-page h1 {
    margin: 20px 0;
    font-size: clamp(2.8rem, 7vw, 6.4rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.05em;
}

.article-page header p {
    max-width: 700px;
    margin: auto;
    color: var(--muted);
    line-height: 1.7;
}

.article-cover {
    width: min(1300px, 100%);
    max-height: 720px;
    border: 1px solid var(--border);
    object-fit: cover;
    margin: 0 auto 80px;
}

.article-page > .rich-content {
    margin: auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(50px, 8vw, 120px);
    background: var(--ivory);
}

.contact-info {
    align-self: start;
    border-top: 1px solid var(--gold);
    padding-top: 28px;
}

.contact-info h2 {
    margin: 20px 0 35px;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 350;
}

.contact-info a {
    display: block;
    margin: 12px 0;
    color: var(--bronze);
}

.contact-layout > div:last-child {
    border: 1px solid var(--border);
    padding: clamp(24px, 4vw, 48px);
    background: var(--white);
    box-shadow: var(--shadow);
}

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

.contact-form > div {
    display: grid;
    gap: 8px;
}

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

.contact-form label {
    color: #374151;
    font-size: 0.72rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    padding: 13px 14px;
    background: var(--white);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    line-height: 1.5;
}

.consent input {
    width: auto;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
}

.site-alert {
    margin-bottom: 25px;
    border-left: 2px solid #5e9c78;
    padding: 13px 16px;
    background: var(--ivory);
}

.site-alert--error {
    border-color: #b75c5c;
}

.map-frame {
    border-top: 1px solid var(--border);
}

.map-frame iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s, transform 0.7s;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    .inner-hero,
    .project-hero {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .premium-slide__image {
        width: 79%;
    }

    .premium-slide__panel {
        width: min(450px, 48%);
    }

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

@media (max-width: 980px) {
    .site-nav {
        position: fixed;
        inset: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 28px;
        padding: 120px 35px;
        background: var(--white);
        color: var(--ink);
        font-size: 1.45rem;
        transform: translateX(100%);
        box-shadow: -24px 0 70px rgba(17, 24, 39, 0.08);
        transition: transform 0.25s;
    }

    .site-nav.is-open {
        transform: none;
    }

    .nav-toggle {
        position: relative;
        z-index: 2;
        display: grid;
        gap: 7px;
        cursor: pointer;
    }

    .nav-toggle span {
        width: 28px;
        height: 1px;
        background: var(--ink);
    }

    .premium-hero {
        padding: 118px 28px 65px;
    }

    .premium-hero::before {
        top: 84px;
        width: 42%;
    }

    .premium-hero__frame {
        padding-left: 0;
    }

    .premium-vertical-label {
        display: none;
    }

    .premium-slider__track {
        height: 690px;
    }

    .premium-slide__image {
        width: 100%;
        height: 430px;
    }

    .premium-slide__panel {
        right: 28px;
        bottom: 0;
        left: auto;
        width: min(620px, calc(100% - 56px));
        min-height: 330px;
    }

    .premium-slider__footer {
        margin-left: 0;
    }

    .split-section,
    .contact-layout,
    .inner-hero,
    .project-hero {
        grid-template-columns: 1fr;
    }

    .inner-hero > div,
    .project-hero > div,
    .inner-hero img,
    .project-hero img {
        grid-column: 1;
    }

    .inner-hero > div,
    .project-hero > div {
        grid-row: 1;
    }

    .inner-hero img,
    .project-hero img {
        grid-row: 2;
        height: 480px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .site-header {
        height: 74px;
        padding: 0 22px;
    }

    .premium-hero {
        padding: 104px 18px 55px;
    }

    .premium-hero::before {
        top: 74px;
        width: 55%;
    }

    .premium-slider__track {
        height: 650px;
    }

    .premium-slide__image {
        height: 350px;
    }

    .premium-slide__panel {
        right: 15px;
        width: calc(100% - 30px);
        min-height: 345px;
        padding: 34px;
    }

    .premium-slide__title {
        margin: 18px 0 15px;
        font-size: clamp(1.95rem, 7vw, 2.7rem);
    }

    .premium-slide__text {
        font-size: 0.85rem;
    }

    .premium-slider__footer {
        grid-template-columns: auto 1fr auto;
        gap: 14px;
        margin-top: 16px;
    }

    .premium-slider__nav button {
        width: 42px;
        height: 40px;
    }

    .premium-slider__progress button {
        width: min(46px, 7vw);
    }

    .section-space {
        padding: 75px 22px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-grid,
    .stats-band,
    .project-meta,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-band div,
    .project-meta div {
        border-right: 0;
        border-bottom: 1px solid #d9d1c3;
    }

    .project-card div {
        padding: 24px;
    }

    .title-hero {
        padding: 145px 22px 70px;
    }

    .inner-hero,
    .project-hero {
        min-height: auto;
        padding: 125px 22px 65px;
    }

    .inner-hero img,
    .project-hero img {
        height: 390px;
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .content-layout aside {
        border-bottom: 1px solid var(--border);
        padding-bottom: 14px;
    }

    .service-row {
        grid-template-columns: 45px 1fr;
        padding: 30px 20px;
    }

    .service-row i {
        display: none;
    }

    .project-pagination {
        grid-template-columns: 1fr;
    }

    .project-pagination div:last-child {
        border-top: 1px solid var(--border);
        border-left: 0;
        text-align: left;
    }

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

    .contact-form .full,
    .consent.full {
        grid-column: auto;
    }
}

@media (max-width: 520px) {
    .site-logo span {
        font-size: 1.12rem;
    }

    .premium-slider__track {
        height: 610px;
    }

    .premium-slide__image {
        height: 275px;
    }

    .premium-slide__panel {
        right: 0;
        width: 100%;
        min-height: 365px;
        padding: 30px 24px;
    }

    .premium-slide__panel::after {
        right: 20px;
        bottom: 20px;
        width: 34px;
        height: 34px;
    }

    .premium-slide__title {
        font-size: clamp(1.85rem, 9vw, 2.35rem);
    }

    .premium-slider__footer {
        grid-template-columns: auto 1fr;
    }

    .premium-slider__progress {
        justify-content: flex-end;
    }

    .premium-slider__counter {
        display: none;
    }

    .inner-hero img,
    .project-hero img {
        height: 300px;
    }

    .service-grid,
    .blog-grid,
    .blog-grid--archive {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 270px;
    }

    .service-card h3 {
        margin-top: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        gap: 10px;
        flex-direction: column;
    }

    .site-cta::before,
    .site-cta::after {
        display: none;
    }

    .article-page {
        padding: 135px 20px 80px;
    }
}

/* === LUX HEADER TR/EN START === */
.lux-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 224, 214, 0.86);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.lux-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(185, 151, 91, 0.22);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}

.lux-header__inner {
    width: min(1440px, calc(100% - 56px));
    height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.lux-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 250px;
    color: #111827;
    text-decoration: none;
}

.lux-brand__logo {
    display: block;
    max-width: 156px;
    max-height: 48px;
    object-fit: contain;
}

.lux-brand__mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: #111827;
    color: #B9975B;
    border: 1px solid rgba(185, 151, 91, 0.42);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
}

.lux-brand__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}

.lux-brand__text strong {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #111827;
}

.lux-brand__text small {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6B7280;
}

.lux-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.lux-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 86px;
    color: #111827;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: color .22s ease;
}

.lux-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    height: 1px;
    background: #B9975B;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .24s ease;
}

.lux-nav__link:hover,
.lux-nav__link.is-active {
    color: #8C6A35;
}

.lux-nav__link:hover::after,
.lux-nav__link.is-active::after {
    transform: scaleX(1);
}

.lux-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 250px;
}

.lux-lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 11px;
    border: 1px solid #E5E0D6;
    background: #FFFFFF;
}

.lux-lang a {
    color: #6B7280;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .09em;
    transition: color .2s ease;
}

.lux-lang a.is-active,
.lux-lang a:hover {
    color: #B9975B;
}

.lux-lang span {
    width: 1px;
    height: 12px;
    background: #E5E0D6;
}

.lux-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    background: #111827;
    border: 1px solid #111827;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.lux-header__cta:hover {
    background: #B9975B;
    border-color: #B9975B;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.lux-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #E5E0D6;
    background: #FFFFFF;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
}

.lux-menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: #111827;
    transition: transform .22s ease, opacity .22s ease;
}

.lux-header.is-open .lux-menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.lux-header.is-open .lux-menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.lux-mobile-nav {
    display: none;
}

@media (max-width: 1180px) {
    .lux-header__inner {
        width: min(100% - 36px, 1180px);
        gap: 18px;
    }

    .lux-brand {
        min-width: auto;
    }

    .lux-nav {
        gap: 18px;
    }

    .lux-nav__link {
        font-size: 12px;
        letter-spacing: .06em;
    }

    .lux-header__actions {
        min-width: auto;
    }
}

@media (max-width: 980px) {
    .lux-header__inner {
        height: 74px;
    }

    .lux-nav,
    .lux-header__cta {
        display: none;
    }

    .lux-menu-toggle {
        display: inline-flex;
    }

    .lux-brand__text small {
        display: none;
    }

    .lux-mobile-nav {
        display: block;
        position: fixed;
        left: 18px;
        right: 18px;
        top: 84px;
        padding: 20px;
        background: #FFFFFF;
        border: 1px solid #E5E0D6;
        box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s ease, transform .22s ease;
    }

    .lux-header.is-open .lux-mobile-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .lux-mobile-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid #EFEAE1;
        color: #111827;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .lux-mobile-nav a:hover {
        color: #B9975B;
    }

    .lux-mobile-nav__bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding-top: 18px;
    }

    .lux-lang--mobile a {
        border-bottom: 0;
        padding: 0;
        font-size: 12px;
    }

    .lux-mobile-nav__cta {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 16px !important;
        border: 1px solid #111827 !important;
        background: #111827;
        color: #FFFFFF !important;
        font-size: 12px !important;
        letter-spacing: .08em !important;
    }
}

@media (max-width: 560px) {
    .lux-header__inner {
        width: calc(100% - 24px);
        height: 68px;
    }

    .lux-brand__mark {
        width: 42px;
        height: 42px;
    }

    .lux-brand__text strong {
        font-size: 12px;
        letter-spacing: .06em;
    }

    .lux-lang {
        height: 34px;
        padding: 0 8px;
        gap: 6px;
    }

    .lux-lang a {
        font-size: 11px;
    }

    .lux-mobile-nav {
        left: 12px;
        right: 12px;
        top: 78px;
    }
}
/* === LUX HEADER TR/EN END === */

/* === FORCE LUX HEADER START === */
.lux-header {
    position: sticky !important;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,.95) !important;
    border-bottom: 1px solid rgba(229,224,214,.9);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.lux-header.is-scrolled {
    background: rgba(255,255,255,.99) !important;
    border-color: rgba(185,151,91,.28);
    box-shadow: 0 18px 55px rgba(15,23,42,.08);
}

.lux-header__inner {
    width: min(1440px, calc(100% - 56px));
    height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.lux-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 250px;
    color: #111827 !important;
    text-decoration: none !important;
}

.lux-brand__logo {
    display: block;
    max-width: 158px;
    max-height: 50px;
    object-fit: contain;
}

.lux-brand__mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: #111827;
    color: #B9975B;
    border: 1px solid rgba(185,151,91,.42);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
}

.lux-brand__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1;
}

.lux-brand__text strong {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #111827;
}

.lux-brand__text small {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6B7280;
}

.lux-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.lux-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 88px;
    color: #111827 !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: color .22s ease;
}

.lux-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    height: 1px;
    background: #B9975B;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .24s ease;
}

.lux-nav__link:hover,
.lux-nav__link.is-active {
    color: #8C6A35 !important;
}

.lux-nav__link:hover::after,
.lux-nav__link.is-active::after {
    transform: scaleX(1);
}

.lux-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 250px;
}

.lux-lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 11px;
    border: 1px solid #E5E0D6;
    background: #FFFFFF;
}

.lux-lang a {
    color: #6B7280 !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .09em;
}

.lux-lang a.is-active,
.lux-lang a:hover {
    color: #B9975B !important;
}

.lux-lang span {
    width: 1px;
    height: 12px;
    background: #E5E0D6;
}

.lux-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    background: #111827;
    border: 1px solid #111827;
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.lux-header__cta:hover {
    background: #B9975B;
    border-color: #B9975B;
    transform: translateY(-1px);
}

.lux-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #E5E0D6;
    background: #FFFFFF;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
}

.lux-menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: #111827;
    transition: transform .22s ease;
}

.lux-header.is-open .lux-menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.lux-header.is-open .lux-menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.lux-mobile-nav {
    display: none;
}

@media (max-width: 1180px) {
    .lux-header__inner {
        width: min(100% - 36px, 1180px);
        gap: 18px;
    }

    .lux-brand {
        min-width: auto;
    }

    .lux-nav {
        gap: 18px;
    }

    .lux-nav__link {
        font-size: 12px;
        letter-spacing: .06em;
    }

    .lux-header__actions {
        min-width: auto;
    }
}

@media (max-width: 980px) {
    .lux-header__inner {
        height: 74px;
    }

    .lux-nav,
    .lux-header__cta {
        display: none;
    }

    .lux-menu-toggle {
        display: inline-flex;
    }

    .lux-brand__text small {
        display: none;
    }

    .lux-mobile-nav {
        display: block;
        position: fixed;
        left: 18px;
        right: 18px;
        top: 84px;
        padding: 20px;
        background: #FFFFFF;
        border: 1px solid #E5E0D6;
        box-shadow: 0 24px 70px rgba(15,23,42,.14);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s ease, transform .22s ease;
    }

    .lux-header.is-open .lux-mobile-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .lux-mobile-nav a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid #EFEAE1;
        color: #111827 !important;
        text-decoration: none !important;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .lux-mobile-nav__bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding-top: 18px;
    }

    .lux-lang--mobile a {
        border-bottom: 0;
        padding: 0;
        font-size: 12px;
    }

    .lux-mobile-nav__cta {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 16px !important;
        border: 1px solid #111827 !important;
        background: #111827;
        color: #FFFFFF !important;
        font-size: 12px !important;
        letter-spacing: .08em !important;
    }
}

@media (max-width: 560px) {
    .lux-header__inner {
        width: calc(100% - 24px);
        height: 68px;
    }

    .lux-brand__mark {
        width: 42px;
        height: 42px;
    }

    .lux-brand__text strong {
        font-size: 12px;
        letter-spacing: .06em;
    }

    .lux-lang {
        height: 34px;
        padding: 0 8px;
        gap: 6px;
    }

    .lux-lang a {
        font-size: 11px;
    }

    .lux-mobile-nav {
        left: 12px;
        right: 12px;
        top: 78px;
    }
}
/* === FORCE LUX HEADER END === */

/* === Premium All Projects Page START === */
.premium-projects-page {
    background: #FFFFFF;
    color: #111827;
}

.projects-hero {
    background:
        linear-gradient(135deg, rgba(247, 245, 240, .96), rgba(255, 255, 255, .98)),
        radial-gradient(circle at right top, rgba(185, 151, 91, .16), transparent 34%);
    border-bottom: 1px solid #E5E0D6;
}

.projects-hero__inner {
    width: min(1440px, calc(100% - 112px));
    min-height: 430px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
    gap: 64px;
    padding: 110px 0 76px;
}

.projects-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: #8C6A35;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .34em;
}

.projects-eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: #B9975B;
}

.projects-hero h1 {
    max-width: 980px;
    margin: 0;
    color: #111827;
    font-size: clamp(58px, 7vw, 112px);
    line-height: .92;
    font-weight: 400;
    letter-spacing: -.07em;
}

.projects-hero p {
    max-width: 690px;
    margin: 34px 0 0;
    color: #6B7280;
    font-size: 18px;
    line-height: 1.8;
}

.projects-hero__aside {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    border: 1px solid #E5E0D6;
    background: #E5E0D6;
}

.projects-hero__aside > div {
    min-height: 132px;
    padding: 26px;
    background: rgba(255, 255, 255, .84);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.projects-hero__aside strong {
    color: #111827;
    font-size: 46px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -.05em;
}

.projects-hero__aside span {
    margin-top: 12px;
    color: #8C6A35;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.projects-directory {
    background: #FFFFFF;
}

.projects-directory__inner {
    width: min(1440px, calc(100% - 112px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 52px;
    padding: 70px 0 110px;
}

.projects-filter {
    position: sticky;
    top: 112px;
    align-self: start;
}

.projects-filter__toggle {
    width: 100%;
    min-height: 58px;
    display: none;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #E5E0D6;
    background: #F7F5F0;
    color: #111827;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.projects-filter__panel {
    border: 1px solid #E5E0D6;
    background: #FFFFFF;
}

.projects-filter__head {
    padding: 24px 26px;
    border-bottom: 1px solid #E5E0D6;
    background: #F7F5F0;
}

.projects-filter__head span {
    color: #8C6A35;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.projects-filter__link {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 26px;
    border-bottom: 1px solid #EFEAE1;
    color: #111827;
    text-decoration: none;
    transition: background .22s ease, color .22s ease, padding .22s ease;
}

.projects-filter__link:last-child {
    border-bottom: 0;
}

.projects-filter__link span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
}

.projects-filter__link em {
    color: #B9975B;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.projects-filter__link:hover,
.projects-filter__link.is-active {
    background: #111827;
    color: #FFFFFF;
    padding-left: 32px;
}

.projects-list-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E0D6;
}

.projects-list-head span {
    color: #8C6A35;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.projects-list-head strong {
    color: #111827;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -.04em;
}

.projects-premium-list {
    border-top: 1px solid #E5E0D6;
}

.project-directory-card {
    position: relative;
    min-height: 220px;
    display: grid;
    grid-template-columns: 76px 250px minmax(0, 1fr) 58px;
    gap: 28px;
    align-items: center;
    padding: 34px 0;
    border-bottom: 1px solid #E5E0D6;
    color: #111827;
    text-decoration: none;
    transition: background .22s ease, padding .22s ease;
}

.project-directory-card:hover {
    background: #F7F5F0;
    padding-left: 24px;
    padding-right: 24px;
}

.project-directory-card__no {
    color: #8C6A35;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
}

.project-directory-card__image {
    height: 150px;
    overflow: hidden;
    background: #EFEAE1;
    border: 1px solid #E5E0D6;
}

.project-directory-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.project-directory-card:hover .project-directory-card__image img {
    transform: scale(1.045);
}

.project-directory-card__category {
    display: inline-flex;
    margin-bottom: 16px;
    color: #8C6A35;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.project-directory-card h2 {
    max-width: 820px;
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 3.2vw, 56px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -.055em;
}

.project-directory-card p {
    max-width: 720px;
    margin: 18px 0 0;
    color: #6B7280;
    font-size: 15px;
    line-height: 1.7;
}

.project-directory-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.project-directory-card__meta span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 11px;
    border: 1px solid #E5E0D6;
    color: #6B7280;
    font-size: 12px;
    letter-spacing: .04em;
}

.project-directory-card__arrow {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid #E5E0D6;
    color: #8C6A35;
    font-size: 22px;
    transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.project-directory-card:hover .project-directory-card__arrow {
    background: #111827;
    color: #FFFFFF;
    border-color: #111827;
}

.projects-empty {
    padding: 42px;
    border: 1px solid #E5E0D6;
    background: #F7F5F0;
    color: #6B7280;
    font-size: 16px;
}

@media (max-width: 1180px) {
    .projects-hero__inner,
    .projects-directory__inner {
        width: min(100% - 48px, 1180px);
    }

    .projects-directory__inner {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 32px;
    }

    .project-directory-card {
        grid-template-columns: 56px 210px minmax(0, 1fr) 48px;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .projects-hero__inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 74px 0 52px;
    }

    .projects-hero__aside {
        grid-template-columns: 1fr 1fr;
    }

    .projects-directory__inner {
        grid-template-columns: 1fr;
        padding: 42px 0 82px;
    }

    .projects-filter {
        position: relative;
        top: auto;
    }

    .projects-filter__toggle {
        display: flex;
    }

    .projects-filter__panel {
        display: none;
        border-top: 0;
    }

    .projects-filter__panel.is-open {
        display: block;
    }

    .project-directory-card {
        grid-template-columns: 48px minmax(0, 1fr) 44px;
    }

    .project-directory-card__image {
        grid-column: 1 / -1;
        height: 240px;
    }

    .project-directory-card__body {
        grid-column: 2 / 3;
    }
}

@media (max-width: 560px) {
    .projects-hero__inner,
    .projects-directory__inner {
        width: calc(100% - 28px);
    }

    .projects-hero h1 {
        font-size: 52px;
    }

    .projects-hero p {
        font-size: 15px;
    }

    .projects-hero__aside {
        grid-template-columns: 1fr;
    }

    .projects-list-head {
        display: block;
    }

    .projects-list-head strong {
        display: block;
        margin-top: 12px;
    }

    .project-directory-card {
        min-height: auto;
        grid-template-columns: 1fr 42px;
        gap: 18px;
        padding: 28px 0;
    }

    .project-directory-card:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .project-directory-card__no {
        grid-column: 1 / -1;
    }

    .project-directory-card__image {
        grid-column: 1 / -1;
        height: 210px;
    }

    .project-directory-card__body {
        grid-column: 1 / 2;
    }

    .project-directory-card h2 {
        font-size: 32px;
    }

    .project-directory-card__arrow {
        grid-column: 2 / 3;
        align-self: end;
    }
}
/* === Premium All Projects Page END === */

/* === Frontend Layout Safety START === */
.frontend-body {
    margin: 0;
    background: #FFFFFF;
    color: #111827;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.frontend-body * {
    box-sizing: border-box;
}

.site-footer {
    background: #0F172A;
    color: #FFFFFF;
    border-top: 1px solid rgba(185, 151, 91, .28);
}

.site-footer__inner {
    width: min(1440px, calc(100% - 112px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
    gap: 72px;
    padding: 76px 0;
}

.site-footer__brand strong {
    display: block;
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer__brand p {
    max-width: 520px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.8;
}

.site-footer__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
}

.site-footer__cols span {
    display: block;
    margin-bottom: 18px;
    color: #B9975B;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.site-footer__cols a,
.site-footer__cols p {
    display: block;
    margin: 0 0 12px;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.7;
}

.site-footer__cols a:hover {
    color: #B9975B;
}

.site-footer__bottom {
    width: min(1440px, calc(100% - 112px));
    margin: 0 auto;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.52);
    font-size: 12px;
    letter-spacing: .06em;
}

@media (max-width: 900px) {
    .site-footer__inner {
        width: calc(100% - 42px);
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 54px 0;
    }

    .site-footer__bottom {
        width: calc(100% - 42px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 18px 0;
    }
}

@media (max-width: 560px) {
    .site-footer__cols {
        grid-template-columns: 1fr;
    }
}
/* === Frontend Layout Safety END === */

/* === Projects Hero Panel Image START === */
.projects-hero--with-image {
    position: relative;
    background-image: var(--projects-hero-bg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.projects-hero--with-image::after {
    display: none !important;
    content: none !important;
}

.projects-hero--with-image .projects-hero__inner {
    position: relative;
    z-index: 1;
}
/* === Projects Hero Panel Image END === */

/* === Flow Projects Grid START === */
.flow-projects-directory__inner {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 48px;
}

.flow-projects-list-head {
    margin-bottom: 34px;
}

.projects-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 28px;
}

.project-flow-card {
    display: flex;
    flex-direction: column;
}

.project-flow-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #D9D9D9;
    aspect-ratio: 4 / 3;
    border: 1px solid #E5E0D6;
}

.project-flow-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .55s ease;
    filter: grayscale(.08);
}

.project-flow-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15,23,42,.10) 0%, rgba(15,23,42,.28) 58%, rgba(15,23,42,.54) 100%);
    transition: background .3s ease;
}

.project-flow-card:hover .project-flow-card__image img {
    transform: scale(1.05);
}

.project-flow-card:hover .project-flow-card__overlay {
    background:
        linear-gradient(180deg, rgba(15,23,42,.06) 0%, rgba(15,23,42,.20) 52%, rgba(15,23,42,.42) 100%);
}

.project-flow-card__content {
    padding-top: 18px;
    border-top: 1px solid #DCCFB8;
}

.project-flow-card__category {
    display: inline-block;
    color: #7B7B7B;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.project-flow-card h2 {
    margin: 16px 0 0;
    font-size: clamp(24px, 2.1vw, 38px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -.04em;
}

.project-flow-card h2 a {
    color: #111827;
    text-decoration: none;
    transition: color .22s ease;
}

.project-flow-card h2 a:hover {
    color: #8C6A35;
}

.project-flow-card p {
    margin: 14px 0 0;
    color: #6B7280;
    font-size: 15px;
    line-height: 1.7;
}

.project-flow-card__footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #EAE3D8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.project-flow-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-flow-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid #E5E0D6;
    color: #8A8F98;
    font-size: 12px;
    letter-spacing: .04em;
}

.project-flow-card__plus {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: #0F172A;
    border: 1px solid #0F172A;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 32px;
    line-height: 1;
    font-weight: 400;
    transition: all .22s ease;
}

.project-flow-card__plus:hover {
    background: #B9975B;
    border-color: #B9975B;
    color: #FFFFFF;
}

@media (max-width: 1280px) {
    .projects-flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .flow-projects-directory__inner {
        grid-template-columns: 1fr;
    }

    .projects-flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 22px;
    }
}

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

    .project-flow-card h2 {
        font-size: 28px;
    }
}
/* === Flow Projects Grid END === */





/* === Lineo PXL Slider Final START === */
.nova-lineo-slider {
    --nova-dark: #0F172A;
    --nova-navy: #0B1628;
    --nova-gold: #B9975B;
    --nova-bg: #F7F5F0;
    position: relative;
    background: var(--nova-bg);
    overflow: hidden;
    cursor: none;
    border-bottom: 1px solid #E5E0D6;
}

.nova-lineo-slider * {
    box-sizing: border-box;
}

.nova-lineo-slider .pxl-carousel-inner {
    width: min(1440px, calc(100% - 112px));
    margin: 0 auto;
    position: relative;
    padding: clamp(48px, 5.2svh, 72px) 0;
}

.nova-lineo-slider .pxl-swiper-container {
    position: relative;
    overflow: hidden;
    height: clamp(540px, calc(100svh - 200px), 720px);
    min-height: 540px;
}

.nova-lineo-slider .pxl-swiper-wrapper {
    height: 100%;
    display: flex;
    transition: transform 900ms cubic-bezier(.19, 1, .22, 1);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.nova-lineo-slider .pxl-swiper-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    position: relative;
}

.nova-lineo-slider .pxl-item--inner {
    position: relative;
    height: 100%;
}

/* Eski tasarım: büyük görsel sağda, panel sol altta */
.nova-lineo-slider .pxl-item--image {
    position: absolute;
    right: 0;
    top: 0;
    width: 84%;
    height: 100%;
    overflow: hidden;
    background: var(--nova-dark);
    border: 1px solid rgba(11, 22, 40, .28);
}

.nova-lineo-slider .item--image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.025);
    transition: transform 1200ms cubic-bezier(.19, 1, .22, 1), opacity 500ms ease;
}

.nova-lineo-slider .img-dark {
    opacity: .58;
    mix-blend-mode: multiply;
}

.nova-lineo-slider .pxl-item--image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15,23,42,.42) 0%, rgba(15,23,42,.14) 42%, rgba(15,23,42,.44) 100%),
        linear-gradient(180deg, rgba(15,23,42,.06), rgba(15,23,42,.34));
}

.nova-lineo-slider .swiper-slide-active .item--image {
    transform: scale(1);
}

/* Panel bizim eski tasarımdaki gibi sol altta */
.nova-lineo-slider .pxl-item--content {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
    width: min(560px, 44vw);
    min-height: min(390px, 58%);
    background: rgba(15, 23, 42, .98);
    border-top: 3px solid var(--nova-gold);
    display: flex;
    align-items: center;
    padding: clamp(38px, 4.4vw, 58px);
    color: #FFFFFF;
    box-shadow: 0 32px 80px rgba(15, 23, 42, .15);
}

.nova-lineo-slider .content--inner {
    width: 100%;
}

.nova-lineo-slider .pxl-item--subtitle {
    position: relative;
    padding-left: 44px;
    margin-bottom: 26px;
}

.nova-lineo-slider .pxl-item--subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--nova-gold);
}

.nova-lineo-slider .pxl-item--subtitle a {
    color: var(--nova-gold);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.nova-lineo-slider .pxl-item--title {
    margin: 0;
}

.nova-lineo-slider .pxl-item--title a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: clamp(44px, 4.8vw, 78px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -.065em;
}

.nova-lineo-slider .pxl-item--description {
    max-width: 460px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.78;
}

.nova-lineo-slider .pxl-item--button {
    margin-top: 30px;
}

.nova-lineo-slider .item--button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.nova-lineo-slider .btn-icon {
    position: relative;
    width: 42px;
    height: 18px;
    display: inline-flex;
    align-items: center;
}

.nova-lineo-slider .btn-icon .line {
    width: 32px;
    height: 1px;
    background: var(--nova-gold);
}

.nova-lineo-slider .btn-icon .circle {
    position: absolute;
    right: 0;
    width: 12px;
    height: 12px;
    border: 1px solid var(--nova-gold);
    border-radius: 50%;
}

.nova-lineo-slider .btn-icon .dot {
    position: absolute;
    right: 4px;
    width: 4px;
    height: 4px;
    background: var(--nova-gold);
    border-radius: 50%;
}

/* Oklar ve dots sağ altta, panelden bağımsız */
.nova-lineo-slider .wp-arrow {
    position: absolute;
    right: 36px;
    bottom: calc(clamp(48px, 5.2svh, 72px) + 28px);
    z-index: 8;
    display: flex;
    gap: 12px;
}

.nova-lineo-slider .pxl-swiper-arrow {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(11, 22, 40, .62);
    background: rgba(255,255,255,.86);
    color: var(--nova-navy);
    backdrop-filter: blur(12px);
    position: relative;
    cursor: none;
}

.nova-lineo-slider .pxl-swiper-arrow::before {
    content: "←";
    font-size: 22px;
}

.nova-lineo-slider .pxl-swiper-arrow-next::before {
    content: "→";
}

.nova-lineo-slider .pxl-swiper-arrow:hover {
    border-color: var(--nova-navy);
    background: var(--nova-navy);
    color: #ffffff;
}

.nova-lineo-slider .pxl-swiper-arrow.swiper-button-disabled {
    opacity: .42;
}

.nova-lineo-slider .pxl-item--image::after {
    pointer-events: none !important;
}

.nova-lineo-slider .pxl-item--content,
.nova-lineo-slider .pxl-item--content a {
    pointer-events: auto !important;
}

.nova-lineo-slider .pxl-item--content a {
    position: relative;
    z-index: 30;
}

.nova-lineo-slider .item--button {
    position: relative;
    z-index: 30;
    pointer-events: auto !important;
}

.nova-lineo-slider .pxl-swiper-dots {
    position: absolute;
    right: 166px;
    bottom: calc(clamp(48px, 5.2svh, 72px) + 52px);
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nova-lineo-slider .pxl-swiper-pagination-bullet {
    width: 34px;
    height: 2px;
    border: 0;
    padding: 0;
    background: rgba(11, 22, 40, .42);
    cursor: none;
    transition: width .24s ease, background .24s ease;
}

.nova-lineo-slider .pxl-swiper-pagination-bullet-active {
    width: 52px;
    background: var(--nova-navy);
}

/* Sol dikey etiket eski tasarım gibi */
.nova-lineo-side-label {
    position: absolute;
    left: 32px;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    color: #8C6A35;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
    pointer-events: none;
}

/* Yuvarlak cursor, yazısız */
.nova-lineo-cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 62px;
    height: 62px;
    margin-left: -31px;
    margin-top: -31px;
    border: 1px solid rgba(185,151,91,.76);
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(8px);
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-120px, -120px, 0) scale(.92);
    transition: opacity .14s ease, transform .08s ease, background .14s ease;
}

.nova-lineo-cursor::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    background: var(--nova-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.nova-lineo-cursor::after {
    content: none !important;
    display: none !important;
}

.nova-lineo-slider.is-cursor .nova-lineo-cursor {
    opacity: 1;
}

.nova-lineo-slider.is-dragging .nova-lineo-cursor {
    background: rgba(15,23,42,.12);
    transform: translate3d(var(--cursor-x, -120px), var(--cursor-y, -120px), 0) scale(1.08);
}

@media (max-width: 1180px) {
    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 48px);
    }

    .nova-lineo-side-label {
        display: none;
    }

    .nova-lineo-slider .pxl-item--content {
        width: min(520px, 48vw);
    }

    .nova-lineo-slider .pxl-item--title a {
        font-size: clamp(40px, 5vw, 66px);
    }
}

@media (max-width: 900px) {
    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 32px);
        padding: 28px 0 44px;
    }

    .nova-lineo-slider .pxl-swiper-container {
        height: auto;
        min-height: 0;
    }

    .nova-lineo-slider .pxl-swiper-slide,
    .nova-lineo-slider .pxl-item--inner {
        height: auto;
    }

    .nova-lineo-slider .pxl-item--image {
        position: relative;
        width: 100%;
        height: clamp(320px, 52svh, 520px);
    }

    .nova-lineo-slider .pxl-item--content {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        min-height: 0;
        padding: 30px;
    }

    .nova-lineo-slider .wp-arrow,
    .nova-lineo-slider .pxl-swiper-dots {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 18px;
    }

    .nova-lineo-slider .wp-arrow {
        justify-content: flex-end;
    }

    .nova-lineo-slider .pxl-swiper-dots {
        justify-content: flex-end;
    }

    .nova-lineo-slider .pxl-swiper-arrow {
        border-color: #E5E0D6;
        background: #FFFFFF;
        color: var(--nova-dark);
    }

    .nova-lineo-slider .pxl-swiper-pagination-bullet {
        background: rgba(15,23,42,.22);
    }

    .nova-lineo-slider .pxl-swiper-pagination-bullet-active {
        background: var(--nova-gold);
    }
}

@media (max-width: 560px) {
    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 24px);
    }

    .nova-lineo-slider .pxl-item--image {
        height: 330px;
    }

    .nova-lineo-slider .pxl-item--title a {
        font-size: 36px;
    }

    .nova-lineo-slider .pxl-item--content {
        padding: 26px;
    }
}

@media (pointer: coarse) {
    .nova-lineo-slider,
    .nova-lineo-slider .pxl-swiper-arrow,
    .nova-lineo-slider .pxl-swiper-pagination-bullet {
        cursor: auto;
    }

    .nova-lineo-cursor {
        display: none;
    }
}
/* === Lineo PXL Slider Final END === */

/* === Nova Slider Fine Tune Override START === */
.nova-lineo-slider {
    overflow: visible;
}

.nova-lineo-slider .pxl-carousel-inner {
    width: min(1360px, calc(100% - 132px));
    padding: clamp(42px, 4.8svh, 64px) 0 96px;
}

.nova-lineo-slider .pxl-swiper-container {
    overflow: visible;
    height: clamp(500px, calc(100svh - 220px), 660px);
    min-height: 500px;
}

.nova-lineo-slider .pxl-item--image {
    width: 82%;
    border-radius: 0;
}

.nova-lineo-slider .pxl-item--content {
    width: min(480px, 38vw);
    min-height: 320px;
    padding: 34px 36px;
    bottom: -34px;
    left: 0;
}

.nova-lineo-slider .pxl-item--title a {
    font-size: clamp(38px, 4.2vw, 64px);
    line-height: 1.02;
}

.nova-lineo-slider .pxl-item--description {
    max-width: 390px;
    font-size: 15px;
    line-height: 1.72;
}

.nova-lineo-slider .pxl-item--subtitle {
    margin-bottom: 22px;
}

.nova-lineo-slider .pxl-item--button {
    margin-top: 24px;
}

.nova-lineo-slider .wp-arrow {
    right: 34px;
    bottom: 28px;
}

.nova-lineo-slider .pxl-swiper-dots {
    right: 162px;
    bottom: 52px;
}

.nova-lineo-side-label {
    left: 28px;
}

@media (max-width: 1180px) {
    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 56px);
        padding-bottom: 84px;
    }

    .nova-lineo-slider .pxl-item--content {
        width: min(430px, 42vw);
        min-height: 300px;
        padding: 30px 30px;
        bottom: -24px;
    }

    .nova-lineo-slider .pxl-item--title a {
        font-size: clamp(34px, 4.4vw, 54px);
    }
}

@media (max-width: 900px) {
    .nova-lineo-slider {
        overflow: hidden;
    }

    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 32px);
        padding: 24px 0 42px;
    }

    .nova-lineo-slider .pxl-swiper-container {
        overflow: hidden;
        height: auto;
        min-height: 0;
    }

    .nova-lineo-slider .pxl-item--content {
        width: 100%;
        min-height: 0;
        bottom: auto;
        left: auto;
        padding: 28px 24px;
    }

    .nova-lineo-slider .pxl-item--title a {
        font-size: 34px;
    }

    .nova-lineo-slider .wp-arrow,
    .nova-lineo-slider .pxl-swiper-dots {
        bottom: auto;
        right: auto;
    }
}

@media (max-width: 560px) {
    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 24px);
    }

    .nova-lineo-slider .pxl-item--content {
        padding: 24px 20px;
    }

    .nova-lineo-slider .pxl-item--title a {
        font-size: 30px;
    }
}
/* === Nova Slider Fine Tune Override END === */

/* === Nova Slider Spacing Fix Override START === */

/* genel alanı biraz daralt */
.nova-lineo-slider .pxl-carousel-inner {
    width: min(1280px, calc(100% - 180px));
    padding: clamp(40px, 4.6svh, 58px) 0 88px;
}

/* slider viewport taşmaları daha kontrollü olsun */
.nova-lineo-slider .pxl-swiper-container {
    overflow: hidden;
    height: clamp(500px, calc(100svh - 230px), 640px);
    min-height: 500px;
}

/* slide'lar arasında boşluk hissi ver */
.nova-lineo-slider .pxl-swiper-slide {
    padding: 0 16px;
    box-sizing: border-box;
}

.nova-lineo-slider .pxl-item--inner {
    height: 100%;
}

/* görsel alan biraz daralsın */
.nova-lineo-slider .pxl-item--image {
    width: 80%;
}

/* soldaki card küçülsün ve biraz daha içeriden başlasın */
.nova-lineo-slider .pxl-item--content {
    width: min(440px, 35vw);
    min-height: 300px;
    padding: 32px 34px;
    left: 22px;
    bottom: -22px;
}

/* başlık biraz toparlansın */
.nova-lineo-slider .pxl-item--title a {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.03;
}

/* açıklama biraz daha kompakt */
.nova-lineo-slider .pxl-item--description {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.66;
}

/* sol dikey yazı artık card'ın üstüne binmesin */
.nova-lineo-side-label {
    left: -8px;
    top: 54%;
    font-size: 11px;
    letter-spacing: .24em;
    z-index: 3;
}

/* card içindeki subtitle ile çakışmayı azalt */
.nova-lineo-slider .pxl-item--subtitle {
    padding-left: 38px;
    margin-bottom: 20px;
}

.nova-lineo-slider .pxl-item--subtitle::before {
    width: 24px;
}

/* detay butonu boşluğu */
.nova-lineo-slider .pxl-item--button {
    margin-top: 22px;
}

/* oklar ve dots biraz daha yukarı/dengeye gelsin */
.nova-lineo-slider .wp-arrow {
    right: 34px;
    bottom: 18px;
}

.nova-lineo-slider .pxl-swiper-dots {
    right: 154px;
    bottom: 42px;
}

/* masaüstünde sağ/sol taşma görüntüsü toparlansın */
@media (max-width: 1360px) {
    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 120px);
    }
}

/* tablet */
@media (max-width: 1180px) {
    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 56px);
        padding-bottom: 78px;
    }

    .nova-lineo-slider .pxl-swiper-slide {
        padding: 0 10px;
    }

    .nova-lineo-slider .pxl-item--content {
        width: min(400px, 42vw);
        min-height: 280px;
        padding: 28px 28px;
        left: 12px;
        bottom: -16px;
    }

    .nova-lineo-slider .pxl-item--title a {
        font-size: clamp(30px, 4.2vw, 50px);
    }

    .nova-lineo-side-label {
        left: -2px;
        font-size: 10px;
    }
}

/* mobilde taşma olmasın */
@media (max-width: 900px) {
    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 28px);
        padding: 22px 0 40px;
    }

    .nova-lineo-slider .pxl-swiper-container {
        overflow: hidden;
        height: auto;
        min-height: 0;
    }

    .nova-lineo-slider .pxl-swiper-slide {
        padding: 0;
    }

    .nova-lineo-slider .pxl-item--image {
        width: 100%;
    }

    .nova-lineo-slider .pxl-item--content {
        width: 100%;
        min-height: 0;
        left: 0;
        bottom: 0;
        padding: 26px 22px;
    }

    .nova-lineo-side-label {
        display: none;
    }
}

@media (max-width: 560px) {
    .nova-lineo-slider .pxl-item--title a {
        font-size: 28px;
    }

    .nova-lineo-slider .pxl-item--description {
        font-size: 14px;
        line-height: 1.58;
    }
}

/* === Nova Slider Spacing Fix Override END === */

/* === Nova Slider Card Down Override START === */
.nova-lineo-slider .pxl-item--content {
    bottom: -42px !important;
}

@media (max-width: 1180px) {
    .nova-lineo-slider .pxl-item--content {
        bottom: -26px !important;
    }
}

@media (max-width: 900px) {
    .nova-lineo-slider .pxl-item--content {
        bottom: 0 !important;
    }
}
/* === Nova Slider Card Down Override END === */

/* === Nova Slider Overflow Card Fix START === */

/* genel alan */
.nova-lineo-slider {
    overflow: visible;
}

.nova-lineo-slider .pxl-carousel-inner {
    width: min(1280px, calc(100% - 180px));
    padding: clamp(40px, 4.6svh, 58px) 0 140px;
    overflow: visible;
}

/* asıl slider alanı artık kartı kesmesin */
.nova-lineo-slider .pxl-swiper-container {
    height: clamp(560px, calc(100svh - 210px), 700px);
    min-height: 560px;
    overflow: visible;
}

.nova-lineo-slider .pxl-swiper-wrapper,
.nova-lineo-slider .pxl-swiper-slide,
.nova-lineo-slider .pxl-item--inner {
    height: 100%;
    overflow: visible;
}

/* görsel alanını biraz yukarıda tut */
.nova-lineo-slider .pxl-item--image {
    width: 80%;
    height: calc(100% - 72px);
    top: 0;
    bottom: auto;
}

/* kart daha gerçek şekilde aşağı taşsın */
.nova-lineo-slider .pxl-item--content {
    width: min(440px, 35vw);
    min-height: 320px;
    padding: 32px 34px;
    left: 18px;
    bottom: 0;
    transform: translateY(54px);
    z-index: 9;
}

/* yazı oranları */
.nova-lineo-slider .pxl-item--title a {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.03;
}

.nova-lineo-slider .pxl-item--description {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.66;
}

/* sol dikey yazı düzgün dursun */
.nova-lineo-side-label {
    left: -8px;
    top: 54%;
    z-index: 2;
}

/* oklar ve çizgiler de aşağıdaki yeni düzene göre hizalansın */
.nova-lineo-slider .wp-arrow {
    right: 34px;
    bottom: 34px;
    z-index: 10;
}

.nova-lineo-slider .pxl-swiper-dots {
    right: 154px;
    bottom: 58px;
    z-index: 10;
}

/* slide’lar hafif ayrık kalsın */
.nova-lineo-slider .pxl-swiper-slide {
    padding: 0 12px;
    box-sizing: border-box;
}

/* tablet */
@media (max-width: 1180px) {
    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 56px);
        padding-bottom: 110px;
    }

    .nova-lineo-slider .pxl-swiper-container {
        height: clamp(520px, calc(100svh - 220px), 620px);
        min-height: 520px;
    }

    .nova-lineo-slider .pxl-item--image {
        height: calc(100% - 54px);
    }

    .nova-lineo-slider .pxl-item--content {
        width: min(400px, 42vw);
        min-height: 290px;
        padding: 28px 28px;
        left: 10px;
        transform: translateY(34px);
    }
}

/* mobilde taşma değil normal akış */
@media (max-width: 900px) {
    .nova-lineo-slider {
        overflow: hidden;
    }

    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 28px);
        padding: 22px 0 40px;
        overflow: hidden;
    }

    .nova-lineo-slider .pxl-swiper-container {
        height: auto;
        min-height: 0;
        overflow: hidden;
    }

    .nova-lineo-slider .pxl-swiper-wrapper,
    .nova-lineo-slider .pxl-swiper-slide,
    .nova-lineo-slider .pxl-item--inner {
        overflow: hidden;
        height: auto;
    }

    .nova-lineo-slider .pxl-swiper-slide {
        padding: 0;
    }

    .nova-lineo-slider .pxl-item--image {
        width: 100%;
        height: 330px;
    }

    .nova-lineo-slider .pxl-item--content {
        width: 100%;
        min-height: 0;
        left: 0;
        bottom: auto;
        transform: none;
        padding: 26px 22px;
    }

    .nova-lineo-side-label {
        display: none;
    }

    .nova-lineo-slider .wp-arrow,
    .nova-lineo-slider .pxl-swiper-dots {
        bottom: auto;
        right: auto;
    }
}

/* === Nova Slider Overflow Card Fix END === */

/* === Panel Managed Brand Logo START === */
.lux-header__brand.has-logo {
    gap: 0;
}

.lux-header__brand.has-logo img {
    display: block;
    height: auto;
    max-height: 64px;
    object-fit: contain;
}

.site-footer__logo {
    display: block;
    height: auto;
    max-height: 96px;
    object-fit: contain;
    margin-bottom: 22px;
}

.lux-header__mobile-toggle {
    display: none;
}

.lux-header__mobile {
    display: none;
}

@media (max-width: 980px) {
    .lux-header__nav {
        display: none;
    }

    .lux-header__mobile-toggle {
        width: 46px;
        height: 46px;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        border: 1px solid #E5E0D6;
        background: #FFFFFF;
        padding: 0 13px;
    }

    .lux-header__mobile-toggle span {
        height: 1px;
        background: #111827;
        display: block;
    }

    .lux-header__mobile {
        display: none;
        padding: 16px 24px 22px;
        border-top: 1px solid #E5E0D6;
        background: #FFFFFF;
    }

    .lux-header__mobile.is-open {
        display: grid;
        gap: 14px;
    }

    .lux-header__mobile a {
        color: #111827;
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .12em;
    }

    .lux-header__brand.has-logo img {
        max-width: 190px;
        max-height: 54px;
    }
}

@media (max-width: 560px) {
    .lux-header__cta,
    .lux-header__lang {
        display: none;
    }

    .lux-header__brand.has-logo img {
        max-width: 160px;
    }
}
/* === Panel Managed Brand Logo END === */

/* === Header Logo Layout Stabilizer START === */

/* Header her logoda 3 kolonlu stabil çalışsın */
.lux-header__inner {
    width: min(1480px, calc(100% - 64px)) !important;
    min-height: 96px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(220px, 330px) minmax(520px, 1fr) minmax(220px, 330px) !important;
    align-items: center !important;
    gap: 24px !important;
}

/* Logo alanı menüyü itmesin */
.lux-header__brand {
    min-width: 0 !important;
    justify-self: start !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* Panelden büyük logo yüklense bile headerı bozmasın */
.lux-header__brand.has-logo img {
    width: auto !important;
    max-width: 220px !important;
    max-height: 64px !important;
    object-fit: contain !important;
    display: block !important;
}

/* Menü tekrar düzgün boşluklu ve ortalı olsun */
.lux-header__nav {
    justify-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(24px, 2.1vw, 38px) !important;
    white-space: nowrap !important;
}

.lux-header__nav a {
    display: inline-flex !important;
    align-items: center !important;
    color: #111827 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .13em !important;
    line-height: 1 !important;
}

/* Sağdaki dil + teklif alanı sağa sabit */
.lux-header__actions {
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 16px !important;
    min-width: 0 !important;
}

.lux-header__lang {
    flex: 0 0 auto !important;
}

.lux-header__cta {
    flex: 0 0 auto !important;
}

/* Büyük logolu markalarda ideal görüntü */
@media (min-width: 1201px) {
    .lux-header__brand.has-logo img {
        max-width: 205px !important;
    }
}

/* Laptop / MacBook Air */
@media (max-width: 1280px) {
    .lux-header__inner {
        width: calc(100% - 48px) !important;
        grid-template-columns: minmax(190px, 260px) minmax(420px, 1fr) minmax(190px, 270px) !important;
        gap: 20px !important;
    }

    .lux-header__brand.has-logo img {
        max-width: 190px !important;
        max-height: 58px !important;
    }

    .lux-header__nav {
        gap: 22px !important;
    }

    .lux-header__nav a {
        font-size: 12px !important;
        letter-spacing: .12em !important;
    }

    .lux-header__cta {
        padding: 0 22px !important;
    }
}

/* Tablet ve altı mobil menüye geçsin */
@media (max-width: 1100px) {
    .lux-header__inner {
        width: calc(100% - 36px) !important;
        min-height: 82px !important;
        display: flex !important;
        justify-content: space-between !important;
    }

    .lux-header__nav {
        display: none !important;
    }

    .lux-header__brand.has-logo img {
        max-width: 180px !important;
        max-height: 54px !important;
    }
}

/* Mobil */
@media (max-width: 640px) {
    .lux-header__inner {
        width: calc(100% - 24px) !important;
    }

    .lux-header__brand.has-logo img {
        max-width: 150px !important;
        max-height: 48px !important;
    }
}

/* === Header Logo Layout Stabilizer END === */

/* === Header Logo Layout Stabilizer START === */

/* Header her logoda 3 kolonlu stabil çalışsın */
.lux-header__inner {
    width: min(1480px, calc(100% - 64px)) !important;
    min-height: 96px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(220px, 330px) minmax(520px, 1fr) minmax(220px, 330px) !important;
    align-items: center !important;
    gap: 24px !important;
}

/* Logo alanı menüyü itmesin */
.lux-header__brand {
    min-width: 0 !important;
    justify-self: start !important;
    display: inline-flex !important;
    align-items: center !important;
}

/* Panelden büyük logo yüklense bile headerı bozmasın */
.lux-header__brand.has-logo img {
    width: auto !important;
    max-width: 220px !important;
    max-height: 64px !important;
    object-fit: contain !important;
    display: block !important;
}

/* Menü tekrar düzgün boşluklu ve ortalı olsun */
.lux-header__nav {
    justify-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(24px, 2.1vw, 38px) !important;
    white-space: nowrap !important;
}

.lux-header__nav a {
    display: inline-flex !important;
    align-items: center !important;
    color: #111827 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .13em !important;
    line-height: 1 !important;
}

/* Sağdaki dil + teklif alanı sağa sabit */
.lux-header__actions {
    justify-self: end !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 16px !important;
    min-width: 0 !important;
}

.lux-header__lang {
    flex: 0 0 auto !important;
}

.lux-header__cta {
    flex: 0 0 auto !important;
}

/* Büyük logolu markalarda ideal görüntü */
@media (min-width: 1201px) {
    .lux-header__brand.has-logo img {
        max-width: 205px !important;
    }
}

/* Laptop / MacBook Air */
@media (max-width: 1280px) {
    .lux-header__inner {
        width: calc(100% - 48px) !important;
        grid-template-columns: minmax(190px, 260px) minmax(420px, 1fr) minmax(190px, 270px) !important;
        gap: 20px !important;
    }

    .lux-header__brand.has-logo img {
        max-width: 190px !important;
        max-height: 58px !important;
    }

    .lux-header__nav {
        gap: 22px !important;
    }

    .lux-header__nav a {
        font-size: 12px !important;
        letter-spacing: .12em !important;
    }

    .lux-header__cta {
        padding: 0 22px !important;
    }
}

/* Tablet ve altı mobil menüye geçsin */
@media (max-width: 1100px) {
    .lux-header__inner {
        width: calc(100% - 36px) !important;
        min-height: 82px !important;
        display: flex !important;
        justify-content: space-between !important;
    }

    .lux-header__nav {
        display: none !important;
    }

    .lux-header__brand.has-logo img {
        max-width: 180px !important;
        max-height: 54px !important;
    }
}

/* Mobil */
@media (max-width: 640px) {
    .lux-header__inner {
        width: calc(100% - 24px) !important;
    }

    .lux-header__brand.has-logo img {
        max-width: 150px !important;
        max-height: 48px !important;
    }
}

/* === Header Logo Layout Stabilizer END === */

/* === HEADER PREMIUM THIN FINAL OVERRIDE START === */

/* Header genel premium yapı */
body .lux-header {
    background: rgba(255,255,255,.98) !important;
    border-bottom: 1px solid #E7E1D7 !important;
    box-shadow: none !important;
}

body .lux-header__inner {
    width: min(1480px, calc(100% - 64px)) !important;
    min-height: 96px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 34px !important;
}

/* Logo alanı */
body .lux-header__brand {
    min-width: 210px !important;
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
}

body .lux-header__brand.has-logo img {
    width: auto !important;
    max-width: 185px !important;
    max-height: 58px !important;
    object-fit: contain !important;
    display: block !important;
}

/* Menü: bold değil, ince premium */
body .lux-header__nav {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(28px, 2.25vw, 42px) !important;
}

body .lux-header__nav a {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    min-height: 42px !important;
    color: #111827 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: .115em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
}

/* Hover çizgisi eski premium gibi ince */
body .lux-header__nav a::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 1px !important;
    background: #B9975B !important;
    opacity: 0 !important;
    transform: scaleX(.35) !important;
    transform-origin: center !important;
    transition: opacity .22s ease, transform .22s ease !important;
}

body .lux-header__nav a:hover,
body .lux-header__nav a.is-active {
    color: #8C6A35 !important;
    font-weight: 400 !important;
}

body .lux-header__nav a:hover::after,
body .lux-header__nav a.is-active::after {
    opacity: 1 !important;
    transform: scaleX(1) !important;
}

/* Sağ aksiyonlar */
body .lux-header__actions {
    min-width: 270px !important;
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 16px !important;
}

/* TR | EN kutusu kesin borderlı */
body .lux-header__lang {
    height: 50px !important;
    min-height: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    padding: 0 17px !important;
    border: 1px solid #E3DDD2 !important;
    background: #FFFFFF !important;
    box-shadow: none !important;
}

body .lux-header__lang a,
body .lux-header__lang span {
    color: #6F7683 !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    letter-spacing: .12em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

body .lux-header__lang a.is-active,
body .lux-header__lang a:hover {
    color: #B9975B !important;
    font-weight: 400 !important;
}

/* Teklif butonu: premium ama aşırı bold değil */
body .lux-header__cta {
    height: 54px !important;
    min-height: 54px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 30px !important;
    background: #0F172A !important;
    border: 1px solid #0F172A !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: .14em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

body .lux-header__cta:hover {
    background: #B9975B !important;
    border-color: #B9975B !important;
    color: #FFFFFF !important;
}

/* MacBook / laptop */
@media (max-width: 1320px) {
    body .lux-header__inner {
        width: calc(100% - 48px) !important;
        gap: 24px !important;
    }

    body .lux-header__brand {
        min-width: 185px !important;
    }

    body .lux-header__brand.has-logo img {
        max-width: 170px !important;
        max-height: 54px !important;
    }

    body .lux-header__nav {
        gap: 24px !important;
    }

    body .lux-header__nav a {
        font-size: 12px !important;
        letter-spacing: .105em !important;
    }

    body .lux-header__actions {
        min-width: 245px !important;
        gap: 12px !important;
    }

    body .lux-header__cta {
        padding: 0 24px !important;
    }
}

/* Tablet/mobile */
@media (max-width: 1100px) {
    body .lux-header__inner {
        width: calc(100% - 36px) !important;
        min-height: 84px !important;
    }

    body .lux-header__brand {
        min-width: 0 !important;
    }

    body .lux-header__brand.has-logo img {
        max-width: 170px !important;
        max-height: 52px !important;
    }

    body .lux-header__nav {
        display: none !important;
    }

    body .lux-header__actions {
        min-width: 0 !important;
    }

    body .lux-header__mobile-toggle {
        width: 48px !important;
        height: 48px !important;
        display: inline-flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 6px !important;
        border: 1px solid #E3DDD2 !important;
        background: #FFFFFF !important;
        padding: 0 14px !important;
    }

    body .lux-header__mobile-toggle span {
        height: 1px !important;
        background: #111827 !important;
        display: block !important;
    }
}

@media (max-width: 640px) {
    body .lux-header__inner {
        width: calc(100% - 24px) !important;
        min-height: 78px !important;
    }

    body .lux-header__brand.has-logo img {
        max-width: 145px !important;
        max-height: 46px !important;
    }

    body .lux-header__lang,
    body .lux-header__cta {
        display: none !important;
    }
}

/* === HEADER PREMIUM THIN FINAL OVERRIDE END === */

/* === Floating Corporate Quote Widget START === */
.quickQuoteWidget,
.quickQuoteWidget * {
    box-sizing: border-box;
}

.quickQuoteWidget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 99999;
    font-family: inherit;
}

.quickQuoteWidget__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(185, 151, 91, 0.55);
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.quickQuoteWidget__toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.11);
    border-color: rgba(185, 151, 91, 0.8);
    background: #ffffff;
}

.quickQuoteWidget__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #b9975b;
    flex: 0 0 auto;
}

.quickQuoteWidget__arrow {
    font-size: 16px;
    line-height: 1;
    color: #b9975b;
}

.quickQuoteWidget__label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.quickQuoteWidget__panel {
    position: absolute;
    right: 0;
    bottom: 74px;
    width: min(390px, calc(100vw - 32px));
    background: #ffffff;
    border: 1px solid #e7e0d3;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    pointer-events: none;
}

.quickQuoteWidget.is-open .quickQuoteWidget__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.quickQuoteWidget__head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 22px 22px 18px;
    background: #0f172a;
    color: #fff;
    border-bottom: 2px solid #b9975b;
}

.quickQuoteWidget__head span {
    display: block;
    margin-bottom: 8px;
    color: #d4b56d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.quickQuoteWidget__head h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
}

.quickQuoteWidget__head p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.55;
}

.quickQuoteWidget__close {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.26);
    background: transparent;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.quickQuoteWidget__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 18px 22px;
}

.quickQuoteWidget__form label {
    display: grid;
    gap: 7px;
}

.quickQuoteWidget__form label span {
    color: #8a6a34;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.quickQuoteWidget__form input,
.quickQuoteWidget__form select,
.quickQuoteWidget__form textarea {
    width: 100%;
    border: 1px solid #e7e0d3;
    background: #fff;
    color: #111827;
    font-size: 14px;
    outline: none;
    border-radius: 0;
}

.quickQuoteWidget__form input,
.quickQuoteWidget__form select {
    height: 44px;
    padding: 0 12px;
}

.quickQuoteWidget__form textarea {
    min-height: 92px;
    padding: 12px;
    resize: vertical;
}

.quickQuoteWidget__form input:focus,
.quickQuoteWidget__form select:focus,
.quickQuoteWidget__form textarea:focus {
    border-color: #b9975b;
}

.quickQuoteWidget__wide {
    grid-column: 1 / -1;
}

.quickQuoteWidget__submit {
    grid-column: 1 / -1;
    height: 48px;
    border: 0;
    background: #0f172a;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: background .2s ease;
}

.quickQuoteWidget__submit:hover {
    background: #b9975b;
}

.quickQuoteWidget__people {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #e7e0d3;
}

.quickQuoteWidget__people a {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    text-decoration: none;
    color: #111827;
    background: #faf9f6;
    border-right: 1px solid #e7e0d3;
    transition: background .2s ease, color .2s ease;
}

.quickQuoteWidget__people a:last-child {
    border-right: 0;
}

.quickQuoteWidget__people a:hover {
    background: #0f172a;
    color: #fff;
}

.quickQuoteWidget__people strong {
    font-size: 13px;
    font-weight: 500;
}

.quickQuoteWidget__people span {
    color: #8a6a34;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.quickQuoteWidget__people a:hover span {
    color: #d4b56d;
}

@media (max-width: 640px) {
    .quickQuoteWidget {
        right: 14px;
        bottom: 14px;
    }

    .quickQuoteWidget__toggle {
        padding: 0 12px;
        min-height: 44px;
        gap: 9px;
    }

    .quickQuoteWidget__label {
        font-size: 10px;
        letter-spacing: .12em;
    }

    .quickQuoteWidget__panel {
        width: calc(100vw - 28px);
        bottom: 68px;
    }

    .quickQuoteWidget__form {
        grid-template-columns: 1fr;
    }

    .quickQuoteWidget__people {
        grid-template-columns: 1fr;
    }

    .quickQuoteWidget__people a {
        border-right: 0;
        border-bottom: 1px solid #e7e0d3;
    }

    .quickQuoteWidget__people a:last-child {
        border-bottom: 0;
    }
}
/* === Floating Corporate Quote Widget END === */

/* === FRONTEND MOBILE MENU FINAL FIX START === */
@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }

    .lux-header__mobile-toggle,
    .lux-menu-toggle,
    .nav-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        width: 44px !important;
        height: 44px !important;
        border: 1px solid rgba(185, 151, 91, .35) !important;
        background: #ffffff !important;
        color: #111827 !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 1002 !important;
    }

    .lux-header__mobile-toggle span,
    .lux-menu-toggle span,
    .nav-toggle span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        background: currentColor !important;
        transition: transform .22s ease, opacity .22s ease !important;
    }

    .lux-header.is-open .lux-header__mobile-toggle span:nth-child(1),
    body.mobileMenuOpen .lux-header__mobile-toggle span:nth-child(1),
    body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    .lux-header.is-open .lux-header__mobile-toggle span:nth-child(2),
    body.mobileMenuOpen .lux-header__mobile-toggle span:nth-child(2) {
        opacity: 0 !important;
    }

    .lux-header.is-open .lux-header__mobile-toggle span:nth-child(3),
    body.mobileMenuOpen .lux-header__mobile-toggle span:nth-child(3),
    body.nav-open .nav-toggle span:nth-child(2) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    .lux-header__mobile,
    [data-mobile-menu],
    [data-lux-mobile-nav] {
        display: none !important;
        position: fixed !important;
        top: 78px !important;
        left: 14px !important;
        right: 14px !important;
        z-index: 1001 !important;
        max-height: calc(100vh - 98px) !important;
        overflow-y: auto !important;
        background: #ffffff !important;
        border: 1px solid rgba(185, 151, 91, .28) !important;
        box-shadow: 0 22px 60px rgba(17, 24, 39, .18) !important;
        padding: 18px !important;
    }

    .lux-header.is-open .lux-header__mobile,
    .lux-header__mobile.is-active,
    .lux-header__mobile.is-open,
    [data-mobile-menu].is-active,
    [data-mobile-menu].is-open,
    [data-lux-mobile-nav].is-active,
    [data-lux-mobile-nav].is-open {
        display: grid !important;
        gap: 8px !important;
    }

    .lux-header__mobile a,
    [data-mobile-menu] a,
    [data-lux-mobile-nav] a {
        display: flex !important;
        align-items: center !important;
        min-height: 44px !important;
        padding: 10px 12px !important;
        color: #111827 !important;
        text-decoration: none !important;
        border-bottom: 1px solid rgba(17, 24, 39, .07) !important;
        font-size: 14px !important;
        font-weight: 600 !important;
    }

    .lux-header__mobile a:last-child,
    [data-mobile-menu] a:last-child,
    [data-lux-mobile-nav] a:last-child {
        border-bottom: 0 !important;
    }

    body.mobileMenuOpen::after {
        content: "" !important;
        position: fixed !important;
        inset: 0 !important;
        background: rgba(17, 24, 39, .42) !important;
        z-index: 1000 !important;
    }

    .lux-header,
    .site-header {
        z-index: 1003 !important;
    }
}

@media (max-width: 560px) {
    .lux-header__mobile,
    [data-mobile-menu],
    [data-lux-mobile-nav] {
        top: 70px !important;
        left: 10px !important;
        right: 10px !important;
        max-height: calc(100vh - 84px) !important;
    }

    .lux-header__mobile-toggle,
    .lux-menu-toggle,
    .nav-toggle {
        width: 42px !important;
        height: 42px !important;
    }
}
/* === FRONTEND MOBILE MENU FINAL FIX END === */

/* === PUBLIC RESPONSIVE FINAL POLISH START === */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

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

table {
    width: 100%;
}

@media (max-width: 1180px) {
    .container,
    .site-container,
    .lux-container,
    .section-container,
    .pxl-container,
    .lineo-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 28px !important;
        padding-right: 28px !important;
    }

    .lux-header,
    .site-header {
        width: 100% !important;
    }

    .lux-header__inner,
    .site-header__inner,
    .header-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 28px !important;
        padding-right: 28px !important;
    }
}

@media (max-width: 900px) {
    .container,
    .site-container,
    .lux-container,
    .section-container,
    .pxl-container,
    .lineo-container {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    section {
        max-width: 100%;
    }

    .hero,
    .site-hero,
    .lux-hero,
    .home-hero,
    .lineoPxlSlider,
    .lineo-pxl-slider,
    .pxl-slider,
    .cinematic-slider {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hero h1,
    .site-hero h1,
    .lux-hero h1,
    .home-hero h1,
    .section-title h1,
    .section-title h2,
    .page-title,
    h1 {
        font-size: clamp(34px, 8vw, 54px) !important;
        line-height: 1.05 !important;
        letter-spacing: -0.05em !important;
    }

    h2 {
        font-size: clamp(28px, 6vw, 42px) !important;
        line-height: 1.1 !important;
        letter-spacing: -0.04em !important;
    }

    h3 {
        font-size: clamp(21px, 4.6vw, 30px) !important;
        line-height: 1.16 !important;
    }

    p {
        overflow-wrap: anywhere;
    }

    .grid,
    .cards,
    .service-grid,
    .services-grid,
    .project-grid,
    .projects-grid,
    .blog-grid,
    .feature-grid,
    .stats-grid,
    .footer-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 18px !important;
    }

    .service-card,
    .project-card,
    .blog-card,
    .feature-card,
    .card {
        min-width: 0 !important;
    }

    .service-card img,
    .project-card img,
    .blog-card img,
    .card img {
        width: 100% !important;
        height: auto;
        object-fit: cover;
    }

    form,
    .form,
    .contact-form,
    .quote-form {
        max-width: 100% !important;
    }

    input,
    textarea,
    select,
    button {
        max-width: 100% !important;
    }

    .table-wrap,
    .table-responsive,
    .content-table,
    .admin-table-wrap {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .footer,
    .site-footer,
    .lux-footer {
        overflow: hidden !important;
    }
}

@media (max-width: 680px) {
    .container,
    .site-container,
    .lux-container,
    .section-container,
    .pxl-container,
    .lineo-container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .grid,
    .cards,
    .service-grid,
    .services-grid,
    .project-grid,
    .projects-grid,
    .blog-grid,
    .feature-grid,
    .stats-grid,
    .footer-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .hero,
    .site-hero,
    .lux-hero,
    .home-hero {
        min-height: auto !important;
    }

    .hero-content,
    .site-hero__content,
    .lux-hero__content,
    .home-hero__content {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero h1,
    .site-hero h1,
    .lux-hero h1,
    .home-hero h1,
    h1 {
        font-size: clamp(32px, 10vw, 44px) !important;
    }

    h2 {
        font-size: clamp(26px, 8vw, 36px) !important;
    }

    .section,
    section {
        padding-top: 54px !important;
        padding-bottom: 54px !important;
    }

    .btn,
    .button,
    .site-button,
    .lux-button,
    .nav-cta,
    a[class*="btn"],
    a[class*="button"] {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer,
    .site-footer,
    .lux-footer {
        text-align: left !important;
    }

    .footer a,
    .site-footer a,
    .lux-footer a {
        word-break: break-word;
    }
}

@media (max-width: 420px) {
    .container,
    .site-container,
    .lux-container,
    .section-container,
    .pxl-container,
    .lineo-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .hero h1,
    .site-hero h1,
    .lux-hero h1,
    .home-hero h1,
    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 27px !important;
    }

    p,
    li,
    a,
    input,
    textarea,
    select {
        font-size: 15px !important;
    }
}
/* === PUBLIC RESPONSIVE FINAL POLISH END === */

/* =========================================================
   Dİ YAPI | LINEO SLIDER MINIMAL IMAGE FIT
   Tasarım aynı kalır, sadece görsel mevcut alana tam sığar.
   ========================================================= */

/* Slider ölçülerine dokunma; sadece background davranışını düzelt */
.nova-lineo-slider .pxl-item--image .item--image,
.nova-lineo-slider .item--image.img-light {
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    filter: brightness(1.05) contrast(1.02) saturate(1.02) !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}

/* Koyu perde gibi duran ikinci katmanı kapat */
.nova-lineo-slider .item--image.img-dark {
    display: none !important;
}

/* Olası karartma overlaylerini kapat ama ölçü/pozisyon bozma */
.nova-lineo-slider .pxl-item--image::before,
.nova-lineo-slider .pxl-item--image::after {
    background: transparent !important;
    opacity: 0 !important;
}

/* Görsel alanın arkası boş kalırsa temiz beyaz/krem görünsün */
.nova-lineo-slider .pxl-item--image {
    background: transparent !important;
}


/* =========================================================
   Dİ YAPI | İletişim Sayfası Adres Font Düzeltmesi
   ========================================================= */

.contact-page p,
.contact-page a,
.contact-page li,
.contact-section p,
.contact-section a,
.contact-section li,
.contact-info p,
.contact-info a,
.contact-info li,
.contact-card p,
.contact-card a,
.contact-card li,
.contact-details p,
.contact-details a,
.contact-details li,
.contact-grid p,
.contact-grid a,
.contact-grid li,
main [class*="contact"] p,
main [class*="contact"] a,
main [class*="contact"] li {
    font-size: 15px !important;
    line-height: 1.65 !important;
    letter-spacing: 0.01em !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
}

/* Uzun adres satırı daha profesyonel dursun */
.contact-page address,
.contact-section address,
.contact-info address,
.contact-card address,
.contact-details address,
main [class*="contact"] address {
    font-style: normal !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    letter-spacing: 0.01em !important;
    max-width: 420px !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
}

/* Başlıklar büyük kalabilir ama abartıyı kırıyoruz */
.contact-page h3,
.contact-section h3,
.contact-info h3,
.contact-card h3,
.contact-details h3,
main [class*="contact"] h3 {
    font-size: clamp(18px, 1.35vw, 22px) !important;
    line-height: 1.25 !important;
}

/* Mobilde daha okunabilir */
@media (max-width: 640px) {
    .contact-page p,
    .contact-page a,
    .contact-page li,
    .contact-section p,
    .contact-section a,
    .contact-section li,
    .contact-info p,
    .contact-info a,
    .contact-info li,
    .contact-card p,
    .contact-card a,
    .contact-card li,
    .contact-details p,
    .contact-details a,
    .contact-details li,
    main [class*="contact"] p,
    main [class*="contact"] a,
    main [class*="contact"] li,
    main [class*="contact"] address {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
}


/* =========================================================
   Dİ YAPI | İletişim Sayfası Büyük Adres Yazısı Fix
   ========================================================= */

/* İletişim sayfasında adres h1/title alanına basıldığı için hedefli küçültme */
body:has(form) main h1,
main .contact-page h1,
main .contact-section h1,
main .contact-info h1,
main .contact-details h1,
main [class*="contact"] h1 {
    font-size: clamp(24px, 2.4vw, 34px) !important;
    line-height: 1.35 !important;
    letter-spacing: -0.02em !important;
    max-width: 520px !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
}

/* Adres metni özel olarak daha okunaklı dursun */
main h1:has(+ p),
main [class*="contact"] h1 {
    text-transform: uppercase !important;
}

/* Mobil */
@media (max-width: 768px) {
    body:has(form) main h1,
    main .contact-page h1,
    main .contact-section h1,
    main .contact-info h1,
    main .contact-details h1,
    main [class*="contact"] h1 {
        font-size: 22px !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
    }
}


/* =========================================================
   Dİ YAPI | İletişim Sayfası H2 Adres Font Fix
   ========================================================= */

.contact-layout .contact-info h2,
.contact-info h2 {
    font-size: clamp(24px, 2.1vw, 32px) !important;
    line-height: 1.35 !important;
    font-weight: 350 !important;
    letter-spacing: -0.015em !important;
    max-width: 460px !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
}

/* Telefon ve mail daha dengeli dursun */
.contact-layout .contact-info a,
.contact-info a {
    font-size: 15px !important;
    line-height: 1.7 !important;
}

/* Mobil */
@media (max-width: 768px) {
    .contact-layout .contact-info h2,
    .contact-info h2 {
        font-size: 22px !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
    }
}


/* =========================================================
   Dİ YAPI | Telefon Linkleri Footer / İletişim Fix
   ========================================================= */

.site-footer a[href^="tel:"],
.contact-info a[href^="tel:"],
.contact-layout a[href^="tel:"] {
    display: block !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
}

.site-footer a[href^="tel:"] + a[href^="tel:"],
.contact-info a[href^="tel:"] + a[href^="tel:"],
.contact-layout a[href^="tel:"] + a[href^="tel:"] {
    margin-top: -4px !important;
}


/* =========================================================
   Dİ YAPI | Ana Sayfa Kurumsal Video Alanı
   ========================================================= */

.split-image.split-media {
    position: relative !important;
    overflow: hidden !important;
    background: #101722 !important;
}

.split-image.split-media .split-video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: inherit !important;
    object-fit: cover !important;
    object-position: center center !important;
    background: #101722 !important;
}

/* Video varsa eski img boşluk davranışı oluşmasın */
.split-image.split-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .split-image.split-media .split-video {
        min-height: 280px !important;
    }
}


/* =========================================================
   Dİ YAPI | Fikirden Gerçeğe Modern Galeri Alanı
   ========================================================= */

.diyapiGallerySec {
    position: relative;
    overflow: hidden;
    background: #f7f5f0;
}

.diyapiGallerySec::before {
    content: "GALERİ";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(88px, 14vw, 220px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: .06em;
    color: rgba(15, 23, 42, .035);
    pointer-events: none;
    white-space: nowrap;
}

.diyapiGalleryHead {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto 52px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    padding: 0 20px;
}

.diyapiGalleryHead h2 {
    margin: 18px 0 0;
    font-size: clamp(44px, 6vw, 82px);
    line-height: .94;
    letter-spacing: -.07em;
    font-weight: 350;
    color: #101827;
}

.diyapiGalleryAll {
    white-space: nowrap;
}

.diyapiGallerySlider {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.diyapiGalleryViewport {
    overflow: hidden;
}

.diyapiGalleryTrack {
    display: flex;
    transition: transform .7s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.diyapiGallerySlide {
    min-width: 100%;
}

.diyapiGalleryGrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 150px;
    gap: 18px;
}

.diyapiGalleryItem {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(177, 149, 78, .28);
    background: #101722;
    cursor: pointer;
}

.diyapiGalleryItem::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 23, 34, 0) 40%, rgba(16, 23, 34, .38) 100%),
        linear-gradient(90deg, rgba(177, 149, 78, .18), transparent 38%);
    opacity: .65;
    transition: opacity .35s ease;
}

.diyapiGalleryItem img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.08) contrast(1.03) saturate(.96);
    transform: scale(1.02);
    transition: transform .75s cubic-bezier(.22, 1, .36, 1), filter .35s ease;
}

.diyapiGalleryItem:hover img {
    transform: scale(1.07);
    filter: grayscale(0) contrast(1.04) saturate(1.03);
}

.diyapiGalleryItem:hover::after {
    opacity: .28;
}

.diyapiGalleryItem.is-large {
    grid-column: span 5;
    grid-row: span 3;
}

.diyapiGalleryItem.is-tall {
    grid-column: span 3;
    grid-row: span 4;
}

.diyapiGalleryItem.is-wide {
    grid-column: span 6;
    grid-row: span 2;
}

.diyapiGalleryItem.is-small {
    grid-column: span 4;
    grid-row: span 2;
}

.diyapiGalleryControls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 34px;
}

.diyapiGalleryControls button {
    appearance: none;
    border: 0;
    background: transparent;
    color: #101827;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 10px 6px;
}

.diyapiGalleryControls button:hover {
    color: #a27f39;
}

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

.diyapiGalleryDots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 999px;
    background: rgba(16, 24, 39, .18);
}

.diyapiGalleryDots button.is-active {
    width: 28px;
    background: #b1954e;
}

.diyapiGalleryLightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 36px;
    background: rgba(10, 14, 22, .88);
    backdrop-filter: blur(8px);
}

.diyapiGalleryLightbox.is-open {
    display: flex;
}

.diyapiGalleryLightbox img {
    display: block;
    max-width: min(1120px, 94vw);
    max-height: 88vh;
    object-fit: contain;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .32);
}

.diyapiGalleryLightboxClose {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 991px) {
    .diyapiGalleryHead {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 32px;
    }

    .diyapiGalleryGrid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 130px;
        gap: 14px;
    }

    .diyapiGalleryItem.is-large,
    .diyapiGalleryItem.is-wide {
        grid-column: span 6;
        grid-row: span 2;
    }

    .diyapiGalleryItem.is-tall {
        grid-column: span 3;
        grid-row: span 3;
    }

    .diyapiGalleryItem.is-small {
        grid-column: span 3;
        grid-row: span 2;
    }
}

@media (max-width: 640px) {
    .diyapiGallerySlider,
    .diyapiGalleryHead {
        padding: 0 16px;
    }

    .diyapiGalleryGrid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 138px;
        gap: 12px;
    }

    .diyapiGalleryItem.is-large,
    .diyapiGalleryItem.is-wide,
    .diyapiGalleryItem.is-tall,
    .diyapiGalleryItem.is-small {
        grid-column: span 1;
        grid-row: span 2;
    }

    .diyapiGalleryItem.is-wide,
    .diyapiGalleryItem.is-large {
        grid-column: span 2;
    }

    .diyapiGalleryControls {
        justify-content: space-between;
        gap: 12px;
    }
}


/* =========================================================
   Dİ YAPI | Galeri 1536x2048 Dikey Görsel Fix
   1536x2048 = 3/4 oran. Görsel ezilmez, dikey görünür.
   ========================================================= */

.diyapiGalleryGrid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-rows: auto !important;
    gap: 22px !important;
    align-items: start !important;
}

/* Bütün galeri kartları dikey 1536x2048 oranında */
.diyapiGalleryItem,
.diyapiGalleryItem.is-large,
.diyapiGalleryItem.is-tall,
.diyapiGalleryItem.is-wide,
.diyapiGalleryItem.is-small {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    aspect-ratio: 1536 / 2048 !important;
    min-height: 0 !important;
    border: 1px solid rgba(177, 149, 78, .28) !important;
    background: #101722 !important;
}

/* Görsel bozulmaz, dikey fotoğrafa göre tam oturur */
.diyapiGalleryItem img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    filter: grayscale(.04) contrast(1.03) saturate(1.02) !important;
}

/* Hover'da hafif premium hareket */
.diyapiGalleryItem:hover img {
    transform: scale(1.035) !important;
    filter: grayscale(0) contrast(1.04) saturate(1.04) !important;
}

/* Overlay çok karartmasın */
.diyapiGalleryItem::after {
    opacity: .18 !important;
    background: linear-gradient(180deg, transparent 55%, rgba(16, 23, 34, .24) 100%) !important;
}

.diyapiGalleryItem:hover::after {
    opacity: .08 !important;
}

/* Slider sayfası arası ferah dursun */
.diyapiGallerySlide {
    min-width: 100% !important;
}

/* Tablet: 3 kolon */
@media (max-width: 1180px) {
    .diyapiGalleryGrid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }
}

/* Mobil yatay/tablet: 2 kolon */
@media (max-width: 768px) {
    .diyapiGalleryGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .diyapiGalleryItem,
    .diyapiGalleryItem.is-large,
    .diyapiGalleryItem.is-tall,
    .diyapiGalleryItem.is-wide,
    .diyapiGalleryItem.is-small {
        aspect-ratio: 1536 / 2048 !important;
    }
}

/* Küçük mobil: tek kolon, büyük dikey görsel */
@media (max-width: 480px) {
    .diyapiGalleryGrid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* Lightbox'ta görsel asla kırpılmasın */
.diyapiGalleryLightbox img {
    object-fit: contain !important;
    max-width: min(900px, 94vw) !important;
    max-height: 90vh !important;
}

/* === MOBILE RESPONSIVE STABILIZATION PHASE 1 START === */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html.mobileMenuOpen,
body.mobileMenuOpen,
body.nav-open {
    overflow: hidden !important;
    touch-action: none;
}

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

@media (max-width: 1024px) {
    body .lux-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 10020 !important;
    }

    body .lux-header__inner {
        width: calc(100% - 32px) !important;
        min-height: 78px !important;
        gap: 16px !important;
        position: relative !important;
    }

    body .lux-header__brand {
        min-width: 0 !important;
        max-width: calc(100% - 64px) !important;
    }

    body .lux-header__brand.has-logo img {
        max-width: min(170px, 46vw) !important;
        max-height: 50px !important;
    }

    body .lux-header__nav,
    body .lux-header__lang,
    body .lux-header__cta {
        display: none !important;
    }

    body .lux-header__actions {
        min-width: 0 !important;
        flex: 0 0 auto !important;
        gap: 0 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        margin-left: auto !important;
        transform: none !important;
        z-index: 10032 !important;
    }

    body .lux-header__mobile-toggle {
        display: inline-flex !important;
        flex: 0 0 auto !important;
        width: 46px !important;
        height: 46px !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid #e3ddd2 !important;
        background: #ffffff !important;
        box-shadow: 0 8px 24px rgba(15, 23, 42, .08) !important;
        position: relative !important;
        z-index: 10031 !important;
    }

    body .lux-header__mobile-toggle span {
        width: 20px !important;
        height: 2px !important;
        background: #111827 !important;
        transform-origin: center !important;
    }

    body .lux-header.is-open .lux-header__mobile-toggle span:nth-child(1),
    body.mobileMenuOpen .lux-header__mobile-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    body .lux-header.is-open .lux-header__mobile-toggle span:nth-child(2),
    body.mobileMenuOpen .lux-header__mobile-toggle span:nth-child(2) {
        opacity: 0 !important;
    }

    body .lux-header.is-open .lux-header__mobile-toggle span:nth-child(3),
    body.mobileMenuOpen .lux-header__mobile-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    body.mobileMenuOpen::after {
        content: "" !important;
        position: fixed !important;
        inset: 0 !important;
        z-index: 9990 !important;
        background: rgba(15, 23, 42, .54) !important;
        backdrop-filter: blur(3px);
    }

    body .lux-header__mobile {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        bottom: 0 !important;
        z-index: 10030 !important;
        width: min(420px, 100vw) !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        padding: 22px 20px calc(24px + env(safe-area-inset-bottom)) !important;
        flex-direction: column !important;
        gap: 20px !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
        background: #ffffff !important;
        border: 0 !important;
        border-left: 1px solid rgba(185, 151, 91, .24) !important;
        box-shadow: -28px 0 80px rgba(15, 23, 42, .22) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateX(100%) !important;
        transition: transform .28s cubic-bezier(.22, 1, .36, 1), opacity .2s ease !important;
    }

    body .lux-header.is-open .lux-header__mobile,
    body .lux-header__mobile.is-active,
    body .lux-header__mobile.is-open {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    .lux-header__mobile-head,
    .lux-header__mobile-bottom,
    .lux-header__mobile-lang {
        display: flex;
        align-items: center;
    }

    .lux-header__mobile-head {
        justify-content: space-between;
        gap: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid #efeae1;
    }

    .lux-header__mobile-head span {
        color: #8c6a35;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .18em;
        text-transform: uppercase;
    }

    .lux-header__mobile-head button {
        width: 42px;
        height: 42px;
        border: 1px solid #e3ddd2;
        background: #fff;
        color: #111827;
        font-size: 26px;
        line-height: 1;
        cursor: pointer;
    }

    .lux-header__mobile-links {
        display: grid;
        gap: 4px;
    }

    body .lux-header__mobile a {
        min-height: 48px !important;
        padding: 12px 0 !important;
        justify-content: space-between !important;
        border-bottom: 1px solid rgba(17, 24, 39, .08) !important;
        color: #111827 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        letter-spacing: .12em !important;
        text-transform: uppercase !important;
        line-height: 1.25 !important;
    }

    body .lux-header__mobile a.is-active {
        color: #b9975b !important;
    }

    .lux-header__mobile-bottom {
        margin-top: auto;
        padding-top: 18px;
        border-top: 1px solid #efeae1;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .lux-header__mobile-lang {
        gap: 10px;
    }

    body .lux-header__mobile-lang a {
        min-height: 42px !important;
        flex: 1 1 0 !important;
        justify-content: center !important;
        padding: 0 14px !important;
        border: 1px solid #e3ddd2 !important;
        background: #fff !important;
        font-size: 12px !important;
    }

    body .lux-header__mobile-lang a.is-active {
        border-color: #b9975b !important;
        background: #f7f5f0 !important;
        color: #8c6a35 !important;
    }

    body .lux-header__mobile-cta {
        min-height: 50px !important;
        justify-content: center !important;
        padding: 0 18px !important;
        border: 1px solid #0f172a !important;
        background: #0f172a !important;
        color: #fff !important;
        text-align: center !important;
    }

    .nova-lineo-slider {
        overflow: hidden !important;
    }

    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 32px) !important;
        padding: 18px 0 34px !important;
        overflow: hidden !important;
    }

    .nova-lineo-slider .pxl-swiper-container {
        height: auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    .nova-lineo-slider .pxl-swiper-wrapper,
    .nova-lineo-slider .pxl-swiper-slide,
    .nova-lineo-slider .pxl-item--inner {
        height: auto !important;
        overflow: hidden !important;
    }

    .nova-lineo-slider .pxl-swiper-slide {
        padding: 0 !important;
    }

    .nova-lineo-slider .pxl-item--image {
        position: relative !important;
        width: 100% !important;
        height: clamp(360px, 52vh, 430px) !important;
        min-height: 360px !important;
        border: 0 !important;
    }

    .nova-lineo-slider .img-light {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .nova-lineo-slider .img-dark {
        opacity: 1 !important;
        visibility: visible !important;
        mix-blend-mode: normal !important;
    }

    .nova-lineo-slider .item--image {
        background-size: cover !important;
        background-position: center !important;
        transform: none !important;
    }

    .nova-lineo-slider .pxl-item--image::after {
        background: linear-gradient(180deg, rgba(15, 23, 42, .12), rgba(15, 23, 42, .58)) !important;
    }

    .nova-lineo-slider .pxl-item--content {
        width: 100% !important;
        min-height: 0 !important;
        left: 0 !important;
        bottom: auto !important;
        transform: none !important;
        padding: 24px 20px !important;
    }

    .nova-lineo-slider .pxl-item--subtitle {
        margin-bottom: 14px !important;
    }

    .nova-lineo-slider .pxl-item--title a {
        font-size: clamp(28px, 8vw, 38px) !important;
        line-height: 1.08 !important;
        letter-spacing: 0 !important;
        overflow-wrap: anywhere;
    }

    .nova-lineo-slider .pxl-item--description {
        max-width: none !important;
        margin-top: 14px !important;
        font-size: 14px !important;
        line-height: 1.58 !important;
    }

    .nova-lineo-slider .wp-arrow,
    .nova-lineo-slider .pxl-swiper-dots {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        justify-content: center !important;
    }

    .nova-lineo-slider .wp-arrow {
        margin-top: 16px !important;
    }

    .nova-lineo-slider .pxl-swiper-dots {
        margin-top: 14px !important;
    }

    .quickQuoteWidget {
        right: max(12px, env(safe-area-inset-right)) !important;
        bottom: max(12px, env(safe-area-inset-bottom)) !important;
        z-index: 10010 !important;
        max-width: calc(100vw - 24px) !important;
    }

    .quickQuoteWidget__toggle {
        max-width: calc(100vw - 24px) !important;
    }

    .quickQuoteWidget__panel {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        bottom: calc(72px + env(safe-area-inset-bottom)) !important;
        width: auto !important;
        max-width: calc(100vw - 24px) !important;
        max-height: calc(100vh - 32px) !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
    }

    .quickQuoteWidget__form {
        grid-template-columns: 1fr !important;
    }

    .quickQuoteWidget__form input,
    .quickQuoteWidget__form select,
    .quickQuoteWidget__form textarea,
    .quickQuoteWidget__submit {
        width: 100% !important;
        max-width: 100% !important;
    }

    .quickQuoteWidget__people {
        grid-template-columns: 1fr !important;
    }

    .quickQuoteWidget__people a {
        border-right: 0 !important;
        border-bottom: 1px solid #e7e0d3 !important;
    }

    .quickQuoteWidget__people a:last-child {
        border-bottom: 0 !important;
    }

    .section-space,
    .split-section,
    .dark-section,
    .journal,
    .site-cta {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 768px) {
    .diyapiGallerySec::before {
        font-size: clamp(58px, 18vw, 118px) !important;
        top: 26px !important;
    }

    .diyapiGalleryHead {
        padding: 0 16px !important;
        margin-bottom: 26px !important;
        gap: 18px !important;
    }

    .diyapiGalleryHead h2 {
        font-size: clamp(34px, 11vw, 52px) !important;
        line-height: 1 !important;
        letter-spacing: 0 !important;
    }

    .diyapiGallerySlider {
        padding: 0 16px !important;
    }

    .diyapiGalleryGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        align-items: stretch !important;
    }

    .diyapiGalleryItem,
    .diyapiGalleryItem.is-large,
    .diyapiGalleryItem.is-tall,
    .diyapiGalleryItem.is-wide,
    .diyapiGalleryItem.is-small {
        aspect-ratio: 4 / 5 !important;
        min-height: 0 !important;
        border-radius: 0 !important;
    }
}

@media (max-width: 480px) {
    body .lux-header__inner {
        width: calc(100% - 24px) !important;
        min-height: 72px !important;
    }

    body .lux-header__brand.has-logo img {
        max-width: min(145px, 48vw) !important;
        max-height: 44px !important;
    }

    body .lux-header__mobile {
        width: 100vw !important;
        padding: 18px 16px calc(22px + env(safe-area-inset-bottom)) !important;
    }

    .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 24px) !important;
    }

    .nova-lineo-slider .pxl-item--image {
        height: 390px !important;
        min-height: 390px !important;
    }

    .nova-lineo-slider .pxl-item--content {
        padding: 22px 18px !important;
    }

    .quickQuoteWidget__label {
        max-width: 148px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .diyapiGalleryGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .diyapiGalleryItem,
    .diyapiGalleryItem.is-large,
    .diyapiGalleryItem.is-tall,
    .diyapiGalleryItem.is-wide,
    .diyapiGalleryItem.is-small {
        aspect-ratio: 1 / 1 !important;
    }
}
/* === MOBILE RESPONSIVE STABILIZATION PHASE 1 END === */


/* =========================================================
   Dİ YAPI | Blog Üstü 5'li Video Alanı
   ========================================================= */

.diyapiVideoSec {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(177,149,78,.13), transparent 30%),
        #101722;
    color: #fff;
}

.diyapiVideoSec::before {
    content: "VIDEO";
    position: absolute;
    right: -24px;
    top: 18px;
    font-size: clamp(90px, 15vw, 240px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: .08em;
    color: rgba(255,255,255,.035);
    pointer-events: none;
}

.diyapiVideoHead {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto 42px;
    padding: 0 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.diyapiVideoHead h2 {
    margin: 16px 0 0;
    font-size: clamp(42px, 5.6vw, 76px);
    line-height: .96;
    letter-spacing: -.06em;
    font-weight: 350;
    color: #fff;
}

.diyapiVideoHead p {
    max-width: 360px;
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 15px;
    line-height: 1.7;
}

.diyapiVideoHead__side {
    display: grid;
    justify-items: start;
    gap: 18px;
}

.diyapiVideoAll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid rgba(177,149,78,.74);
    color: #fff;
    background: rgba(177,149,78,.16);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.diyapiVideoAll:hover {
    border-color: #b1954e;
    background: #b1954e;
    color: #101722;
}

.diyapiVideoGrid {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 18px;
}

.diyapiVideoCard {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 1px solid rgba(255,255,255,.12);
    overflow: hidden;
    cursor: pointer;
    background: #0b1019;
}

.diyapiVideoCard.is-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.diyapiVideoCard video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: contrast(1.04) saturate(.95);
    transform: scale(1.01);
    transition: transform .65s cubic-bezier(.22, 1, .36, 1), filter .35s ease;
}

.diyapiVideoCard:hover video {
    transform: scale(1.055);
    filter: contrast(1.06) saturate(1.04);
}

.diyapiVideoShade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 8, 13, .12), rgba(5, 8, 13, .58)),
        linear-gradient(90deg, rgba(177,149,78,.25), transparent 42%);
    transition: opacity .35s ease;
}

.diyapiVideoCard:hover .diyapiVideoShade {
    opacity: .72;
}

.diyapiVideoPlay {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.52);
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    transition: transform .35s ease, background .35s ease;
}

.diyapiVideoCard:hover .diyapiVideoPlay {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(177,149,78,.82);
}

.diyapiVideoPlay span {
    display: block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #fff;
}

.diyapiVideoLabel {
    position: absolute;
    left: 18px;
    bottom: 16px;
    color: rgba(255,255,255,.74);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
}

.diyapiVideoModal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 34px;
    background: rgba(6, 10, 17, .9);
    backdrop-filter: blur(10px);
}

.diyapiVideoModal.is-open {
    display: flex;
}

.diyapiVideoModalInner {
    width: min(1080px, 94vw);
    background: #000;
    box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.diyapiVideoModalInner video {
    display: block;
    width: 100%;
    max-height: 86vh;
    background: #000;
}

.diyapiVideoModalClose {
    position: fixed;
    top: 22px;
    right: 28px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.diyapiVideoSec--archive {
    min-height: 72vh;
    padding-top: clamp(132px, 14vw, 180px);
}

.diyapiVideoHead--archive {
    align-items: flex-end;
}

.diyapiVideoHead--archive h1 {
    margin: 16px 0 0;
    max-width: 780px;
    font-size: clamp(42px, 5.6vw, 76px);
    line-height: .96;
    letter-spacing: -.06em;
    font-weight: 350;
    color: #fff;
}

.diyapiVideoGrid--archive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 260px;
}

.diyapiVideoEmpty {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 20px;
    color: rgba(255,255,255,.72);
    font-size: 16px;
}

@media (max-width: 991px) {
    .diyapiVideoHead {
        align-items: flex-start;
        flex-direction: column;
    }

    .diyapiVideoHead__side {
        width: 100%;
    }

    .diyapiVideoAll {
        width: fit-content;
        max-width: 100%;
    }

    .diyapiVideoGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
        gap: 14px;
    }

    .diyapiVideoGrid--archive {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 240px;
    }

    .diyapiVideoCard.is-featured {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 560px) {
    .diyapiVideoGrid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .diyapiVideoAll {
        width: 100%;
    }

    .diyapiVideoHead--archive h1 {
        font-size: clamp(38px, 15vw, 56px);
        letter-spacing: -.04em;
    }

    .diyapiVideoGrid--archive {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .diyapiVideoCard.is-featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .diyapiVideoPlay {
        width: 64px;
        height: 64px;
    }
}


/* =========================================================
   Dİ YAPI | Blog Detay: Görsel Yok + Başlık Ortalı
   ========================================================= */

/* Blog detay başlık alanı */
body.diyapiBlogDetailPage main h1,
body.diyapiBlogDetailPage main .title-hero h1,
body.diyapiBlogDetailPage main .blog-title h1,
body.diyapiBlogDetailPage main .post-title h1,
body.diyapiBlogDetailPage main article h1 {
    text-align: center !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Tarih / kategori / açıklama gibi üst metinleri de ortala */
body.diyapiBlogDetailPage main .title-hero,
body.diyapiBlogDetailPage main .blog-hero,
body.diyapiBlogDetailPage main .post-hero,
body.diyapiBlogDetailPage main article header,
body.diyapiBlogDetailPage main .blog-meta,
body.diyapiBlogDetailPage main .post-meta {
    text-align: center !important;
}

/* Blog detay içindeki ana görsel / kapak / medya alanlarını kapat */
body.diyapiBlogDetailPage main img,
body.diyapiBlogDetailPage main picture,
body.diyapiBlogDetailPage main figure,
body.diyapiBlogDetailPage main .blog-image,
body.diyapiBlogDetailPage main .post-image,
body.diyapiBlogDetailPage main .blog-cover,
body.diyapiBlogDetailPage main .post-cover,
body.diyapiBlogDetailPage main .featured-image,
body.diyapiBlogDetailPage main .featured-media,
body.diyapiBlogDetailPage main .article-image,
body.diyapiBlogDetailPage main .article-cover,
body.diyapiBlogDetailPage main .detail-image,
body.diyapiBlogDetailPage main .detail-cover,
body.diyapiBlogDetailPage main [class*="cover-image"],
body.diyapiBlogDetailPage main [class*="featured"],
body.diyapiBlogDetailPage main [class*="thumbnail"] {
    display: none !important;
}

/* Eğer görsel background olarak basılıyorsa container boşluk bırakmasın */
body.diyapiBlogDetailPage main .blog-media,
body.diyapiBlogDetailPage main .post-media,
body.diyapiBlogDetailPage main .article-media,
body.diyapiBlogDetailPage main .detail-media,
body.diyapiBlogDetailPage main [class*="image-wrap"],
body.diyapiBlogDetailPage main [class*="media-wrap"] {
    display: none !important;
}

/* Görsel kalkınca içerik yukarı çok boşluklu kalmasın */
body.diyapiBlogDetailPage main {
    padding-bottom: 80px !important;
}

body.diyapiBlogDetailPage main article,
body.diyapiBlogDetailPage main .blog-content,
body.diyapiBlogDetailPage main .post-content,
body.diyapiBlogDetailPage main .article-content,
body.diyapiBlogDetailPage main .content-body {
    max-width: 860px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Mobil başlık dengesi */
@media (max-width: 768px) {
    body.diyapiBlogDetailPage main h1,
    body.diyapiBlogDetailPage main .title-hero h1,
    body.diyapiBlogDetailPage main .blog-title h1,
    body.diyapiBlogDetailPage main .post-title h1,
    body.diyapiBlogDetailPage main article h1 {
        max-width: 100% !important;
        font-size: clamp(30px, 9vw, 44px) !important;
        line-height: 1.08 !important;
    }
}


/* =========================================================
   Dİ YAPI | Blog Detay Geniş Okuma Alanı
   ========================================================= */

/* Blog detay hero/title alanı */
body.diyapiBlogDetailPage main .title-hero,
body.diyapiBlogDetailPage main .blog-hero,
body.diyapiBlogDetailPage main .post-hero,
body.diyapiBlogDetailPage main article header {
    max-width: 980px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    text-align: center !important;
}

/* Başlık ortalı ama biraz daha yatay nefesli */
body.diyapiBlogDetailPage main h1,
body.diyapiBlogDetailPage main .title-hero h1,
body.diyapiBlogDetailPage main article h1 {
    max-width: 960px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    font-size: clamp(34px, 4vw, 54px) !important;
    line-height: 1.14 !important;
    letter-spacing: -0.045em !important;
}

/* Açıklama metni başlık altında dengeli dursun */
body.diyapiBlogDetailPage main .title-hero p,
body.diyapiBlogDetailPage main .blog-hero p,
body.diyapiBlogDetailPage main .post-hero p,
body.diyapiBlogDetailPage main article header p {
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
    color: #6b7280 !important;
}

/* Asıl blog içerik alanı genişletildi */
body.diyapiBlogDetailPage main article,
body.diyapiBlogDetailPage main .blog-content,
body.diyapiBlogDetailPage main .post-content,
body.diyapiBlogDetailPage main .article-content,
body.diyapiBlogDetailPage main .content-body,
body.diyapiBlogDetailPage main .page-content {
    max-width: 1080px !important;
    width: calc(100% - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Paragraflar daha yatay ve profesyonel okuma düzeni */
body.diyapiBlogDetailPage main article p,
body.diyapiBlogDetailPage main .blog-content p,
body.diyapiBlogDetailPage main .post-content p,
body.diyapiBlogDetailPage main .article-content p,
body.diyapiBlogDetailPage main .content-body p,
body.diyapiBlogDetailPage main .page-content p {
    max-width: 100% !important;
    margin: 0 0 24px !important;
    color: #4b5563 !important;
    font-size: 18px !important;
    line-height: 1.95 !important;
    letter-spacing: -0.01em !important;
    text-align: left !important;
}

/* İlk paragraf blog giriş paragrafı gibi biraz daha güçlü */
body.diyapiBlogDetailPage main article p:first-of-type,
body.diyapiBlogDetailPage main .blog-content p:first-of-type,
body.diyapiBlogDetailPage main .post-content p:first-of-type,
body.diyapiBlogDetailPage main .article-content p:first-of-type,
body.diyapiBlogDetailPage main .content-body p:first-of-type,
body.diyapiBlogDetailPage main .page-content p:first-of-type {
    font-size: 20px !important;
    line-height: 1.9 !important;
    color: #374151 !important;
}

/* Blog içi başlıklar */
body.diyapiBlogDetailPage main article h2,
body.diyapiBlogDetailPage main .blog-content h2,
body.diyapiBlogDetailPage main .post-content h2,
body.diyapiBlogDetailPage main .article-content h2,
body.diyapiBlogDetailPage main .content-body h2,
body.diyapiBlogDetailPage main .page-content h2 {
    margin: 54px 0 18px !important;
    font-size: clamp(28px, 3vw, 38px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.04em !important;
    color: #101827 !important;
}

body.diyapiBlogDetailPage main article h3,
body.diyapiBlogDetailPage main .blog-content h3,
body.diyapiBlogDetailPage main .post-content h3,
body.diyapiBlogDetailPage main .article-content h3,
body.diyapiBlogDetailPage main .content-body h3,
body.diyapiBlogDetailPage main .page-content h3 {
    margin: 38px 0 14px !important;
    font-size: 24px !important;
    line-height: 1.25 !important;
    color: #101827 !important;
}

/* Liste varsa blog düzenine uygun olsun */
body.diyapiBlogDetailPage main article ul,
body.diyapiBlogDetailPage main article ol,
body.diyapiBlogDetailPage main .blog-content ul,
body.diyapiBlogDetailPage main .blog-content ol,
body.diyapiBlogDetailPage main .post-content ul,
body.diyapiBlogDetailPage main .post-content ol,
body.diyapiBlogDetailPage main .article-content ul,
body.diyapiBlogDetailPage main .article-content ol,
body.diyapiBlogDetailPage main .content-body ul,
body.diyapiBlogDetailPage main .content-body ol,
body.diyapiBlogDetailPage main .page-content ul,
body.diyapiBlogDetailPage main .page-content ol {
    max-width: 100% !important;
    margin: 0 0 28px 22px !important;
    padding: 0 !important;
    color: #4b5563 !important;
    font-size: 18px !important;
    line-height: 1.9 !important;
}

/* İçerik alanı üst boşluğu daha dengeli */
body.diyapiBlogDetailPage main article,
body.diyapiBlogDetailPage main .blog-content,
body.diyapiBlogDetailPage main .post-content,
body.diyapiBlogDetailPage main .article-content,
body.diyapiBlogDetailPage main .content-body,
body.diyapiBlogDetailPage main .page-content {
    padding-top: 34px !important;
    padding-bottom: 90px !important;
}

/* Büyük ekranda daha premium yatay okuma */
@media (min-width: 1200px) {
    body.diyapiBlogDetailPage main article,
    body.diyapiBlogDetailPage main .blog-content,
    body.diyapiBlogDetailPage main .post-content,
    body.diyapiBlogDetailPage main .article-content,
    body.diyapiBlogDetailPage main .content-body,
    body.diyapiBlogDetailPage main .page-content {
        max-width: 1040px !important;
    }
}

/* Mobil */
@media (max-width: 768px) {
    body.diyapiBlogDetailPage main article,
    body.diyapiBlogDetailPage main .blog-content,
    body.diyapiBlogDetailPage main .post-content,
    body.diyapiBlogDetailPage main .article-content,
    body.diyapiBlogDetailPage main .content-body,
    body.diyapiBlogDetailPage main .page-content {
        width: calc(100% - 32px) !important;
        padding-top: 24px !important;
    }

    body.diyapiBlogDetailPage main article p,
    body.diyapiBlogDetailPage main .blog-content p,
    body.diyapiBlogDetailPage main .post-content p,
    body.diyapiBlogDetailPage main .article-content p,
    body.diyapiBlogDetailPage main .content-body p,
    body.diyapiBlogDetailPage main .page-content p {
        font-size: 16px !important;
        line-height: 1.85 !important;
    }

    body.diyapiBlogDetailPage main article p:first-of-type,
    body.diyapiBlogDetailPage main .blog-content p:first-of-type,
    body.diyapiBlogDetailPage main .post-content p:first-of-type,
    body.diyapiBlogDetailPage main .article-content p:first-of-type,
    body.diyapiBlogDetailPage main .content-body p:first-of-type,
    body.diyapiBlogDetailPage main .page-content p:first-of-type {
        font-size: 17px !important;
    }
}


/* =========================================================
   Dİ YAPI | Blog Detay İçerik Satır Boşluğu Fix
   Panelde yazıldığı gibi frontend'de de satır araları korunur.
   ========================================================= */

body.diyapiBlogDetailPage main article,
body.diyapiBlogDetailPage main .blog-content,
body.diyapiBlogDetailPage main .post-content,
body.diyapiBlogDetailPage main .article-content,
body.diyapiBlogDetailPage main .content-body,
body.diyapiBlogDetailPage main .page-content {
    white-space: pre-line !important;
}

/* Eğer içerik p etiketi içinde basılıyorsa, onun içinde de satır boşlukları korunsun */
body.diyapiBlogDetailPage main article p,
body.diyapiBlogDetailPage main .blog-content p,
body.diyapiBlogDetailPage main .post-content p,
body.diyapiBlogDetailPage main .article-content p,
body.diyapiBlogDetailPage main .content-body p,
body.diyapiBlogDetailPage main .page-content p {
    white-space: pre-line !important;
}

/* Satır araları korununca okuma aralığı daha dengeli olsun */
body.diyapiBlogDetailPage main article,
body.diyapiBlogDetailPage main .blog-content,
body.diyapiBlogDetailPage main .post-content,
body.diyapiBlogDetailPage main .article-content,
body.diyapiBlogDetailPage main .content-body,
body.diyapiBlogDetailPage main .page-content {
    line-height: 1.95 !important;
}

/* İçerik içinde manuel boş satır varsa çok sıkışmasın */
body.diyapiBlogDetailPage main article br,
body.diyapiBlogDetailPage main .blog-content br,
body.diyapiBlogDetailPage main .post-content br,
body.diyapiBlogDetailPage main .article-content br,
body.diyapiBlogDetailPage main .content-body br,
body.diyapiBlogDetailPage main .page-content br {
    display: block !important;
    content: "" !important;
    margin-top: 12px !important;
}

/* === MOBILE HEADER FAILSAFE PHASE 1 START === */
@media (max-width: 1024px) {
    body .lux-header__inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: calc(100% - 32px) !important;
        min-height: 78px !important;
        gap: 16px !important;
        position: relative !important;
    }

    body .lux-header__brand {
        flex: 0 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 64px) !important;
        justify-self: auto !important;
    }

    body .lux-header__brand.has-logo img {
        max-width: min(170px, 46vw) !important;
        max-height: 50px !important;
    }

    body .lux-header__nav,
    body .lux-header__lang,
    body .lux-header__cta {
        display: none !important;
    }

    body .lux-header__actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 0 0 auto !important;
        min-width: 46px !important;
        margin-left: auto !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 10032 !important;
    }

    body .lux-header__mobile-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        min-height: 46px !important;
        padding: 0 !important;
        border: 1px solid #d8c8aa !important;
        background: #ffffff !important;
        color: #111827 !important;
        box-shadow: 0 8px 24px rgba(15, 23, 42, .1) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body .lux-header__mobile-toggle span {
        display: block !important;
        width: 21px !important;
        height: 2px !important;
        flex: 0 0 2px !important;
        background: currentColor !important;
    }
}

@media (min-width: 1025px) {
    body .lux-header__mobile-toggle {
        display: none !important;
    }
}
/* === MOBILE HEADER FAILSAFE PHASE 1 END === */

/* === MOBILE SLIDER OVERLAY FIX 1.2 START === */
@media (max-width: 1024px) {
    body .nova-lineo-slider {
        position: relative !important;
        overflow: hidden !important;
        background: #f7f5f0 !important;
    }

    body .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 32px) !important;
        max-width: 960px !important;
        padding: 18px 0 34px !important;
        overflow: hidden !important;
    }

    body .nova-lineo-slider .pxl-swiper-container {
        position: relative !important;
        height: clamp(430px, 72vh, 560px) !important;
        min-height: 430px !important;
        max-height: 560px !important;
        overflow: hidden !important;
        border: 1px solid #e5e0d6 !important;
        background: #0f172a !important;
    }

    body .nova-lineo-slider .pxl-swiper-wrapper {
        height: 100% !important;
        overflow: visible !important;
    }

    body .nova-lineo-slider .pxl-swiper-slide,
    body .nova-lineo-slider .pxl-item--inner {
        position: relative !important;
        height: 100% !important;
        min-height: 100% !important;
        overflow: hidden !important;
        padding: 0 !important;
    }

    body .nova-lineo-slider .pxl-item--image {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        border: 0 !important;
        overflow: hidden !important;
        background: #0f172a !important;
    }

    body .nova-lineo-slider .item--image {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center center !important;
        transform: none !important;
    }

    body .nova-lineo-slider .pxl-item--image .item--image,
    body .nova-lineo-slider .pxl-item--image .item--image.img-light {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    body .nova-lineo-slider .img-light {
        opacity: 1 !important;
        visibility: visible !important;
    }

    body .nova-lineo-slider .img-dark {
        opacity: 0 !important;
        visibility: hidden !important;
        mix-blend-mode: normal !important;
    }

    body .nova-lineo-slider .pxl-item--image::after {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 1 !important;
        background:
            linear-gradient(90deg, rgba(15, 23, 42, .68) 0%, rgba(15, 23, 42, .24) 58%, rgba(15, 23, 42, .18) 100%),
            linear-gradient(180deg, rgba(15, 23, 42, .04) 0%, rgba(15, 23, 42, .62) 100%) !important;
        pointer-events: none !important;
    }

    body .nova-lineo-slider .pxl-item--content {
        position: absolute !important;
        left: 50% !important;
        right: auto !important;
        bottom: 22px !important;
        top: auto !important;
        z-index: 5 !important;
        width: calc(100% - 36px) !important;
        max-width: 340px !important;
        min-height: 0 !important;
        padding: 18px 20px !important;
        transform: translateX(-50%) !important;
        background: rgba(15, 23, 42, .92) !important;
        color: #ffffff !important;
        border-top: 2px solid #b9975b !important;
        box-shadow: 0 18px 48px rgba(15, 23, 42, .25) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }

    body .nova-lineo-slider .pxl-item--subtitle {
        padding-left: 28px !important;
        margin-bottom: 12px !important;
    }

    body .nova-lineo-slider .pxl-item--subtitle::before {
        width: 18px !important;
    }

    body .nova-lineo-slider .pxl-item--subtitle a {
        font-size: 10px !important;
        line-height: 1.35 !important;
        letter-spacing: .16em !important;
    }

    body .nova-lineo-slider .pxl-item--title a {
        display: block !important;
        font-size: clamp(24px, 6.4vw, 38px) !important;
        line-height: 1.08 !important;
        letter-spacing: 0 !important;
        overflow-wrap: anywhere !important;
    }

    body .nova-lineo-slider .pxl-item--description {
        max-width: none !important;
        margin: 12px 0 0 !important;
        font-size: 14px !important;
        line-height: 1.55 !important;
        color: rgba(255, 255, 255, .78) !important;
    }

    body .nova-lineo-slider .pxl-item--button {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        margin-top: 16px !important;
    }

    body .nova-lineo-slider .item--button {
        max-width: 100% !important;
        gap: 10px !important;
        font-size: 10px !important;
        letter-spacing: .14em !important;
        white-space: normal !important;
    }

    body .nova-lineo-slider .btn-icon {
        width: 34px !important;
        flex: 0 0 34px !important;
    }

    body .nova-lineo-slider .btn-icon .line {
        width: 25px !important;
    }

    body .nova-lineo-slider .wp-arrow {
        position: absolute !important;
        right: 14px !important;
        bottom: 14px !important;
        z-index: 6 !important;
        display: flex !important;
        gap: 8px !important;
        margin: 0 !important;
    }

    body .nova-lineo-slider .pxl-swiper-arrow {
        width: 40px !important;
        height: 40px !important;
        border-color: rgba(11, 22, 40, .62) !important;
        background: rgba(255, 255, 255, .86) !important;
        color: #0B1628 !important;
        backdrop-filter: blur(8px) !important;
    }

    body .nova-lineo-slider .pxl-swiper-arrow::before {
        font-size: 18px !important;
    }

    body .nova-lineo-slider .pxl-swiper-dots {
        position: absolute !important;
        left: 18px !important;
        right: auto !important;
        bottom: 12px !important;
        z-index: 6 !important;
        display: flex !important;
        gap: 7px !important;
        margin: 0 !important;
    }

    body .nova-lineo-slider .pxl-swiper-pagination-bullet {
        width: 22px !important;
        height: 2px !important;
        background: rgba(11, 22, 40, .42) !important;
    }

    body .nova-lineo-slider .pxl-swiper-pagination-bullet-active {
        width: 34px !important;
        background: #0B1628 !important;
    }
}

@media (max-width: 640px) {
    body .nova-lineo-slider .pxl-carousel-inner {
        width: calc(100% - 24px) !important;
        padding: 14px 0 28px !important;
    }

    body .nova-lineo-slider .pxl-swiper-container {
        height: clamp(430px, 78vh, 560px) !important;
        min-height: 430px !important;
        max-height: 560px !important;
    }

    body .nova-lineo-slider .pxl-item--content {
        left: 50% !important;
        bottom: 58px !important;
        width: calc(100% - 32px) !important;
        max-width: 320px !important;
        padding: 16px 18px !important;
    }

    body .nova-lineo-slider .pxl-item--description {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    body .nova-lineo-slider .wp-arrow {
        right: 12px !important;
        bottom: 12px !important;
    }

    body .nova-lineo-slider .pxl-swiper-dots {
        left: 14px !important;
        bottom: 26px !important;
    }
}

@media (max-width: 430px) {
    body .nova-lineo-slider .pxl-swiper-container {
        height: clamp(460px, 78vh, 540px) !important;
    }

    body .nova-lineo-slider .pxl-item--content {
        bottom: 66px !important;
    }
}
/* === MOBILE SLIDER OVERLAY FIX 1.2 END === */

/* === MOBILE MENU VISIBILITY FIX 1.1 START === */
@media (max-width: 1024px) {
    body .lux-header {
        z-index: 10000 !important;
        isolation: isolate;
    }

    body.mobileMenuOpen::after {
        content: "" !important;
        position: fixed !important;
        inset: 0 !important;
        z-index: 9990 !important;
        background: rgba(15, 23, 42, .58) !important;
        backdrop-filter: blur(4px);
        pointer-events: auto !important;
    }

    body .lux-header__mobile {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: min(420px, calc(100vw - 24px)) !important;
        height: 100dvh !important;
        max-width: calc(100vw - 24px) !important;
        max-height: 100dvh !important;
        padding: 22px 20px calc(24px + env(safe-area-inset-bottom)) !important;
        flex-direction: column !important;
        gap: 20px !important;
        overflow-y: auto !important;
        background: #ffffff !important;
        color: #111827 !important;
        border-left: 1px solid rgba(185, 151, 91, .28) !important;
        box-shadow: -30px 0 80px rgba(15, 23, 42, .28) !important;
        z-index: 10000 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateX(104%) !important;
        transition: transform .28s cubic-bezier(.22, 1, .36, 1), opacity .2s ease, visibility .2s ease !important;
    }

    body .lux-header.is-open .lux-header__mobile,
    body .lux-header__mobile.is-open,
    body .lux-header__mobile.is-active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    body .lux-header__mobile-head {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
        flex: 0 0 auto !important;
        min-height: 46px !important;
    }

    body .lux-header__mobile-head button {
        position: relative !important;
        z-index: 10001 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 44px !important;
        width: 44px !important;
        height: 44px !important;
        color: #111827 !important;
        background: #ffffff !important;
    }

    body .lux-header__mobile-links,
    body .lux-header__mobile-bottom,
    body .lux-header__mobile-lang {
        visibility: visible !important;
        opacity: 1 !important;
    }

    body .lux-header__mobile-links {
        display: grid !important;
        gap: 2px !important;
    }

    body .lux-header__mobile a {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #111827 !important;
        background: transparent !important;
    }

    body .lux-header__mobile-lang a {
        justify-content: center !important;
        background: #ffffff !important;
    }

    body .lux-header__mobile a.lux-header__mobile-cta {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 50px !important;
        padding: 0 18px !important;
        border: 1px solid #0f172a !important;
        background: #0f172a !important;
        color: #ffffff !important;
        text-align: center !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        line-height: 1.25 !important;
    }

    body.mobileMenuOpen .lux-header__mobile-toggle {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    body.mobileMenuOpen .quickQuoteWidget {
        z-index: 9980 !important;
        pointer-events: none !important;
    }
}
/* === MOBILE MENU VISIBILITY FIX 1.1 END === */

/* === DESKTOP SLIDER ARROWS VISIBILITY FIX START === */
@media (min-width: 1025px) {
    body .nova-lineo-slider .wp-arrow {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 50 !important;
    }

    body .nova-lineo-slider .pxl-swiper-arrow {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 51 !important;
        border-color: rgba(11, 22, 40, .72) !important;
        background: rgba(255, 255, 255, .9) !important;
        color: #0B1628 !important;
        cursor: pointer !important;
    }

    body .nova-lineo-slider .pxl-swiper-arrow:hover {
        border-color: #0B1628 !important;
        background: #0B1628 !important;
        color: #ffffff !important;
    }

    body .nova-lineo-slider .pxl-swiper-arrow.swiper-button-disabled {
        opacity: .62 !important;
    }
}
/* === DESKTOP SLIDER ARROWS VISIBILITY FIX END === */

/* === PROJECT DETAIL HERO GALLERY START === */
.project-detail-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(120px, 12vw, 168px) clamp(18px, 5vw, 72px) clamp(58px, 7vw, 96px);
    background:
        radial-gradient(circle at 12% 18%, rgba(185, 151, 91, .16), transparent 34%),
        linear-gradient(135deg, #10151f 0%, #1b2230 46%, #f4f0e8 46%, #f4f0e8 100%);
}

.project-detail-hero__inner {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
}

.project-detail-hero__content {
    min-width: 0;
    color: #ffffff;
}

.project-detail-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: #c7a76a;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.project-detail-hero__content h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(2.35rem, 5vw, 5.2rem);
    line-height: .98;
    font-weight: 500;
    letter-spacing: 0;
}

.project-detail-hero__content p {
    max-width: 580px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    line-height: 1.75;
}

.project-detail-hero__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 34px 0 0;
}

.project-detail-hero__meta div {
    min-width: 0;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
}

.project-detail-hero__meta dt {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, .58);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.project-detail-hero__meta dd {
    margin: 0;
    color: #ffffff;
    font-size: .96rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.project-detail-gallery {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(128px, 170px);
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(185, 151, 91, .22);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 30px 80px rgba(15, 23, 42, .22);
    backdrop-filter: blur(14px);
}

.project-detail-gallery__main {
    position: relative;
    min-width: 0;
    height: clamp(420px, 42vw, 620px);
    margin: 0;
    overflow: hidden;
    background: #111827;
}

.project-detail-gallery__main img,
.project-detail-gallery__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-detail-gallery__thumbs {
    min-width: 0;
    display: grid;
    grid-auto-rows: 1fr;
    gap: 12px;
    max-height: clamp(420px, 42vw, 620px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.project-detail-gallery__thumb {
    position: relative;
    min-width: 0;
    min-height: 112px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .14);
    background: #111827;
    cursor: pointer;
}

.project-detail-gallery__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    pointer-events: none;
    transition: border-color .2s ease;
}

.project-detail-gallery__thumb.is-active::after,
.project-detail-gallery__thumb:focus-visible::after {
    border-color: #b9975b;
}

@media (max-width: 1024px) {
    .project-detail-hero {
        padding: 112px 18px 54px;
        background: linear-gradient(180deg, #10151f 0%, #1b2230 58%, #f4f0e8 58%, #f4f0e8 100%);
    }

    .project-detail-hero__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .project-detail-hero__content h1 {
        max-width: 760px;
        font-size: clamp(2.3rem, 7vw, 4rem);
    }

    .project-detail-gallery {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 12px;
    }

    .project-detail-gallery__main {
        height: clamp(320px, 56vw, 480px);
    }

    .project-detail-gallery__thumbs {
        display: flex;
        gap: 10px;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
    }

    .project-detail-gallery__thumb {
        flex: 0 0 132px;
        height: 86px;
        min-height: 86px;
    }
}

@media (max-width: 560px) {
    .project-detail-hero {
        padding: 98px 14px 42px;
    }

    .project-detail-hero__eyebrow {
        font-size: .64rem;
        line-height: 1.5;
    }

    .project-detail-hero__content h1 {
        font-size: clamp(2rem, 12vw, 3.1rem);
        line-height: 1.03;
    }

    .project-detail-hero__content p {
        font-size: .95rem;
        line-height: 1.62;
    }

    .project-detail-hero__meta {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 24px;
    }

    .project-detail-hero__meta div {
        padding: 12px;
    }

    .project-detail-hero__meta dd {
        font-size: .86rem;
    }

    .project-detail-gallery {
        padding: 10px;
        gap: 10px;
    }

    .project-detail-gallery__main {
        height: clamp(250px, 70vw, 340px);
    }

    .project-detail-gallery__thumb {
        flex-basis: 112px;
        height: 74px;
        min-height: 74px;
    }
}
/* === PROJECT DETAIL HERO GALLERY END === */

/* === PROJECT DETAIL PREMIUM SLIDER GALLERY START === */
.project-gallery {
    min-width: 0;
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(185, 151, 91, .24);
    background: rgba(255, 255, 255, .74);
    box-shadow: 0 34px 90px rgba(15, 23, 42, .24);
    backdrop-filter: blur(14px);
}

.project-gallery__stage {
    position: relative;
    min-width: 0;
    height: clamp(390px, 38vw, 560px);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(17, 24, 39, .98), rgba(31, 41, 55, .88)),
        radial-gradient(circle at 50% 28%, rgba(185, 151, 91, .22), transparent 36%);
    border: 1px solid rgba(185, 151, 91, .28);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    perspective: 1200px;
}

.project-gallery__stage::before {
    content: "";
    position: absolute;
    inset: 8% 8% auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185,151,91,.48), transparent);
    pointer-events: none;
}

.project-gallery__stage::after {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: 7%;
    height: 34px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,.44), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
}

.project-gallery__slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.project-gallery__slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72%;
    height: 84%;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .22);
    background: #111827;
    opacity: 0;
    pointer-events: none;
    cursor: zoom-in;
    transform: translate(-50%, -50%) scale(.62);
    transition: transform .48s cubic-bezier(.22, 1, .36, 1), opacity .32s ease, filter .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.project-gallery__slide.is-active {
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    border-color: rgba(255, 255, 255, .5);
    box-shadow: 0 28px 70px rgba(2, 6, 23, .48), 0 0 0 1px rgba(185,151,91,.22);
    filter: none;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
}

.project-gallery__slide.is-prev {
    z-index: 3;
    opacity: .58;
    pointer-events: auto;
    filter: saturate(.82) brightness(.78);
    transform: translate(-107%, -50%) scale(.76) rotateY(9deg);
}

.project-gallery__slide.is-next {
    z-index: 3;
    opacity: .58;
    pointer-events: auto;
    filter: saturate(.82) brightness(.78);
    transform: translate(7%, -50%) scale(.76) rotateY(-9deg);
}

.project-gallery__slide.is-prev::after,
.project-gallery__slide.is-next::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 18, .22);
}

.project-gallery__slide img,
.project-gallery__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-gallery__nav {
    position: absolute;
    top: 50%;
    z-index: 9;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(185, 151, 91, .45);
    background: rgba(8, 13, 18, .42);
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background .2s ease, border-color .2s ease;
}

.project-gallery__nav:hover,
.project-gallery__nav:focus-visible {
    border-color: #b9975b;
    background: rgba(185, 151, 91, .18);
}

.project-gallery__nav--prev {
    left: 14px;
}

.project-gallery__nav--next {
    right: 14px;
}

.project-gallery__counter {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 9;
    min-width: 78px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(8, 13, 18, .68);
    color: #ffffff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-align: center;
    backdrop-filter: blur(10px);
}

.project-gallery__thumbs {
    min-width: 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 5px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.project-gallery__thumb {
    position: relative;
    flex: 0 0 82px;
    height: 54px;
    min-width: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .12);
    background: #111827;
    cursor: pointer;
}

.project-gallery__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    pointer-events: none;
    transition: border-color .18s ease, background .18s ease;
}

.project-gallery__thumb.is-active::after,
.project-gallery__thumb:focus-visible::after {
    border-color: #b9975b;
}

.project-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: grid;
    place-items: center;
    padding: clamp(16px, 4vw, 48px);
    background: rgba(5, 10, 18, .92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.project-gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.projectGalleryLightboxOpen {
    overflow: hidden;
}

.project-gallery-lightbox__figure {
    position: relative;
    width: min(1180px, 100%);
    max-height: calc(100dvh - 110px);
    margin: 0;
    display: grid;
    gap: 12px;
}

.project-gallery-lightbox__figure img {
    display: block;
    width: 100%;
    max-height: calc(100dvh - 150px);
    object-fit: contain;
}

.project-gallery-lightbox__figure figcaption {
    min-height: 20px;
    color: rgba(255, 255, 255, .74);
    font-size: .92rem;
    text-align: center;
}

.project-gallery-lightbox__close,
.project-gallery-lightbox__nav {
    position: fixed;
    z-index: 12002;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(15, 23, 42, .62);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.project-gallery-lightbox__close {
    top: 20px;
    right: 20px;
    width: 46px;
    height: 46px;
    font-size: 2rem;
    line-height: 1;
}

.project-gallery-lightbox__nav {
    top: 50%;
    width: 52px;
    height: 52px;
    font-size: 2.4rem;
    transform: translateY(-50%);
}

.project-gallery-lightbox__nav--prev {
    left: 22px;
}

.project-gallery-lightbox__nav--next {
    right: 22px;
}

.project-gallery-lightbox__counter {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 12002;
    min-width: 88px;
    padding: 9px 13px;
    border: 1px solid rgba(185, 151, 91, .42);
    background: rgba(15, 23, 42, .7);
    color: #ffffff;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-align: center;
    transform: translateX(-50%);
}

body.projectGalleryLightboxOpen .quickQuoteWidget {
    z-index: 9000 !important;
    pointer-events: none;
}

@media (min-width: 1025px) {
    .project-gallery__thumb {
        flex-basis: 92px;
        height: 58px;
    }
}

@media (max-width: 1024px) {
    .project-gallery {
        width: 100%;
        padding: 12px;
    }

    .project-gallery__stage {
        height: clamp(320px, 56vw, 480px);
    }

    .project-gallery__slide {
        width: 76%;
        height: 84%;
    }

    .project-gallery__slide.is-prev {
        transform: translate(-102%, -50%) scale(.72) rotateY(7deg);
    }

    .project-gallery__slide.is-next {
        transform: translate(2%, -50%) scale(.72) rotateY(-7deg);
    }

    .project-gallery__thumb {
        flex-basis: 88px;
        height: 60px;
    }
}

@media (max-width: 560px) {
    .project-gallery {
        padding: 10px;
        gap: 10px;
    }

    .project-gallery__stage {
        height: clamp(250px, 70vw, 340px);
    }

    .project-gallery__slide {
        width: calc(100% - 28px);
        height: calc(100% - 26px);
    }

    .project-gallery__slide.is-active {
        transform: translate(-50%, -50%) scale(1);
    }

    .project-gallery__slide.is-prev,
    .project-gallery__slide.is-next {
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -50%) scale(.92);
    }

    .project-gallery__nav {
        width: 38px;
        height: 38px;
        font-size: 1.75rem;
    }

    .project-gallery__nav--prev {
        left: 10px;
    }

    .project-gallery__nav--next {
        right: 10px;
    }

    .project-gallery__counter {
        right: 10px;
        bottom: 10px;
        min-width: 70px;
        padding: 7px 10px;
        font-size: .66rem;
    }

    .project-gallery__thumb {
        flex-basis: 76px;
        height: 52px;
    }

    .project-gallery-lightbox {
        padding: 14px;
    }

    .project-gallery-lightbox__figure {
        max-height: calc(100dvh - 96px);
    }

    .project-gallery-lightbox__figure img {
        max-height: calc(100dvh - 138px);
    }

    .project-gallery-lightbox__close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }

    .project-gallery-lightbox__nav {
        width: 42px;
        height: 42px;
        font-size: 2rem;
    }

    .project-gallery-lightbox__nav--prev {
        left: 10px;
    }

    .project-gallery-lightbox__nav--next {
        right: 10px;
    }
}
/* === PROJECT DETAIL PREMIUM SLIDER GALLERY END === */

/* === PROJECT VIDEO GALLERY START === */
.project-video-gallery {
    width: min(1180px, calc(100% - 36px));
    margin-left: auto;
    margin-right: auto;
}

.project-video-gallery__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.project-video-gallery__head span {
    color: #8b6d3d;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.project-video-gallery__head h2 {
    margin: 8px 0 0;
    color: #111827;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    font-weight: 500;
}

.project-video-gallery__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: 18px;
    align-items: start;
}

.project-video-gallery__layout--single {
    grid-template-columns: 1fr;
}

.project-video-gallery__players {
    min-width: 0;
    border: 1px solid rgba(185,151,91,.22);
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15,23,42,.1);
}

.project-video-gallery__player {
    display: none;
}

.project-video-gallery__player.is-active {
    display: block;
}

.project-video-gallery__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0f172a;
}

.project-video-gallery__frame iframe,
.project-video-gallery__frame video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.project-video-gallery__cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: linear-gradient(135deg, #111827, #2b2419);
    color: #ffffff;
    cursor: pointer;
}

.project-video-gallery__cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-video-gallery__cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,.08), rgba(15,23,42,.58));
}

.project-video-gallery__cover span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255,255,255,.58);
    border-radius: 999px;
    background: rgba(15,23,42,.42);
    box-shadow: 0 18px 46px rgba(0,0,0,.24);
    backdrop-filter: blur(8px);
}

.project-video-gallery__cover span::before {
    content: "";
    margin-left: 5px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #ffffff;
}

.project-video-gallery__frame.is-playing .project-video-gallery__cover {
    display: none;
}

.project-video-gallery__thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #2b2419);
    color: inherit;
    font-size: inherit;
    letter-spacing: 0;
    text-transform: none;
}

.project-video-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-video-gallery__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(15,23,42,.52));
}

.project-video-gallery__caption {
    padding: 18px 20px 20px;
}

.project-video-gallery__caption h3 {
    margin: 0;
    color: #111827;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 600;
}

.project-video-gallery__caption p {
    margin: 9px 0 0;
    color: #606875;
    line-height: 1.65;
}

.project-video-gallery__list {
    min-width: 0;
    display: grid;
    gap: 10px;
}

.project-video-gallery__card {
    display: grid;
    gap: 6px;
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(15,23,42,.1);
    background: #ffffff;
    color: #111827;
    text-align: left;
    cursor: pointer;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.project-video-gallery__card:hover,
.project-video-gallery__card.is-active {
    border-color: rgba(185,151,91,.55);
    box-shadow: 0 14px 34px rgba(15,23,42,.08);
    transform: translateY(-1px);
}

.project-video-gallery__card span {
    color: #8b6d3d;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.project-video-gallery__card strong {
    font-size: .98rem;
    line-height: 1.35;
}

.project-video-gallery__card small {
    display: -webkit-box;
    overflow: hidden;
    color: #6b7280;
    line-height: 1.5;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 900px) {
    .project-video-gallery {
        width: calc(100% - 28px);
    }

    .project-video-gallery__layout {
        grid-template-columns: 1fr;
    }

    .project-video-gallery__list {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .project-video-gallery__card {
        flex: 0 0 min(280px, 82vw);
    }
}

@media (max-width: 560px) {
    .project-video-gallery {
        width: calc(100% - 24px);
    }

    .project-video-gallery__head {
        display: block;
    }

    .project-video-gallery__caption {
        padding: 15px 16px 17px;
    }
}
/* === PROJECT VIDEO GALLERY END === */

/* Dİ YAPI | Project Detail Rich Text */
.diyapi-project-richtext {
  max-width: 920px;
  color: #536173;
}

.diyapi-project-richtext__title {
  margin: 34px 0 10px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #9a7635;
}

.diyapi-project-richtext__title:first-child {
  margin-top: 0;
}

.diyapi-project-richtext__paragraph {
  margin: 0 0 20px;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 2;
  font-weight: 400;
  color: #536173;
}

.diyapi-project-richtext__paragraph:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .diyapi-project-richtext__title {
    margin-top: 26px;
    font-size: 12px;
    letter-spacing: .13em;
  }

  .diyapi-project-richtext__paragraph {
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 17px;
  }
}

/* Dİ YAPI | Project Detail Description Formatter */
.diyapi-project-description-formatted {
  max-width: 940px;
}

.diyapi-project-description-formatted .diyapi-project-richtext {
  max-width: 940px;
}

.diyapi-project-richtext__title {
  margin: 38px 0 12px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9a7635;
}

.diyapi-project-richtext__title:first-child {
  margin-top: 0;
}

.diyapi-project-richtext__paragraph {
  margin: 0 0 22px;
  font-size: clamp(16px, 1.03vw, 18px);
  line-height: 2.05;
  font-weight: 400;
  color: #536173;
}

.diyapi-project-richtext__paragraph:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .diyapi-project-richtext__title {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: .14em;
  }

  .diyapi-project-richtext__paragraph {
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 18px;
  }
}



/* diyapi-slider-pagination-lines-hide-v6
   Ana slider sağ alt okların solundaki gri pagination/progress çizgilerini kaldırır.
   Ok karelerine ve ok ikonlarına dokunmaz. */
.nova-lineo-slider .pxl-swiper-dots,
.nova-lineo-slider .pxl-swiper-pagination,
.nova-lineo-slider .pxl-swiper-pagination-bullets,
.nova-lineo-slider .swiper-pagination,
.nova-lineo-slider .swiper-pagination-bullets,
.nova-lineo-slider .swiper-pagination-custom,
.nova-lineo-slider .swiper-pagination-fraction,
.nova-lineo-slider .swiper-pagination-progressbar,
.nova-lineo-slider [class*="pagination"],
.nova-lineo-slider [class*="bullets"],
.nova-lineo-slider [class*="dots"] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
}

/* Sadece ana slider içinde, okların hemen solunda çizgi gibi görünen bullet span'ları da kapat */
.nova-lineo-slider .swiper-pagination-bullet,
.nova-lineo-slider .pxl-swiper-pagination-bullet,
.nova-lineo-slider .pxl-swiper-dots span,
.nova-lineo-slider .swiper-pagination span {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
}
