/* ==========================================================================
   EMS YAPI — Kurumsal Tema
   Renk Kimliği: Navy (logo) + Steel Gray + Gold (lüks aksan)
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --navy-950: #08182a;
  --navy-900: #0d2238;
  --navy-800: #15355a;
  --navy-700: #1d4674;
  --navy-600: #28598f;
  --steel:    #8a939c;
  --steel-100:#eef1f4;

  /* Lüks aksan */
  --gold:     #c8a24b;
  --gold-200: #e7cf8f;
  --gold-700: #9a7a2c;

  --white:    #ffffff;
  --ink:      #11202f;
  --muted:    #5b6b7a;
  --line:     rgba(13, 34, 56, .10);

  /* Efektler */
  --shadow-sm: 0 2px 10px rgba(13,34,56,.06);
  --shadow-md: 0 14px 40px rgba(13,34,56,.12);
  --shadow-lg: 0 30px 70px rgba(8,24,42,.28);
  --gold-grad: linear-gradient(135deg, var(--gold-200), var(--gold) 55%, var(--gold-700));
  --navy-grad: linear-gradient(135deg, var(--navy-800), var(--navy-950));

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --container: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ==========================================================================
   TOP BAR  (sade kurumsal utility bar)
   ========================================================================== */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,.66);
  font-size: 12.5px;
  position: relative;
  z-index: 60;
  border-top: 3px solid var(--navy-950);   /* sade koyu aksan çizgisi */
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 44px; gap: 18px;
}
.topbar__list { display: flex; align-items: center; gap: 0; }
.topbar__item {
  display: inline-flex; align-items: center; gap: 9px;
  padding-right: 22px; margin-right: 22px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: color .25s;
}
.topbar__item:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.topbar__item svg { width: 15px; height: 15px; color: var(--steel); }
.topbar__item:hover { color: #fff; }
.topbar__right { display: flex; align-items: center; gap: 18px; }

.topbar__lang { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.topbar__lang a { color: rgba(255,255,255,.5); transition: color .25s; }
.topbar__lang a.is-active { color: #fff; }
.topbar__lang a:hover { color: var(--gold-200); }
.topbar__lang span { color: rgba(255,255,255,.22); }

.topbar__socials { display: flex; align-items: center; gap: 14px; }
.topbar__socials a { color: rgba(255,255,255,.6); transition: color .25s; }
.topbar__socials a:hover { color: var(--gold-200); }
.topbar__socials svg { width: 15px; height: 15px; }
.topbar__sep { width: 1px; height: 16px; background: rgba(255,255,255,.16); }

/* ==========================================================================
   HEADER / NAV  (solid, kurumsal)
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), height .3s var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 24px rgba(13,34,56,.08); }
.header__inner {
  display: flex; align-items: center; gap: 16px;
  height: 92px; transition: height .3s var(--ease);
}
.header.is-stuck .header__inner { height: 76px; }

/* Logo */
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 48px; width: auto; transition: height .3s var(--ease); }
.header.is-stuck .brand img { height: 42px; }

/* Nav — iki satırlı (başlık + alt açıklama) */
.nav { margin-left: 18px; margin-right: 28px; }
.nav__list { display: flex; align-items: stretch; gap: 0; }
.nav__link {
  position: relative; display: flex; flex-direction: column; align-items: center;
  gap: 3px; text-align: center; padding: 8px 16px; transition: color .25s;
}
.nav__title {
  font-weight: 700; font-size: 13px; letter-spacing: .02em;
  text-transform: uppercase; color: var(--navy-900); transition: color .25s; white-space: nowrap;
}
.nav__sub { display: none; }
.nav__link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: -1px; height: 2px;
  background: var(--navy-800);
  transform: scaleX(0); transform-origin: center; transition: transform .3s var(--ease);
}
.nav__item:hover .nav__title,
.nav__link.is-active .nav__title { color: var(--navy-700); }
.nav__item:hover .nav__sub,
.nav__link.is-active .nav__sub { color: var(--navy-600); }
.nav__item:hover .nav__link::after,
.nav__link.is-active::after { transform: scaleX(1); }

/* Dropdown — temiz, çizgi aksanlı */
.nav__item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 1px); left: 0;
  min-width: 240px; background: #fff;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); border-top: 2px solid var(--navy-800);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .26s var(--ease);
}
.nav__item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  position: relative; display: flex; align-items: center;
  padding: 11px 16px 11px 18px; font-size: 14px; font-weight: 500; color: var(--ink);
  transition: .22s; border-left: 2px solid transparent;
}
.dropdown a + a { border-top: 1px solid var(--line); }
.dropdown a::after {
  content: ""; width: 6px; height: 6px; margin-left: auto;
  border-top: 2px solid var(--steel); border-right: 2px solid var(--steel);
  transform: rotate(45deg); opacity: 0; transition: .22s;
}
.dropdown a:hover {
  background: var(--steel-100); color: var(--navy-800);
  border-left-color: var(--navy-800); padding-left: 22px;
}
.dropdown a:hover::after { opacity: 1; }

/* Header actions */
.header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* Kurumsal iletişim bloğu */
.header__contact { display: flex; align-items: center; gap: 12px; }
.header__contact-ic {
  width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 8px; color: var(--navy-700);
}
.header__contact-ic svg { width: 19px; height: 19px; }
.header__contact-txt { display: flex; flex-direction: column; line-height: 1.25; }
.header__contact-txt small { font-size: 12px; color: var(--muted); font-weight: 500; }
.header__contact-txt strong { font-size: 16px; color: var(--navy-900); font-weight: 700; letter-spacing: .01em; }

.header__sep { width: 1px; height: 34px; background: var(--line); }

/* Butonlar — sade, kare hatlı */
.btn {
  --bg: var(--navy-800);
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: 8px; font-weight: 600; font-size: 14px;
  background: var(--bg); color: #fff; border: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn:hover { background: var(--navy-900); transform: translateY(-1px); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-700); color: #fff; }
.btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,.45); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
/* Çerçeveli (outline) — açık zeminde */
.btn--outline { background: #fff; border-color: var(--line); color: var(--navy-800); }
.btn--outline:hover { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
/* Kurumsal kompakt header butonu */
.btn--sm {
  padding: 11px 20px; font-size: 12px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
}
.btn--sm svg { width: 16px; height: 16px; }
.btn--lg { padding: 15px 30px; font-size: 15px; }

/* Hamburger */
.hamburger { display: none; width: 46px; height: 46px; border-radius: 8px; border: 1px solid var(--line); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy-900); margin: 4px auto; border-radius: 2px; transition: .3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero { position: relative; height: clamp(680px, 94vh, 1000px); overflow: hidden; background: var(--navy-950); }
.hero__track { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s;
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.12);
}
.slide.is-active .slide__bg { animation: kenburns 7s linear forwards; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1.0); } }
.slide__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(8,24,42,.92) 0%, rgba(8,24,42,.62) 42%, rgba(8,24,42,.15) 100%),
    linear-gradient(0deg, rgba(8,24,42,.55), transparent 45%);
}
.slide__overlay::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5;
}

.hero__content { position: relative; z-index: 5; height: 100%; display: flex; align-items: center; }
.slide__inner { max-width: 660px; color: #fff; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 15px; border-radius: 6px; font-size: 11.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  background: rgba(21,53,90,.55); border: 1px solid rgba(255,255,255,.18); color: #fff;
  backdrop-filter: blur(4px);
}
.kicker::before { content: ""; width: 22px; height: 2px; background: #fff; opacity: .8; }
.slide__title {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem); line-height: 1.14; font-weight: 400;
  margin: 22px 0 18px; letter-spacing: -.01em;
}
.slide__title em { font-style: normal; color: #fff; font-weight: 700; }
.slide__text { font-size: clamp(.98rem, 1.2vw, 1.1rem); color: rgba(255,255,255,.82); max-width: 520px; }
.slide__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Hero animasyon — aktif slide içeriği */
.slide [data-anim] { opacity: 0; transform: translateY(30px); }
.slide.is-active [data-anim] { animation: rise .9s var(--ease) forwards; }
.slide.is-active [data-anim="1"] { animation-delay: .25s; }
.slide.is-active [data-anim="2"] { animation-delay: .42s; }
.slide.is-active [data-anim="3"] { animation-delay: .58s; }
.slide.is-active [data-anim="4"] { animation-delay: .74s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* Hero kontrolleri */
.hero__nav {
  position: absolute; z-index: 8; bottom: 72px; right: 0; left: 0;
}
.hero__nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hero__dots { display: flex; align-items: center; gap: 14px; }
.hero__dot {
  position: relative; width: 46px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.25); overflow: hidden;
}
.hero__dot span { position: absolute; inset: 0; width: 0; background: #fff; border-radius: 4px; }
.hero__dot.is-active span { animation: fill 7s linear forwards; }
@keyframes fill { to { width: 100%; } }

.hero__arrows { display: flex; gap: 10px; }
.hero__arrow {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px); transition: .3s var(--ease);
}
.hero__arrow:hover { background: #fff; color: var(--navy-900); border-color: #fff; transform: scale(1.06); }
.hero__arrow svg { width: 20px; height: 20px; }

/* Hero sağ alt sayaç */
.hero__count { color: rgba(255,255,255,.8); font-weight: 600; font-size: 14px; letter-spacing: .08em; }
.hero__count b { color: #fff; font-size: 20px; }

/* Hero rozeti (sağ üst köşe — her slaytta) */
.hero__badge {
  position: absolute; top: clamp(16px, 3vw, 40px); right: clamp(16px, 3vw, 48px); z-index: 8;
  width: clamp(96px, 9vw, 150px); display: block; transition: transform .35s var(--ease);
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.35));
}
.hero__badge img { width: 100%; height: auto; display: block; }
.hero__badge:hover { transform: scale(1.06) rotate(-2deg); }
@media (max-width: 600px) { .hero__badge { width: 110px; top: 14px; right: 14px; } }

/* Hero kenar dikey yazı */
.hero__edge {
  position: absolute; right: 30px; top: 50%; z-index: 6;
  transform: translateY(-50%) rotate(90deg); transform-origin: right center;
  color: rgba(255,255,255,.45); font-size: 12px; letter-spacing: .35em; text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
}
.hero__edge::after { content: ""; width: 60px; height: 1px; background: rgba(255,255,255,.3); }

/* Floating mini-kartlar (zenginlik için) */
.hero__chips { position: absolute; z-index: 7; left: 0; right: 0; bottom: 120px; pointer-events: none; }
.hero__chip {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px); color: #fff; padding: 12px 18px; border-radius: 14px;
  font-size: 14px; font-weight: 600;
}
.hero__chip svg { width: 22px; height: 22px; color: var(--gold-200); }
.hero__chip b { font-size: 19px; }

/* ==========================================================================
   BRAND MARQUEE (sonsuz akan logo şeridi)
   ========================================================================== */
.brands {
  position: relative; background: #fff; padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
/* Üst üste binen panel görünümü */
.brands--float {
  margin-top: -56px; z-index: 9; position: relative;
}
.brands__panel {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  border: 1px solid var(--line); padding: 26px 0 30px; overflow: hidden;
}
.brands__head {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 22px; color: var(--muted); font-size: 13px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}
.brands__head::before, .brands__head::after { content: ""; width: 46px; height: 1px; background: var(--line); }

.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: scroll 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee__item {
  flex: 0 0 auto; width: 180px; height: 90px; margin: 0 10px;
  display: grid; place-items: center; padding: 18px 26px;
  border-radius: var(--r-md); background: #fff; border: 1px solid var(--line);
  transition: .35s var(--ease);
}
.marquee__item img {
  max-height: 46px; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .55; transition: .35s var(--ease);
}
.marquee__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(200,162,75,.4); }
.marquee__item:hover img { filter: none; opacity: 1; }

/* ==========================================================================
   BİZİ TANIYIN  (kurumsal tanıtım bloğu)
   ========================================================================== */
.about { padding: 96px 0 90px; background: #fff; }
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr .92fr 1.18fr;
  gap: 32px;
  align-items: stretch;
}

/* Tanıtım filmi kartı */
.about__video {
  position: relative; display: block; width: 100%; min-height: 380px;
  border-radius: var(--r-lg); overflow: hidden; text-align: left;
  background: var(--navy-950); box-shadow: var(--shadow-md);
}
.about__video-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .55; transition: transform .6s var(--ease), opacity .4s;
}
.about__video:hover .about__video-poster { transform: scale(1.06); opacity: .65; }
.about__video-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,24,42,.25) 0%, rgba(8,24,42,.85) 100%);
}
.about__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.5);
  backdrop-filter: blur(6px); transition: .35s var(--ease);
}
.about__play::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(.85); opacity: .8; } 100% { transform: scale(1.25); opacity: 0; } }
.about__play svg { width: 30px; height: 30px; margin-left: 4px; }
.about__video:hover .about__play { background: var(--gold); color: var(--navy-950); border-color: var(--gold); transform: translate(-50%,-50%) scale(1.08); }
.about__video-txt {
  position: absolute; left: 0; right: 0; bottom: 28px; text-align: center;
  display: flex; flex-direction: column; gap: 4px; color: #fff;
}
.about__video-txt strong { font-size: 20px; font-weight: 700; letter-spacing: .02em; }
.about__video-txt small { font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: .08em; }

/* Görsel kartı */
.about__figure {
  border-radius: var(--r-lg); overflow: hidden; min-height: 380px;
  border: 1px solid var(--line); padding: 10px; background: #fff; box-shadow: var(--shadow-sm);
}
.about__figure img {
  width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--r-lg) - 6px);
  transition: transform .7s var(--ease);
}
.about__figure:hover img { transform: scale(1.04); }

/* Metin */
.about__content { display: flex; flex-direction: column; justify-content: center; }
.about__eyebrow {
  font-style: italic; color: var(--muted); font-size: 15px; margin-bottom: 6px;
}
.about__title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem); font-weight: 800; color: var(--navy-900);
  text-transform: uppercase; letter-spacing: .01em; margin-bottom: 18px; position: relative;
}
.about__title::after {
  content: ""; display: block; width: 56px; height: 3px; margin-top: 14px;
  background: var(--gold-grad); border-radius: 3px;
}
.about__text { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.about__btn { align-self: flex-start; margin-top: 10px; }

/* Video modal */
.vmodal { position: fixed; inset: 0; z-index: 120; visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s; }
.vmodal.is-open { visibility: visible; opacity: 1; }
.vmodal__overlay { position: absolute; inset: 0; background: rgba(8,24,42,.85); backdrop-filter: blur(4px); }
.vmodal__box {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.96);
  width: min(92vw, 980px); transition: transform .35s var(--ease);
}
.vmodal.is-open .vmodal__box { transform: translate(-50%,-50%) scale(1); }
.vmodal__video { width: 100%; border-radius: var(--r-md); box-shadow: var(--shadow-lg); background: #000; display: block; aspect-ratio: 16/9; }
.vmodal__close {
  position: absolute; top: -52px; right: 0; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08); transition: .25s;
}
.vmodal__close:hover { background: #fff; color: var(--navy-900); }
.vmodal__close svg { width: 20px; height: 20px; }

/* ==========================================================================
   PROJE DETAY SAYFASI
   ========================================================================== */
/* Sayfa başlığı / banner */
.page-hero {
  position: relative; min-height: 420px; display: flex; align-items: flex-end;
  background: var(--navy-950); overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1.05);
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,24,42,.5) 0%, rgba(8,24,42,.55) 40%, rgba(8,24,42,.92) 100%);
}
.page-hero__inner { position: relative; z-index: 2; color: #fff; padding: 64px 0 50px; width: 100%; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-200); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb b { color: #fff; font-weight: 600; }
.page-hero__title {
  font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.01em; line-height: 1.1;
}
.page-hero__meta { display: flex; align-items: center; gap: 18px; margin-top: 16px; flex-wrap: wrap; }
.page-hero__loc { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: 15px; }
.page-hero__loc svg { width: 18px; height: 18px; color: var(--gold-200); }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.badge--live { background: rgba(200,162,75,.18); border: 1px solid rgba(231,207,143,.55); color: var(--gold-200); }
.badge--live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-200); box-shadow: 0 0 0 0 rgba(231,207,143,.6); animation: blink 1.8s ease-out infinite; }
@keyframes blink { 0% { box-shadow: 0 0 0 0 rgba(231,207,143,.6); } 100% { box-shadow: 0 0 0 8px rgba(231,207,143,0); } }
.badge--done { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4); color: #fff; }

/* İçerik düzeni */
.proj { padding: 70px 0 84px; background: #fff; }
.proj__layout { display: grid; grid-template-columns: 1fr 360px; gap: 44px; align-items: start; }

/* Galeri */
.gallery__main {
  position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
  cursor: zoom-in; background: var(--steel-100);
}
.gallery__main img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.gallery__main:hover img { transform: scale(1.03); }
.gallery__zoom {
  position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; background: rgba(8,24,42,.45);
  border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(6px); pointer-events: none;
}
.gallery__zoom svg { width: 18px; height: 18px; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.gallery__thumb {
  border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3; border: 2px solid transparent;
  transition: .25s var(--ease); padding: 0;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__thumb:hover img { transform: scale(1.08); }
.gallery__thumb.is-active { border-color: var(--gold); }

/* Açıklama */
.proj__body { margin-top: 44px; }
.proj__heading {
  font-size: 1.5rem; font-weight: 800; color: var(--navy-900); margin-bottom: 8px; position: relative;
}
.proj__heading::after { content: ""; display: block; width: 50px; height: 3px; margin-top: 12px; background: var(--gold-grad); border-radius: 3px; }
.proj__body p { color: var(--muted); font-size: 16px; margin-top: 20px; line-height: 1.75; }

/* Yan panel — özellikler */
.proj__aside { position: sticky; top: 110px; display: grid; gap: 20px; }
.spec-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.spec-card__head {
  background: var(--navy-grad); color: #fff; padding: 18px 22px;
  font-size: 15px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.spec-card__head svg { width: 18px; height: 18px; color: var(--gold-200); }
.spec-list { padding: 8px 22px 14px; }
.spec-list li {
  display: flex; align-items: center; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--line); font-size: 14.5px;
}
.spec-list li:last-child { border-bottom: 0; }
.spec-list__ic { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center; background: var(--steel-100); color: var(--navy-700); }
.spec-list__ic svg { width: 19px; height: 19px; }
.spec-list__txt { display: flex; flex-direction: column; line-height: 1.3; }
.spec-list__txt small { color: var(--muted); font-size: 12.5px; }
.spec-list__txt strong { color: var(--navy-900); font-size: 15px; font-weight: 700; }

.spec-cta { padding: 20px 22px 24px; display: grid; gap: 10px; border-top: 1px solid var(--line); }
.spec-cta .btn { justify-content: center; }

/* Harita */
.proj__map { margin-top: 56px; }
.proj__map iframe { width: 100%; height: 420px; border: 0; border-radius: var(--r-lg); box-shadow: var(--shadow-md); display: block; }

/* Görsel lightbox (video modal stiliyle uyumlu) */
.vmodal__img { width: 100%; max-height: 86vh; object-fit: contain; border-radius: var(--r-md); box-shadow: var(--shadow-lg); display: block; background: #000; }

@media (max-width: 980px) {
  .proj__layout { grid-template-columns: 1fr; gap: 36px; }
  .proj__aside { position: static; }
  .proj { padding: 50px 0 64px; }
  .page-hero { min-height: 340px; }
}
@media (max-width: 560px) {
  .gallery__thumbs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

/* ==========================================================================
   ANASAYFA — HABERLER BÖLÜMÜ
   ========================================================================== */
.home-news { padding: 86px 0; background: #fff; }
.home-news__grid { display: grid; grid-template-columns: 330px 1fr; gap: 56px; align-items: start; }
.home-news__intro .eyebrow { color: var(--muted); font-size: 14px; letter-spacing: .04em; }
.home-news__intro h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy-900); text-transform: uppercase; line-height: 1.05; margin: 4px 0 6px; }
.home-news__sub { color: var(--muted); font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.home-news__desc { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 22px 0 30px; }

.home-news__list { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 44px; }
.hnews { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.hnews__date {
  flex-shrink: 0; width: 86px; height: 96px; border-radius: var(--r-sm); color: #fff;
  background: linear-gradient(160deg, var(--steel), #6b7480); display: flex; flex-direction: column;
  align-items: center; justify-content: center; line-height: 1.1; transition: .3s var(--ease);
}
.hnews:hover .hnews__date { background: var(--navy-grad); }
.hnews__date b { font-size: 1.7rem; font-weight: 800; }
.hnews__date span { font-size: 13px; margin-top: 2px; }
.hnews__date small { font-size: 11.5px; opacity: .75; margin-top: 4px; }
.hnews__body { min-width: 0; }
.hnews__title { font-size: 1.02rem; font-weight: 700; color: var(--navy-900); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hnews__excerpt { color: var(--muted); font-size: 13.5px; margin-top: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hnews__link { margin-top: 12px; display: inline-flex; align-items: center; gap: 7px; color: var(--navy-800); font-weight: 700; font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; transition: gap .25s var(--ease), color .25s; }
.hnews__link svg { width: 14px; height: 14px; }
.hnews:hover .hnews__link { color: var(--gold-700); gap: 11px; }

@media (max-width: 900px) {
  .home-news__grid { grid-template-columns: 1fr; gap: 36px; }
  .home-news__list { gap: 24px 32px; }
}
@media (max-width: 600px) {
  .home-news__list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ANASAYFA — PROJELERİMİZ KAYDIRMALI BÖLÜM
   ========================================================================== */
.home-proj { padding: 86px 0; background: var(--steel-100); overflow: hidden; }
.home-proj__head { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; margin-bottom: 40px; }
.home-proj__intro .eyebrow { color: var(--muted); font-size: 14px; }
.home-proj__intro h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; color: var(--navy-900); text-transform: uppercase; letter-spacing: .01em; }
.home-proj__desc { color: var(--muted); font-size: 14.5px; line-height: 1.6; max-width: 520px; }
.home-proj__ctrl { display: flex; align-items: center; gap: 12px; }
.home-proj__arrow {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  border: 1px solid var(--line); background: #fff; color: var(--navy-800); transition: .28s var(--ease);
}
.home-proj__arrow:hover { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.home-proj__arrow svg { width: 20px; height: 20px; }
.home-proj__all { white-space: nowrap; }

.home-proj__track {
  display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 4px 20px; margin: 0 -4px; -ms-overflow-style: none; scrollbar-width: none;
}
.home-proj__track::-webkit-scrollbar { display: none; }
.home-proj__track .pcard { flex: 0 0 340px; width: 340px; scroll-snap-align: start; }
/* Fare ile sürüklenebilir */
.home-proj__track { cursor: grab; }
.home-proj__track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; user-select: none; }
.home-proj__track.is-dragging .pcard { pointer-events: none; }
.home-proj__track.is-dragging img { -webkit-user-drag: none; user-select: none; }

@media (max-width: 760px) {
  .home-proj__head { grid-template-columns: 1fr; gap: 16px; }
  .home-proj__desc { max-width: none; }
  .home-proj__ctrl { justify-content: space-between; }
  .home-proj__track .pcard { flex-basis: 80%; width: 80%; }
}

/* ==========================================================================
   PROJELER LİSTESİ
   ========================================================================== */
.projects { padding: 70px 0 84px; background: #fff; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head__eyebrow { color: var(--gold-700); font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.section-head__title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--navy-900); margin-top: 10px; }
.section-head__title::after { content: ""; display: block; width: 56px; height: 3px; margin: 16px auto 0; background: var(--gold-grad); border-radius: 3px; }
.section-head p { color: var(--muted); margin-top: 16px; }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pcard {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(200,162,75,.4); }
.pcard__img { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--steel-100); }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.pcard:hover .pcard__img img { transform: scale(1.08); }
.pcard__img::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s var(--ease);
  background: linear-gradient(180deg, rgba(8,24,42,0) 40%, rgba(8,24,42,.45) 100%);
}
.pcard:hover .pcard__img::after { opacity: 1; }

/* Durum etiketi (saat ikonlu) */
.pstatus {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .02em; backdrop-filter: blur(6px);
}
.pstatus svg { width: 14px; height: 14px; }
.pstatus--live { background: rgba(200,162,75,.92); color: #fff; }
.pstatus--done { background: rgba(8,24,42,.78); color: #fff; }

.pcard__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pcard__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-700); }
.pcard__title { font-size: 1.2rem; font-weight: 800; color: var(--navy-900); line-height: 1.25; margin: 7px 0 2px; }
.pcard__loc { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13.5px; }
.pcard__loc svg { width: 15px; height: 15px; color: var(--steel); }

.pcard__stats { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 18px; }
.pcard__stat {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 8px;
  background: var(--steel-100); color: var(--navy-800); font-size: 12.5px; font-weight: 600;
}
.pcard__stat svg { width: 15px; height: 15px; color: var(--navy-600); flex-shrink: 0; }

.pcard__link {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 18px; border-radius: 8px; background: var(--navy-800); color: #fff;
  font-weight: 700; font-size: 13.5px; letter-spacing: .03em; text-transform: uppercase;
  transition: background .25s var(--ease);
}
.pcard__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.pcard:hover .pcard__link { background: var(--gold); }
.pcard:hover .pcard__link svg { transform: translateX(4px); }

/* Alt CTA bandı */
.projects-cta {
  margin-top: 64px; background: var(--navy-grad); border-radius: var(--r-lg);
  padding: 44px 48px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.projects-cta::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 24px 24px;
}
.projects-cta__txt { position: relative; z-index: 1; color: #fff; }
.projects-cta__txt h3 { font-size: 1.6rem; font-weight: 800; }
.projects-cta__txt p { color: rgba(255,255,255,.72); margin-top: 6px; }
.projects-cta .btn { position: relative; z-index: 1; }

@media (max-width: 980px) { .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 620px) {
  .projects-grid { grid-template-columns: 1fr; }
  .projects-cta { padding: 32px 26px; text-align: center; justify-content: center; }
}

/* ==========================================================================
   HAKKIMIZDA
   ========================================================================== */
.story { padding: 90px 0 80px; background: #fff; }
.story__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.story__media { position: relative; }
.story__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); display: block; aspect-ratio: 4/5; object-fit: cover; }
.story__badge {
  position: absolute; right: -22px; bottom: -22px; background: var(--navy-grad); color: #fff;
  border-radius: var(--r-lg); padding: 22px 26px; box-shadow: var(--shadow-md); text-align: center;
}
.story__badge b { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; color: var(--gold-200); }
.story__badge span { font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.8); }
.story__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-700); }
.story__title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--navy-900); margin: 12px 0 8px; line-height: 1.18; }
.story__title::after { content: ""; display: block; width: 56px; height: 3px; margin-top: 18px; background: var(--gold-grad); border-radius: 3px; }
.story__lead { font-style: italic; color: var(--navy-700); font-size: 1.12rem; font-weight: 500; margin: 22px 0 14px; }
.story__text p { color: var(--muted); font-size: 15.5px; margin-top: 14px; line-height: 1.8; }

/* İstatistik bandı */
.stats-band { background: var(--navy-grad); position: relative; overflow: hidden; }
.stats-band::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 26px 26px; }
.stats-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 56px 0; }
.stat { text-align: center; color: #fff; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -12px; top: 50%; transform: translateY(-50%); width: 1px; height: 60px; background: rgba(255,255,255,.14); }
.stat__num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1; }
.stat__num em { font-style: normal; color: var(--gold-200); }
.stat__label { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,.78); letter-spacing: .02em; }

/* Vizyon / Misyon */
.vm { padding: 84px 0; background: var(--steel-100); }
.vm__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm__card { background: #fff; border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); border-top: 3px solid var(--gold); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.vm__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.vm__ic { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; background: var(--navy-grad); color: var(--gold-200); margin-bottom: 22px; }
.vm__ic svg { width: 28px; height: 28px; }
.vm__card h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy-900); margin-bottom: 14px; }
.vm__card p { color: var(--muted); font-size: 15px; margin-top: 12px; line-height: 1.75; }

/* Değerler / İlkeler */
.values { padding: 88px 0; background: #fff; }
.values__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 8px; }
.value-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.value-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.value-card__ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--steel-100); color: var(--navy-700); flex-shrink: 0; }
.value-card__ic svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy-900); }
.value-card__quote { font-style: italic; color: var(--gold-700); font-weight: 600; margin-bottom: 14px; }
.value-list li { position: relative; padding-left: 26px; color: var(--muted); font-size: 15px; margin-top: 12px; line-height: 1.7; }
.value-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 7px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }

/* Yönetim */
.leaders { padding: 84px 0; background: var(--steel-100); }
.leaders__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 820px; margin: 0 auto; }
.leader { background: #fff; border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); display: flex; align-items: center; gap: 22px; }
.leader__avatar { width: 76px; height: 76px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; background: var(--navy-grad); color: var(--gold-200); font-size: 1.6rem; font-weight: 800; }
.leader h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy-900); }
.leader span { color: var(--muted); font-size: 14px; }

/* Kurumsal bilgiler */
.corp { padding: 84px 0; background: #fff; }
.corp__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; margin-top: 8px; border-top: 1px solid var(--line); }
.corp__row { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.corp__row span { color: var(--muted); }
.corp__row strong { color: var(--navy-900); font-weight: 700; text-align: right; }

@media (max-width: 900px) {
  .story__grid { grid-template-columns: 1fr; gap: 48px; }
  .story__media { max-width: 460px; }
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat:nth-child(3)::before, .stat:nth-child(2)::before { display: none; }
  .vm__grid, .values__grid, .leaders__grid, .corp__grid { grid-template-columns: 1fr; gap: 22px; }
  .corp__grid { gap: 0; }
}
@media (max-width: 560px) {
  .stats-band__inner { grid-template-columns: 1fr; gap: 32px; }
  .stat::before { display: none !important; }
  .vm__card, .value-card { padding: 28px; }
  .leader { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   KALİTE POLİTİKAMIZ
   ========================================================================== */
.quality { padding: 88px 0 90px; background: #fff; }
.brandgrid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  margin-top: 50px; background: #fff;
}
.brandgrid__item {
  display: grid; place-items: center; min-height: 168px; padding: 28px 30px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.brandgrid__item img {
  max-height: 56px; max-width: 100%; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .6; transition: filter .35s var(--ease), opacity .35s var(--ease), transform .35s var(--ease);
}
.brandgrid__item:hover { background: var(--steel-100); }
.brandgrid__item:hover img { filter: none; opacity: 1; transform: scale(1.06); }
/* Sağ kenar ve alt satır çizgilerini temizle */
.brandgrid__item:nth-child(5n) { border-right: 0; }
.brandgrid__item:nth-last-child(-n+5):nth-child(5n+1) ~ .brandgrid__item,
.brandgrid__item:nth-last-child(1),
.brandgrid__item:nth-last-child(2),
.brandgrid__item:nth-last-child(3),
.brandgrid__item:nth-last-child(4),
.brandgrid__item:nth-last-child(5) { border-bottom: 0; }

.quality__note {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 40px; padding: 26px 32px; border-radius: var(--r-lg);
  background: var(--steel-100); border: 1px solid var(--line);
}
.quality__note p { color: var(--navy-800); font-weight: 600; font-size: 15.5px; }

@media (max-width: 900px) {
  .brandgrid { grid-template-columns: repeat(3, 1fr); }
  .brandgrid__item:nth-child(5n) { border-right: 1px solid var(--line); }
  .brandgrid__item:nth-child(3n) { border-right: 0; }
  .brandgrid__item { border-bottom: 1px solid var(--line) !important; }
  .quality__note { justify-content: center; text-align: center; }
}
@media (max-width: 540px) {
  .brandgrid { grid-template-columns: repeat(2, 1fr); }
  .brandgrid__item:nth-child(3n) { border-right: 1px solid var(--line); }
  .brandgrid__item:nth-child(2n) { border-right: 0; }
  .brandgrid__item { min-height: 130px; padding: 22px; }
}

/* ==========================================================================
   HABERLER (liste + makale)
   ========================================================================== */
.news { padding: 76px 0 88px; background: #fff; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ncard {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.ncard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(200,162,75,.4); }
.ncard__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--steel-100); }
.ncard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.ncard:hover .ncard__img img { transform: scale(1.07); }
.ncard__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: 999px; font-size: 11.5px; font-weight: 700; letter-spacing: .03em;
  background: rgba(8,24,42,.78); color: #fff; backdrop-filter: blur(6px);
}
.ncard__tag svg { width: 13px; height: 13px; color: var(--gold-200); }
.ncard__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.ncard__title { font-size: 1.12rem; font-weight: 800; color: var(--navy-900); line-height: 1.32; }
.ncard__excerpt { color: var(--muted); font-size: 14px; margin-top: 12px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ncard__link {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  color: var(--navy-800); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  padding-bottom: 3px; border-bottom: 2px solid transparent; transition: .25s var(--ease);
}
.ncard__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.ncard:hover .ncard__link { color: var(--gold-700); border-bottom-color: var(--gold); }
.ncard:hover .ncard__link svg { transform: translateX(4px); }

/* Makale (haber detay) */
.article { padding: 60px 0 84px; background: #fff; }
.article__wrap { max-width: 880px; margin: 0 auto; }
.article__source { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-700); font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.article__media { margin: 8px 0 30px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.article__media img { width: 100%; display: block; }
.video-embed { position: relative; padding-top: 56.25%; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); margin: 8px 0 30px; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.article__body p { color: #33424f; font-size: 16.5px; line-height: 1.85; margin-top: 20px; }
.article__body h2, .article__body h3 { color: var(--navy-900); font-weight: 800; line-height: 1.3; margin-top: 34px; }
.article__body h2 { font-size: 1.4rem; padding-left: 16px; border-left: 4px solid var(--gold); }
.article__body h3 { font-size: 1.18rem; }
.article__body h2 + p, .article__body h3 + p { margin-top: 12px; }
.article__meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 4px; }
.article__cat { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-700); font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.article__date { color: var(--muted); font-size: 13.5px; display: inline-flex; align-items: center; gap: 6px; }
.article__date svg { width: 15px; height: 15px; }
.article__back { margin-top: 40px; display: inline-flex; align-items: center; gap: 9px; }
.article__back svg { width: 17px; height: 17px; }

@media (max-width: 980px) { .news-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 620px) { .news-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   MEDYA / GALERİ
   ========================================================================== */
.media { padding: 76px 0 88px; background: #fff; }
.album-head {
  display: flex; align-items: center; gap: 16px; margin-bottom: 34px; flex-wrap: wrap;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.album-head__ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--navy-grad); color: var(--gold-200); flex-shrink: 0; }
.album-head__ic svg { width: 26px; height: 26px; }
.album-head h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 800; color: var(--navy-900); }
.album-head p { color: var(--muted); font-size: 14.5px; margin-top: 2px; }
.album-head__count { margin-left: auto; background: var(--steel-100); color: var(--navy-800); font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: 999px; }

.mgrid { columns: 4; column-gap: 16px; }
.mgrid__item {
  break-inside: avoid; margin-bottom: 16px; border-radius: var(--r-md); overflow: hidden;
  cursor: zoom-in; position: relative; box-shadow: var(--shadow-sm); display: block; width: 100%; border: 0; padding: 0; background: var(--steel-100);
}
.mgrid__item img { width: 100%; display: block; transition: transform .6s var(--ease); }
.mgrid__item::after {
  content: ""; position: absolute; inset: 0; background: rgba(8,24,42,.0); transition: background .3s var(--ease);
}
.mgrid__item:hover img { transform: scale(1.06); }
.mgrid__item:hover::after { background: rgba(8,24,42,.22); }
.mgrid__zoom {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.8); z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.9); color: var(--navy-900); opacity: 0; transition: .3s var(--ease);
}
.mgrid__item:hover .mgrid__zoom { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.mgrid__zoom svg { width: 20px; height: 20px; }

@media (max-width: 1080px) { .mgrid { columns: 3; } }
@media (max-width: 720px)  { .mgrid { columns: 2; } }
@media (max-width: 460px)  { .mgrid { columns: 1; } }

/* Lightbox ok tuşları (galeri gezinme) */
.vmodal__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.35); color: #fff;
  backdrop-filter: blur(6px); transition: .25s var(--ease);
}
.vmodal__nav:hover { background: #fff; color: var(--navy-900); }
.vmodal__nav svg { width: 22px; height: 22px; }
.vmodal__nav--prev { left: -76px; }
.vmodal__nav--next { right: -76px; }
@media (max-width: 900px) {
  .vmodal__nav--prev { left: 8px; }
  .vmodal__nav--next { right: 8px; }
}

/* ==========================================================================
   İLETİŞİM
   ========================================================================== */
.contact { padding: 76px 0 84px; background: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 30px; align-items: start; }
.cbox { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 40px; }
.cbox__title { font-size: 1.5rem; font-weight: 800; color: var(--navy-900); text-transform: uppercase; letter-spacing: .01em; }
.cbox__title::after { content: ""; display: block; width: 50px; height: 3px; margin-top: 14px; background: var(--gold-grad); border-radius: 3px; }
.cbox__intro { color: var(--muted); margin: 18px 0 4px; font-size: 15px; }

/* İletişim bilgileri */
.cinfo { margin-top: 28px; display: flex; flex-direction: column; gap: 24px; }
.cinfo__item { display: flex; gap: 16px; }
.cinfo__ic { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; display: grid; place-items: center; background: var(--steel-100); color: var(--navy-700); }
.cinfo__ic svg { width: 21px; height: 21px; }
.cinfo__label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 5px; }
.cinfo__text, .cinfo__text a { color: var(--ink); font-size: 15px; line-height: 1.6; }
.cinfo__text a:hover { color: var(--navy-700); }
.cinfo__text span { color: var(--muted); }
.cinfo__phones { display: flex; flex-direction: column; gap: 4px; }

.csocials { display: flex; gap: 10px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.csocials a { width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--navy-700); transition: .28s var(--ease); }
.csocials a svg { width: 18px; height: 18px; }
.csocials a:hover { background: var(--navy-800); border-color: var(--navy-800); color: #fff; transform: translateY(-3px); }

/* Form */
.cform { margin-top: 26px; display: grid; gap: 24px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; border: 0; border-bottom: 1.5px solid var(--line); background: transparent;
  padding: 12px 2px; font-family: inherit; font-size: 15px; color: var(--ink); transition: border-color .25s;
}
.field textarea { resize: vertical; min-height: 70px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.cform__kvkk { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted); cursor: pointer; }
.cform__kvkk input { width: 17px; height: 17px; accent-color: var(--gold); flex-shrink: 0; }
.cform__kvkk b { color: var(--navy-800); font-weight: 600; }
.cform .btn { justify-content: center; }
.cform__note { font-size: 12.5px; color: var(--muted); }

/* Harita */
.contact-map { margin-top: 30px; }
.contact-map iframe { width: 100%; height: 440px; border: 0; border-radius: var(--r-lg); box-shadow: var(--shadow-md); display: block; filter: grayscale(.2); }

@media (max-width: 920px) {
  .contact__grid { grid-template-columns: 1fr; }
  .cbox { padding: 30px; }
}
@media (max-width: 540px) {
  .cform__row { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   TALEP FORMU MODAL
   ========================================================================== */
.fmodal { position: fixed; inset: 0; z-index: 130; visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s; }
.fmodal.is-open { visibility: visible; opacity: 1; }
.fmodal__overlay { position: absolute; inset: 0; background: rgba(8,24,42,.7); backdrop-filter: blur(4px); }
.fmodal__box {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.96);
  width: min(94vw, 760px); max-height: 92vh; overflow-y: auto; background: #fff;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); transition: transform .35s var(--ease);
}
.fmodal.is-open .fmodal__box { transform: translate(-50%,-50%) scale(1); }
.fmodal__head { display: flex; align-items: center; justify-content: space-between; padding: 24px 30px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: #fff; z-index: 2; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.fmodal__head h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy-900); }
.fmodal__close { width: 42px; height: 42px; border-radius: 8px; display: grid; place-items: center; background: #e1142d; color: #fff; transition: .25s; }
.fmodal__close:hover { background: #b30f23; transform: rotate(90deg); }
.fmodal__close svg { width: 20px; height: 20px; }
.fmodal__body { padding: 30px; }

.tform { display: grid; gap: 20px; }
.tform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tfield input, .tfield textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff;
  padding: 16px 16px; font-family: inherit; font-size: 15px; color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.tfield textarea { resize: vertical; min-height: 150px; }
.tfield input::placeholder, .tfield textarea::placeholder { color: var(--muted); }
.tfield input:focus, .tfield textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,162,75,.15); }

.tform__kvkk { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--navy-900); font-weight: 600; cursor: pointer; }
.tform__kvkk input { width: 17px; height: 17px; accent-color: var(--gold); flex-shrink: 0; }
.tform__kvkk a { color: var(--gold-700); text-decoration: underline; }

.tform__captcha { display: flex; align-items: center; gap: 16px; }
.captcha-code {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px; user-select: none;
  background: repeating-linear-gradient(45deg, #eef1f4, #eef1f4 6px, #e4e8ec 6px, #e4e8ec 12px);
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: 10px 18px; min-width: 130px;
  font-family: "Courier New", monospace; font-size: 1.5rem; font-weight: 800; letter-spacing: 6px; color: var(--navy-900);
}
.captcha-code span:nth-child(2n) { transform: translateY(-3px) rotate(-8deg); display: inline-block; }
.captcha-code span:nth-child(2n+1) { transform: translateY(3px) rotate(6deg); display: inline-block; }
.captcha-refresh { width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy-700); transition: .25s; }
.captcha-refresh:hover { background: var(--steel-100); color: var(--navy-900); }
.captcha-refresh svg { width: 18px; height: 18px; }
.tform__captcha input { flex: 1; max-width: 240px; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; font-size: 15px; font-family: inherit; }
.tform__captcha input:focus { outline: none; border-color: var(--gold); }

.tform__submit { width: 100%; justify-content: center; background: var(--navy-800); padding: 17px; font-size: 15px; letter-spacing: .04em; }
.tform__msg { padding: 14px 18px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; display: none; }
.tform__msg.is-ok { display: block; background: rgba(46,160,90,.12); color: #1f7a43; border: 1px solid rgba(46,160,90,.35); }
.tform__msg.is-err { display: block; background: rgba(225,20,45,.1); color: #c0142b; border: 1px solid rgba(225,20,45,.3); }

@media (max-width: 560px) {
  .tform__row { grid-template-columns: 1fr; }
  .fmodal__body { padding: 22px; }
  .fmodal__head { padding: 18px 22px; }
}

/* Anchor hedefleri sticky header altında kalmasın */
#vizyon, #misyon, #fiyat, #uretim { scroll-margin-top: 110px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { position: relative; background: var(--navy-950); color: rgba(255,255,255,.72); overflow: hidden; }
.footer__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: .08; filter: grayscale(1);
}
.footer__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,24,42,.85), var(--navy-950)); }
.footer__inner {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.1fr; gap: 40px;
  padding: 72px 24px 56px;
}
.footer__col h4 {
  color: #fff; font-size: 15px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 22px; position: relative; padding-bottom: 14px;
}
.footer__col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--gold); }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul a { font-size: 14.5px; color: rgba(255,255,255,.66); transition: .25s var(--ease); display: inline-flex; align-items: center; gap: 8px; }
.footer__col ul a::before { content: ""; width: 0; height: 1px; background: var(--gold); transition: width .25s var(--ease); }
.footer__col ul a:hover { color: #fff; }
.footer__col ul a:hover::before { width: 14px; }

/* Marka + bülten */
.footer__brand img { height: 46px; width: auto; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer__brand .nl-label { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.newsletter { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.newsletter__field { position: relative; }
.newsletter__field input {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.25);
  padding: 12px 36px 12px 0; color: #fff; font-family: inherit; font-size: 14.5px; transition: border-color .25s;
}
.newsletter__field input::placeholder { color: rgba(255,255,255,.45); }
.newsletter__field input:focus { outline: none; border-bottom-color: var(--gold); }
.newsletter__field svg { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: rgba(255,255,255,.4); }
.newsletter__kvkk { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: rgba(255,255,255,.6); cursor: pointer; }
.newsletter__kvkk input { width: 16px; height: 16px; accent-color: var(--gold); }
.newsletter__kvkk b { color: rgba(255,255,255,.85); font-weight: 600; }
.newsletter .btn { justify-content: center; }

/* Sosyal medya */
.footer__social .socials { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__social .socials a {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.8); transition: .28s var(--ease);
}
.footer__social .socials a svg { width: 18px; height: 18px; }
.footer__social .socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-950); transform: translateY(-3px); }

/* Bilgi notu */
.footer__note {
  position: relative; z-index: 1; display: flex; align-items: flex-start; gap: 14px;
  padding: 26px 24px; border-top: 1px solid rgba(255,255,255,.08); margin: 0 auto; max-width: var(--container);
}
.footer__note svg { width: 26px; height: 26px; color: var(--gold-200); flex-shrink: 0; }
.footer__note p { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* Alt bar */
.footer__bar { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.08); }
.footer__bar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 22px; padding-bottom: 22px; flex-wrap: wrap; }
.footer__bar p { font-size: 13px; color: rgba(255,255,255,.5); }
.footer__bar a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .25s; }
.footer__bar a:hover { color: var(--gold-200); }

@media (max-width: 980px) {
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; gap: 36px 28px; padding: 56px 24px 44px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__social { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__bar .container { justify-content: center; text-align: center; }
}

/* ==========================================================================
   MOBILE NAV
   ========================================================================== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 100; visibility: hidden;
}
.mobile-nav__overlay { position: absolute; inset: 0; background: rgba(8,24,42,.5); opacity: 0; transition: .35s; }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: #fff; box-shadow: var(--shadow-lg); padding: 26px 22px;
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-nav.is-open { visibility: visible; }
.mobile-nav.is-open .mobile-nav__overlay { opacity: 1; }
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-nav__head img { height: 38px; }
.mobile-nav__close { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; }
.mobile-nav__close svg { width: 18px; height: 18px; }
.mobile-nav__list { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav__list a {
  padding: 15px 14px; border-radius: 12px; font-weight: 600; font-size: 16px; color: var(--navy-900);
  display: flex; align-items: center; justify-content: space-between; transition: .22s;
}
.mobile-nav__list a:hover { background: var(--steel-100); }
.mobile-nav__foot { margin-top: auto; padding-top: 24px; display: grid; gap: 12px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .nav, .header__contact, .header__sep, .header__actions .btn { display: none; }
  .hamburger { display: block; }
  .header__actions { margin-left: auto; }
}
@media (max-width: 980px) {
  .about { padding: 64px 0 60px; }
  .about__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about__content { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__video, .about__figure { min-height: 300px; }
  .vmodal__close { top: auto; bottom: -52px; right: 50%; transform: translateX(50%); }
  .topbar__list .topbar__item:not(:first-child) { display: none; }
  .topbar__inner { height: 42px; }
  .hero__edge, .hero__chips { display: none; }
  .hero__nav .container { flex-direction: column-reverse; gap: 16px; align-items: flex-start; }
  .hero__count { display: none; }
  .container { padding-inline: 18px; }
}
@media (max-width: 420px) {
  .hero__arrows { display: none; }
}

/* ==========================================================================
   YAZI İÇERİĞİ (WordPress editör / blok çıktısı)
   Panelden yazılan yazılarda blok sınıflarının (hizalama, liste, görsel,
   alıntı, tablo…) tema tasarımıyla uyumlu görünmesini sağlar.
   ========================================================================== */
.article__body { --content-w: 880px; }
.article__body > *:first-child { margin-top: 0; }

/* Hizalama — editördeki sağa/sola/ortala/iki yana yasla düğmeleri */
.article__body .has-text-align-left    { text-align: left; }
.article__body .has-text-align-center  { text-align: center; }
.article__body .has-text-align-right   { text-align: right; }
.article__body .has-text-align-justify { text-align: justify; }

/* Blok boşlukları */
.article__body p,
.article__body ul,
.article__body ol,
.article__body figure,
.article__body blockquote,
.article__body table,
.article__body pre,
.article__body .wp-block-embed { margin-top: 20px; }

.article__body h1 { color: var(--navy-900); font-weight: 800; line-height: 1.25; font-size: 1.7rem; margin-top: 38px; }
.article__body h4,
.article__body h5,
.article__body h6 { color: var(--navy-900); font-weight: 700; line-height: 1.35; margin-top: 26px; }
.article__body h4 { font-size: 1.06rem; }
.article__body h5 { font-size: 1rem; }
.article__body h6 { font-size: .94rem; letter-spacing: .02em; text-transform: uppercase; color: var(--gold-700); }

/* Bağlantılar */
.article__body a {
  color: var(--navy-700); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(200,162,75,.55); transition: color .2s;
}
.article__body a:hover { color: var(--gold-700); text-decoration-color: var(--gold); }

/* Listeler — global reset list-style'ı kaldırdığı için burada geri veriliyor */
.article__body ul,
.article__body ol { padding-left: 22px; color: #33424f; font-size: 16.5px; line-height: 1.85; }
.article__body ul { list-style: disc; }
.article__body ol { list-style: decimal; }
.article__body li { margin-top: 8px; }
.article__body li > ul,
.article__body li > ol { margin-top: 8px; }
.article__body ul li::marker { color: var(--gold); }
.article__body ol li::marker { color: var(--gold-700); font-weight: 700; }

/* Görsel / figür */
.article__body figure { margin-inline: 0; }
.article__body img { border-radius: var(--r-md); }
.article__body figure img { width: 100%; height: auto; }
.article__body figcaption,
.article__body .wp-element-caption {
  margin-top: 10px; font-size: 13.5px; color: var(--muted); text-align: center;
}
.article__body .wp-block-image { margin-top: 26px; }
.article__body .wp-block-image.aligncenter,
.article__body .aligncenter { margin-inline: auto; text-align: center; }
.article__body .aligncenter img { margin-inline: auto; }

/* Sağa / sola sarmalı görseller */
.article__body .alignleft  { float: left;  margin: 8px 26px 18px 0;  max-width: 50%; }
.article__body .alignright { float: right; margin: 8px 0 18px 26px;  max-width: 50%; }
.article__body::after { content: ""; display: block; clear: both; }

/* Geniş / tam genişlik bloklar */
.article__body .alignwide {
  width: calc(var(--content-w) + 140px);
  max-width: calc(100vw - 48px);
  margin-inline: calc(50% - (var(--content-w) + 140px) / 2);
}
.article__body .alignfull {
  width: 100vw; max-width: 100vw;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  border-radius: 0;
}
.article__body .alignfull img { border-radius: 0; }

/* Alıntı */
.article__body blockquote,
.article__body .wp-block-quote {
  border-left: 4px solid var(--gold);
  background: var(--steel-100);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  color: var(--navy-900); font-style: italic;
}
.article__body blockquote p { margin-top: 10px; }
.article__body blockquote p:first-child { margin-top: 0; }
.article__body blockquote cite {
  display: block; margin-top: 12px; font-style: normal;
  font-size: 13.5px; font-weight: 700; color: var(--gold-700);
}
.article__body .wp-block-pullquote { text-align: center; padding: 26px 0; }

/* Tablo */
.article__body .wp-block-table { overflow-x: auto; }
.article__body table { width: 100%; border-collapse: collapse; font-size: 15px; }
.article__body th,
.article__body td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; }
.article__body th { background: var(--steel-100); color: var(--navy-900); font-weight: 700; }

/* Kod */
.article__body code,
.article__body pre {
  background: var(--steel-100); border-radius: var(--r-sm);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 14px;
}
.article__body code { padding: 2px 6px; }
.article__body pre { padding: 16px 18px; overflow-x: auto; }

/* Ayraç, buton, gömülü içerik */
.article__body hr,
.article__body .wp-block-separator { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }
.article__body .wp-block-button__link {
  display: inline-block; background: var(--navy-800); color: #fff;
  padding: 12px 24px; border-radius: 999px; font-weight: 700; text-decoration: none;
}
.article__body .wp-block-embed iframe,
.article__body iframe { max-width: 100%; border: 0; border-radius: var(--r-md); }
.article__body .wp-block-embed__wrapper { position: relative; }

/* Sütunlar */
.article__body .wp-block-columns { display: flex; gap: 26px; margin-top: 26px; }
.article__body .wp-block-column { flex: 1; min-width: 0; }

@media (max-width: 720px) {
  .article__body .alignleft,
  .article__body .alignright { float: none; max-width: 100%; margin: 20px 0; }
  .article__body .alignwide { width: auto; max-width: 100%; margin-inline: 0; }
  .article__body .wp-block-columns { flex-direction: column; gap: 18px; }
}