/* ═══════════════════════════════════════════
   ALTACA İNŞAAT — SHARED STYLESHEET
   Gri ton paleti + Kırmızı aksan sistemi
═══════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); background: var(--bg); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── TOKENS ── */
:root {
  /* Reds */
  --red:        #C0272D;
  --red-h:      #D63B41;
  --red-dk:     #8E1A1F;

  /* Greys — light to dark */
  --bg:         #F4F4F5;   /* sayfa zemini */
  --bg-2:       #EBEBEC;   /* bölüm zemini */
  --bg-3:       #E1E1E3;   /* kart/panel */
  --white:      #FFFFFF;

  /* Dark */
  --ink:        #18181B;
  --ink-2:      #27272A;
  --mid:        #52525B;
  --muted:      #A1A1AA;
  --border:     rgba(0,0,0,.1);
  --border-2:   rgba(0,0,0,.06);

  /* Fonts */
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;
  --ff-mono:    'DM Mono', monospace;

  /* Easing */
  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);

  /* Spacing */
  --section-pad: 100px;
}



/* ── TYPE UTILITIES ── */
.eyebrow {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--red); flex-shrink: 0; }

.section-title {
  font-family: var(--ff-display); font-size: clamp(30px, 3vw, 46px);
  font-weight: 700; line-height: 1.1; color: var(--ink);
}
.section-title em { font-style: italic; font-weight: 400; color: var(--mid); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.up { opacity: 1; transform: translateY(0); }
.reveal-r { opacity: 0; transform: translateX(22px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal-r.up { opacity: 1; transform: translateX(0); }
[data-d="1"] { transition-delay: .08s; }
[data-d="2"] { transition-delay: .16s; }
[data-d="3"] { transition-delay: .24s; }
[data-d="4"] { transition-delay: .32s; }
[data-d="5"] { transition-delay: .40s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 26px; transition: all .25s; cursor: pointer;
}
.btn svg { transition: transform .25s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }
.btn-red  { background: var(--red);   color: #fff; border: 1.5px solid var(--red);  }
.btn-red:hover  { background: var(--red-h); border-color: var(--red-h); }
.btn-dark { background: var(--ink);   color: #fff; border: 1.5px solid var(--ink);  }
.btn-dark:hover { background: var(--red); border-color: var(--red); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-outline-w { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline-w:hover { border-color: #fff; }

/* ── TOPBAR ── */
.topbar {
  background: var(--ink-2); height: 38px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
}
.topbar-left {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .11em;
  color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 28px;
}
.topbar-left a { color: inherit; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.topbar-left a:hover { color: var(--red); }
.topbar-right { display: flex; align-items: center; gap: 18px; justify-content: end; }
.t-lang {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  transition: color .2s; border-bottom: 1px solid transparent;
}
.t-lang:hover, .t-lang.on { color: var(--red); border-bottom-color: var(--red); }
.t-sep { width: 1px; height: 13px; background: rgba(255,255,255,.12); }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--white); display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.raised { box-shadow: 0 3px 20px rgba(0,0,0,.08); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 32px; }

/* Brand */
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-icon {
  width: 40px; height: 40px; background: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand-icon svg { fill: white; }
.brand-name { font-family: var(--ff-display); font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1; display: block; }
.brand-sub  { font-family: var(--ff-mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--red); display: block; margin-top: 2px; }

/* Nav links */
.nav-links { display: flex; align-items: center; justify-content: end; margin-bottom: 0px; }
.nav-a {
  display: flex; align-items: center; gap: 4px; padding: 0 16px;
  font-size: 13.5px; font-weight: 500; color: var(--mid);
  position: relative; transition: color .2s; white-space: nowrap;
}
.nav-a::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav-a:hover { color: var(--ink); }
.nav-a:hover::after, .nav-a.on::after { transform: scaleX(1); }
.nav-a.on { color: var(--ink); font-weight: 600; }

/* Nav actions */
.nav-acts { display: none; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 42px; height: 42px; padding: 9px;
  border: 1.5px solid var(--border); transition: border-color .2s;
}
.burger span { display: block; width: 100%; height: 1.5px; background: var(--ink); transition: transform .32s var(--ease), opacity .2s, width .3s; transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 100vw); background: var(--white);
  z-index: 300; transform: translateX(100%);
  transition: transform .38s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -6px 0 36px rgba(0,0,0,.1);
}
.drawer.open { transform: translateX(0); }
.d-backdrop {
  position: fixed; inset: 0; z-index: 299;
  background: rgba(0,0,0,.45); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .38s;
}
.d-backdrop.open { opacity: 1; pointer-events: auto; }
.d-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 70px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.d-close {
  width: 34px; height: 34px; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); transition: all .2s;
}
.d-close:hover { border-color: var(--red); color: var(--red); }
.d-nav { flex: 1; overflow-y: auto; }
.d-nav-a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 24px; border-bottom: 1px solid var(--border-2);
  font-family: var(--ff-display); font-size: 17px; color: var(--ink);
  position: relative; transition: color .2s, padding-left .22s;
}
.d-nav-a::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--red); transform: scaleY(0); transform-origin: bottom; transition: transform .22s var(--ease);
}
.d-nav-a:hover { color: var(--red); padding-left: 32px; }
.d-nav-a:hover::before, .d-nav-a.on::before { transform: scaleY(1); }
.d-nav-a.on { color: var(--red); font-weight: 700; }
.d-langs { display: flex; gap: 8px; padding: 14px 24px; border-top: 1px solid var(--border); flex-shrink: 0; }
.d-lang {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 13px; border: 1.5px solid var(--border); color: var(--mid); transition: all .2s;
}
.d-lang.on, .d-lang:hover { border-color: var(--red); color: var(--red); }
.d-contact { padding: 16px 24px; background: var(--bg); border-top: 1px solid var(--border); flex-shrink: 0; }
.d-contact-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--mid); margin-bottom: 8px; }
.d-contact-row svg { stroke: var(--red); flex-shrink: 0; }
.d-actions { display: grid; grid-template-columns: 1fr 1fr; flex-shrink: 0; }
.d-act {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px; font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase; transition: all .2s;
}
.d-act.ghost { background: var(--bg-2); color: var(--ink); border-right: 1px solid var(--border); }
.d-act.ghost:hover { background: var(--bg-3); }
.d-act.solid { background: var(--red); color: #fff; }
.d-act.solid:hover { background: var(--red-h); }

/* ── BREADCRUMB ── */
.breadcrumb-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.bc {
  display: flex; align-items: center; gap: 8px; height: 42px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); overflow-x: auto;
  scrollbar-width: none; white-space: nowrap;
}
.bc a { color: var(--muted); transition: color .2s; }
.bc a:hover { color: var(--red); }
.bc-sep { color: var(--border); font-size: 10px; }
.bc-cur { color: var(--ink); font-weight: 500; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--ink-2); position: relative; overflow: hidden;
  padding: 72px 0 64px;
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .1; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .22em;
  color: rgba(255,255,255,.4); text-transform: uppercase;
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.page-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--red); }
.page-hero-title {
  font-family: var(--ff-display); font-size: clamp(32px, 4vw, 50px);
  font-weight: 900; line-height: 1.06; color: #fff; margin-bottom: 14px;
}
.page-hero-title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,.45); }
.page-hero-desc {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.5); max-width: 500px;
}
.page-hero-bar {
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; padding-top: 36px;
  display: flex; gap: 48px; flex-wrap: wrap;
}
.page-hero-stat-n { font-family: var(--ff-display); font-size: 36px; font-weight: 900; color: var(--red); line-height: 1; }
.page-hero-stat-u { font-size: 20px; }
.page-hero-stat-l { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-top: 5px; }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--red); overflow: hidden; height: 42px; display: flex; align-items: center; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 22s linear infinite; will-change: transform; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.8); padding: 0 40px; display: flex; align-items: center; gap: 40px;
}
.marquee-item::after { content: '◆'; font-size: 6px; opacity: .5; }

/* ABOUT PAGE */
.about-intro {
    padding: 15px 0;
    background: var(--white);
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-img-stack {
    position: relative;
}

.ai-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.ai-img-sub {
    position: absolute;
    bottom: -32px;
    right: -28px;
    width: 220px;
    height: 160px;
    object-fit: cover;
    border: 4px solid var(--white);
}

.ai-badge {
    position: absolute;
    top: 28px;
    left: -20px;
    background: var(--red);
    padding: 18px 22px;
}

.ai-badge-n {
    font-family: var(--ff-display);
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.ai-badge-l {
    font-family: var(--ff-mono);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-top: 4px;
}

.lead-text {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 20px;
    border-left: 3px solid var(--red);
    padding-left: 18px;
}

.body-text {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--mid);
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--mid);
    margin-bottom: 16px;
}

.about-intro h2 {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.06;
    color: var(--ink);
    margin-bottom: 8px;
}

/* STATS BAND */
.stats-band {
    background: var(--ink-2);
    padding: 60px 0;
}

.stats-band-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(255,255,255,.06);
}

.sb-item {
    padding: 36px 28px;
    text-align: center;
}

.sb-num {
    font-family: var(--ff-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.sb-unit {
    font-size: 24px;
}

.sb-label {
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-top: 7px;
}

/* MISSION / VISION */
.mv-section {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 52px;
}

.mv-card {
    padding: 48px 44px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

    .mv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--red);
    }

.mv-card-num {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--red);
    margin-bottom: 20px;
}

.mv-card-title {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
}

.mv-card-body {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--mid);
}

/* VALUES */
.values-section {
    padding: var(--section-pad) 0;
    background: var(--white);
}

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

.val-card {
    padding: 40px 34px;
    background: var(--bg);
    transition: background .25s;
    border-top: 2px solid transparent;
    transition: border-color .25s, background .25s;
}

    .val-card:hover {
        background: var(--bg-2);
        border-top-color: var(--red);
    }

.val-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .val-icon svg {
        stroke: #fff;
    }

.val-title {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.val-body {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--mid);
}

/* TEAM */
.team-section {
    padding: 15px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 3px;
    margin: 20px 0px;
}

.team-card {
    background: var(--white);
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: grayscale(.3);
    transition: filter .3s;
}

.team-card:hover .team-img {
    filter: grayscale(0);
}

.team-info {
    padding: 22px 20px;
    border-top: 2px solid var(--bg-3);
}

.team-name {
    font-family: var(--ff-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.team-role {
    font-family: var(--ff-mono);
    font-size: 10.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
}

/* TIMELINE */
.timeline-section {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.timeline {
    position: relative;
    margin-top: 52px;
    padding-left: 48px;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 14px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--bg-3);
    }

.tl-item {
    position: relative;
    margin-bottom: 40px;
}

    .tl-item::before {
        content: '';
        position: absolute;
        left: -38px;
        top: 6px;
        width: 12px;
        height: 12px;
        background: var(--bg-3);
        border-radius: 50%;
        transition: background .25s;
    }

    .tl-item:hover::before {
        background: var(--red);
    }

.tl-year {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--red);
    margin-bottom: 6px;
}

.tl-title {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.tl-body {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--mid);
}

/* CERTIFICATIONS */
.cert-section {
    padding: 64px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 36px;
}

.cert-item {
    background: var(--white);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 220px;
}

.cert-icon {
    width: 40px;
    height: 40px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .cert-icon svg {
        stroke: #fff;
    }

.cert-name {
    font-family: var(--ff-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}

.cert-desc {
    font-size: 12px;
    color: var(--muted);
    font-family: var(--ff-mono);
}


/* RESPONSIVE */
@media(max-width:1100px) {
    .ai-grid, .mv-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ai-img-sub {
        display: none;
    }

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

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

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

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

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

    .cert-grid {
        flex-direction: column;
    }
}





/* ── FOOTER ── */
footer { background: #101012; }
.footer-accent { height: 3px; background: linear-gradient(90deg, var(--red-dk), var(--red), var(--red-h)); }
.footer-body { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 240px 1fr 1fr 1fr; gap: 48px; }
.f-brand-icon { width: 38px; height: 38px; background: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.f-brand-icon svg { fill: white; }
.f-brand-name { font-family: var(--ff-display); font-size: 17px; font-weight: 900; color: #fff; }
.f-brand-sub  { font-family: var(--ff-mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--red); display: block; margin-top: 2px; margin-bottom: 16px; }
.f-tagline { font-family: var(--ff-display); font-size: 13.5px; font-style: italic; color: rgba(255,255,255,.28); line-height: 1.6; margin-bottom: 16px; }
.f-desc {
    font-size: 13px;
    line-height: 1.75;
    color: rgb(255 255 255 / 71%);
    margin-bottom: 22px;
}
.f-socials { display: flex; gap: 8px; }
.f-soc { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.3); transition: all .2s; }
.f-soc:hover { border-color: var(--red); color: var(--red); }
.f-col-head {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500; letter-spacing: .17em;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(192,39,45,.18); display: flex; align-items: center; gap: 8px;
}
.f-col-head::before { content: ''; width: 14px; height: 1.5px; background: var(--red); }
.f-links { display: flex; flex-direction: column; padding-left:0px; }
.f-link {
    font-size: 13px;
    font-weight: 300;
    color: rgb(255 255 255 / 71%);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s, padding-left .2s;
}
.f-link::before { content: ''; width: 12px; height: 1px; background: rgba(192,39,45,.3); transition: width .2s, background .2s; flex-shrink: 0; }
.f-link:hover { color: rgba(255,255,255,.82); padding-left: 5px; }
.f-link:hover::before { width: 18px; background: var(--red); }
.f-contact-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.f-contact-icon { width: 28px; height: 28px; border: 1px solid rgba(192,39,45,.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red); }
.f-contact-txt {
    font-size: 13px;
    line-height: 1.6;
    color: rgb(255 255 255 / 71%);
}
.f-contact-txt a { color: inherit; transition: color .2s; }
.f-contact-txt a:hover { color: var(--red); }
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.f-copy { font-family: var(--ff-mono); font-size: 11px; color: rgba(255,255,255,.2); }
.f-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.f-legal a { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.2); transition: color .2s; }
.f-legal a:hover { color: var(--red); }

/* ── SCROLL TOP ── */
.go-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 42px; height: 42px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff; border: none; cursor: pointer;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 18px rgba(192,39,45,.4);
}
.go-top.on { opacity: 1; transform: translateY(0); }
.go-top:hover { background: var(--red-h); }

/* ── RESPONSIVE (shared) ── */
@media (max-width: 1100px) {
  .container, .container-sm { padding: 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .nav-acts {display: block;}
}
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav-links, .nav-acts .btn:not(.burger-wrap) { display: none; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero-bar { gap: 28px; }
}
@media (max-width: 480px) {

}


/* ── LEFT SIDEBAR ── */
.sidebar {
    position: sticky;
    top: 70px; /* navbar height */
    height: calc(100vh - 70px);
    overflow-y: auto;
    background: var(--white);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

    .sidebar::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar::-webkit-scrollbar-thumb {
        background: var(--border);
    }

/* Sidebar header */
.sb-header {
    padding: 24px 24px 18px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.sb-header-label {
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.sb-header-title {
    font-family: var(--ff-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
}

/* Sidebar nav groups */
.sb-nav {
    flex: 1;
    padding: 12px 0;
}

.sb-group {
}

.sb-group-label {
    font-family: var(--ff-mono);
    font-size: 9.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 16px 24px 7px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .sb-group-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

.sb-link {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 24px;
    font-size: 13.5px;
    color: var(--mid);
    position: relative;
    transition: color .2s, background .2s;
    border-left: 2px solid transparent;
}

    .sb-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--red);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform .22s var(--ease);
    }

    .sb-link:hover {
        color: var(--ink);
        background: var(--bg);
    }

        .sb-link:hover::before {
            transform: scaleY(1);
        }

    .sb-link.on {
        color: var(--ink);
        font-weight: 600;
        background: rgba(192,39,45,.04);
        border-left-color: var(--red);
    }

        .sb-link.on::before {
            transform: scaleY(1);
        }

.sb-link-icon {
    flex-shrink: 0;
    color: var(--muted);
    transition: color .2s;
}

.sb-link:hover .sb-link-icon, .sb-link.on .sb-link-icon {
    color: var(--red);
}

.sb-link-badge {
    margin-left: auto;
    font-family: var(--ff-mono);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--bg-2);
    color: var(--muted);
    padding: 2px 7px;
    flex-shrink: 0;
}

.sb-link.on .sb-link-badge {
    background: rgba(192,39,45,.12);
    color: var(--red);
}

/* Sidebar sub-links (child items) */
.sb-sub {
    display: none;
    background: var(--bg);
}

.sb-link.has-sub.open + .sb-sub {
    display: block;
}

.sb-sub-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 24px 9px 48px;
    font-size: 13px;
    color: var(--muted);
    transition: color .2s;
    border-left: 2px solid transparent;
}

    .sb-sub-link::before {
        content: '•';
        color: var(--border);
        font-size: 10px;
        flex-shrink: 0;
    }

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

    .sb-sub-link.on {
        color: var(--red);
        font-weight: 500;
    }

/* Sidebar footer CTA */
.sb-cta {
    flex-shrink: 0;
    background: var(--red);
    padding: 20px 22px;
    border-top: 1px solid rgba(255,255,255,.15);
}

.sb-cta-title {
    font-family: var(--ff-display);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.sb-cta-desc {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    margin-bottom: 14px;
    line-height: 1.6;
}

.sb-cta-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--ff-mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.4);
    padding: 9px 14px;
    transition: all .2s;
    width: fit-content;
}

    .sb-cta-btn:hover {
        border-color: #fff;
        background: rgba(255,255,255,.1);
    }

/* ── MOBILE SIDEBAR TOGGLE ── */
.sb-toggle-bar {
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
    height: 48px;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 62px;
    z-index: 90;
}

.sb-toggle-label {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    padding: 6px 12px;
    border: 1.5px solid rgba(192,39,45,.25);
    background: none;
    cursor: pointer;
    transition: all .2s;
}

    .sb-toggle-btn:hover {
        background: rgba(192,39,45,.06);
        border-color: var(--red);
    }
/* Mobile drawer for sidebar */
.sb-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 450;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity .3s;
}

    .sb-mobile-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

.sb-mobile-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 85vw);
    background: var(--white);
    z-index: 460;
    transform: translateX(-100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

    .sb-mobile-panel.open {
        transform: translateX(0);
    }

.sb-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 58px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.sb-mobile-close {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--border);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--mid);
    transition: all .2s;
}

    .sb-mobile-close:hover {
        border-color: var(--red);
        color: var(--red);
    }

/* Floating TOC */
.ic-toc {
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    padding: 18px 20px;
    margin-bottom: 36px;
}

.ic-toc-title {
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.ic-toc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left:0px;
}

.ic-toc-list p
{
    margin-bottom:0px;
}


.ic-toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border-2);
    font-size: 13.5px;
    color: var(--mid);
    transition: color .2s;
}

    .ic-toc-link:last-child {
        border-bottom: none;
    }

    .ic-toc-link::before {
        content: '';
        width: 10px;
        height: 1px;
        background: var(--red);
        flex-shrink: 0;
        opacity: .5;
    }

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




/* ── LOGO WALL ── */
.logo-wall-section {
    padding: 72px 0;
    background: var(--bg);
}

.lw-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-wall {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}

.logo-card {
    background: var(--white);
    border: 1px solid transparent;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: default;
    transition: border-color .22s, box-shadow .22s, transform .22s;
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

    .logo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s var(--ease);
    }

    .logo-card:hover {
        border-color: var(--border);
        box-shadow: 0 4px 20px rgba(0,0,0,.07);
        transform: translateY(-2px);
    }

        .logo-card:hover::before {
            transform: scaleX(1);
        }

.logo-name {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--mid);
    letter-spacing: .02em;
    transition: color .22s;
    text-align: center;
}

.logo-card:hover .logo-name {
    color: var(--ink);
}

.logo-sector {
    font-family: var(--ff-mono);
    font-size: 9.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .22s;
    text-align: center;
}

.logo-card:hover .logo-sector {
    color: var(--red);
}

.logo-flag {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: var(--ff-mono);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--bg-2);
    padding: 2px 7px;
}

/* ── CASE STUDIES ── */
.cases-section {
    padding: var(--section-pad) 0;
    background: var(--bg);
}

.cases-head {
    margin-bottom: 48px;
}

.cases-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.case-row {
    display: grid;
    grid-template-columns: 320px 1fr auto;
    background: var(--white);
    align-items: center;
    gap: 0;
    border: 1px solid transparent;
    transition: border-color .22s;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

    .case-row:hover {
        border-color: var(--red);
    }

.case-img {
    width: 320px;
    height: 200px;
    object-fit: cover;
    filter: grayscale(.25);
    transition: filter .4s;
    display: block;
    flex-shrink: 0;
}

.case-row:hover .case-img {
    filter: grayscale(0);
}

.case-body {
    padding: 32px 36px;
}

.case-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.case-badge {
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--red);
    color: #fff;
    padding: 3px 10px;
}

.case-year {
    font-family: var(--ff-mono);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .1em;
}

.case-title {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 10px;
    transition: color .22s;
}

.case-row:hover .case-title {
    color: var(--red);
}

.case-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--mid);
}

.case-stats {
    padding: 32px 36px 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    flex-shrink: 0;
}

.cs-stat-n {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.cs-stat-l {
    font-family: var(--ff-mono);
    font-size: 9.5px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: right;
    margin-top: 3px;
}

.case-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--red);
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .25s, transform .25s;
}

.case-row:hover .case-arrow {
    opacity: 1;
    transform: scale(1);
}

/* ── SECTORS ── */
.sectors-section {
    padding: var(--section-pad) 0;
    background: var(--ink-2);
}

.sectors-head {
    margin-bottom: 48px;
}

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

.sector-card {
    padding: 36px 28px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    position: relative;
    overflow: hidden;
    transition: background .28s;
}

    .sector-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s var(--ease);
    }

    .sector-card:hover {
        background: rgba(255,255,255,.05);
    }

        .sector-card:hover::after {
            transform: scaleX(1);
        }

.sector-num {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .14em;
    color: var(--red);
    margin-bottom: 16px;
}

.sector-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: border-color .25s;
}

.sector-card:hover .sector-icon {
    border-color: var(--red);
}

.sector-icon svg {
    stroke: rgba(255,255,255,.6);
    transition: stroke .25s;
}

.sector-card:hover .sector-icon svg {
    stroke: var(--red);
}

.sector-name {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.sector-count {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}



.contact-section {
    padding: 80px 0 96px;
    background: var(--bg);
}

/* Main info card */
.ci-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    overflow: hidden;
    margin-bottom: 16px;
}

.ci-card-head {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    font-family: var(--ff-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 9px;
}

    .ci-card-head::before {
        content: '';
        width: 14px;
        height: 1.5px;
        background: var(--red);
    }

/* Office tabs */
.office-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.otab {
    flex: 1;
    padding: 13px 10px;
    font-family: var(--ff-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color .2s,border-color .2s;
}

    .otab.on {
        color: var(--red);
        border-bottom-color: var(--red);
    }

.office-panel {
    display: none;
    padding: 20px 22px;
}

    .office-panel.on {
        display: block;
    }

.ci-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

    .ci-row:last-child {
        margin-bottom: 0;
    }

.ci-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(192,39,45,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red);
}

.ci-content {
}

.ci-label {
    font-family: var(--ff-mono);
    font-size: 9.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 2px;
}

.ci-val {
    font-size: 13.5px;
    color: var(--ink);
    line-height: 1.55;
}

    .ci-val a {
        color: var(--ink);
        transition: color .2s;
    }

        .ci-val a:hover {
            color: var(--red);
        }

/* Working hours */
.wh-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 16px;
}

.wh-day {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 5px 0;
    border-bottom: 1px solid var(--border-2);
}

.wh-time {
    font-size: 13px;
    color: var(--ink);
    padding: 5px 0;
    border-bottom: 1px solid var(--border-2);
}

    .wh-day:last-of-type, .wh-time:last-of-type {
        border-bottom: none;
    }

.wh-closed {
    color: var(--muted);
    font-style: italic;
}

/* Map placeholder */
.map-wrap {
    background: var(--bg-3);
    position: relative;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.map-pin {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.map-pin-dot {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(192,39,45,.4);
}

    .map-pin-dot svg {
        transform: rotate(45deg);
        fill: white;
    }

.map-pin-label {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--white);
    padding: 6px 14px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-family: var(--ff-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
    transition: all .22s;
    margin-bottom: 16px;
}

    .map-btn svg {
        stroke: var(--red);
        flex-shrink: 0;
    }

    .map-btn:hover {
        border-color: var(--red);
        color: var(--red);
    }





/* PROJECTS GRID */
.projects-list {
    padding: 60px 0 96px;
    background: var(--bg);
}

.pg-section {
    margin-bottom: 64px;
}

.pg-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
}

.pg-section-title {
    font-family: var(--ff-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 12px;
}

    .pg-section-title::before {
        content: attr(data-n);
        font-family: var(--ff-mono);
        font-size: 11px;
        letter-spacing: .14em;
        color: var(--red);
        font-weight: 500;
    }

.pg-count {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

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

    .pg-grid.list-view {
        grid-template-columns: 1fr;
        gap: 1px;
    }

/* Project card grid */
.pcard {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    display: block;
    text-decoration: none;
}

.pcard-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: brightness(.55) saturate(.85);
    transition: transform .7s var(--ease),filter .55s;
}

.pcard:hover .pcard-img {
    transform: scale(1.05);
    filter: brightness(.35);
}

.pcard-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: var(--red);
    color: #fff;
    padding: 4px 11px;
}

.pcard-body {
    padding: 20px 22px 24px;
    background: var(--ink-2);
    transition: background .25s;
}

.pcard:hover .pcard-body {
    background: #252426;
}

.pcard-title {
    font-family: var(--ff-display);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 7px;
    transition: color .2s;
}

.pcard:hover .pcard-title {
    color: rgba(255,180,180,1);
}

.pcard-loc {
    font-family: var(--ff-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.32);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

    .pcard-loc svg {
        stroke: var(--red);
        flex-shrink: 0;
    }

.pcard-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.ptag {
    font-family: var(--ff-mono);
    font-size: 9.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    border: 1px solid rgba(255,255,255,.08);
    padding: 3px 9px;
    transition: all .2s;
}

.pcard:hover .ptag {
    border-color: rgba(192,39,45,.25);
    color: rgba(255,120,120,.65);
}

.imgbox
{
    width:100%;
    position:relative;
    height:300px;
    overflow:hidden;
    display:flex;
    justify-content:center;
    object-fit:cover;
}

.imgbox img
{
    width:100%;
}


/* RIGHT SIDEBAR */
.dcs {
    position: sticky;
    top: 84px;
}

.sc {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    margin-bottom: 18px;
    overflow: hidden;
}

.sc-head {
    padding: 17px 20px;
    border-bottom: 1px solid var(--border);
    font-family: var(--ff-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .sc-head::before {
        content: '';
        width: 14px;
        height: 1.5px;
        background: var(--red);
    }

.sc-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-2);
}

    .sc-row:last-child {
        border-bottom: none;
    }

.sc-label {
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    flex-shrink: 0;
}

.sc-val {
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
}

    .sc-val.red {
        color: var(--red);
    }

.sc-cta {
    background: var(--red);
    padding: 24px 20px;
    margin-bottom: 18px;
}

.sc-cta-title {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 7px;
}

.sc-cta-desc {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
    margin-bottom: 18px;
}

.sc-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    background: #fff;
    color: var(--red);
    font-family: var(--ff-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 12px;
    border: none;
    cursor: pointer;
    transition: all .2s;
}

    .sc-cta-btn:hover {
        background: var(--bg-2);
    }

.sc-dl-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-2);
    cursor: pointer;
    transition: background .2s;
}

    .sc-dl-item:last-child {
        border-bottom: none;
    }

    .sc-dl-item:hover {
        background: var(--bg);
    }

.sc-dl-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(192,39,45,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red);
}

.sc-dl-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
}

.sc-dl-meta {
    font-family: var(--ff-mono);
    font-size: 10px;
    text-transform: uppercase;
    color: var(--muted);
}

.sc-share {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sc-share-label {
    font-family: var(--ff-mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.sshare-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mid);
    cursor: pointer;
    transition: all .2s;
}

    .sshare-btn:hover {
        border-color: var(--red);
        color: var(--red);
    }

/* RELATED */
.related-section {
    padding: 72px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
}

.rel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
}

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

.rel-card {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    display: block;
    text-decoration: none;
}

.rel-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: brightness(.5) saturate(.85);
    transition: transform .65s var(--ease),filter .55s;
}

.rel-card:hover .rel-img {
    transform: scale(1.05);
    filter: brightness(.3);
}

.rel-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    background: linear-gradient(to top,rgba(16,16,18,.88) 0%,transparent 60%);
}

.rel-cat {
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,120,120,.85);
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
}

    .rel-cat::before {
        content: '';
        width: 12px;
        height: 1px;
        background: rgba(192,39,45,.7);
    }

.rel-title {
    font-family: var(--ff-display);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.rel-loc {
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: .1em;
    color: rgba(255,255,255,.38);
    text-transform: uppercase;
    margin-top: 5px;
}

.rel-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.65);
    transition: opacity .25s,transform .25s;
}

.rel-card:hover .rel-arrow {
    opacity: 1;
    transform: scale(1);
}


/* ALT BAR */
.aydinlatma-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

    .aydinlatma-bar p {
        margin: 0;
        font-size: 14px;
    }

    .aydinlatma-bar a {
        color: #fff;
        text-decoration: underline;
        margin-left: 5px;
    }

    .aydinlatma-bar button {
        background: rgba(192,39,45,.25);
        border: none;
        padding: 8px 15px;
        cursor: pointer;
        color: #fff;
        border-radius: 5px;
    }

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
}

.modal-body {
    max-height: 400px;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 25px;
    cursor: pointer;
}


.aydinlatma-bar {
    display: none; /* 🔥 kritik */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

/* BAR */
.kvkk-bar {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #0f172a;
    color: #fff;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
}

    .kvkk-bar p {
        margin: 0;
        font-size: 14px;
    }

    .kvkk-bar a {
        color: #70050b;
        cursor: pointer;
        margin-left: 5px;
        font-weight: 500;
    }

    .kvkk-bar button {
        background: #70050b;
        border: none;
        padding: 8px 16px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        color: #fff;
    }

/* MODAL */
.kvkk-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
}

.kvkk-content {
    background: #fff;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

.kvkk-text {
    max-height: 500px;
    overflow-y: auto;
    line-height: 1.6;
}

    .kvkk-text h3 {
        margin-top: 20px;
        color: #0f172a;
    }

    .kvkk-text p {
        color: #333;
        font-size: 14px;
    }

    .kvkk-text ul {
        list-style: circle;
    }

    .kvkk-text li {
        margin-bottom: 6px;
    }

.kvkk-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* MODAL ARKA PLAN */
.kvkk-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    z-index: 10000;
    animation: fadeIn 0.25s ease;
}

/* MODAL BOX */
.kvkk-content {
    background: #ffffff;
    width: 92%;
    max-width: 720px;
    margin: 60px auto;
    padding: 28px 30px;
    border-radius: 14px;
    position: relative;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: slideUp 0.3s ease;
}

    /* HEADER */
    .kvkk-content h2 {
        font-size: 18px;
        margin-bottom: 15px;
        color: #0f172a;
        font-weight: 600;
    }

/* BODY */
.kvkk-text {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
}

    /* SCROLLBAR */
    .kvkk-text::-webkit-scrollbar {
        width: 6px;
    }

    .kvkk-text::-webkit-scrollbar-thumb {
        background: #d1d5db;
        border-radius: 10px;
    }

    /* ALT BAŞLIKLAR */
    .kvkk-text h3 {
        font-size: 13px;
        margin-top: 18px;
        margin-bottom: 6px;
        color: #1e293b;
        font-weight: 600;
    }

    /* PARAGRAF */
    .kvkk-text p {
        font-size: 13px;
        color: #475569;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    /* LİSTE */
    .kvkk-text ul {
        padding-left: 18px;
        margin-bottom: 10px;
    }

    .kvkk-text li {
        font-size: 13px;
        color: #475569;
        margin-bottom: 4px;
    }

/* KAPAT BUTONU */
.kvkk-close {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #94a3b8;
    transition: 0.2s;
}

    .kvkk-close:hover {
        color: #0f172a;
    }

/* ALT BUTON ALANI */
.kvkk-footer {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

    .kvkk-footer button {
        background: #0f172a;
        color: #fff;
        border: none;
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 13px;
        cursor: pointer;
        transition: 0.2s;
    }

        .kvkk-footer button:hover {
            background: #1e293b;
        }

/* ANİMASYON */
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}