/* =====================================================
   IŞIKLI MİMARLIK — KURUMSAL (navy corporate) THEME
   Logo color: lacivert / deep navy
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; }

:root {
    --c-white:    #ffffff;
    --c-primary:  #1a2a3e;   /* deep navy — primary text */
    --c-eyebrow:  #6c7d92;   /* steel blue-gray — eyebrow / meta */
    --c-accent:   #1a3a5c;   /* lacivert — Işıklı corporate */
    --c-accent-2: #2d5a8c;   /* lighter navy — link hover */
    --c-muted:    #8a96a6;
    --c-footer:   #f3f5f8;   /* very light blue-gray */
    --c-near:     #fafbfc;   /* discover bg */
    --ease:       cubic-bezier(.65,.05,.36,1);
    --ease-smooth: cubic-bezier(.22,.61,.36,1);
    --spring: linear(0,.006,.025 2.8%,.101 6.1%,.539 18.9%,.721 25.3%,.849 31.5%,.937 38.1%,.968 41.8%,.991 45.7%,1.006 50.1%,1.015 55%,1.017 63.9%,1.001);
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", system-ui, -apple-system, sans-serif;
    background: var(--c-white);
    color: var(--c-primary);
    line-height: 1.5;
    overflow-x: clip;   /* 'clip' keeps position:sticky working (unlike 'hidden') */
}
body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 500; }
p   { margin: 0; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; padding: 0; }
ul  { list-style: none; padding: 0; margin: 0; }

/* =====================================================
   INTRO LOADER (logo_banner_animation)
   ===================================================== */
.logo_banner_animation {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #fff;
    overflow: hidden;
    pointer-events: all;
}
.logo_banner_animation.done {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility 0s .3s;
}
.lg_bgcut {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 267px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(.1);
    opacity: 0;
    animation: lgBgAnim 3s .5s var(--ease) forwards;
}
.lg_bgcut img { width: 100%; height: auto; }
@keyframes lgBgAnim {
    0%   { transform: scale(.1); opacity: 0; }
    15%  { opacity: 1; }
    60%  { transform: scale(6); opacity: 1; }
    100% { transform: scale(50); opacity: 0; }
}
.logo_anim {
    position: absolute;
    left: 50%; top: 50%;
    width: 164px; height: 164px;
    transform: translate(-50%,-50%) scale(.3);
    opacity: 0;
    animation: logoAnim 2s .5s var(--ease) forwards;
}
.logo_anim img { width: 100%; height: 100%; object-fit: contain; }
@keyframes logoAnim {
    0%   { transform: translate(-50%,-50%) scale(.3); opacity: 0; }
    15%  { transform: translate(-50%,-50%) scale(1);   opacity: 1; }
    55%  { transform: translate(-50%,-50%) scale(1);   opacity: 1; }
    80%  { transform: translate(-50%,-50%) scale(7.2); opacity: 0; }
    100% { transform: translate(-50%,-50%) scale(7.2); opacity: 0; }
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    padding: 4px 100px;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    box-shadow: 0 1.2px 0 0 rgba(167,157,150,.15);
    transform: translateY(-200px);
    opacity: 0;
    transition: padding .3s ease;
}
.header.intro-in {
    animation: headerIn .7s .3s var(--ease-smooth) forwards;
}
@keyframes headerIn {
    to { transform: translateY(0); opacity: 1; }
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}
.brand-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.primary-menu {
    display: flex;
    gap: 42px;
    margin: 0 auto;
}
.primary-menu > li { position: relative; padding: 20px 0; display: flex; align-items: center; }
.primary-menu > li > a.nav-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.9px;
    text-transform: uppercase;
    color: var(--c-primary);
    position: relative;
    padding: 6px 0;
    transition: color .3s ease;
    white-space: nowrap;
}
.primary-menu > li > a.nav-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1.5px;
    background: var(--c-accent-2);
    transition: width .4s var(--ease);
}
.primary-menu > li:hover > a.nav-title { color: var(--c-accent-2); }
.primary-menu > li:hover > a.nav-title::after { width: 100%; }

/* Projects dropdown — same look as nav-title, button instead of anchor */
.primary-menu > li.has-dropdown > .nav-title--dropdown {
    background: none;
    border: 0;
    padding: 6px 0;
    margin: 0;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.9px;
    text-transform: uppercase;
    color: var(--c-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: color .3s ease;
}
.primary-menu > li.has-dropdown > .nav-title--dropdown::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1.5px;
    background: var(--c-accent-2);
    transition: width .4s var(--ease);
}
.primary-menu > li.has-dropdown:hover > .nav-title--dropdown,
.primary-menu > li.has-dropdown:focus-within > .nav-title--dropdown { color: var(--c-accent-2); }
.primary-menu > li.has-dropdown:hover > .nav-title--dropdown::after,
.primary-menu > li.has-dropdown:focus-within > .nav-title--dropdown::after { width: 100%; }
.nav-caret { font-size: 0.7em; transition: transform .2s var(--ease); display: inline-block; }
.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(26, 42, 62, 0.14);
    border-top: 2px solid var(--c-accent, #1a3a5c);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .15s var(--ease), transform .15s var(--ease), visibility 0s .15s;
    z-index: 20;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .15s var(--ease), transform .15s var(--ease);
}
.nav-dropdown li { padding: 0; border: 0; }
.nav-dropdown a {
    display: block;
    padding: 12px 22px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-primary);
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
    white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--c-near, #fcfcfc); color: var(--c-accent, #1a3a5c); }

/* Mega menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: -32px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(15px);
    padding: 40px 48px;
    display: flex;
    gap: 60px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .35s var(--ease);
    border-top: 1px solid rgba(167,157,150,.15);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,.1);
}
.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-col h6 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: var(--c-eyebrow);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.mega-col h6.mt { margin-top: 22px; }
.mega-col a {
    display: block;
    padding: 7px 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--c-primary);
    transition: color .25s, transform .3s var(--ease);
    white-space: nowrap;
}
.mega-col a:hover { color: var(--c-accent-2); transform: translateX(4px); }

/* Right actions */
.right-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* Language switcher (header dropdown) */
.lang-switcher {
    position: relative;
    font-size: 13px;
    line-height: 1;
}
.lang-switcher > summary {
    list-style: none;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid rgba(55,53,52,.2);
    border-radius: 999px;
    color: var(--corporate-text, #373534);
    font-weight: 500;
    user-select: none;
}
.lang-switcher > summary::-webkit-details-marker { display: none; }
.lang-switcher > summary::after {
    content: '▾';
    margin-left: 6px;
    font-size: 10px;
    opacity: 0.6;
}
.lang-switcher__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(55,53,52,.12);
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    min-width: 160px;
    z-index: 50;
}
.lang-switcher__menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    text-decoration: none;
    color: var(--corporate-text, #373534);
    font-size: 13px;
}
.lang-switcher__menu li a:hover { background: rgba(0,0,0,0.04); }
.lang-switcher__menu li a.is-active {
    color: var(--corporate-accent, #1f3a5f);
    font-weight: 600;
}
.lang-switcher__code {
    display: inline-block;
    min-width: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.lang-switcher__name { color: rgba(55,53,52,0.75); }
[dir="rtl"] .lang-switcher__menu { right: auto; left: 0; }

/* Hero slideshow (Faz 2.1) */
.hero-slideshow { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.hero-slideshow .hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 700ms ease-in-out;
  pointer-events: none;
}
.hero-slideshow .hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slideshow .hero-slide .hero-image-wrap {
  /* Reset the parallax inset/top from the standalone .hero-image-wrap rule —
     slideshow slides fill their container exactly, no parallax overhang. */
  position: absolute; inset: 0; top: 0;
  width: 100%; height: 100%;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
/* Responsive viewport switch — admin marks each slide is_visible_desktop /
   is_visible_mobile; we render BOTH cropped variants and let CSS pick. This
   makes chrome-resize and real-device behave the same way. */
@media (min-width: 1025px) {
  .hero-slide.hero-slide--hide-desktop { display: none; }
  .hero-slideshow .hero-image-wrap--mobile { display: none; }
}
@media (max-width: 1024px) {
  .hero-slide.hero-slide--hide-mobile { display: none; }
  .hero-slideshow .hero-image-wrap--desktop { display: none; }
}
.hero-slideshow .hero-slide video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.action-btn {
    margin: 0;
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(55,53,52,.2);
    transition: border-color .3s, background .3s;
    cursor: pointer;
}
.action-btn:hover { border-color: var(--c-accent); background: rgba(207,167,109,.1); }
.action-btn img { width: 20px; height: 20px; }

.lang-dropdown { position: relative; }
.dropdown-content {
    position: absolute;
    top: 52px;
    right: 0;
    background: #fff;
    min-width: 200px;
    padding: 22px 22px 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .3s var(--ease);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,.12);
}
.lang-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-content h6 {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--c-eyebrow);
    margin-bottom: 14px;
    text-transform: uppercase;
}
.dropdown-content a {
    display: block;
    padding: 7px 0;
    font-size: 14px;
    color: var(--c-primary);
    transition: color .2s;
}
.dropdown-content a:hover { color: var(--c-accent-2); }

.book-ticket {
    padding: 14px 26px;
    background: var(--c-accent);
    border: 1px solid var(--c-accent);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #fff;
    transition: background .3s, color .3s, transform .3s var(--ease);
    margin-left: 20px;
}
.book-ticket:hover {
    background: transparent;
    color: var(--c-accent);
    transform: translateY(-2px);
}

.hamburger {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(55,53,52,.2);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}
.hamburger span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--c-primary);
    transition: .3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* =====================================================
   MOBILE SIDENAV
   ===================================================== */
.sidenav-overlay {
    position: fixed;
    top: 0; right: 0;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background: #fff;
    /* Sit above .header (z:9999); the close affordance and language switcher
       inside the panel must remain reachable when the panel is open. */
    z-index: 10000;
    transform: translateX(100%);
    transition: transform .55s var(--ease-smooth);
    overflow-y: auto;
    padding: 110px 40px 40px;
}
.sidenav-overlay.open { transform: translateX(0); }
.sidenav-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    display: block;
    z-index: 2;
}
.sidenav-close::before,
.sidenav-close::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 28px; height: 3px;
    background: #1a2a3e;
    transform-origin: center;
    transition: background .2s ease;
}
.sidenav-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.sidenav-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.sidenav-close:hover::before,
.sidenav-close:hover::after { background: #2d5a8c; }
/* Hide the inner spans we used to render the bars; ::before/::after carry
   the visuals now. Markup left intact for any old browser fallback. */
.sidenav-close span { display: none; }
.sidenav-menu > li { border-bottom: 1px solid rgba(167,157,150,.25); }
.sidenav-group { padding: 18px 0 12px; }
.sidenav-group__label {
    display: block;
    color: var(--c-eyebrow, #6c7d92);
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.sidenav-group__link {
    display: block;
    padding: 8px 0;
    color: var(--c-primary, #1a2a3e);
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
}
.sidenav-group__link:hover { color: var(--c-accent-2, #2d5a8c); }
.sidenav-menu > li > a.has-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--c-primary);
}
.sidenav-menu .arrow {
    width: 10px; height: 10px;
    border-right: 1.5px solid var(--c-primary);
    border-bottom: 1.5px solid var(--c-primary);
    transform: rotate(-45deg);
    transition: transform .3s;
}
.sidenav-menu > li.open .arrow { transform: rotate(45deg); }
.sidenav-menu .sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease);
}
.sidenav-menu > li.open .sub { max-height: 900px; padding-bottom: 18px; }
.sidenav-menu .sub h6 {
    padding: 16px 0 6px;
    color: var(--c-eyebrow);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.sidenav-menu .sub a {
    display: block;
    padding: 8px 0;
    color: var(--c-primary);
    font-size: 14px;
}
.sidenav-lang {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--c-eyebrow);
    position: relative;
}
.sidenav-lang img { width: 22px; height: 22px; }
.sidenav-lang .lang-menu {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #fff;
    padding: 14px;
    min-width: 180px;
    box-shadow: 0 -8px 20px rgba(0,0,0,.1);
}
.sidenav-lang:hover .lang-menu { display: block; }
.sidenav-lang .lang-menu a { display: block; padding: 6px 0; color: var(--c-primary); }

/* =====================================================
   HERO — PIN SCROLLER with SVG letter-mask reveal
   --p1 drives phase 1 (video fade → gray BK text visible)
   --p2 drives phase 2 (mask zooms → showcase reveals through letters)
   ===================================================== */
.main_banner_topbar {
    position: relative;
    height: 300vh;      /* 200vh of pinned scroll distance */
    background: #fff;
}
.ins_main_banner_topbar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: #fff;
    --p1: 0;
    --p2: 0;
}

/* ---------- z:1 — VIDEO LAYER ---------- */
.hm_video_wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    /* fade out in the first half of phase 1 (matches original 0.5s tween) */
    opacity: max(0, calc(1 - var(--p1) * 2));
}
.hm_video_wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.hm_video_wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.45) 100%);
}

/* ---------- GRAY BACKING (child of BK_img_wrapper) ----------
   Sits BEHIND the SVG mask image but inside the wrapper, so it
   only occupies the wrapper's (scaled) area. In phase 1 fully
   opaque → letter holes show gray text. In phase 2 fades to 0
   → letter holes show showcase images instead.
*/
.bk-gray-bg {
    position: absolute;
    inset: 0;
    background: #929292;
    opacity: calc(1 - var(--p2));
    z-index: 1;
    pointer-events: none;
}

/* ---------- z:5 — HERO TEXT ---------- */
.banner-body {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}
.video_head {
    position: absolute;
    bottom: 200px;
    left: 0; right: 0;
    text-align: center;
    padding: 0 20px;
    /* Phase 1: shrink to 0.7 + rise 50vh (matches original tlblur4).
       Phase 2: fade out (lines gone entirely by end of phase 2). */
    transform: scale(calc(1 - var(--p1) * .3)) translateY(calc(-50vh * var(--p1)));
    transform-origin: center;
    opacity: max(0, calc(1 - var(--p2) * 2));
}
.hm_line_wrp {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hm_line_wrp .line {
    font-family: "Poppins", sans-serif;
    font-size: 48px;
    line-height: 1.25;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 0 15px rgba(0,0,0,.5);
    display: block;
    opacity: 0;
    transform: translateY(180px);
    transition: color .8s ease, text-shadow .8s ease;
}
.hm_line_wrp .line.in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 2s var(--ease-smooth),
                transform 2s var(--ease-smooth),
                color .8s ease, text-shadow .8s ease;
}
/* In phase 1 the two main lines lose white/shadow and go gray */
.ins_main_banner_topbar .hm_line_wrp .line1,
.ins_main_banner_topbar .hm_line_wrp .line2 {
    color: #fff;
    text-shadow: 0 0 15px rgba(0,0,0,.5);
}
.ins_main_banner_topbar[data-phase="1"] .hm_line_wrp .line1,
.ins_main_banner_topbar[data-phase="1"] .hm_line_wrp .line2,
.ins_main_banner_topbar[data-phase="2"] .hm_line_wrp .line1,
.ins_main_banner_topbar[data-phase="2"] .hm_line_wrp .line2 {
    color: #929292;
    text-shadow: none;
}
/* "at" line - appears during phase 1 */
.hm_line_wrp .line4 {
    color: #929292;
    font-style: italic;
    font-size: 36px;
    margin-top: 8px;
    opacity: var(--p1);
    transform: scale(var(--p1));
    transform-origin: center;
    transition: none;
}

/* Mouse scroll indicator */
.mouse_line {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: auto;
    z-index: 4;
}
.mouse_line.shown {
    opacity: calc(1 - var(--p1) * 2);
    animation: mouseFadeIn 1s 3.2s var(--ease-smooth) forwards;
}
@keyframes mouseFadeIn { to { opacity: 1; } }
.mouse_body {
    width: 26px;
    height: 42px;
    border: 1.5px solid rgba(255,255,255,.85);
    border-radius: 14px;
    position: relative;
}
.mouse_wheel {
    width: 3px; height: 8px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 1.8s infinite var(--ease-smooth);
}
@keyframes mouseWheel {
    0%   { transform: translate(-50%, 0);    opacity: 1; }
    100% { transform: translate(-50%, 18px); opacity: 0; }
}
.arrow-down {
    position: absolute;
    bottom: -22px;
    left: 50%;
    width: 10px; height: 10px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: translateX(-50%) rotate(45deg);
    animation: arrowBounce 1.8s infinite var(--ease-smooth);
}
@keyframes arrowBounce {
    0%,100% { transform: translateX(-50%) rotate(45deg) translate(0, 0); opacity: .3; }
    50%     { transform: translateX(-50%) rotate(45deg) translate(5px, 5px); opacity: 1; }
}

/* ---------- z:4 — BK SVG MASK LAYER ----------
   The SVG is a 1920x1080 white rectangle with letter-shaped holes
   cut out via evenodd winding. It sits on top of showcase/gray bg
   and its holes reveal whatever layer is behind.
   Phase 1: opacity 0→1, scale 0.4→1 (mask appears at natural size)
   Phase 2: scale 1 → ~32 (mask's non-text white area expands past the
   viewport; letter holes grow huge, revealing full showcase)
*/
/* SVG mask layer (kurumsal variant — same behavior as krem). */
.BK_img_wrapper {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
    opacity: min(var(--p1), max(0, calc(3.6 - var(--p2) * 4)));
}
.bk-img {
    position: absolute;
    inset: 0;
    margin: 0;
    transform: scale(calc(1 + var(--p2) * var(--p2) * 8));
    transform-origin: 50% 56%;
    will-change: transform;
}
.bk-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =====================================================
   SHOWCASE — z:2, behind the BK mask layer
   Visible via letter-hole cutouts in phase 2.
   Each item has a subtle 2px right border creating thin white
   dividers between the 4 panels, matching the original.
   ===================================================== */
.showcase-main-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: stretch;
    background: #fff;
    z-index: 2;
    opacity: var(--p2);
    pointer-events: none;
}
.ins_main_banner_topbar[data-showcase="on"] .showcase-main-wrapper {
    pointer-events: auto;
}
.showcase_item {
    flex: 1 0 25%;
    width: 25%;
    min-width: 0;
    height: 100vh;
    position: relative;
}
.showcase_item + .showcase_item {
    border-left: 1px solid #fff;
}
.showcase {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    cursor: pointer;
}
.showcase-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    opacity: .3;
    transition: opacity 1.2s cubic-bezier(.2,.8,.2,1);
    z-index: 1;
}
.showcase:hover .showcase-overlay { opacity: 1; }

.description {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    color: #fff;
    text-align: center;
}
.description .title {
    font-size: 36px;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    line-height: 1.1;
    transform: translateY(0);
    transition: opacity .45s ease, transform .55s var(--ease);
}
.showcase:hover .description .title { opacity: 0; transform: translateY(-40px); }

.hover-main-description {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 28px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .5s ease, transform .7s var(--ease);
}
.showcase:hover .hover-main-description {
    opacity: 1;
    transform: translateY(-6vh);
}
.hover-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2.4px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.hover-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 70%;
    height: 2px;
    background: linear-gradient(to right, rgba(255,255,255,.9), rgba(255,255,255,0));
    transform: translateX(-50%);
}
.hover-description {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    max-width: 305px;
    margin-bottom: 28px;
    font-weight: 300;
}

/* =====================================================
   FLOATING BUTTON (Explore More)
   Circle on left, text slides out of it to the right on hover.
   ===================================================== */
.floating-btn-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding-left: 0;
    transition: all 1.5s var(--spring);
}
.floating-btn-wrapper .float-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: background .35s ease, border-color .35s ease;
    flex-shrink: 0;
}
.floating-btn-wrapper .float-circle img {
    width: 10px;
    height: 18px;
    transition: filter .3s ease;
}
.floating-btn-wrapper .float-text {
    display: inline-block;
    padding: 13px 22px 13px 28px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 17px;
    white-space: nowrap;
    margin-left: -18px;
    transform: translateX(-8px);
    transition: transform .5s var(--ease-smooth), background .3s ease, color .3s ease;
    position: relative;
    z-index: 1;
}
.floating-btn-wrapper:hover .float-text { transform: translateX(15px); }

/* dark variant (on light backgrounds) */
.floating-btn-wrapper.dark .float-circle {
    border: 1px solid #000;
    background: transparent;
}
.floating-btn-wrapper.dark .float-text {
    background: #fcfcfc;
    color: #000;
}
.floating-btn-wrapper.dark:hover .float-circle {
    background: #000;
    border-color: #000;
}
.floating-btn-wrapper.dark:hover .float-circle img { filter: invert(100%); }

/* light variant (on dark photo backgrounds, for showcase) */
.floating-btn-wrapper.light .float-circle {
    border: 1px solid #fff;
    background: rgba(255,255,255,.08);
}
.floating-btn-wrapper.light .float-text {
    background: transparent;
    color: #fff;
}
.floating-btn-wrapper.light:hover .float-circle {
    background: #fff;
}
.floating-btn-wrapper.light:hover .float-circle img { filter: invert(100%); }

/* =====================================================
   DISCOVER / EXPERIENCES NEARBY (pinned crossfade)
   Section is 4× viewport; sticky wrap holds text + image in place.
   Scroll progress drives crossfade between 4 slides + subtle image zoom.
   ===================================================== */
.discover-more-main-wrapper {
    background: transparent;
    position: relative;
    z-index: 5;
}
.discover-sticky-wrap {
    position: relative;
    height: auto;
    overflow: visible;
}
.discover-inner {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
}
.discover-left-col {
    width: 50%;
    flex: 0 0 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px 0 max(60px, calc((100vw - 1700px) / 2 + 60px));
}
.discover-title {
    color: var(--c-primary);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: .5;
    margin-bottom: 40px;
}
.fade_texts_wrp {
    position: relative;
    min-height: 420px;
}
.fade_text_wrp {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .55s cubic-bezier(.77,0,.175,1),
                transform .55s cubic-bezier(.77,0,.175,1);
    pointer-events: none;
}
.fade_text_wrp.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: .08s;
}
.fade_text_wrp.past {
    opacity: 0;
    transform: translateY(-24px);
}
.discover-subtitle {
    color: var(--c-eyebrow);
    font-size: 52px;
    line-height: 62px;
    font-weight: 300;
    margin: 0 0 10px -5px;
}
.discover-place {
    color: var(--c-primary);
    font-size: 24px;
    line-height: 43px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.discover-description p {
    color: #adacac;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 36px;
    /* Preserve admin-entered newlines (\n) without converting them to <br>
       in the EJS layer. Default `normal` collapses every \n to a single space
       and the description renders as one long line. */
    white-space: pre-line;
}

/* Right side stacked images with parallax (kurumsal) */
.image-scroll-col {
    width: 50%;
    flex: 0 0 50%;
    margin-left: auto;
    position: relative;
}
.image-scroll-col .image-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 40px 0;
    overflow: hidden;
}
.image-scroll-col .image-wrapper img {
    position: absolute;
    top: -22%;
    left: 0;
    width: 100%;
    height: 144%;
    object-fit: cover;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition: none;
}

/* Slide indicators */
.fade-dots {
    position: absolute;
    bottom: 40px;
    left: 0;
    display: flex;
    gap: 10px;
}
.fade-dots .dot {
    width: 40px;
    height: 2px;
    background: rgba(55,53,52,.2);
    transition: background .35s, width .4s var(--ease);
    cursor: pointer;
}
.fade-dots .dot.active {
    background: var(--c-accent);
    width: 72px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: transparent;
    color: var(--c-primary);
    padding: 60px 100px 0;
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(108,125,146,.18);
}
.footer-container { max-width: 1700px; margin: 0 auto; }
.footer-top {
    text-align: center;
    padding: 60px 0 80px;
}
.footer-top h4 {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--c-eyebrow);
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 500;
}
.social-navi {
    display: flex;
    justify-content: center;
    gap: 14px;
}
/* When the social icons live inside a footer menu column (next to KURUMSAL
   / PROJELER), they should align with the column's left edge rather than
   centering — the surrounding columns are left-aligned. Also dressed up so
   the small monochrome svgs read clearly on white: filled brand-color
   circles with white icons, hover lifts and shifts to accent navy. */
.menu-col .social-navi {
    justify-content: flex-start;
    margin-top: 4px;
}
.menu-col .social-navi li a {
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 6px;
    transition: transform .25s var(--ease, ease-out), opacity .2s ease;
}
.menu-col .social-navi li a img {
    width: 28px;
    height: 28px;
    filter: none;
    opacity: .85;
}
.menu-col .social-navi li a:hover {
    background: transparent;
    transform: translateY(-2px);
}
.menu-col .social-navi li a:hover img { opacity: 1; }
.social-navi li a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #595959;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, border-color .3s ease, transform .35s var(--ease);
}
.social-navi li a img {
    width: 16px;
    height: 16px;
    transition: filter .3s ease;
}
.social-navi li a:hover { transform: translateY(-3px); border-color: transparent; }
.social-navi li a.fb:hover { background: #3b5998; }
.social-navi li a.ig:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-navi li a.yt:hover { background: #ff0000; }
.social-navi li a:hover img { filter: brightness(0) invert(1); }

.footer-content {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-top: 0.3px solid #9e9994;
    border-bottom: 0.3px solid #9e9994;
}
.footer-menu {
    width: 70%;
    padding-right: 5vw;
}
.menu-row {
    display: flex;
    gap: 50px;
}
.menu-col { width: 25%; }
.menu-col .menu-title {
    color: var(--c-eyebrow);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    min-height: 38px;
}
.menu-col ul li a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--c-primary);
    transition: color .25s, padding-left .3s var(--ease);
}
.menu-col ul li a:hover { color: var(--c-accent-2); padding-left: 4px; }

.news-letter {
    width: 30%;
    padding-left: 5vw;
    border-left: 0.3px solid rgba(55,53,52,.3);
}
.news-letter .menu-title {
    color: var(--c-primary);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 14px;
    text-transform: none;
    letter-spacing: 0;
}
.news-letter p {
    font-size: 14px;
    color: var(--c-primary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 0.3px solid rgba(255,255,255,.15);
}
.footer-tagline {
    font-size: 14px;
    color: var(--c-muted);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}
.footer-copyright {
    color: var(--c-muted);
    font-size: 14px;
    letter-spacing: 4.32px;
    text-align: right;
    margin: 0;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .footer-copyright {
        text-align: left;
        letter-spacing: 2px;
        white-space: normal;
    }
}

/* Footer reveal (triggered when #footer enters viewport) */
.foot_ani2, .foot_ani3 {
    visibility: hidden;
    opacity: 0;
    transform: translateY(120px) scale(.6);
    transform-origin: bottom center;
    transition: opacity 1.5s var(--ease-smooth), transform 1.5s var(--ease-smooth), visibility 0s 1.5s;
}
.footer.in-view .foot_ani2 { visibility: visible; opacity: 1; transform: translateY(0) scale(1); transition-delay: .2s; transition: opacity 1.5s var(--ease-smooth) .2s, transform 1.5s var(--ease-smooth) .2s, visibility 0s 0s; }
.footer.in-view .foot_ani3 { visibility: visible; opacity: 1; transform: translateY(0) scale(1); transition: opacity 1.5s var(--ease-smooth) .4s, transform 1.5s var(--ease-smooth) .4s, visibility 0s 0s; }
.foot_ani4 { opacity: 0; visibility: hidden; transition: opacity 1s ease .6s, visibility 0s 1.6s; }
.footer.in-view .foot_ani4 { opacity: 1; visibility: visible; transition: opacity 1s ease .5s, visibility 0s 0s; }

/* =====================================================
   COOKIE NOTICE
   ===================================================== */
.cookie-notice {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 8000;
    transform: translateY(100%);
    transition: transform .5s var(--ease-smooth);
    border-top: 1px solid rgba(167,157,150,.25);
    box-shadow: 0 -8px 20px rgba(0,0,0,.05);
}
.cookie-notice.show { transform: translateY(0); }
.cookie-text p { font-size: 13px; color: var(--c-primary); }
.cookie-text a { color: var(--c-accent-2); text-decoration: underline; }
.accept-cookies {
    background: var(--c-accent);
    color: #fff;
    padding: 12px 34px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background .3s, transform .3s var(--ease);
    flex-shrink: 0;
}
.accept-cookies:hover { background: var(--c-accent-2); color: #fff; transform: translateY(-2px); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1440px) {
    .hm_line_wrp .line { font-size: 36px; line-height: 1.5; }
    .hm_line_wrp .line4 { font-size: 28px; }
    .discover-subtitle { font-size: 42px; line-height: 52px; }
}
@media (max-width: 1280px) {
    .header { padding: 16px 40px; }
    .menu-row { gap: 30px; }
    .discover-left-col { margin-left: 60px; }
    .footer { padding: 60px 40px 0; }
}
@media (max-width: 1100px) {
    .header { padding: 14px 30px; }
    .primary-menu { gap: 28px; }
    .brand-logo img { height: 32px; }
    .book-ticket { padding: 12px 20px; font-size: 14px; }
}
@media (max-width: 1024px) {
    .main_banner_topbar { height: auto; }
    .ins_main_banner_topbar { position: relative; height: auto; }
    .top-banner-wrapper { height: 100vh; }
    /* Desktop pattern uses absolute hero overlay on a sticky-pinned section.
       Mobile drops the pin (height:auto), so absolute hero collapses to 0.
       Make hero a normal-flow 100vh block so it renders above the showcase. */
    .hm_video_wrapper { position: relative; height: 100vh; opacity: 1; }
    /* Same constraint for the text overlay — without this it stretches to the
       full document height (showcase included) and the title falls off-screen. */
    .banner-body { height: 100vh; bottom: auto; }
    .video_head { transform: none; bottom: 120px; }
    .BK_img_wrapper { display: none; }
    .hm_line_wrp .line4 { display: none; }
    .showcase-main-wrapper {
        position: relative;
        inset: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        height: auto;
        padding: 24px 16px 32px;
        margin-top: 32px;       /* breathing room between the hero photo above and the cards */
        opacity: 1;
        pointer-events: auto;
    }
    .showcase_item {
        width: auto;
        height: auto;
        flex: none;
    }
    .showcase_item + .showcase_item { border-left: 0; }
    .showcase {
        height: 200px !important;          /* mobile value cards: compact 2x2 tiles */
        max-height: 200px;
        aspect-ratio: auto;
    }
    .showcase .description { padding: 14px; }
    .showcase .title { font-size: 15px !important; }
    .showcase .hover-main-description { display: none; } /* mobile: title-only, no hover panel */
    .mouse_line { bottom: -40px; }

    .primary-menu, .lang-dropdown, .book-ticket { display: none; }
    .hamburger { display: flex; }

    .discover-more-main-wrapper { height: auto; }
    .discover-sticky-wrap { position: relative; height: auto; overflow: visible; }
    .discover-inner {
        flex-direction: column;
        padding: 48px 24px 64px;
        gap: 24px;
        height: auto;
    }
    /* Pull title out of left-col so it sits above the interleaved list. */
    .discover-left-col { display: contents; }
    .discover-title { order: 0; }
    /* Unwrap both inner containers so their children become direct flex items
       of .discover-inner — then explicit order numbers interleave image / text
       per project. Replaces the desktop pin pattern (which doesn't make sense
       on a phone — 4 photos stacked above a single static description). */
    .image-scroll-col { display: contents; }
    .fade_texts_wrp   { display: contents; min-height: 0; }
    .image-scroll-col .image-wrapper { width: 100%; height: auto; aspect-ratio: 4 / 3; }
    .image-scroll-col .image-wrapper img { width: 100%; height: 100%; object-fit: cover; transform: none !important; }
    /* Show every fade_text_wrp (mobile is static, not scroll-driven). */
    .fade_text_wrp {
        opacity: 1 !important;
        transform: none !important;
        position: static;
        pointer-events: auto;
        margin-bottom: 0;
        padding: 0 4px;
    }
    /* Interleave: img-0 → text-0 → img-1 → text-1 → … */
    .image-wrapper[data-index="0"] { order: 1; }
    .fade_text_wrp[data-index="0"] { order: 2; }
    .image-wrapper[data-index="1"] { order: 3; }
    .fade_text_wrp[data-index="1"] { order: 4; }
    .image-wrapper[data-index="2"] { order: 5; }
    .fade_text_wrp[data-index="2"] { order: 6; }
    .image-wrapper[data-index="3"] { order: 7; }
    .fade_text_wrp[data-index="3"] { order: 8; }

    .footer-content { flex-direction: column; }
    .footer-menu, .news-letter { width: 100%; padding: 0; border: 0; }
    .news-letter { margin-top: 50px; border-top: 0.3px solid rgba(55,53,52,.3); padding-top: 40px; }
}
@media (max-width: 640px) {
    .header { padding: 12px 20px; }
    .brand-logo img { height: 28px; }
    .hm_line_wrp .line { font-size: 20px; }
    .showcase { height: 60vh; }
    .description .title { font-size: 26px; letter-spacing: 2.2px; }
    .discover-subtitle { font-size: 30px; line-height: 38px; }
    .discover-place { font-size: 18px; line-height: 28px; }
    .discover-description p { font-size: 16px; }
    .menu-row { flex-wrap: wrap; gap: 24px; }
    .menu-col { width: calc(50% - 12px); }
    .footer { padding: 40px 22px 0; }
    .cookie-notice { flex-direction: column; text-align: center; }
}

/* =====================================================
   IŞIKLI MİMARLIK — ADDITIONAL SECTIONS
   ===================================================== */

/* --- HERO IMAGE PARALLAX --- */
.hero-image-wrap {
    position: absolute;
    inset: -10% 0 0 0;
    height: 110vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

/* Hero text override: smaller because tagline is longer */
.hm_line_wrp .line { font-size: 38px; line-height: 1.35; }
.hm_line_wrp .line4 {
    font-size: 22px;
    color: var(--c-eyebrow);
    letter-spacing: 8px;
}

/* Bize Ulaşın button override — corporate variant: navy bg, white text */
.book-ticket {
    padding: 12px 22px;
    font-size: 13px;
    letter-spacing: 1.4px;
    color: #fff !important;
    background: var(--c-accent) !important;
    border-color: var(--c-accent) !important;
}
.book-ticket:hover {
    color: var(--c-accent) !important;
    background: transparent !important;
}
/* Floating arrow buttons — circle outlined in navy */
.floating-btn-wrapper.dark .float-circle {
    border-color: var(--c-accent);
}
.floating-btn-wrapper.dark:hover .float-circle {
    background: var(--c-accent);
    border-color: var(--c-accent);
}
.floating-btn-wrapper.dark .float-text {
    color: var(--c-primary);
}

/* --- POST-HERO BACKDROP (continuous vine illustration) ---
   The vine SVG tiles vertically (repeat-y) across the entire post-hero
   container so it flows uninterrupted from Hakkımızda → Projelerimiz →
   Footer. Stem starts/ends at x=50 in the SVG so vertical seams align. */
.post-hero-wrap {
    position: relative;
    z-index: 1;
    background: #fff;
    /* no overflow:hidden — would break the sticky pin in discover section */
}
.post-hero-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    width: 360px;
    height: 100%;
    background-color: var(--c-accent);
    -webkit-mask: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLSBUaWxlYWJsZSBkZWNvcmF0aXZlIHZpbmU6IHN0ZW0gc3RhcnRzIGF0ICg1MCwgMCkgYW5kIGVuZHMgYXQgKDUwLCA3MjApCiAgICAgc28gdmVydGljYWwgcmVwZWF0cyBjb25uZWN0IHNlYW1sZXNzbHkgYXQgdGhlIHNhbWUgeC1jb29yZGluYXRlLiAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgICAgdmlld0JveD0iMCAwIDMyMCA3MjAiCiAgICAgZmlsbD0ibm9uZSIKICAgICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICAgICBzdHJva2UtbGluZWNhcD0icm91bmQiCiAgICAgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CgogIDwhLS0gbWFpbiB3aW5kaW5nIHN0ZW0g4oCUIHN0YXJ0cyBhbmQgZW5kcyBhdCB4PTUwIGZvciBzZWFtbGVzcyB0aWxpbmcgLS0+CiAgPHBhdGggZD0iTSA1MCwwCiAgICAgICAgICAgQyAxMTAsNjAgMTYwLDEzMCAxMjAsMjEwCiAgICAgICAgICAgUyAzMCwzMjAgOTAsNDAwCiAgICAgICAgICAgUyAyMTAsNTEwIDE0MCw2MDAKICAgICAgICAgICBRIDgwLDY2MCA1MCw3MjAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIyLjIiCiAgICAgICAgb3BhY2l0eT0iMC42Ii8+CgogIDwhLS0gc2Vjb25kYXJ5IGJyYW5jaGVzIC0tPgogIDxwYXRoIGQ9Ik0gMTIwLDIxMCBDIDE3MCwyMzAgMjIwLDI2MCAyNTAsMzEwIgogICAgICAgIHN0cm9rZS13aWR0aD0iMS40IgogICAgICAgIG9wYWNpdHk9IjAuNCIvPgogIDxwYXRoIGQ9Ik0gOTAsNDAwIEMgMTQwLDQyMCAyMDAsNDUwIDIzMCw1MDAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIxLjQiCiAgICAgICAgb3BhY2l0eT0iMC40Ii8+CiAgPHBhdGggZD0iTSAxNDAsNjAwIEMgMTEwLDYxNSA4MCw2NDAgNTAsNjgwIgogICAgICAgIHN0cm9rZS13aWR0aD0iMS4yIgogICAgICAgIG9wYWNpdHk9IjAuMzUiLz4KICA8cGF0aCBkPSJNIDUwLDQwIEMgOTAsNjAgMTMwLDkwIDEwMCwxNDAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIxLjIiCiAgICAgICAgb3BhY2l0eT0iMC4zIi8+CgogIDwhLS0gbGVhdmVzIC0tPgogIDxnIG9wYWNpdHk9IjAuNSI+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg4MCw5MCkgcm90YXRlKC0zMCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE4LC00IDMyLC0yIDQwLDEyIEMgMzIsMjggMTQsMzAgMCwyNCBDIC00LDE2IC00LDggMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICAgIDxwYXRoIGQ9Ik0gNCw0IEwgMzIsMTYiIHN0cm9rZS13aWR0aD0iMC44Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNTUsMTUwKSByb3RhdGUoMjApIj4KICAgICAgPHBhdGggZD0iTSAwLDAgQyAyMiwtNiA0MCwtMiA0OCwxNiBDIDQwLDM0IDE2LDM2IDAsMjggQyAtNCwxOCAtNCwxMCAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA1LDQgTCAzOCwyMCIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0OCwzMTApIHJvdGF0ZSg0MCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MCwyOTApIHJvdGF0ZSg2MCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE4LC00IDMyLC0yIDQwLDEyIEMgMzIsMjggMTQsMzAgMCwyNCBDIC00LDE2IC00LDggMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICAgIDxwYXRoIGQ9Ik0gNCw0IEwgMzIsMTYiIHN0cm9rZS13aWR0aD0iMC44Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNzAsNDQwKSByb3RhdGUoLTE1KSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMjIsLTUgMzgsLTIgNDgsMTQgQyA0MCwzMiAxNiwzNCAwLDI4IEMgLTMsMTggLTQsOSAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA1LDQgTCAzNiwxOCIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIyOCw1MDApIHJvdGF0ZSgzNSkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMTUsNTYwKSByb3RhdGUoLTUwKSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMTgsLTQgMzIsLTIgNDAsMTIgQyAzMiwyOCAxNCwzMCAwLDI0IEMgLTQsMTYgLTQsOCAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA0LDQgTCAzMiwxNiIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwLDY3MCkgcm90YXRlKDgwKSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMTYsLTMgMjgsLTEgMzYsMTAgQyAyOCwyNCAxMiwyNiAwLDIwIEMgLTIsMTQgLTMsNyAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjEiLz4KICAgICAgPHBhdGggZD0iTSAzLDMgTCAyOCwxMiIgc3Ryb2tlLXdpZHRoPSIwLjciLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNSwxNDApIHJvdGF0ZSg0NSkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgPC9nPgoKICA8IS0tIGJ1ZHMgLS0+CiAgPGcgb3BhY2l0eT0iMC40IiBzdHJva2Utd2lkdGg9IjEiPgogICAgPGNpcmNsZSBjeD0iODAiIGN5PSI1MCIgcj0iMyIvPgogICAgPGNpcmNsZSBjeD0iMTcwIiBjeT0iMTkwIiByPSIzLjUiLz4KICAgIDxjaXJjbGUgY3g9IjgwIiBjeT0iMzcwIiByPSIzIi8+CiAgICA8Y2lyY2xlIGN4PSIyMDAiIGN5PSI0ODAiIHI9IjMuNSIvPgogICAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iNjQwIiByPSIzIi8+CiAgPC9nPgo8L3N2Zz4K') repeat-y top left / 320px 720px;
            mask: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLSBUaWxlYWJsZSBkZWNvcmF0aXZlIHZpbmU6IHN0ZW0gc3RhcnRzIGF0ICg1MCwgMCkgYW5kIGVuZHMgYXQgKDUwLCA3MjApCiAgICAgc28gdmVydGljYWwgcmVwZWF0cyBjb25uZWN0IHNlYW1sZXNzbHkgYXQgdGhlIHNhbWUgeC1jb29yZGluYXRlLiAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgICAgdmlld0JveD0iMCAwIDMyMCA3MjAiCiAgICAgZmlsbD0ibm9uZSIKICAgICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICAgICBzdHJva2UtbGluZWNhcD0icm91bmQiCiAgICAgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CgogIDwhLS0gbWFpbiB3aW5kaW5nIHN0ZW0g4oCUIHN0YXJ0cyBhbmQgZW5kcyBhdCB4PTUwIGZvciBzZWFtbGVzcyB0aWxpbmcgLS0+CiAgPHBhdGggZD0iTSA1MCwwCiAgICAgICAgICAgQyAxMTAsNjAgMTYwLDEzMCAxMjAsMjEwCiAgICAgICAgICAgUyAzMCwzMjAgOTAsNDAwCiAgICAgICAgICAgUyAyMTAsNTEwIDE0MCw2MDAKICAgICAgICAgICBRIDgwLDY2MCA1MCw3MjAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIyLjIiCiAgICAgICAgb3BhY2l0eT0iMC42Ii8+CgogIDwhLS0gc2Vjb25kYXJ5IGJyYW5jaGVzIC0tPgogIDxwYXRoIGQ9Ik0gMTIwLDIxMCBDIDE3MCwyMzAgMjIwLDI2MCAyNTAsMzEwIgogICAgICAgIHN0cm9rZS13aWR0aD0iMS40IgogICAgICAgIG9wYWNpdHk9IjAuNCIvPgogIDxwYXRoIGQ9Ik0gOTAsNDAwIEMgMTQwLDQyMCAyMDAsNDUwIDIzMCw1MDAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIxLjQiCiAgICAgICAgb3BhY2l0eT0iMC40Ii8+CiAgPHBhdGggZD0iTSAxNDAsNjAwIEMgMTEwLDYxNSA4MCw2NDAgNTAsNjgwIgogICAgICAgIHN0cm9rZS13aWR0aD0iMS4yIgogICAgICAgIG9wYWNpdHk9IjAuMzUiLz4KICA8cGF0aCBkPSJNIDUwLDQwIEMgOTAsNjAgMTMwLDkwIDEwMCwxNDAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIxLjIiCiAgICAgICAgb3BhY2l0eT0iMC4zIi8+CgogIDwhLS0gbGVhdmVzIC0tPgogIDxnIG9wYWNpdHk9IjAuNSI+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg4MCw5MCkgcm90YXRlKC0zMCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE4LC00IDMyLC0yIDQwLDEyIEMgMzIsMjggMTQsMzAgMCwyNCBDIC00LDE2IC00LDggMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICAgIDxwYXRoIGQ9Ik0gNCw0IEwgMzIsMTYiIHN0cm9rZS13aWR0aD0iMC44Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNTUsMTUwKSByb3RhdGUoMjApIj4KICAgICAgPHBhdGggZD0iTSAwLDAgQyAyMiwtNiA0MCwtMiA0OCwxNiBDIDQwLDM0IDE2LDM2IDAsMjggQyAtNCwxOCAtNCwxMCAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA1LDQgTCAzOCwyMCIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0OCwzMTApIHJvdGF0ZSg0MCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MCwyOTApIHJvdGF0ZSg2MCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE4LC00IDMyLC0yIDQwLDEyIEMgMzIsMjggMTQsMzAgMCwyNCBDIC00LDE2IC00LDggMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICAgIDxwYXRoIGQ9Ik0gNCw0IEwgMzIsMTYiIHN0cm9rZS13aWR0aD0iMC44Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNzAsNDQwKSByb3RhdGUoLTE1KSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMjIsLTUgMzgsLTIgNDgsMTQgQyA0MCwzMiAxNiwzNCAwLDI4IEMgLTMsMTggLTQsOSAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA1LDQgTCAzNiwxOCIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIyOCw1MDApIHJvdGF0ZSgzNSkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMTUsNTYwKSByb3RhdGUoLTUwKSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMTgsLTQgMzIsLTIgNDAsMTIgQyAzMiwyOCAxNCwzMCAwLDI0IEMgLTQsMTYgLTQsOCAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA0LDQgTCAzMiwxNiIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwLDY3MCkgcm90YXRlKDgwKSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMTYsLTMgMjgsLTEgMzYsMTAgQyAyOCwyNCAxMiwyNiAwLDIwIEMgLTIsMTQgLTMsNyAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjEiLz4KICAgICAgPHBhdGggZD0iTSAzLDMgTCAyOCwxMiIgc3Ryb2tlLXdpZHRoPSIwLjciLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNSwxNDApIHJvdGF0ZSg0NSkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgPC9nPgoKICA8IS0tIGJ1ZHMgLS0+CiAgPGcgb3BhY2l0eT0iMC40IiBzdHJva2Utd2lkdGg9IjEiPgogICAgPGNpcmNsZSBjeD0iODAiIGN5PSI1MCIgcj0iMyIvPgogICAgPGNpcmNsZSBjeD0iMTcwIiBjeT0iMTkwIiByPSIzLjUiLz4KICAgIDxjaXJjbGUgY3g9IjgwIiBjeT0iMzcwIiByPSIzIi8+CiAgICA8Y2lyY2xlIGN4PSIyMDAiIGN5PSI0ODAiIHI9IjMuNSIvPgogICAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iNjQwIiByPSIzIi8+CiAgPC9nPgo8L3N2Zz4K') repeat-y top left / 320px 720px;
    opacity: .45;
    pointer-events: none;
    z-index: 0;
}
.post-hero-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: -80px;
    width: 320px;
    height: 100%;
    background-color: var(--c-accent-2);
    -webkit-mask: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLSBUaWxlYWJsZSBkZWNvcmF0aXZlIHZpbmU6IHN0ZW0gc3RhcnRzIGF0ICg1MCwgMCkgYW5kIGVuZHMgYXQgKDUwLCA3MjApCiAgICAgc28gdmVydGljYWwgcmVwZWF0cyBjb25uZWN0IHNlYW1sZXNzbHkgYXQgdGhlIHNhbWUgeC1jb29yZGluYXRlLiAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgICAgdmlld0JveD0iMCAwIDMyMCA3MjAiCiAgICAgZmlsbD0ibm9uZSIKICAgICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICAgICBzdHJva2UtbGluZWNhcD0icm91bmQiCiAgICAgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CgogIDwhLS0gbWFpbiB3aW5kaW5nIHN0ZW0g4oCUIHN0YXJ0cyBhbmQgZW5kcyBhdCB4PTUwIGZvciBzZWFtbGVzcyB0aWxpbmcgLS0+CiAgPHBhdGggZD0iTSA1MCwwCiAgICAgICAgICAgQyAxMTAsNjAgMTYwLDEzMCAxMjAsMjEwCiAgICAgICAgICAgUyAzMCwzMjAgOTAsNDAwCiAgICAgICAgICAgUyAyMTAsNTEwIDE0MCw2MDAKICAgICAgICAgICBRIDgwLDY2MCA1MCw3MjAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIyLjIiCiAgICAgICAgb3BhY2l0eT0iMC42Ii8+CgogIDwhLS0gc2Vjb25kYXJ5IGJyYW5jaGVzIC0tPgogIDxwYXRoIGQ9Ik0gMTIwLDIxMCBDIDE3MCwyMzAgMjIwLDI2MCAyNTAsMzEwIgogICAgICAgIHN0cm9rZS13aWR0aD0iMS40IgogICAgICAgIG9wYWNpdHk9IjAuNCIvPgogIDxwYXRoIGQ9Ik0gOTAsNDAwIEMgMTQwLDQyMCAyMDAsNDUwIDIzMCw1MDAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIxLjQiCiAgICAgICAgb3BhY2l0eT0iMC40Ii8+CiAgPHBhdGggZD0iTSAxNDAsNjAwIEMgMTEwLDYxNSA4MCw2NDAgNTAsNjgwIgogICAgICAgIHN0cm9rZS13aWR0aD0iMS4yIgogICAgICAgIG9wYWNpdHk9IjAuMzUiLz4KICA8cGF0aCBkPSJNIDUwLDQwIEMgOTAsNjAgMTMwLDkwIDEwMCwxNDAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIxLjIiCiAgICAgICAgb3BhY2l0eT0iMC4zIi8+CgogIDwhLS0gbGVhdmVzIC0tPgogIDxnIG9wYWNpdHk9IjAuNSI+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg4MCw5MCkgcm90YXRlKC0zMCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE4LC00IDMyLC0yIDQwLDEyIEMgMzIsMjggMTQsMzAgMCwyNCBDIC00LDE2IC00LDggMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICAgIDxwYXRoIGQ9Ik0gNCw0IEwgMzIsMTYiIHN0cm9rZS13aWR0aD0iMC44Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNTUsMTUwKSByb3RhdGUoMjApIj4KICAgICAgPHBhdGggZD0iTSAwLDAgQyAyMiwtNiA0MCwtMiA0OCwxNiBDIDQwLDM0IDE2LDM2IDAsMjggQyAtNCwxOCAtNCwxMCAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA1LDQgTCAzOCwyMCIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0OCwzMTApIHJvdGF0ZSg0MCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MCwyOTApIHJvdGF0ZSg2MCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE4LC00IDMyLC0yIDQwLDEyIEMgMzIsMjggMTQsMzAgMCwyNCBDIC00LDE2IC00LDggMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICAgIDxwYXRoIGQ9Ik0gNCw0IEwgMzIsMTYiIHN0cm9rZS13aWR0aD0iMC44Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNzAsNDQwKSByb3RhdGUoLTE1KSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMjIsLTUgMzgsLTIgNDgsMTQgQyA0MCwzMiAxNiwzNCAwLDI4IEMgLTMsMTggLTQsOSAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA1LDQgTCAzNiwxOCIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIyOCw1MDApIHJvdGF0ZSgzNSkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMTUsNTYwKSByb3RhdGUoLTUwKSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMTgsLTQgMzIsLTIgNDAsMTIgQyAzMiwyOCAxNCwzMCAwLDI0IEMgLTQsMTYgLTQsOCAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA0LDQgTCAzMiwxNiIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwLDY3MCkgcm90YXRlKDgwKSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMTYsLTMgMjgsLTEgMzYsMTAgQyAyOCwyNCAxMiwyNiAwLDIwIEMgLTIsMTQgLTMsNyAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjEiLz4KICAgICAgPHBhdGggZD0iTSAzLDMgTCAyOCwxMiIgc3Ryb2tlLXdpZHRoPSIwLjciLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNSwxNDApIHJvdGF0ZSg0NSkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgPC9nPgoKICA8IS0tIGJ1ZHMgLS0+CiAgPGcgb3BhY2l0eT0iMC40IiBzdHJva2Utd2lkdGg9IjEiPgogICAgPGNpcmNsZSBjeD0iODAiIGN5PSI1MCIgcj0iMyIvPgogICAgPGNpcmNsZSBjeD0iMTcwIiBjeT0iMTkwIiByPSIzLjUiLz4KICAgIDxjaXJjbGUgY3g9IjgwIiBjeT0iMzcwIiByPSIzIi8+CiAgICA8Y2lyY2xlIGN4PSIyMDAiIGN5PSI0ODAiIHI9IjMuNSIvPgogICAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iNjQwIiByPSIzIi8+CiAgPC9nPgo8L3N2Zz4K') repeat-y top right / 280px 630px;
            mask: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLSBUaWxlYWJsZSBkZWNvcmF0aXZlIHZpbmU6IHN0ZW0gc3RhcnRzIGF0ICg1MCwgMCkgYW5kIGVuZHMgYXQgKDUwLCA3MjApCiAgICAgc28gdmVydGljYWwgcmVwZWF0cyBjb25uZWN0IHNlYW1sZXNzbHkgYXQgdGhlIHNhbWUgeC1jb29yZGluYXRlLiAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgICAgdmlld0JveD0iMCAwIDMyMCA3MjAiCiAgICAgZmlsbD0ibm9uZSIKICAgICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICAgICBzdHJva2UtbGluZWNhcD0icm91bmQiCiAgICAgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CgogIDwhLS0gbWFpbiB3aW5kaW5nIHN0ZW0g4oCUIHN0YXJ0cyBhbmQgZW5kcyBhdCB4PTUwIGZvciBzZWFtbGVzcyB0aWxpbmcgLS0+CiAgPHBhdGggZD0iTSA1MCwwCiAgICAgICAgICAgQyAxMTAsNjAgMTYwLDEzMCAxMjAsMjEwCiAgICAgICAgICAgUyAzMCwzMjAgOTAsNDAwCiAgICAgICAgICAgUyAyMTAsNTEwIDE0MCw2MDAKICAgICAgICAgICBRIDgwLDY2MCA1MCw3MjAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIyLjIiCiAgICAgICAgb3BhY2l0eT0iMC42Ii8+CgogIDwhLS0gc2Vjb25kYXJ5IGJyYW5jaGVzIC0tPgogIDxwYXRoIGQ9Ik0gMTIwLDIxMCBDIDE3MCwyMzAgMjIwLDI2MCAyNTAsMzEwIgogICAgICAgIHN0cm9rZS13aWR0aD0iMS40IgogICAgICAgIG9wYWNpdHk9IjAuNCIvPgogIDxwYXRoIGQ9Ik0gOTAsNDAwIEMgMTQwLDQyMCAyMDAsNDUwIDIzMCw1MDAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIxLjQiCiAgICAgICAgb3BhY2l0eT0iMC40Ii8+CiAgPHBhdGggZD0iTSAxNDAsNjAwIEMgMTEwLDYxNSA4MCw2NDAgNTAsNjgwIgogICAgICAgIHN0cm9rZS13aWR0aD0iMS4yIgogICAgICAgIG9wYWNpdHk9IjAuMzUiLz4KICA8cGF0aCBkPSJNIDUwLDQwIEMgOTAsNjAgMTMwLDkwIDEwMCwxNDAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIxLjIiCiAgICAgICAgb3BhY2l0eT0iMC4zIi8+CgogIDwhLS0gbGVhdmVzIC0tPgogIDxnIG9wYWNpdHk9IjAuNSI+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg4MCw5MCkgcm90YXRlKC0zMCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE4LC00IDMyLC0yIDQwLDEyIEMgMzIsMjggMTQsMzAgMCwyNCBDIC00LDE2IC00LDggMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICAgIDxwYXRoIGQ9Ik0gNCw0IEwgMzIsMTYiIHN0cm9rZS13aWR0aD0iMC44Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNTUsMTUwKSByb3RhdGUoMjApIj4KICAgICAgPHBhdGggZD0iTSAwLDAgQyAyMiwtNiA0MCwtMiA0OCwxNiBDIDQwLDM0IDE2LDM2IDAsMjggQyAtNCwxOCAtNCwxMCAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA1LDQgTCAzOCwyMCIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0OCwzMTApIHJvdGF0ZSg0MCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MCwyOTApIHJvdGF0ZSg2MCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE4LC00IDMyLC0yIDQwLDEyIEMgMzIsMjggMTQsMzAgMCwyNCBDIC00LDE2IC00LDggMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICAgIDxwYXRoIGQ9Ik0gNCw0IEwgMzIsMTYiIHN0cm9rZS13aWR0aD0iMC44Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNzAsNDQwKSByb3RhdGUoLTE1KSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMjIsLTUgMzgsLTIgNDgsMTQgQyA0MCwzMiAxNiwzNCAwLDI4IEMgLTMsMTggLTQsOSAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA1LDQgTCAzNiwxOCIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIyOCw1MDApIHJvdGF0ZSgzNSkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMTUsNTYwKSByb3RhdGUoLTUwKSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMTgsLTQgMzIsLTIgNDAsMTIgQyAzMiwyOCAxNCwzMCAwLDI0IEMgLTQsMTYgLTQsOCAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA0LDQgTCAzMiwxNiIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwLDY3MCkgcm90YXRlKDgwKSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMTYsLTMgMjgsLTEgMzYsMTAgQyAyOCwyNCAxMiwyNiAwLDIwIEMgLTIsMTQgLTMsNyAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjEiLz4KICAgICAgPHBhdGggZD0iTSAzLDMgTCAyOCwxMiIgc3Ryb2tlLXdpZHRoPSIwLjciLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNSwxNDApIHJvdGF0ZSg0NSkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgPC9nPgoKICA8IS0tIGJ1ZHMgLS0+CiAgPGcgb3BhY2l0eT0iMC40IiBzdHJva2Utd2lkdGg9IjEiPgogICAgPGNpcmNsZSBjeD0iODAiIGN5PSI1MCIgcj0iMyIvPgogICAgPGNpcmNsZSBjeD0iMTcwIiBjeT0iMTkwIiByPSIzLjUiLz4KICAgIDxjaXJjbGUgY3g9IjgwIiBjeT0iMzcwIiByPSIzIi8+CiAgICA8Y2lyY2xlIGN4PSIyMDAiIGN5PSI0ODAiIHI9IjMuNSIvPgogICAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iNjQwIiByPSIzIi8+CiAgPC9nPgo8L3N2Zz4K') repeat-y top right / 280px 630px;
    transform: scaleX(-1);
    transform-origin: center;
    opacity: .22;
    pointer-events: none;
    z-index: 0;
}
.hakkimizda-section {
    background: transparent;
    padding: 160px 40px 140px;
    position: relative;
    z-index: 3;
    overflow: visible;
}
.hakkimizda-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hakkimizda-inner .eyebrow {
    color: var(--c-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hakkimizda-title {
    font-size: clamp(28px, 3.4vw, 52px);
    font-weight: 300;
    color: var(--c-primary);
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -.5px;
}
.hakkimizda-text {
    font-size: 18px;
    line-height: 1.75;
    font-weight: 300;
    color: var(--c-primary);
    max-width: 760px;
    margin: 0 auto;
}
.hakkimizda-text strong {
    font-weight: 600;
    color: var(--c-accent-2);
}

/* --- STATS STRIP (kurumsal variant) --- */
.stats-strip {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stats-strip .stat {
    flex: 1 1 140px;
    min-width: 140px;
    padding: 0 24px;
    text-align: center;
}
.stats-strip .stat-number {
    font-size: clamp(40px, 4.4vw, 64px);
    font-weight: 200;
    color: var(--c-primary);
    line-height: 1;
    letter-spacing: -1px;
}
.stats-strip .stat-number span {
    color: var(--c-accent);
    font-weight: 400;
    margin-left: 2px;
}
.stats-strip .stat-label {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--c-eyebrow);
    text-transform: uppercase;
}
.stats-strip .stat-divider {
    width: 40px; height: 40px;
    color: var(--c-accent);
    opacity: .5;
    flex-shrink: 0;
    transition: transform .45s var(--ease), opacity .35s ease;
}
.stats-strip .stat-divider svg { width: 100%; height: 100%; }
.stats-strip:hover .stat-divider { transform: rotate(45deg); opacity: .8; }

/* --- BLUEPRINT DIVIDER (kurumsal — slightly more subtle) --- */
.blueprint-divider {
    margin: 100px auto 0;
    max-width: 800px;
    color: var(--c-accent);
    opacity: .3;
}
.blueprint-divider svg {
    width: 100%; height: auto; display: block;
}

/* --- HİZMETLERİMİZ SECTION (kurumsal variant) --- */
.hizmetler-section {
    background: transparent;
    padding: 100px 40px 120px;
    position: relative;
    z-index: 3;
}
.hizmetler-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.hizmetler-section .eyebrow {
    color: var(--c-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.hizmetler-title {
    font-size: clamp(26px, 2.6vw, 40px);
    font-weight: 300;
    color: var(--c-primary);
    line-height: 1.25;
    margin-bottom: 60px;
    letter-spacing: -.3px;
}
.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.hizmet-card {
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(108,125,146,.22);
    border-radius: 6px;
    padding: 44px 28px 36px;
    text-align: left;
    transition: border-color .35s, transform .4s var(--ease), box-shadow .35s;
}
.hizmet-card:hover {
    border-color: var(--c-accent);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px -16px rgba(26,58,92,.25);
}
.hizmet-icon {
    width: 56px; height: 56px;
    margin-bottom: 24px;
    color: var(--c-accent);
    display: flex; align-items: center; justify-content: center;
}
.hizmet-icon svg { width: 100%; height: 100%; }
.hizmet-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--c-primary);
    margin-bottom: 14px;
    letter-spacing: .3px;
}
.hizmet-card p {
    font-size: 14px;
    line-height: 1.65;
    font-weight: 300;
    color: #455a73;
    margin: 0;
}

/* --- THEME SWITCHER (floating chip, bottom-right) --- */
.theme-switcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 7000;
    display: flex;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 4px;
    box-shadow: 0 8px 28px -6px rgba(0,0,0,.18);
    border: 1px solid rgba(0,0,0,.06);
}
.theme-switcher button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--c-primary);
    cursor: pointer;
    transition: background .25s ease, color .25s ease;
}
.theme-switcher button span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.15);
}
.theme-switcher button[data-theme="krem"] span { background: #cfa76d; }
.theme-switcher button[data-theme="kurumsal"] span { background: #1a3a5c; }
.theme-switcher button.active {
    background: var(--c-primary);
    color: #fff;
}
.theme-switcher button.active span { border-color: rgba(255,255,255,.3); }

/* --- FOOTER CONTACT TWEAKS --- */
.news-letter p a {
    color: var(--c-primary);
    text-decoration: none;
    transition: color .25s;
}
.news-letter p a:hover {
    color: var(--c-accent-2);
}

/* Hide cookie notice (kept simple per user request) */
.cookie-notice { display: none; }

/* Hide language dropdown — single language site */
.lang-dropdown { display: none !important; }

/* --- IŞIKLI LOADER (heartbeat pulse, kurumsal variant) --- */
.isikli-loader {
    position: absolute;
    left: 50%; top: 50%;
    width: 220px;
    transform: translate(-50%, -50%);
    text-align: center;
}
.isikli-loader .loader-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    animation: heartbeatPulse 1.4s ease-in-out infinite;
    transform-origin: center;
}
@keyframes heartbeatPulse {
    0%   { transform: scale(1);    filter: grayscale(1) brightness(1.05) opacity(.55); }
    14%  { transform: scale(1.08); filter: grayscale(0) brightness(1)    opacity(1); }
    28%  { transform: scale(1);    filter: grayscale(.4) brightness(1.02) opacity(.85); }
    42%  { transform: scale(1.08); filter: grayscale(0) brightness(1)    opacity(1); }
    70%  { transform: scale(1);    filter: grayscale(.6) brightness(1.05) opacity(.7); }
    100% { transform: scale(1);    filter: grayscale(1) brightness(1.05) opacity(.55); }
}
.lg_bgcut, .logo_anim { display: none !important; }

/* --- RESPONSIVE for new sections --- */
@media (max-width: 1024px) {
    .hakkimizda-section { padding: 90px 30px 70px; }
    .hakkimizda-text { font-size: 16px; }
    .post-hero-wrap::before { width: 220px; opacity: 0.27; }
    .post-hero-wrap::after  { width: 200px; opacity: 0.12100000000000001; }
    .theme-switcher { bottom: 16px; right: 16px; padding: 3px; }
    .theme-switcher button { padding: 6px 12px; font-size: 11px; }
}
@media (max-width: 640px) {
    .post-hero-wrap::before, .post-hero-wrap::after { display: none; }
}
@media (max-width: 1024px) {
    .hizmetler-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hizmetler-section { padding: 70px 30px 80px; }
    .stats-strip { gap: 16px; }
    .stats-strip .stat-divider { display: none; }
    .stats-strip .stat { flex: 1 1 45%; min-width: 0; padding: 0 12px; }
    .blueprint-divider { margin-top: 70px; }
}
@media (max-width: 640px) {
    .hakkimizda-title { font-size: 26px; }
    .hm_line_wrp .line { font-size: 18px; }
    .hm_line_wrp .line4 { font-size: 16px; letter-spacing: 5px; }
    .hizmetler-grid { grid-template-columns: 1fr; }
    .hizmet-card { padding: 32px 24px; }
}



/* ============================================================
 * PROJECT DETAIL — editorial w/ sticky tabs + scroll-spy
 * ============================================================ */
.project-detail { color: var(--corporate-text, #373534); }

/* === HERO === */
.pd-hero {
    position: relative;
    min-height: 88vh;
    background-size: cover;
    background-position: center;
    background-color: #14202f;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.pd-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,32,48,0.10) 0%, rgba(20,32,48,0.55) 60%, rgba(15,22,36,0.92) 100%);
    pointer-events: none;
}
.pd-hero__inner {
    position: relative; z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    padding: 0 48px 88px;
    color: #fff;
}
.pd-hero__back {
    display: inline-block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}
.pd-hero__back:hover { opacity: 0.7; text-decoration: none; }
.pd-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.32em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.45);
}
.pd-hero__title {
    font-size: clamp(2.4rem, 5.2vw, 4.6rem);
    font-weight: 600;
    line-height: 1.02;
    margin: 0 0 18px;
    max-width: 18ch;
    color: #fff;
    letter-spacing: -0.015em;
}
.pd-hero__location {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    letter-spacing: 0.04em;
}
.pd-hero__scroll {
    position: absolute;
    left: 50%; bottom: 28px;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    animation: pd-bounce 2.4s ease-in-out infinite;
}
.pd-hero__scroll:hover { color: #fff; }
@keyframes pd-bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 8px); }
}

/* === INTRO + KEY FACTS (split layout) === */
.pd-intro {
    background: #fff;
    padding: 110px 48px 90px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pd-intro__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: 72px;
    align-items: start;
}
.pd-intro__lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(55,53,52,0.92);
    font-weight: 300;
    letter-spacing: -0.005em;
}
.pd-intro__lead p:first-child { margin-top: 0; }
.pd-intro__lead p { margin: 0 0 18px; }
.pd-intro__lead strong { font-weight: 600; color: var(--corporate-text); }
.pd-intro__facts {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 8px;
    border-left: 1px solid rgba(0,0,0,0.08);
    padding-left: 36px;
}
.pd-fact__label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(55,53,52,0.55);
    margin-bottom: 4px;
}
.pd-fact__value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--corporate-text);
    line-height: 1.4;
}
[dir="rtl"] .pd-intro__facts {
    border-left: none;
    border-right: 1px solid rgba(0,0,0,0.08);
    padding-left: 0;
    padding-right: 36px;
}

/* === STICKY TAB NAV === */
.pd-tabs {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(140%) blur(8px);
    -webkit-backdrop-filter: saturate(140%) blur(8px);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pd-tabs__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    gap: 36px;
    overflow-x: auto;
    scrollbar-width: none;
}
.pd-tabs__inner::-webkit-scrollbar { display: none; }
.pd-tabs__link {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 22px 0;
    color: rgba(55,53,52,0.5);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.04em;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.pd-tabs__link:hover { color: var(--corporate-text); text-decoration: none; }
.pd-tabs__link.is-active {
    color: var(--corporate-text);
    border-bottom-color: var(--corporate-accent, #1f3a5f);
}
.pd-tabs__index {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: rgba(55,53,52,0.4);
    font-weight: 500;
}
.pd-tabs__link.is-active .pd-tabs__index { color: var(--corporate-accent, #1f3a5f); }
.pd-tabs__label { font-weight: 500; }

/* === SCROLL SECTIONS === */
.pd-sections { background: #fff; }
.pd-section { padding: 110px 48px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.pd-section:last-child { border-bottom: none; }
.pd-section:nth-child(even) { background: #f7f6f3; }
.pd-section__inner { max-width: 1240px; margin: 0 auto; }

.pd-section--full .pd-section__inner { max-width: 880px; }

.pd-section--split .pd-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.pd-section--split.is-flipped .pd-section__text { order: 2; }
.pd-section--split.is-flipped .pd-section__figure { order: 1; }

.pd-section__head { margin-bottom: 28px; }
.pd-section-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 0.32em;
    color: rgba(55,53,52,0.5);
    margin-bottom: 14px;
    font-weight: 500;
}
.pd-section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--corporate-text);
}

.pd-section__figure {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #ddd;
}
.pd-section__figure img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.pd-prose {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(55,53,52,0.92);
}
.pd-prose > *:first-child { margin-top: 0; }
.pd-prose h3 { font-size: 1.25rem; font-weight: 600; margin: 32px 0 12px; line-height: 1.3; }
.pd-prose p { margin: 0 0 16px; }
.pd-prose ul, .pd-prose ol { padding-left: 1.4em; margin: 0 0 18px; }
.pd-prose li { margin-bottom: 8px; }
.pd-prose strong { font-weight: 600; color: var(--corporate-text); }
.pd-prose a { color: var(--corporate-accent, #1f3a5f); text-decoration: underline; text-underline-offset: 3px; }

/* === MAP LINK (inside intro facts panel) === */
.pd-fact__map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 14px;
    border: 1px solid var(--c-accent, #1a3a5c);
    color: var(--c-accent, #1a3a5c);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
    align-self: flex-start;
}
.pd-fact__map:hover {
    background: var(--c-accent, #1a3a5c);
    color: #fff;
    text-decoration: none;
}
.pd-fact__map svg { flex-shrink: 0; }

/* === GALLERY — snap-section carousels (desktop) ===
   Each category renders as a full-viewport snap section with its own
   carousel. html gets proximity snap so intro/h2 sections still scroll
   normally; snap kicks in only near a snap-align point. */
html { scroll-snap-type: y proximity; }
.pd-hero { scroll-snap-align: start; }

.pd-gallery-wrap {
    position: relative;
}

.pd-gallery-section {
    position: relative;
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 48px;
    overflow: hidden;
}
/* Section backgrounds: solid color + repeating texture pattern.
   The themed SHAPES (skyline, furniture, drafting marks) live in inline
   .pd-section-decor SVGs in the template. Edge vines via ::before/::after. */
.pd-gallery-section--exterior {
    background-color: var(--c-near, #fcfcfc);
    background-image: radial-gradient(circle at 2px 2px, rgba(26, 42, 62, 0.04) 1.4px, transparent 1.9px);
    background-size: 38px 38px;
    color: var(--c-primary, #1a2a3e);
}
.pd-gallery-section--interior {
    background-color: #f4f6fa;
    background-image: linear-gradient(45deg,
        transparent 47%,
        rgba(26, 42, 62, 0.012) 48.5%, rgba(26, 42, 62, 0.012) 51.5%,
        transparent 53%);
    background-size: 30px 30px;
    color: var(--c-primary, #1a2a3e);
}
.pd-gallery-section--floorplan {
    background-color: var(--c-primary, #1a2a3e);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    color: #fff;
}
/* Video section: deep navy backdrop with a soft diagonal stripe — gives the
   players a presentational frame without competing with the controls. */
.pd-gallery-section--video {
    background-color: var(--c-accent, #1a3a5c);
    background-image: linear-gradient(135deg,
        rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 28px);
    color: #fff;
}

/* Video player grid: two-up on desktop, single column on narrow screens.
   min(420px, 100%) keeps the layout from overflowing on phones (<420px),
   where a hard 420px minmax would force horizontal scrolling. */
.pd-videos {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
    gap: 28px;
}
.pd-video {
    margin: 0;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    aspect-ratio: 16 / 9;
    max-width: 100%;
}
.pd-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

@media (max-width: 768px) {
    .pd-videos { grid-template-columns: 1fr; gap: 18px; }
}

/* Themed decorative SVG layer — positioned absolute, behind content. */
.pd-section-decor {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pd-gallery-section__inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    gap: 28px;
}
.pd-gallery-section__head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.pd-gallery-section__eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.55;
    font-weight: 500;
}
.pd-gallery-section__title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Thumbnail strip — two-row grid that flows column-by-column, overflowing
   horizontally when the photo count exceeds what fits. Click a thumb to
   open the lightbox. */
.pd-thumbs-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
}
.pd-thumbs {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    padding: 4px 0 16px;
    max-height: 60vh;
}
.pd-thumbs::-webkit-scrollbar { height: 6px; }
.pd-thumbs::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.04); }
.pd-thumbs::-webkit-scrollbar-thumb { background: currentColor; opacity: 0.3; border-radius: 3px; }
.pd-gallery-section--floorplan .pd-thumbs::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.08); }

.pd-thumb {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.06);
    scroll-snap-align: start;
}
.pd-gallery-section--floorplan .pd-thumb { background: rgba(255, 255, 255, 0.05); }
.pd-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}
.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pd-gallery-section--floorplan .pd-thumb img { object-fit: contain; }
.pd-thumb:hover img { transform: scale(1.05); }

/* Arrows — scroll the strip horizontally; hidden when nothing overflows. */
.pd-thumbs__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid currentColor;
    background: var(--c-near, #fcfcfc);
    color: inherit;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 4;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pd-gallery-section--floorplan .pd-thumbs__arrow { background: var(--c-primary, #1a2a3e); }
.pd-gallery-section--interior .pd-thumbs__arrow { background: #f4f6fa; }
.pd-thumbs__arrow:hover { background: currentColor; color: var(--c-near, #fcfcfc); }
.pd-gallery-section--floorplan .pd-thumbs__arrow:hover { color: var(--c-primary, #1a2a3e); }
.pd-thumbs__arrow[hidden] { display: none; }
.pd-thumbs__arrow--prev { left: -22px; }
.pd-thumbs__arrow--next { right: -22px; }
@media (max-width: 1320px) {
    .pd-thumbs__arrow--prev { left: 4px; }
    .pd-thumbs__arrow--next { right: 4px; }
}

/* Sticky side-nav — visible only while gallery wrap is in view */
.pd-gallery-nav {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.pd-gallery-nav.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.pd-gallery-nav ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pd-gallery-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--c-primary, #1a2a3e);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 8px 6px 12px;
    border-left: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.pd-gallery-nav a.is-active {
    border-left-color: var(--c-accent, #1a3a5c);
    color: var(--c-accent, #1a3a5c);
    font-weight: 500;
}
.pd-gallery-nav a:hover { color: var(--c-accent, #1a3a5c); text-decoration: none; }
.pd-gallery-nav__num { opacity: 0.55; font-variant-numeric: tabular-nums; }
.pd-gallery-nav__label { white-space: nowrap; }

/* On a dark gallery section, the side-nav's text needs contrast — handled
   per-section via JS that adds .is-on-dark; the simple approach below
   relies on the fixed nav remaining navy on light sections, which works
   because cream/pale sections are 2 of 3 and Kat Planları is short. */
.pd-gallery-nav.is-on-dark a { color: #fff; }
.pd-gallery-nav.is-on-dark a.is-active { color: #fff; border-left-color: #fff; }

/* Mobile template (UA-detected): keep the simple stacked grid. The desktop
   snap+carousel CSS above doesn't apply because the mobile template uses
   different class names (.pd-gallery__grid / .pd-gallery__tile). */
.project-detail--mobile .pd-gallery-cat { margin-top: 36px; }
.project-detail--mobile .pd-gallery-cat__title {
    font-size: 1.05rem; font-weight: 500;
    margin: 0 0 12px; padding-bottom: 8px;
    border-bottom: 1px solid rgba(26, 42, 62, 0.12);
}
.project-detail--mobile .pd-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.project-detail--mobile .pd-gallery__tile {
    margin: 0; overflow: hidden;
    background: rgba(0, 0, 0, 0.06);
    aspect-ratio: 1 / 1;
}
.project-detail--mobile .pd-gallery__tile.is-wide {
    grid-column: span 2; aspect-ratio: 16 / 9;
}
.project-detail--mobile .pd-gallery__tile a { display: block; width: 100%; height: 100%; }
.project-detail--mobile .pd-gallery__tile img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === CTA === */
.pd-cta {
    background: #14202f;
    color: #fff;
    padding: 110px 48px;
    text-align: center;
}
.pd-cta__inner { max-width: 720px; margin: 0 auto; }
.pd-cta__title {
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    font-weight: 600;
    margin: 0 0 14px;
    color: #fff;
    letter-spacing: -0.01em;
}
.pd-cta__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    margin: 0 0 32px;
}
.pd-cta__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.pd-cta__btn {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.06em;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}
.pd-cta__btn:hover { background: rgba(255,255,255,0.08); text-decoration: none; }
.pd-cta__btn--primary { background: #fff; color: #14202f; border-color: #fff; }
.pd-cta__btn--primary:hover { background: rgba(255,255,255,0.88); color: #14202f; }

/* === Mobile === */
@media (max-width: 980px) {
    .pd-hero { min-height: 70vh; }
    .pd-hero__inner { padding: 0 24px 64px; }
    .pd-intro { padding: 64px 24px; }
    .pd-intro__inner { grid-template-columns: 1fr; gap: 40px; }
    .pd-intro__lead { font-size: 1.15rem; }
    .pd-intro__facts { border-left: none; padding-left: 0; padding-top: 0; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 24px; flex-direction: row; flex-wrap: wrap; gap: 24px 32px; }
    [dir="rtl"] .pd-intro__facts { border-right: none; padding-right: 0; }
    .pd-tabs__inner { padding: 0 24px; gap: 22px; }
    .pd-tabs__link { padding: 16px 0; font-size: 12px; }
    .pd-section { padding: 64px 24px; }
    .pd-section--split .pd-section__inner { grid-template-columns: 1fr; gap: 32px; }
    .pd-section--split.is-flipped .pd-section__text { order: 0; }
    .pd-section--split.is-flipped .pd-section__figure { order: 0; }
    .pd-section__figure { aspect-ratio: 16 / 10; }
    /* Mobile / narrow (≤980px) — drop snap behavior, sections scroll
       normally with smaller chrome. Carousel still works inside. */
    html { scroll-snap-type: none; }
    .pd-gallery-section {
        min-height: auto;
        scroll-snap-align: none;
        padding: 48px 16px;
    }
    .pd-gallery-section__title { font-size: 1.4rem; }
    .pd-carousel__arrow {
        width: 34px; height: 34px;
        font-size: 16px;
    }
    .pd-carousel__arrow--prev { left: 4px; }
    .pd-carousel__arrow--next { right: 4px; }
    .pd-gallery-nav { display: none; }
    .pd-cta { padding: 72px 24px; }
}

/* Reuse the home-page post-hero vine decoration around the projeler grid +
   the dark stacking-cards section. The wrap is dark navy so the stacking
   section reads as "continuous dark backdrop with vines weaving through"
   instead of a hard navy slab. Vine pseudos render in --c-accent over this
   dark base — bumped to higher opacity so they remain visible against navy. */
.post-hero-wrap--projects {
  background: var(--c-primary, #1a2a3e);
}
.post-hero-wrap--projects::before,
.post-hero-wrap--projects::after {
  background-color: rgba(255, 255, 255, 0.85);
  opacity: .18;
}
.post-hero-wrap--projects .projects {
  background: transparent;
}

/* ─────────────────────────────────────────────────
 * PROJELER — Featured hero  (/{lang}/projeler, top of page)
 * Pattern: split-screen + diagonal clip-path reveal,
 *          ported from 21st.dev hero-section-2 React component
 *          to vanilla CSS. No JS dependency.
 * Typography: Poppins (display + body, single-family stack)
 * Palette: brand navy (--c-accent / --c-primary).
 * ───────────────────────────────────────────────── */
.featured-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--c-near, #fcfcfc);
  color: var(--c-primary, #1a2a3e);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.featured-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(160px, 18vh, 200px) clamp(32px, 6vw, 96px) clamp(48px, 8vh, 96px);
  z-index: 1;
  gap: clamp(40px, 6vh, 72px);
}

.featured-hero__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: featured-hero-fade-in 0.55s ease-out 0.20s forwards;
}
.featured-hero__logo { height: 38px; width: auto; display: block; }
.featured-hero__brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--c-primary, #1a2a3e);
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
}
.featured-hero__brand-slogan {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--c-eyebrow, #6c7d92);
  margin: 3px 0 0;
  text-transform: uppercase;
}

.featured-hero__body { max-width: 580px; }
.featured-hero__eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-eyebrow, #6c7d92);
  margin: 0 0 24px;
  opacity: 0;
  animation: featured-hero-fade-in 0.55s ease-out 0.35s forwards;
}
.featured-hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--c-primary, #1a2a3e);
  text-transform: uppercase;
  opacity: 0;
  animation: featured-hero-fade-in 0.55s ease-out 0.50s forwards;
}
.featured-hero__title-accent {
  color: var(--c-accent-2, #2d5a8c);
  font-weight: 600;
}

.featured-hero__rule {
  width: 80px;
  height: 3px;
  background: var(--c-accent, #1a3a5c);
  margin: 28px 0;
  transform: scaleX(0);
  transform-origin: left center;
  animation: featured-hero-rule-reveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.65s forwards;
}
.featured-hero--rtl .featured-hero__rule { transform-origin: right center; }

.featured-hero__subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--c-eyebrow, #6c7d92);
  margin: 0 0 36px;
  max-width: 480px;
  opacity: 0;
  animation: featured-hero-fade-in 0.55s ease-out 0.80s forwards;
}

.featured-hero__cta {
  display: inline-block;
  padding: 14px 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--c-accent, #1a3a5c);
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1.5px solid var(--c-accent, #1a3a5c);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.35s ease;
  opacity: 0;
  animation: featured-hero-fade-in 0.55s ease-out 0.95s forwards;
}
.featured-hero__cta:hover {
  color: var(--c-accent-2, #2d5a8c);
  border-bottom-color: var(--c-accent-2, #2d5a8c);
  transform: translateX(6px);
}
.featured-hero--rtl .featured-hero__cta:hover { transform: translateX(-6px); }
.featured-hero__cta:focus-visible {
  outline: 2px solid var(--c-accent, #1a3a5c);
  outline-offset: 4px;
}

.featured-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--c-muted, #8a96a6);
  opacity: 0;
  animation: featured-hero-fade-in 0.55s ease-out 1.10s forwards;
}
.featured-hero__meta-item { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.featured-hero__meta-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted, #8a96a6);
}
.featured-hero__meta-value {
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--c-primary, #1a2a3e);
  letter-spacing: 0.02em;
}

.featured-hero__cover {
  display: block;
  background-size: cover;
  background-position: center;
  background-color: var(--c-accent, #1a3a5c);
  background-image: linear-gradient(135deg, var(--c-accent, #1a3a5c), var(--c-primary, #1a2a3e));
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  animation: featured-hero-clip 1.2s cubic-bezier(0, 0.55, 0.45, 1) 0.10s forwards;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.featured-hero__cover:focus-visible {
  outline: 2px solid var(--c-accent-2, #2d5a8c);
  outline-offset: -4px;
}
.featured-hero--rtl {
  direction: rtl;
  grid-template-columns: 2fr 3fr;
}
.featured-hero--rtl .featured-hero__cover {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  animation: featured-hero-clip-rtl 1.2s cubic-bezier(0, 0.55, 0.45, 1) 0.10s forwards;
}

@keyframes featured-hero-clip {
  to { clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%); }
}
@keyframes featured-hero-clip-rtl {
  to { clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%); }
}
@keyframes featured-hero-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes featured-hero-rule-reveal { to { transform: scaleX(1); } }

@media (max-width: 1024px) {
  .featured-hero,
  .featured-hero--rtl {
    grid-template-columns: 1fr;
    min-height: auto;
    /* The fixed .header (124px) sits above the page; without this top padding
       the photo (which is the first item on mobile via order:1) gets clipped
       under the header. */
    padding-top: 124px;
  }
  /* Mobile order: photo first, then text. Reversed from desktop (text-left,
     photo-right split) to match the natural reading flow on a narrow screen
     where the photo establishes context before the title and details. */
  .featured-hero__cover { aspect-ratio: 16 / 10; min-height: 320px; order: 1; }
  .featured-hero__content { padding: clamp(40px, 6vh, 72px) clamp(28px, 5vw, 64px) clamp(56px, 9vh, 88px); order: 2; }
  /* Inside-content order on mobile: title → rule → summary → meta → CTA.
     Default DOM puts CTA inside __body before __meta; we promote __body's
     children to flex items of __content via display:contents, then push the
     CTA to the end with a high order value. */
  .featured-hero__body { display: contents; }
  .featured-hero__meta { order: 8; }
  .featured-hero__cta { order: 9; }
}

@media (max-width: 640px) {
  /* Parent .featured-hero already adds 124px top padding to clear the fixed
     header on mobile (image is order:1 on small screens); content sits below
     the image so it doesn't need extra header offset of its own. */
  .featured-hero__content { padding-top: 40px; padding-bottom: 56px; gap: 40px; }
  .featured-hero__meta { grid-template-columns: 1fr; gap: 16px; padding-top: 20px; }
  .featured-hero__title { font-size: clamp(2rem, 9vw, 3rem); }
  .featured-hero__cover { aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  .featured-hero__brand,
  .featured-hero__eyebrow,
  .featured-hero__title,
  .featured-hero__subtitle,
  .featured-hero__cta,
  .featured-hero__meta {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .featured-hero__rule { transform: scaleX(1) !important; animation: none !important; }
  .featured-hero__cover {
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%) !important;
    animation: none !important;
  }
  .featured-hero--rtl .featured-hero__cover {
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%) !important;
  }
  .featured-hero__cta { transition: none; }
  .featured-hero__cta:hover { transform: none; }
}

/* ─────────────────────────────────────────────────
 * PROJELER — Gallery portfolio (/{lang}/projeler)
 * Style: Exaggerated Minimalism (per ui-ux-pro-max skill)
 * Pattern: Portfolio Grid (Masonry)
 * Typography: Poppins (display + body, single-family stack)
 * Palette: Pure B&W gallery (overrides corporate navy in this section only)
 * ───────────────────────────────────────────────── */
.projects {
  /* Skill-prescribed B&W palette, scoped to this section */
  --p-primary:    #18181B;
  --p-foreground: #09090B;
  --p-secondary:  #27272A;
  --p-background: #FAFAFA;
  --p-muted:      #E8ECF0;
  --p-border:     #E4E4E7;
  --p-on-primary: #FFFFFF;

  background: var(--p-background);
  color: var(--p-foreground);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  /* Featured hero above clears the 124px fixed header — grid uses tighter top padding. */
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 80px) clamp(120px, 16vh, 180px);
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Empty state ── */
.projects__empty {
  margin: clamp(80px, 12vh, 140px) 0;
  color: var(--p-secondary);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

/* ── Outro ── */
.projects__outro {
  margin-top: clamp(80px, 12vh, 140px);
  padding-top: clamp(40px, 6vh, 80px);
  border-top: 1px solid var(--p-border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 24px;
}
.projects__outro-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--p-secondary);
  margin: 0;
}
.projects__outro-link {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--p-primary);
  padding-bottom: 4px;
  transition: opacity 300ms ease-out, letter-spacing 400ms ease-out;
}
.projects__outro-link:hover {
  opacity: 0.7;
  letter-spacing: 0.12em;
}

@media (prefers-reduced-motion: reduce) {
  .projects__outro-link { transition: none; }
}

@media (max-width: 768px) {
  .projects {
    padding: clamp(80px, 12vh, 120px) 24px clamp(80px, 12vh, 120px);
  }
  .projects__outro {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ─────────────────────────────────────────────────
 * STACKING CARDS  (port of larsen66/stacking-card)
 * Each .stack-card-wrap is 100vh and pins via
 * position: sticky; top: 0. The card inside scales
 * down (parent-driven) and the cover image scales
 * 2x → 1x as the card enters the viewport. Both
 * scales are CSS variables fed by /js/projects-stacking.js
 * (which mirrors framer-motion's useTransform).
 * ───────────────────────────────────────────────── */
.stack-cards {
  position: relative;
  /* No solid bg of its own — the parent .post-hero-wrap--projects paints navy
     and the vine pseudo-elements layer on top. The cards inside have their
     own gradient bg, so the stacking section reads as "dark continuous
     section with vines around" instead of an opaque slab. */
  background: transparent;
  padding: 0;
  color: #fff;
  z-index: 1;
}

.stack-card-wrap {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
}

.stack-card {
  --card-scale: 1;
  --card-offset: 0px;
  position: relative;
  top: calc(-5vh + var(--card-offset));
  width: min(78vw, 1240px);
  height: clamp(440px, 60vh, 560px);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--c-accent, #1a3a5c), var(--c-primary, #1a2a3e));
  box-shadow: 0 32px 80px -20px rgba(9, 18, 32, 0.55);
  transform: scale(var(--card-scale));
  transform-origin: top center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

/* Subtle grain so plain navy cards don't feel flat behind the cover. */
.stack-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 0% 0%, rgba(255,255,255,0.08), transparent 65%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.stack-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(28px, 3.5vh, 44px) clamp(32px, 4vw, 56px);
  gap: clamp(16px, 2vh, 28px);
}

/* ── Header (index + title) ── */
.stack-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.stack-card__index {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stack-card__index span { padding: 0 6px; }
.stack-card__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-align: right;
  flex: 1;
  min-width: 0;
}
.stack-card__title-accent {
  color: #cfe2ff;
  font-weight: 600;
}

/* ── Body (text + cover) ── */
.stack-card__body {
  flex: 1;
  display: grid;
  grid-template-columns: 38% 62%;
  gap: clamp(24px, 3vw, 40px);
  min-height: 0;
}
.stack-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.stack-card__description {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.stack-card__meta {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stack-card__meta li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.stack-card__meta li span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.stack-card__meta li strong {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.stack-card__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: #cfe2ff;
  border-bottom: 1.5px solid rgba(207,226,255,0.65);
  transition: transform 0.3s ease, color 0.25s ease, border-color 0.25s ease;
}
.stack-card__cta:hover {
  color: #fff;
  border-bottom-color: #fff;
  transform: translateX(6px);
}
.stack-card__cta-arrow path { fill: currentColor; }

/* ── Cover (image scale 2 → 1 from custom property) ── */
.stack-card__cover {
  --img-scale: 1;
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  height: 100%;
  min-height: 0;
}
.stack-card__cover-link {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.stack-card__cover-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}
.stack-card__cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--img-scale));
  transform-origin: center;
  display: block;
}

/* ── Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
  .stack-card { width: min(88vw, 980px); height: clamp(520px, 70vh, 640px); }
  .stack-card__body { grid-template-columns: 1fr; }
  .stack-card__copy { order: 1; gap: 14px; }
  .stack-card__cover { order: 0; min-height: 200px; max-height: 38vh; }
  .stack-card__title { text-align: left; }
  .stack-card__header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── Mobile ≤ 640px ── */
@media (max-width: 640px) {
  .stack-card-wrap { height: auto; padding: 32px 12px; }
  .stack-card { position: relative; top: 0; width: 100%; height: auto; transform: none !important; }
  .stack-card__inner { padding: 24px 22px; }
  .stack-card__cover-img { transform: none !important; }
  .stack-card__title { font-size: clamp(1.4rem, 7vw, 2rem); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .stack-card { transform: none !important; }
  .stack-card__cover-img { transform: none !important; }
  .stack-card__cta { transition: none; }
  .stack-card__cta:hover { transform: none; }
}

/* === Project gallery lightbox =============================================
   Fullscreen overlay shown when a gallery tile is clicked. Backdrop closes,
   close/prev/next buttons + keyboard + swipe nav. Sits above everything
   else (header z:9999). */
.pd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10500;
    background: rgba(9, 18, 32, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.pd-lightbox[hidden] { display: none; }
.pd-lightbox__stage {
    margin: 0;
    max-width: min(1200px, 92vw);
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    pointer-events: none; /* let backdrop clicks through; nav buttons re-enable */
}
.pd-lightbox__stage img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.6);
    pointer-events: auto;
}
.pd-lightbox__count {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 0.08em;
    pointer-events: none;
}
.pd-lightbox__close,
.pd-lightbox__nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: background .2s ease, transform .2s ease;
    font-family: inherit;
}
.pd-lightbox__close { top: 18px; right: 18px; }
.pd-lightbox__nav--prev { left: 18px; top: 50%; transform: translateY(-50%); font-size: 32px; }
.pd-lightbox__nav--next { right: 18px; top: 50%; transform: translateY(-50%); font-size: 32px; }
.pd-lightbox__close:hover,
.pd-lightbox__nav:hover { background: rgba(255, 255, 255, 0.18); }
.pd-lightbox__nav--prev:hover { transform: translate(-2px, -50%); }
.pd-lightbox__nav--next:hover { transform: translate(2px, -50%); }
@media (max-width: 768px) {
    .pd-lightbox { padding: 48px 8px; }
    .pd-lightbox__close,
    .pd-lightbox__nav { width: 40px; height: 40px; font-size: 24px; }
    .pd-lightbox__close { top: 12px; right: 12px; }
    .pd-lightbox__nav--prev { left: 8px; }
    .pd-lightbox__nav--next { right: 8px; }
    .pd-lightbox__stage img { max-height: calc(100vh - 120px); }
}

/* === Cookie consent banner (public site bottom) === */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 8500;
    width: min(960px, calc(100vw - 32px));
    background: #1a2a3e;
    color: #fff;
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: 0 18px 40px -10px rgba(9, 18, 32, 0.55);
    transition: opacity .3s ease, transform .3s ease;
    font-family: 'Poppins', sans-serif;
}
.cookie-banner--dismissed {
    opacity: 0;
    transform: translate(-50%, 16px);
    pointer-events: none;
}
.cookie-banner__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner__text {
    margin: 0;
    flex: 1;
    min-width: 240px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}
.cookie-banner__link {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 6px;
}
.cookie-banner__link:hover { color: #cdd9e8; }
.cookie-banner__btn {
    flex: 0 0 auto;
    background: #fff;
    color: #1a2a3e;
    border: 0;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .2s;
    font-family: inherit;
}
.cookie-banner__btn:hover { background: #f0f4fa; transform: translateY(-1px); }
@media (max-width: 640px) {
    .cookie-banner { padding: 14px 16px; bottom: 12px; }
    .cookie-banner__inner { gap: 12px; }
    .cookie-banner__text { font-size: 13px; min-width: 100%; }
    .cookie-banner__btn { width: 100%; }
}

/* === Static page shell (hakkimizda / privacy / terms / cookies) ============
   Lifted from project-detail's pd-hero + container pattern; trimmed to a
   single content column since body is markdown-driven without sections. */
.static-page {
    position: relative;
    background: #fff;
    color: var(--c-primary, #1a2a3e);
    font-family: 'Poppins', sans-serif;
    overflow-x: clip; /* keep the negative-positioned vines from triggering horizontal scroll */
}
.static-hero { position: relative; z-index: 1; }
.static-hero {
    position: relative;
    padding: 168px clamp(28px, 6vw, 96px) 64px;
    background: linear-gradient(180deg, #1a2a3e 0%, #243a55 100%);
    color: #fff;
    overflow: hidden;
}
.static-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(45, 90, 140, 0.45), transparent 60%);
    pointer-events: none;
}
.static-hero__inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
}
.static-hero__crumbs {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px;
}
.static-hero__crumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color .2s;
}
.static-hero__crumbs a:hover { color: #fff; }
.static-hero__crumbs span[aria-hidden="true"] { margin: 0 8px; opacity: 0.5; }
.static-hero__crumb-current { color: #fff; font-weight: 500; }
.static-hero__title {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0;
}

/* Wrap the static-container in the same vine decoration the home page uses,
   so the static pages don't read as a bare slab below the hero. Pseudos are
   anchored to .static-container itself (positioned relative below). */
.static-container {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 56px clamp(24px, 5vw, 64px) 96px;
    z-index: 1;
}
.static-page::before,
.static-page::after {
    content: '';
    position: absolute;
    top: 0;
    width: 320px;
    height: 100%;
    pointer-events: none;
    background-color: var(--c-accent, #1a3a5c);
    opacity: .28;
    z-index: 0;
    -webkit-mask: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNzIwIiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj4KICA8cGF0aCBkPSJNIDUwLDAgQyAxMTAsNjAgMTYwLDEzMCAxMjAsMjEwIFMgMzAsMzIwIDkwLDQwMCBTIDIxMCw1MTAgMTQwLDYwMCBRIDgwLDY2MCA1MCw3MjAiIHN0cm9rZS13aWR0aD0iMi4yIiBvcGFjaXR5PSIwLjYiLz4KICA8cGF0aCBkPSJNIDEyMCwyMTAgQyAxNzAsMjMwIDIyMCwyNjAgMjUwLDMxMCIgc3Ryb2tlLXdpZHRoPSIxLjQiIG9wYWNpdHk9IjAuNCIvPgogIDxwYXRoIGQ9Ik0gOTAsNDAwIEMgMTQwLDQyMCAyMDAsNDUwIDIzMCw1MDAiIHN0cm9rZS13aWR0aD0iMS40IiBvcGFjaXR5PSIwLjQiLz4KICA8ZyBvcGFjaXR5PSIwLjUiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODAsOTApIHJvdGF0ZSgtMzApIj4KICAgICAgPHBhdGggZD0iTSAwLDAgQyAxOCwtNCAzMiwtMiA0MCwxMiBDIDMyLDI4IDE0LDMwIDAsMjQgQyAtNCwxNiAtNCw4IDAsMCBaIiBzdHJva2Utd2lkdGg9IjEuMiIvPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LDE1MCkgcm90YXRlKDIwKSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMjIsLTYgNDAsLTIgNDgsMTYgQyA0MCwzNCAxNiwzNiAwLDI4IEMgLTQsMTggLTQsMTAgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MCwyOTApIHJvdGF0ZSg2MCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE4LC00IDMyLC0yIDQwLDEyIEMgMzIsMjggMTQsMzAgMCwyNCBDIC00LDE2IC00LDggMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4=') repeat-y top left / 320px 720px;
            mask: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMjAgNzIwIiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj4KICA8cGF0aCBkPSJNIDUwLDAgQyAxMTAsNjAgMTYwLDEzMCAxMjAsMjEwIFMgMzAsMzIwIDkwLDQwMCBTIDIxMCw1MTAgMTQwLDYwMCBRIDgwLDY2MCA1MCw3MjAiIHN0cm9rZS13aWR0aD0iMi4yIiBvcGFjaXR5PSIwLjYiLz4KICA8cGF0aCBkPSJNIDEyMCwyMTAgQyAxNzAsMjMwIDIyMCwyNjAgMjUwLDMxMCIgc3Ryb2tlLXdpZHRoPSIxLjQiIG9wYWNpdHk9IjAuNCIvPgogIDxwYXRoIGQ9Ik0gOTAsNDAwIEMgMTQwLDQyMCAyMDAsNDUwIDIzMCw1MDAiIHN0cm9rZS13aWR0aD0iMS40IiBvcGFjaXR5PSIwLjQiLz4KICA8ZyBvcGFjaXR5PSIwLjUiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODAsOTApIHJvdGF0ZSgtMzApIj4KICAgICAgPHBhdGggZD0iTSAwLDAgQyAxOCwtNCAzMiwtMiA0MCwxMiBDIDMyLDI4IDE0LDMwIDAsMjQgQyAtNCwxNiAtNCw4IDAsMCBaIiBzdHJva2Utd2lkdGg9IjEuMiIvPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LDE1MCkgcm90YXRlKDIwKSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMjIsLTYgNDAsLTIgNDgsMTYgQyA0MCwzNCAxNiwzNiAwLDI4IEMgLTQsMTggLTQsMTAgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MCwyOTApIHJvdGF0ZSg2MCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE4LC00IDMyLC0yIDQwLDEyIEMgMzIsMjggMTQsMzAgMCwyNCBDIC00LDE2IC00LDggMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICA8L2c+CiAgPC9nPgo8L3N2Zz4=') repeat-y top left / 320px 720px;
}
.static-page::before { left: -60px; }
.static-page::after  { right: -80px; transform: scaleX(-1); }
@media (max-width: 1024px) {
    .static-page::before, .static-page::after { display: none; }
}
.static-content {
    font-size: 16px;
    line-height: 1.75;
    color: #2d3a4d;
}
.static-content > *:first-child { margin-top: 0; }
.static-content > *:last-child { margin-bottom: 0; }
.static-content h2 {
    margin: 56px 0 18px;
    font-size: 22px;
    font-weight: 600;
    color: var(--c-primary, #1a2a3e);
    letter-spacing: -0.005em;
    padding-bottom: 12px;
    border-bottom: 1px solid #e7e9ee;
}
.static-content h3 {
    margin: 36px 0 12px;
    font-size: 17px;
    font-weight: 600;
    color: var(--c-primary, #1a2a3e);
}
.static-content h4 { margin: 24px 0 8px; font-size: 15px; font-weight: 600; color: var(--c-primary, #1a2a3e); }
.static-content p { margin: 0 0 18px; }
.static-content ul, .static-content ol { margin: 0 0 24px; padding-left: 1.4em; }
.static-content li { margin-bottom: 8px; }
.static-content a {
    color: var(--c-accent-2, #2d5a8c);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
.static-content a:hover { color: var(--c-accent, #1a3a5c); }
.static-content code {
    background: #eff2f7;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.92em;
    font-family: ui-monospace, "SF Mono", monospace;
}
.static-content blockquote {
    margin: 24px 0;
    padding: 12px 18px;
    border-left: 3px solid var(--c-accent-2, #2d5a8c);
    background: #f5f7fb;
    color: #4a5868;
    font-style: italic;
}
.static-content strong { color: var(--c-primary, #1a2a3e); font-weight: 600; }
@media (max-width: 768px) {
    .static-hero { padding: 140px 24px 48px; }
    .static-container { padding: 40px 20px 72px; }
    .static-content { font-size: 15px; }
    .static-content h2 { margin: 40px 0 14px; font-size: 19px; }
}

/* === Contact page (2-col: info aside + form card) === */
.static-hero__lead {
    margin: 18px 0 0;
    max-width: 640px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
}
.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px clamp(24px, 5vw, 64px) 96px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}
.contact-info {
    background: #f5f7fb;
    border-radius: 8px;
    padding: 32px 28px;
    position: sticky;
    top: 144px;
}
.contact-info__title {
    margin: 0 0 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-eyebrow, #6c7d92);
}
.contact-info__block { margin-bottom: 24px; }
.contact-info__block:last-of-type { margin-bottom: 28px; }
.contact-info__label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-muted, #8a96a6);
    margin-bottom: 6px;
}
.contact-info__value {
    font-size: 15px;
    line-height: 1.6;
    color: var(--c-primary, #1a2a3e);
    font-style: normal;
    margin: 0;
}
.contact-info__link {
    text-decoration: none;
    transition: color .2s;
}
.contact-info__link:hover { color: var(--c-accent-2, #2d5a8c); }
.contact-info__social {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(167, 157, 150, 0.25);
}
.contact-info__social a {
    padding: 6px;
    transition: transform .25s var(--ease, ease-out), opacity .2s;
    opacity: 0.85;
}
.contact-info__social a img { width: 28px; height: 28px; display: block; }
.contact-info__social a:hover { transform: translateY(-2px); opacity: 1; }

.contact-form-card {
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 8px;
    padding: 36px 36px 32px;
    box-shadow: 0 12px 32px -16px rgba(9, 18, 32, 0.18);
}
.contact-form-card__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 600;
    color: var(--c-primary, #1a2a3e);
}
.contact-form-card__success {
    background: #e8f4ed;
    color: #1a5e3b;
    border-left: 3px solid #2f8f5b;
    padding: 14px 18px;
    border-radius: 4px;
    margin: 18px 0 0;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__field > span {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-eyebrow, #6c7d92);
}
.contact-form__field input,
.contact-form__field textarea {
    border: 1px solid #d6dae2;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: var(--c-primary, #1a2a3e);
    transition: border-color .2s, box-shadow .2s;
}
.contact-form__field textarea { resize: vertical; min-height: 140px; line-height: 1.5; font-family: 'Poppins', sans-serif; }
.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: 0;
    border-color: var(--c-accent-2, #2d5a8c);
    box-shadow: 0 0 0 3px rgba(45, 90, 140, 0.12);
}
.contact-form__err {
    color: #b91c1c;
    font-size: 12px;
}
.contact-form__submit {
    align-self: flex-start;
    background: var(--c-primary, #1a2a3e);
    color: #fff;
    border: 0;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 6px;
    transition: background .2s, transform .2s;
    font-family: inherit;
}
.contact-form__submit:hover {
    background: var(--c-accent-2, #2d5a8c);
    transform: translateY(-1px);
}
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; padding: 40px 24px 72px; gap: 28px; }
    .contact-info { position: static; padding: 24px 22px; }
    .contact-form-card { padding: 28px 22px 24px; }
    .contact-form__row { grid-template-columns: 1fr; gap: 14px; }
}

.contact-map {
    max-width: 1100px;
    margin: 0 auto 72px;
    padding: 0 clamp(24px, 5vw, 64px);
}
.contact-map iframe {
    display: block;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 32px -16px rgba(9, 18, 32, 0.18);
    background: #f0f2f5;
}
@media (max-width: 768px) {
    .contact-map { padding: 0 16px; margin-bottom: 48px; }
    .contact-map iframe { height: 280px; }
}

/* === About-page vertical timeline === */
.about-timeline {
    list-style: none;
    margin: 32px 0 40px;
    padding: 0;
    position: relative;
}
.about-timeline__item {
    position: relative;
    padding: 18px 0 18px 124px;
    min-height: 70px;
}
.about-timeline__year {
    position: absolute;
    left: 0;
    top: 18px;
    width: 70px;
    text-align: right;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--c-accent, #1a3a5c);
    letter-spacing: 0.02em;
}
.about-timeline__item::after {
    content: '';
    position: absolute;
    left: 73px;
    top: 26px;
    width: 14px;
    height: 14px;
    background: var(--c-accent, #1a3a5c);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--c-accent, #1a3a5c);
}
.about-timeline__body {
    padding-left: 8px;
}
.about-timeline__title {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--c-primary, #1a2a3e);
}
.about-timeline__body p {
    margin: 0;
    color: #4a5868;
    line-height: 1.6;
    font-size: 15px;
}
@media (max-width: 640px) {
    .about-timeline__item { padding: 14px 0 14px 64px; }
    .about-timeline__year {
        position: static;
        text-align: left;
        font-size: 18px;
        width: auto;
        display: block;
        margin-bottom: 4px;
    }
    .about-timeline__item::after { left: 21px; top: 18px; width: 12px; height: 12px; }
    .about-timeline__body { padding-left: 0; }
}

/* === Vines per gallery section (extracted to CSS variable for reuse) === */
:root { --vine-svg: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPCEtLSBUaWxlYWJsZSBkZWNvcmF0aXZlIHZpbmU6IHN0ZW0gc3RhcnRzIGF0ICg1MCwgMCkgYW5kIGVuZHMgYXQgKDUwLCA3MjApCiAgICAgc28gdmVydGljYWwgcmVwZWF0cyBjb25uZWN0IHNlYW1sZXNzbHkgYXQgdGhlIHNhbWUgeC1jb29yZGluYXRlLiAtLT4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgICAgdmlld0JveD0iMCAwIDMyMCA3MjAiCiAgICAgZmlsbD0ibm9uZSIKICAgICBzdHJva2U9ImN1cnJlbnRDb2xvciIKICAgICBzdHJva2UtbGluZWNhcD0icm91bmQiCiAgICAgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+CgogIDwhLS0gbWFpbiB3aW5kaW5nIHN0ZW0g4oCUIHN0YXJ0cyBhbmQgZW5kcyBhdCB4PTUwIGZvciBzZWFtbGVzcyB0aWxpbmcgLS0+CiAgPHBhdGggZD0iTSA1MCwwCiAgICAgICAgICAgQyAxMTAsNjAgMTYwLDEzMCAxMjAsMjEwCiAgICAgICAgICAgUyAzMCwzMjAgOTAsNDAwCiAgICAgICAgICAgUyAyMTAsNTEwIDE0MCw2MDAKICAgICAgICAgICBRIDgwLDY2MCA1MCw3MjAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIyLjIiCiAgICAgICAgb3BhY2l0eT0iMC42Ii8+CgogIDwhLS0gc2Vjb25kYXJ5IGJyYW5jaGVzIC0tPgogIDxwYXRoIGQ9Ik0gMTIwLDIxMCBDIDE3MCwyMzAgMjIwLDI2MCAyNTAsMzEwIgogICAgICAgIHN0cm9rZS13aWR0aD0iMS40IgogICAgICAgIG9wYWNpdHk9IjAuNCIvPgogIDxwYXRoIGQ9Ik0gOTAsNDAwIEMgMTQwLDQyMCAyMDAsNDUwIDIzMCw1MDAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIxLjQiCiAgICAgICAgb3BhY2l0eT0iMC40Ii8+CiAgPHBhdGggZD0iTSAxNDAsNjAwIEMgMTEwLDYxNSA4MCw2NDAgNTAsNjgwIgogICAgICAgIHN0cm9rZS13aWR0aD0iMS4yIgogICAgICAgIG9wYWNpdHk9IjAuMzUiLz4KICA8cGF0aCBkPSJNIDUwLDQwIEMgOTAsNjAgMTMwLDkwIDEwMCwxNDAiCiAgICAgICAgc3Ryb2tlLXdpZHRoPSIxLjIiCiAgICAgICAgb3BhY2l0eT0iMC4zIi8+CgogIDwhLS0gbGVhdmVzIC0tPgogIDxnIG9wYWNpdHk9IjAuNSI+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg4MCw5MCkgcm90YXRlKC0zMCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE4LC00IDMyLC0yIDQwLDEyIEMgMzIsMjggMTQsMzAgMCwyNCBDIC00LDE2IC00LDggMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICAgIDxwYXRoIGQ9Ik0gNCw0IEwgMzIsMTYiIHN0cm9rZS13aWR0aD0iMC44Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNTUsMTUwKSByb3RhdGUoMjApIj4KICAgICAgPHBhdGggZD0iTSAwLDAgQyAyMiwtNiA0MCwtMiA0OCwxNiBDIDQwLDM0IDE2LDM2IDAsMjggQyAtNCwxOCAtNCwxMCAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA1LDQgTCAzOCwyMCIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0OCwzMTApIHJvdGF0ZSg0MCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MCwyOTApIHJvdGF0ZSg2MCkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE4LC00IDMyLC0yIDQwLDEyIEMgMzIsMjggMTQsMzAgMCwyNCBDIC00LDE2IC00LDggMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4yIi8+CiAgICAgIDxwYXRoIGQ9Ik0gNCw0IEwgMzIsMTYiIHN0cm9rZS13aWR0aD0iMC44Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNzAsNDQwKSByb3RhdGUoLTE1KSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMjIsLTUgMzgsLTIgNDgsMTQgQyA0MCwzMiAxNiwzNCAwLDI4IEMgLTMsMTggLTQsOSAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA1LDQgTCAzNiwxOCIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIyOCw1MDApIHJvdGF0ZSgzNSkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMTUsNTYwKSByb3RhdGUoLTUwKSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMTgsLTQgMzIsLTIgNDAsMTIgQyAzMiwyOCAxNCwzMCAwLDI0IEMgLTQsMTYgLTQsOCAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjIiLz4KICAgICAgPHBhdGggZD0iTSA0LDQgTCAzMiwxNiIgc3Ryb2tlLXdpZHRoPSIwLjgiLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwLDY3MCkgcm90YXRlKDgwKSI+CiAgICAgIDxwYXRoIGQ9Ik0gMCwwIEMgMTYsLTMgMjgsLTEgMzYsMTAgQyAyOCwyNCAxMiwyNiAwLDIwIEMgLTIsMTQgLTMsNyAwLDAgWiIgc3Ryb2tlLXdpZHRoPSIxLjEiLz4KICAgICAgPHBhdGggZD0iTSAzLDMgTCAyOCwxMiIgc3Ryb2tlLXdpZHRoPSIwLjciLz4KICAgIDwvZz4KICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNSwxNDApIHJvdGF0ZSg0NSkiPgogICAgICA8cGF0aCBkPSJNIDAsMCBDIDE2LC0zIDI4LC0xIDM2LDEwIEMgMjgsMjQgMTIsMjYgMCwyMCBDIC0yLDE0IC0zLDcgMCwwIFoiIHN0cm9rZS13aWR0aD0iMS4xIi8+CiAgICAgIDxwYXRoIGQ9Ik0gMywzIEwgMjgsMTIiIHN0cm9rZS13aWR0aD0iMC43Ii8+CiAgICA8L2c+CiAgPC9nPgoKICA8IS0tIGJ1ZHMgLS0+CiAgPGcgb3BhY2l0eT0iMC40IiBzdHJva2Utd2lkdGg9IjEiPgogICAgPGNpcmNsZSBjeD0iODAiIGN5PSI1MCIgcj0iMyIvPgogICAgPGNpcmNsZSBjeD0iMTcwIiBjeT0iMTkwIiByPSIzLjUiLz4KICAgIDxjaXJjbGUgY3g9IjgwIiBjeT0iMzcwIiByPSIzIi8+CiAgICA8Y2lyY2xlIGN4PSIyMDAiIGN5PSI0ODAiIHI9IjMuNSIvPgogICAgPGNpcmNsZSBjeD0iMTAwIiBjeT0iNjQwIiByPSIzIi8+CiAgPC9nPgo8L3N2Zz4K'); }

.pd-gallery-section::before,
.pd-gallery-section::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.pd-gallery-section::before {
  left: -60px;
  width: 360px;
  -webkit-mask: var(--vine-svg) repeat-y top left / 320px 720px;
          mask: var(--vine-svg) repeat-y top left / 320px 720px;
}
.pd-gallery-section::after {
  right: -80px;
  width: 320px;
  transform: scaleX(-1);
  transform-origin: center;
  -webkit-mask: var(--vine-svg) repeat-y top right / 280px 630px;
          mask: var(--vine-svg) repeat-y top right / 280px 630px;
}

.pd-gallery-section__inner { position: relative; z-index: 1; }

.pd-gallery-section--exterior::before,
.pd-gallery-section--exterior::after  { background-color: var(--c-accent, #1a3a5c); opacity: 0.18; }
.pd-gallery-section--interior::before,
.pd-gallery-section--interior::after  { background-color: var(--c-accent, #1a3a5c); opacity: 0.22; }
.pd-gallery-section--floorplan::before,
.pd-gallery-section--floorplan::after { background-color: #ffffff;                    opacity: 0.42; }

/* === Intro + h2 sections: edge vines + faint texture ===
   The white backgrounds inside .post-hero-wrap--projects were covering
   the wrap's own vine pseudo-elements. Give them their own vines and
   a quiet dot pattern so they read consistently with the gallery
   sections below. */
.pd-intro,
.pd-section {
    position: relative;
    overflow: hidden;
}
.pd-intro::before, .pd-intro::after,
.pd-section::before, .pd-section::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-color: var(--c-accent, #1a3a5c);
    opacity: 0.18;
}
.pd-intro::before, .pd-section::before {
    left: -60px;
    width: 360px;
    -webkit-mask: var(--vine-svg) repeat-y top left / 320px 720px;
            mask: var(--vine-svg) repeat-y top left / 320px 720px;
}
.pd-intro::after, .pd-section::after {
    right: -80px;
    width: 320px;
    transform: scaleX(-1);
    transform-origin: center;
    -webkit-mask: var(--vine-svg) repeat-y top right / 280px 630px;
            mask: var(--vine-svg) repeat-y top right / 280px 630px;
}

/* Content layers above the vines */
.pd-intro__inner,
.pd-section__inner { position: relative; z-index: 1; }

/* Faint dot pattern on intro to match gallery exterior */
.pd-intro {
    background-image: radial-gradient(circle at 2px 2px, rgba(26, 42, 62, 0.04) 1.4px, transparent 1.9px);
    background-size: 38px 38px;
}

/* === Static pages — architectural background decor =========================
   The .static-page wrap already gets edge vines from the rules above. The
   middle of the page was a plain white slab, so we paint two extra layers
   over the .static-container:
     ::before — faint blueprint grid (continuous, full container height)
     ::after  — three architectural motifs (compass+ruler, building facade,
                room plan) composed into a single tall inline SVG, scaled to
                container width and pinned to the top so they spread down
                the page at predictable heights.
   The motifs all stroke with --c-accent at very low opacity so they read as
   atmosphere rather than illustration. .static-content gets its own stacking
   context so body copy sits above both decor layers. */
.static-container::before,
.static-container::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.static-container::before {
    background-image:
        linear-gradient(to right, rgba(26, 42, 62, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(26, 42, 62, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    background-position: 0 0;
}
.static-container::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1900' fill='none' stroke='%231a3a5c' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><g opacity='0.55' transform='translate(80 120)'><line x1='0' y1='180' x2='260' y2='180' stroke-width='1.5'/><g stroke-width='0.8'><line x1='20' y1='180' x2='20' y2='186'/><line x1='40' y1='180' x2='40' y2='190'/><line x1='60' y1='180' x2='60' y2='186'/><line x1='80' y1='180' x2='80' y2='190'/><line x1='100' y1='180' x2='100' y2='186'/><line x1='120' y1='180' x2='120' y2='192'/><line x1='140' y1='180' x2='140' y2='186'/><line x1='160' y1='180' x2='160' y2='190'/><line x1='180' y1='180' x2='180' y2='186'/><line x1='200' y1='180' x2='200' y2='190'/><line x1='220' y1='180' x2='220' y2='186'/><line x1='240' y1='180' x2='240' y2='190'/></g><circle cx='130' cy='30' r='3.5' fill='%231a3a5c'/><line x1='130' y1='30' x2='60' y2='180' stroke-width='1.4'/><line x1='130' y1='30' x2='200' y2='180' stroke-width='1.4'/><path d='M 75 142 Q 130 165 185 142' stroke-width='1'/><line x1='130' y1='30' x2='130' y2='180' stroke-width='0.6' stroke-dasharray='3 3'/></g><g opacity='0.45' transform='translate(540 540)'><path d='M0 480 L0 140 L40 140 L40 70 L200 70 L200 140 L240 140 L240 480 Z' stroke-width='1.5'/><g stroke-width='0.7'><rect x='25' y='170' width='38' height='52'/><rect x='85' y='170' width='38' height='52'/><rect x='145' y='170' width='38' height='52'/><rect x='25' y='240' width='38' height='52'/><rect x='85' y='240' width='38' height='52'/><rect x='145' y='240' width='38' height='52'/><rect x='25' y='310' width='38' height='52'/><rect x='85' y='310' width='38' height='52'/><rect x='145' y='310' width='38' height='52'/><rect x='25' y='380' width='38' height='52'/><rect x='85' y='380' width='38' height='52'/><rect x='145' y='380' width='38' height='52'/><rect x='185' y='170' width='38' height='52'/><rect x='185' y='240' width='38' height='52'/><rect x='185' y='310' width='38' height='52'/><rect x='185' y='380' width='38' height='52'/><line x1='105' y1='420' x2='105' y2='480'/><line x1='135' y1='420' x2='135' y2='480'/><line x1='105' y1='420' x2='135' y2='420'/></g><g stroke-width='0.6' stroke-dasharray='4 3'><line x1='-30' y1='480' x2='270' y2='480'/></g></g><g opacity='0.5' transform='translate(80 1100)'><rect x='0' y='0' width='320' height='240' stroke-width='1.5'/><line x1='110' y1='0' x2='110' y2='240' stroke-width='1.2'/><line x1='110' y1='130' x2='320' y2='130' stroke-width='1.2'/><line x1='0' y1='80' x2='110' y2='80' stroke-width='1'/><path d='M 0 110 A 30 30 0 0 1 30 80' stroke-width='0.9'/><path d='M 110 50 A 35 35 0 0 0 145 15' stroke-width='0.9'/><path d='M 220 130 A 30 30 0 0 0 250 100' stroke-width='0.9'/><g stroke-width='0.6'><line x1='40' y1='40' x2='100' y2='40'/><line x1='50' y1='25' x2='90' y2='25'/><line x1='150' y1='90' x2='200' y2='90'/><line x1='150' y1='105' x2='200' y2='105'/><line x1='160' y1='180' x2='300' y2='180'/><line x1='180' y1='200' x2='300' y2='200'/></g><g stroke-width='0.6' stroke-dasharray='3 3'><line x1='-20' y1='-20' x2='340' y2='-20'/><line x1='-20' y1='260' x2='340' y2='260'/></g><text x='-30' y='120' font-family='monospace' font-size='10' fill='%231a3a5c' stroke='none' opacity='0.7'>240</text><text x='150' y='-30' font-family='monospace' font-size='10' fill='%231a3a5c' stroke='none' opacity='0.7'>320</text></g><g opacity='0.55' transform='translate(620 1560)'><g stroke-width='1.2'><path d='M 0 -40 L 70 0 L 0 40 L -70 0 Z'/><path d='M -70 0 L -70 80 L 0 120 L 0 40 Z'/><path d='M 70 0 L 70 80 L 0 120 L 0 40 Z'/></g><g stroke-width='1.2' transform='translate(140 0)'><path d='M 0 -40 L 70 0 L 0 40 L -70 0 Z'/><path d='M -70 0 L -70 80 L 0 120 L 0 40 Z'/><path d='M 70 0 L 70 80 L 0 120 L 0 40 Z'/></g><g stroke-width='1' transform='translate(70 -100) scale(0.7)'><path d='M 0 -40 L 70 0 L 0 40 L -70 0 Z'/><path d='M -70 0 L -70 80 L 0 120 L 0 40 Z'/><path d='M 70 0 L 70 80 L 0 120 L 0 40 Z'/></g></g></svg>");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    opacity: 0.275;
}
.static-content {
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    /* Hide the architectural composite on narrow screens — at small sizes
       the motifs would crowd the text. Keep the grid for atmosphere. */
    .static-container::after { display: none; }
    .static-container::before { background-size: 32px 32px; }
}

/* ============================================================
   404 — Sayfa Bulunamadı
   Fixed 124px header forces top padding; the photo is the hero
   so surrounding type stays restrained and centered.
   ============================================================ */
.error-404 {
    padding: 160px 24px 96px;
    background: var(--c-near);
    min-height: 100vh;
    min-height: 100dvh;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.error-404__inner {
    width: 100%;
    max-width: 960px;
    text-align: center;
}

.error-404__eyebrow {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--c-eyebrow);
}

.error-404__title {
    margin: 0 0 36px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.15;
    color: var(--c-primary);
}

.error-404__media {
    margin: 0 0 40px;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(26, 42, 62, .06),
        0 20px 50px -20px rgba(26, 42, 62, .25);
    background: #e8ecf2;
}

.error-404__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1600 / 873;
    object-fit: cover;
}

.error-404__lead {
    margin: 0 auto 36px;
    max-width: 560px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--c-eyebrow);
}

.error-404__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.error-404__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--c-accent);
    border-radius: 2px;
    background: transparent;
    color: var(--c-accent);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color .25s var(--ease), color .25s var(--ease),
                border-color .25s var(--ease), transform .25s var(--ease);
}

.error-404__btn:hover,
.error-404__btn:focus-visible {
    background: var(--c-accent);
    color: var(--c-white);
    transform: translateY(-1px);
}

.error-404__btn--primary {
    background: var(--c-accent);
    color: var(--c-white);
}

.error-404__btn--primary:hover,
.error-404__btn--primary:focus-visible {
    background: var(--c-accent-2);
    border-color: var(--c-accent-2);
}

.error-404__btn--ghost {
    border-color: rgba(26, 58, 92, .25);
    color: var(--c-eyebrow);
}

.error-404__btn--ghost:hover,
.error-404__btn--ghost:focus-visible {
    background: transparent;
    border-color: var(--c-accent);
    color: var(--c-accent);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .error-404 { padding: 140px 16px 64px; }
    .error-404__title {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: 28px;
    }
    .error-404__media { margin-bottom: 28px; border-radius: 3px; }
    .error-404__lead { font-size: 15px; margin-bottom: 28px; }
    .error-404__actions { flex-direction: column; gap: 10px; }
    .error-404__btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .error-404__btn { transition: none; }
    .error-404__btn:hover { transform: none; }
}
