/* ============================================================
   YILDIZ HUKUK & DANIŞMANLIK — Kurumsal Site CSS
   Koyu kurumsal tema · mavi vurgu · geniş boşluk düzeni
   ============================================================ */

:root {
  --ink: #15181e;          /* Ana koyu zemin */
  --ink-2: #1b1f27;        /* İkincil koyu */
  --ink-3: #232833;
  --blue: #2f5896;         /* Kurumsal mavi vurgu */
  --blue-2: #3a67ad;
  --blue-soft: #44618f;
  --light: #ffffff;        /* Açık bölüm zemini */
  --light-2: #f4f5f7;
  --text-d: #e9eaed;       /* Koyu üzerinde metin */
  --muted-d: #9aa1ad;      /* Koyu üzerinde soluk */
  --text-l: #1c2129;       /* Açık üzerinde metin */
  --muted-l: #5f6874;      /* Açık üzerinde soluk */
  --line-d: rgba(255, 255, 255, .14);
  --line-l: #e3e5e9;
  --sans: 'Montserrat', 'Segoe UI', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--sans);
  color: var(--text-l);
  background: var(--light);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 400;
}

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

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

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 1.4rem 0;
}

header.solid {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  padding: .7rem 0;
  box-shadow: 0 1px 0 rgba(21, 24, 30, .08);
}

header.solid nav a { color: var(--text-l); }
header.solid nav a:hover, header.solid nav a.active { color: var(--blue); }
header.solid .brand-name { color: var(--text-l); }
header.solid .brand-sub { color: var(--muted-l); font-weight: 800; }
header.solid .lang a { color: var(--muted-l); }
header.solid .lang a.on, header.solid .lang a:hover { color: var(--text-l); }
header.solid .menu-toggle { color: var(--text-l); }

.nav-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .2rem;
}

.brand-emblem {
  width: 95px;
  height: 90px;
  flex-shrink: 0;
  position: relative;
  top: 4px;
  background: url(../images/logo.png) center / contain no-repeat;
  transition: transform .4s cubic-bezier(.25, .8, .25, 1), filter .4s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .25));
}

.brand:hover .brand-emblem {
  transform: scale(1.06) translateY(-2px);
  filter: drop-shadow(0 8px 15px rgba(47, 88, 150, .45));
}

.brand-txt {
  display: flex;
  flex-direction: column;
  line-height: 1;
  justify-content: center;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, .3);
  transition: color .3s ease;
}

.brand-name em {
  font-style: normal;
  font-weight: 800;
  margin-left: .3em;
  color: rgba(255, 255, 255, .85);
}

header.solid .brand-name em, .foot-brand .brand-name em { color: var(--muted-l); }

.brand-sub {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  margin-top: 0.15rem;
  font-weight: 800;
}

/* ---------- navigation ---------- */
nav ul {
  display: flex;
  list-style: none;
  gap: 1.45rem;
  align-items: center;
}

nav a {
  font-size: .86rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  padding: .3rem 0;
  white-space: nowrap;
  transition: color .25s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--blue-2);
  transition: width .3s;
}

nav a:hover, nav a.active { color: #bcd0ef; }
nav a:hover::after, nav a.active::after { width: 100%; }

.hdr-right {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-shrink: 0;
}

.lang {
  display: flex;
  gap: .45rem;
  align-items: center;
  font-size: .82rem;
  font-weight: 600;
}

.lang a {
  color: var(--muted-d);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: .25s;
}

.lang .fl {
  width: 19px;
  height: 13px;
  flex-shrink: 0;
  display: inline-block;
  box-shadow: 0 0 0 .5px rgba(21, 24, 30, .18);
}

.lang a.on, .lang a:hover { color: #fff; }
.lang .sep { color: var(--line-d); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(21, 24, 30, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s;
  z-index: 98;
}

.nav-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.nav-extra { display: none; }

/* ---------- pulse animations ---------- */
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 22px rgba(37,211,102,.4), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 8px 22px rgba(37,211,102,.4), 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 22px rgba(37,211,102,.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes call-pulse {
  0% { box-shadow: 0 8px 22px rgba(47,88,150,.4), 0 0 0 0 rgba(47, 88, 150, 0.6); }
  70% { box-shadow: 0 8px 22px rgba(47,88,150,.4), 0 0 0 15px rgba(47, 88, 150, 0); }
  100% { box-shadow: 0 8px 22px rgba(47,88,150,.4), 0 0 0 0 rgba(47, 88, 150, 0); }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 90vh; 
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%; 
  object-fit: cover;
  object-position: center center;
  opacity: .62; 
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21,24,30,.9) 0%, rgba(21,24,30,.45) 45%, rgba(21,24,30,.25) 100%);
}

.hero-in {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-lead {
  color: #fff;
  font-size: clamp(1.08rem, 1.2vw, 1.3rem);
  font-weight: 500;
  line-height: 1.6;
  max-width: 900px;
  letter-spacing: .005em;
  margin-top: -4rem;
}

.hero-lead b { font-weight: 700; }
.hero-actions { margin-top: 2.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.tagline {
  position: absolute;
  right: 40px;
  bottom: 52px;
  z-index: 3;
  display: inline-block;
  text-align: right;
}

.tagline span {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
}

.tagline span em { font-style: normal; font-weight: 300; }

.hero-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  width: 58%;
  max-width: 730px;
  min-height: 172px;
  text-align: left;
}

.hero-panel .hp-title {
  background: rgba(47, 88, 150, .92);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 1.6rem 1.8rem;
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  font-weight: 700;
  line-height: 1.25;
}

.hero-panel .hp-body {
  background: rgba(15, 24, 35, .85);
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: background .3s;
}

.hero-panel .hp-body:hover { background: rgba(15, 24, 35, .96); }

.hp-thumb {
  width: 68px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, .14);
}

.hp-info { display: flex; flex-direction: column; gap: .45rem; min-width: 0; }
.hp-date { font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-2); }
.hp-ptitle { font-size: .98rem; font-weight: 600; color: #fff; line-height: 1.35; }

.hp-more {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .3s;
}

.hero-panel .hp-body:hover .hp-more { gap: .75rem; color: #fff; }
@media(max-width:820px) { .hero-panel { display: none; } }

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .95rem 2.2rem;
  background: var(--blue);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid var(--blue);
  cursor: pointer;
  transition: .3s;
}

.btn:hover { background: var(--blue-2); border-color: var(--blue-2); }
.btn.line { background: transparent; border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn.line:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn.line-dark { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn.line-dark:hover { background: var(--ink); color: #fff; }

/* ---------- ortak bölüm ---------- */
section { padding: 7rem 0; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.2rem;
}

.kicker::before { content: ""; width: 34px; height: 1px; background: var(--blue); }
.kicker.noline::before { display: none; }
.kicker.noline { gap: 0; }
.kicker.after-line::after { content: ""; width: 34px; height: 1px; background: var(--blue); }

.section-head { max-width: 720px; margin-bottom: 3.4rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker::after { content: ""; width: 34px; height: 1px; background: var(--blue); }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 700; color: var(--text-l); }
.section-head p { color: var(--muted-l); margin-top: 1.1rem; font-size: 1.02rem; }

/* ---------- hakkımızda ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 5rem; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; height: 560px; object-fit: cover; }

.about-media .bar {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--blue);
  color: #fff;
  padding: 1.5rem 2rem;
}

.about-media .bar b { font-size: 2.2rem; font-weight: 700; display: block; line-height: 1; }
.about-media .bar span { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; opacity: .85; }

.about-text h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 700; margin-bottom: 1.5rem; color: var(--text-l); }
.about-text p { color: var(--muted-l); margin-bottom: 1.2rem; }

.about-list { list-style: none; margin: 1.9rem 0 2.6rem; display: grid; gap: 1.15rem; }
.about-list li { display: flex; gap: 1rem; align-items: flex-start; font-weight: 600; color: var(--text-l); }
.about-list li::before { content: ""; flex-shrink: 0; width: 8px; height: 8px; margin-top: .6rem; background: var(--blue); transform: rotate(45deg); }
.about-list small { display: block; font-weight: 400; color: var(--muted-l); font-size: .93rem; }

/* ---------- rakamlar ---------- */
.stats { background: var(--light-2); color: var(--text-l); border-top: 1px solid var(--line-l); border-bottom: 1px solid var(--line-l); }
.stats-in { max-width: 1280px; margin: 0 auto; padding: 3.4rem 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 10%; height: 80%; width: 1px; background: var(--line-l); }
.stat b { font-size: 3rem; font-weight: 700; color: var(--blue); display: block; line-height: 1; }
.stat span { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-l); margin-top: .7rem; display: block; }

/* ---------- hizmetler ---------- */
.services { background: var(--light-2); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.svc { background: #fff; border: 1px solid var(--line-l); padding: 2.6rem 2.3rem; transition: .35s; position: relative; }
.svc::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--blue); transition: width .4s; }
.svc:hover { box-shadow: 0 26px 55px rgba(21, 24, 30, .12); transform: translateY(-4px); }
.svc:hover::after { width: 100%; }
.svc .no { font-size: .85rem; font-weight: 700; letter-spacing: .1em; color: var(--blue); display: block; margin-bottom: 1rem; }
.svc h3 { font-size: 1.28rem; font-weight: 600; margin-bottom: .7rem; color: var(--text-l); }
.svc p { color: var(--muted-l); font-size: .93rem; }

/* ---------- hizmetler sayfası ---------- */
.parea-intro { background: var(--light); }
.parea-wrap { background: var(--light-2); }
.parea-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.parea {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line-l);
  padding: 2.6rem 2.3rem;
  overflow: hidden;
  transition: background .5s cubic-bezier(.25, .6, .3, 1), border-color .5s, transform .4s, box-shadow .4s;
}

.parea::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s cubic-bezier(.25, .6, .3, 1);
}

.parea:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(21, 24, 30, .22);
}

.parea:hover::before { transform: scaleY(1); }

.parea-ic {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  transition: background .5s, transform .5s;
}

.parea-ic svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .5s;
}

.parea:hover .parea-ic { background: var(--blue); transform: rotate(-6deg) scale(1.05); }
.parea:hover .parea-ic svg { stroke: #fff; }
.parea h3 { font-size: 1.2rem; font-weight: 600; color: var(--text-l); margin-bottom: .7rem; line-height: 1.35; transition: color .5s; }
.parea p { color: var(--muted-l); font-size: .92rem; line-height: 1.65; flex: 1; transition: color .5s; }
.parea:hover h3 { color: #fff; }
.parea:hover p { color: rgba(255, 255, 255, .78); }

.parea-more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  transition: color .5s;
}

.parea-more .arr { font-size: 1.05rem; transition: transform .35s; }
.parea:hover .parea-more { color: #fff; }
.parea:hover .parea-more .arr { transform: translateX(6px); }

/* ---------- iletişim sayfası ---------- */
.contact-top { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-bottom: 1.6rem; }
.office-card { border: 1px solid var(--line-l); background: #fff; padding: 2.4rem 2.3rem; }
.office-card h3 { font-size: .78rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.2rem; }
.office-card .big { font-size: 1.25rem; font-weight: 600; color: var(--text-l); line-height: 1.5; margin-bottom: 1rem; }
.office-card p { color: var(--muted-l); font-size: .95rem; margin-bottom: .4rem; }
.office-card a.mlink { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.2rem; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); transition: .25s; }
.office-card a.mlink:hover { gap: .9rem; }
.office-card ul { list-style: none; display: grid; gap: .85rem; }
.office-card ul li { display: flex; align-items: center; gap: .9rem; color: var(--text-l); font-size: 1rem; }
.office-card ul li svg { width: 19px; height: 19px; flex-shrink: 0; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.office-card ul li a:hover { color: var(--blue); }

.cform-wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: 1.6rem; align-items: stretch; }
.cform { border: 1px solid var(--line-l); background: #fff; padding: 2.6rem 2.5rem; }
.cform h3 { font-size: 1.4rem; font-weight: 600; color: var(--text-l); margin-bottom: .5rem; }
.cform > p { color: var(--muted-l); font-size: .92rem; margin-bottom: 1.8rem; }
.cform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.cform-grid .full { grid-column: 1/-1; }
.cform label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-l); margin-bottom: .4rem; }
.cform input, .cform select, .cform textarea { width: 100%; background: var(--light-2); border: 1px solid var(--line-l); color: var(--text-l); padding: .85rem 1rem; font-family: var(--sans); font-size: .93rem; transition: .25s; }
.cform input:focus, .cform select:focus, .cform textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
.cform textarea { min-height: 120px; resize: vertical; }
.cform .kvkk-row { display: flex; gap: .7rem; align-items: flex-start; margin-top: 1.2rem; }
.cform .kvkk-row input { width: auto; margin-top: .3rem; }
.cform .kvkk-row label { margin: 0; font-size: .76rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--muted-l); line-height: 1.6; }
.cform .btn { margin-top: 1.4rem; width: 100%; justify-content: center; }

.map-tall { border: 1px solid var(--line-l); min-height: 100%; }
.map-tall iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: grayscale(.4) brightness(.95); }

/* ---------- kariyer sayfası ---------- */
.job-list { display: grid; gap: 1rem; }
.job { display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; background: #fff; border: 1px solid var(--line-l); padding: 1.7rem 2rem; transition: .3s; flex-wrap: wrap; }
.job:hover { border-color: var(--blue); box-shadow: 0 18px 40px rgba(21, 24, 30, .09); }
.job-info h3 { font-size: 1.18rem; font-weight: 600; color: var(--text-l); margin-bottom: .35rem; }
.job-info p { color: var(--muted-l); font-size: .9rem; max-width: 640px; }
.job-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .7rem; }
.job-meta span { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); background: var(--light-2); padding: .3rem .8rem; }
.job .btn { flex-shrink: 0; }

.culture { background: var(--light-2); }
.cul-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }

.cul { background: #fff; border: 1px solid var(--line-l); padding: 2.5rem 2.3rem; transition: .3s; position: relative; }
.cul::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--blue); transition: width .4s; }
.cul:hover { box-shadow: 0 22px 48px rgba(21, 24, 30, .1); transform: translateY(-4px); }
.cul:hover::after { width: 100%; }
.cul .ic { width: 52px; height: 52px; background: var(--light-2); display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; }
.cul .ic svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.cul h3 { font-size: 1.15rem; font-weight: 600; color: var(--text-l); margin-bottom: .6rem; }
.cul p { color: var(--muted-l); font-size: .92rem; }

/* Çalışma kültürü mozaiği */
.cul-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-l); border: 1px solid var(--line-l); }
.cm-img { background-size: cover; background-position: center; min-height: 230px; }
.cm-text { background: #fff; padding: 2.4rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.cm-text h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-l); margin-bottom: .85rem; }
.cm-text p { color: var(--muted-l); font-size: .9rem; line-height: 1.62; }

.cm-dark { position: relative; background-size: cover; background-position: center; overflow: hidden; }
.cm-dark::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21, 24, 30, .55), rgba(21, 24, 30, .82)); }
.cm-dark h3, .cm-dark p { position: relative; z-index: 1; color: #fff; }
.cm-dark p { color: rgba(255, 255, 255, .82); }

/* Kariyer sekmeleri */
.career-tabs { display: flex; gap: 2.4rem; border-bottom: 1px solid var(--line-l); margin-bottom: 0; }
.ctab { appearance: none; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 1.05rem; font-weight: 600; color: var(--muted-l); padding: 0 0 1rem; position: relative; transition: color .25s; }
.ctab:hover { color: var(--text-l); }
.ctab.active { color: var(--blue); }
.ctab::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--blue); transition: width .3s; }
.ctab.active::after { width: 100%; }
.ctab-panel[hidden] { display: none; }

/* Büyütülmüş çalışma kültürü */
.culture.culture-lg .cm-img { min-height: 300px; }
.culture.culture-lg .cm-text { padding: 3rem 2.6rem; }
.culture.culture-lg .cm-text h3 { font-size: 1.32rem; margin-bottom: 1rem; }
.culture.culture-lg .cm-text p { font-size: .98rem; line-height: 1.7; }

/* ---------- değerler ---------- */
.values { background: var(--light); color: var(--text-l); }
.v-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.4rem; }
.v { border-top: 1px solid var(--line-l); padding-top: 1.8rem; }
.v b { font-size: 1.6rem; font-weight: 700; color: var(--blue); display: block; margin-bottom: .9rem; }
.v h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .55rem; color: var(--text-l); }
.v p { color: var(--muted-l); font-size: .92rem; }

/* ---------- cta bandı ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff; padding: 5rem 0; background: var(--blue); }
.cta-band img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.cta-band .container { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 700; max-width: 660px; }
.cta-band p { color: rgba(255, 255, 255, .85); margin-top: .6rem; }
.cta-band .btn { background: #fff; color: var(--blue); border-color: #fff; }
.cta-band .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- iletişim özet ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 3.5rem; align-items: start; }
.c-card { display: flex; gap: 1.2rem; align-items: flex-start; border: 1px solid var(--line-l); padding: 1.4rem 1.5rem; margin-bottom: 1rem; transition: .3s; background: #fff; }
.c-card:hover { border-color: var(--blue); box-shadow: 0 16px 34px rgba(21, 24, 30, .08); }
.c-card .ic { width: 44px; height: 44px; flex-shrink: 0; background: var(--light-2); display: flex; align-items: center; justify-content: center; }
.c-card .ic svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.7; }
.c-card b { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-bottom: .2rem; }
.c-card span { color: var(--text-l); font-size: .96rem; }
.map-wrap { border: 1px solid var(--line-l); height: 100%; min-height: 470px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 470px; border: 0; filter: grayscale(.4) brightness(.95); }

/* ---------- iç sayfa başlığı ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--ink); color: #fff; padding: 11rem 0 5rem; }
.page-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21, 24, 30, .85), rgba(21, 24, 30, .45)); }
.page-hero .container { position: relative; z-index: 2; }

body[data-page="announcements"] .page-hero img.bg { opacity: .9; filter: brightness(1.25); }
body[data-page="announcements"] .page-hero::after { background: linear-gradient(90deg, rgba(21, 24, 30, .5), rgba(21, 24, 30, .15)); }

.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 4.6vw, 3.6rem); font-weight: 700; }
.crumbs { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-d); margin-bottom: 1.1rem; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { margin: 0 .55rem; color: var(--blue-2); }

/* ---------- kurucu ---------- */
.founder { background: var(--light-2); }
.founder-grid { display: grid; grid-template-columns: .9fr 1.25fr; gap: 4.5rem; align-items: center; }
.founder-media img { width: 100%; height: 520px; object-fit: cover; object-position: 50% 8%; }
.founder-text .role { font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); margin: .4rem 0 1.4rem; }
.founder-text h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 700; color: var(--text-l); }
.founder-text p { color: var(--muted-l); margin-bottom: 1.1rem; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.mv { border: 1px solid var(--line-l); padding: 2.8rem 2.5rem; background: #fff; transition: .3s; }
.mv:hover { border-color: var(--blue); box-shadow: 0 20px 44px rgba(21, 24, 30, .08); }
.mv h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: .9rem; padding-bottom: .9rem; border-bottom: 2px solid var(--blue); display: inline-block; color: var(--text-l); }
.mv p { color: var(--muted-l); font-size: .95rem; }

/* ---------- footer ---------- */
footer { background: var(--light-2); color: var(--muted-l); border-top: 1px solid var(--line-l); }
.foot-top { max-width: 1280px; margin: 0 auto; padding: 5rem 40px 3rem; display: grid; grid-template-columns: 1.7fr 1fr 1fr .9fr; gap: 2.8rem; }
.foot-brand .brand { margin-bottom: 1.6rem; }
.foot-brand .brand-name { color: var(--text-l); }
.foot-brand .brand-sub { color: var(--muted-l); }
.foot-brand .brand-emblem { width: 90px; height: 85px; }
.foot-brand p { font-size: .92rem; max-width: 340px; margin-bottom: 1.6rem; }

.foot-news-h { font-family: var(--sans); font-size: 1.5rem; font-weight: 600; color: var(--text-l); letter-spacing: -.01em; margin-bottom: .7rem; }
.foot-news-btn { display: inline-flex; align-items: center; gap: .7rem; background: var(--blue); color: #fff; padding: .85rem 1.7rem; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: .3s; }
.foot-news-btn:hover { background: var(--blue-2); gap: 1.1rem; }

footer h4 { color: var(--muted-l); font-family: var(--sans); font-size: 1.05rem; font-weight: 600; letter-spacing: 0; text-transform: none; margin-bottom: 1.4rem; }
.foot-nav { list-style: none; display: grid; gap: .85rem; font-size: .95rem; }
.foot-nav a { display: inline-flex; align-items: center; gap: .5rem; color: var(--text-l); transition: .25s; }
.foot-nav a::before { content: "›"; color: var(--blue); font-size: 1.1rem; line-height: 1; transition: transform .25s; }
.foot-nav a:hover { color: var(--blue); }
.foot-nav a:hover::before { transform: translateX(3px); }

.socials { display: flex; gap: .7rem; }
.socials a { width: 40px; height: 40px; border-radius: 6px; border: 1px solid var(--line-l); background: #fff; color: var(--text-l); display: flex; align-items: center; justify-content: center; transition: .25s; }
.socials a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.socials svg { width: 18px; height: 18px; fill: currentColor; }

.disclaimer { max-width: 1280px; margin: 0 auto; padding: 0 40px 2rem; font-size: .74rem; color: #a3a9b2; line-height: 1.65; }
.foot-bottom { border-top: 1px solid var(--line-l); }
.foot-bottom-in { max-width: 1280px; margin: 0 auto; padding: 1.4rem 40px; display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; font-size: .82rem; }

.foot-langs { display: flex; gap: 1rem; align-items: center; }
.foot-langs a { display: inline-flex; align-items: center; gap: .4rem; color: var(--muted-l); font-weight: 600; transition: .25s; }
.foot-langs a .fl { width: 19px; height: 13px; flex-shrink: 0; box-shadow: 0 0 0 .5px rgba(21, 24, 30, .18); }
.foot-langs a.on, .foot-langs a:hover { color: var(--text-l); }

.foot-copy { color: var(--muted-l); margin-left: auto; }
.foot-legal { display: flex; align-items: center; gap: .7rem; }
.foot-legal a { color: var(--muted-l); transition: .25s; }
.foot-legal a:hover { color: var(--blue); }
.foot-legal .fl-sep { color: var(--line-l); }

/* ---------- sabit iletişim butonları (fab) ---------- */
.fab-stack { position: fixed; right: 26px; bottom: 26px; z-index: 200; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.fab { width: 58px; height: 58px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; transition: transform .3s, background .3s; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 27px; height: 27px; fill: #fff; }

.call-fab { background: var(--blue); box-shadow: 0 8px 22px rgba(47, 88, 150, .4); animation: call-pulse 2s infinite; }
.call-fab:hover { background: var(--blue-2); }
.wa-fab { background: #25D366; box-shadow: 0 8px 22px rgba(37, 211, 102, .4); animation: wa-pulse 2s infinite; animation-delay: 1s; }
.wa-fab:hover { background: #1ebe5b; }

.top-fab {
  width: 36px !important;
  height: 36px !important;
  background: var(--ink) !important; 
  box-shadow: 0 4px 12px rgba(21, 24, 30, .3) !important; 
  border: none; 
  cursor: pointer; 
  opacity: 0; 
  visibility: hidden; 
  transform: translateY(12px); 
  pointer-events: none; 
  transition: opacity .3s, transform .3s, background .3s;
}

.top-fab.show { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.top-fab:hover { background: var(--ink-2); }
.top-fab svg { width: 16px !important; height: 16px !important; stroke: #fff; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.map-full { border: 1px solid var(--line-l); }
.map-full iframe { width: 100%; height: 460px; border: 0; display: block; filter: grayscale(.4) brightness(.95); }

/* ---------- ekibimiz ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.member { background: #fff; border: 1px solid var(--line-l); transition: .35s; }
.member:hover { box-shadow: 0 24px 50px rgba(21, 24, 30, .12); transform: translateY(-4px); }
.member-img { position: relative; overflow: hidden; height: 340px; background: var(--light-2); }
.member-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25, .6, .3, 1); }
.member:hover .member-img img { transform: scale(1.05); }
.member-body { padding: 1.6rem 1.7rem; }
.member-body h3 { font-size: 1.25rem; font-weight: 600; color: var(--text-l); margin-bottom: .25rem; }
.member-body .role { font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); margin-bottom: .8rem; }
.member-body p { color: var(--muted-l); font-size: .92rem; }
.member-body .mmeta { margin-top: 1rem; display: flex; gap: 1.1rem; font-size: .85rem; }
.member-body .mmeta a { color: var(--muted-l); transition: .25s; }
.member-body .mmeta a:hover { color: var(--blue); }

/* ---------- boş liste sayfaları ---------- */
.empty-note { max-width: 640px; margin: 0 auto; text-align: center; padding: 3.5rem 2rem; border: 1px dashed var(--line-l); background: var(--light-2); }
.empty-note .ic { width: 64px; height: 64px; margin: 0 auto 1.4rem; border-radius: 50%; background: #fff; border: 1px solid var(--line-l); display: flex; align-items: center; justify-content: center; }
.empty-note .ic svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 1.6; }
.empty-note h3 { font-size: 1.5rem; font-weight: 600; color: var(--text-l); margin-bottom: .6rem; }
.empty-note p { color: var(--muted-l); font-size: .96rem; margin-bottom: 1.6rem; }

/* ---------- yayın / duyuru kartları ---------- */
.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post { background: #fff; border: 1px solid var(--line-l); transition: .35s; display: flex; flex-direction: column; }
.post:hover { box-shadow: 0 22px 48px rgba(21, 24, 30, .1); transform: translateY(-4px); }
.post-img { height: 400px; background: var(--light-2); overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .55s cubic-bezier(.25, .6, .3, 1); }
.post:hover .post-img img { transform: scale(1.05); }
.post-body { padding: 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.post-date { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: .6rem; }
.post-body h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-l); line-height: 1.4; }
.post-body .post-more { margin-top: .9rem; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); display: inline-flex; gap: .4rem; transition: gap .3s; }
.post:hover .post-body .post-more { gap: .8rem; }

.filterbar { display: flex; gap: 1rem; flex-wrap: wrap; align-items: stretch; background: var(--light-2); border: 1px solid var(--line-l); padding: 1.1rem; margin-bottom: 2.6rem; }
.fb-search { position: relative; flex: 1; min-width: 220px; }
.fb-search input { width: 100%; background: #fff; border: 1px solid var(--line-l); padding: .9rem 2.7rem .9rem 1rem; font-family: var(--sans); font-size: .94rem; color: var(--text-l); transition: .25s; }
.fb-search input:focus { outline: none; border-color: var(--blue); }
.fb-search svg { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; stroke: var(--muted-l); fill: none; stroke-width: 2; }
.fb-select { background: #fff; border: 1px solid var(--line-l); padding: .9rem 1rem; font-family: var(--sans); font-size: .94rem; color: var(--text-l); min-width: 190px; cursor: pointer; transition: .25s; }
.fb-select:focus { outline: none; border-color: var(--blue); }
.fb-empty { text-align: center; color: var(--muted-l); padding: 2rem 0; font-size: .95rem; display: none; }

/* ---------- galeri ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.gallery a { display: block; position: relative; overflow: hidden; border: 1px solid var(--line-l); background: var(--light-2); aspect-ratio: 4/5; }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.25, .6, .3, 1); }
.gallery a::after { content: ""; position: absolute; inset: 0; background: rgba(47, 88, 150, 0); transition: background .35s; }
.gallery a:hover img { transform: scale(1.06); }
.gallery a:hover::after { background: rgba(47, 88, 150, .14); }
.gallery a .zoom { position: absolute; right: 12px; bottom: 12px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, .92); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(8px); transition: .35s; z-index: 2; }
.gallery a .zoom svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; }
.gallery a:hover .zoom { opacity: 1; transform: none; }

/* ---------- giriş animasyonları ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.hero-lead { animation: fadeUp 1s .2s cubic-bezier(.25, .6, .3, 1) both; }
.tagline { animation: fadeUp 1s .55s cubic-bezier(.25, .6, .3, 1) both; }
.page-hero .crumbs { animation: fadeUp .8s .15s cubic-bezier(.25, .6, .3, 1) both; }
.page-hero h1 { animation: fadeUp .9s .3s cubic-bezier(.25, .6, .3, 1) both; }

.reveal { opacity: 0; transform: translateY(30px); }
.reveal.in { animation: revealIn .8s cubic-bezier(.25, .6, .3, 1) forwards; }
@keyframes revealIn { to { opacity: 1; transform: none; } }

.svc-grid .reveal:nth-child(3n+2), .parea-grid .reveal:nth-child(3n+2), .cul-grid .reveal:nth-child(3n+2) { animation-delay: .12s; }
.svc-grid .reveal:nth-child(3n), .parea-grid .reveal:nth-child(3n), .cul-grid .reveal:nth-child(3n) { animation-delay: .24s; }
.stats-in .reveal:nth-child(2), .v-grid .reveal:nth-child(2), .mv-grid .reveal:nth-child(2) { animation-delay: .12s; }
.stats-in .reveal:nth-child(3), .v-grid .reveal:nth-child(3) { animation-delay: .24s; }
.stats-in .reveal:nth-child(4), .v-grid .reveal:nth-child(4) { animation-delay: .36s; }

@media(prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal.in { animation: none; }
  .hero-lead, .tagline, .page-hero .crumbs, .page-hero h1 { animation: none; }
}

/* ---------- çerez tercihleri modalı ---------- */
.ck-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.ck-modal.open { display: block; }
.ck-backdrop { position: absolute; inset: 0; background: rgba(21, 24, 30, .55); }

.ck-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, 92vw);
  max-height: 88vh;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(21, 24, 30, .35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: ckIn .3s ease;
}

@keyframes ckIn { from { opacity: 0; transform: translate(-50%, -46%); } to { opacity: 1; transform: translate(-50%, -50%); } }

.ck-head { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 2rem; border-bottom: 1px solid var(--line-l); }
.ck-head h2 { font-size: 1.35rem; font-weight: 700; color: var(--text-l); }
.ck-close { background: none; border: none; font-size: 1.7rem; line-height: 1; color: var(--muted-l); cursor: pointer; padding: 0 .2rem; transition: color .2s; }
.ck-close:hover { color: var(--text-l); }

.ck-body { padding: 1.6rem 2rem; overflow-y: auto; }
.ck-intro { color: var(--muted-l); font-size: .92rem; line-height: 1.7; margin-bottom: .4rem; }
.ck-row { display: grid; grid-template-columns: 190px 1fr 130px; gap: 1.6rem; align-items: start; padding: 1.7rem 0; border-top: 1px solid var(--line-l); }
.ck-name { font-size: 1.02rem; font-weight: 700; color: var(--text-l); }
.ck-desc { color: var(--muted-l); font-size: .86rem; line-height: 1.65; }
.ck-detail { color: var(--blue); font-weight: 600; text-decoration: underline; }
.ck-ctrl { display: flex; justify-content: flex-end; align-items: center; }
.ck-always { color: var(--blue); font-weight: 700; font-size: .85rem; text-align: right; }

.ck-switch { position: relative; display: inline-block; width: 52px; height: 28px; flex-shrink: 0; }
.ck-switch input { opacity: 0; width: 0; height: 0; }
.ck-slider { position: absolute; inset: 0; background: #cdd2da; border-radius: 28px; cursor: pointer; transition: background .3s; }
.ck-slider::before { content: ""; position: absolute; width: 22px; height: 22px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .3s; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.ck-switch input:checked + .ck-slider { background: var(--blue); }
.ck-switch input:checked + .ck-slider::before { transform: translateX(24px); }

.ck-foot { display: flex; justify-content: flex-end; gap: 1rem; padding: 1.3rem 2rem; border-top: 1px solid var(--line-l); background: var(--light-2); }

/* ---------- TABLET / MOBIL TASARIM (RESPONSIVE) ---------- */
@media(max-width: 1080px) {
  header.solid { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  
  nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    background: #fff;
    width: min(270px, 78vw);
    z-index: 99;
    overflow-y: auto;
    padding: 5.5rem 1.6rem 2rem;
    box-shadow: -10px 0 30px rgba(21, 24, 30, .18);
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.25, .6, .3, 1);
  }
  
  nav.open { transform: translateX(0); }
  nav ul { flex-direction: column; gap: 1.05rem; text-align: left; align-items: flex-start; width: 100%; }
  nav a { font-size: 1rem; font-weight: 700; color: var(--text-l); }
  .menu-toggle { display: block; z-index: 100; }
  
  nav .nav-extra { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; width: 100%; margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--line-l); }
  nav .lang-in { display: flex; gap: .6rem; align-items: center; font-size: .9rem; }
  nav .lang-in a { color: var(--text-l); display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; }
  nav .lang-in a.on { color: var(--blue); }
  nav .lang-in .fl { width: 20px; height: 14px; display: inline-block; box-shadow: 0 0 0 .5px rgba(21, 24, 30, .18); }
  nav .lang-in .sep { color: var(--line-l); }
  
  .nav-search { display: flex; border: 1px solid var(--line-l); background: #fff; width: 100%; }
  .nav-search input { flex: 1; border: none; background: transparent; padding: .6rem .8rem; font-family: var(--sans); font-size: .9rem; color: var(--text-l); }
  .nav-search input:focus { outline: none; }
  .nav-search button { background: none; border: none; padding: 0 .8rem; cursor: pointer; color: var(--muted-l); display: flex; align-items: center; }
  .nav-search button svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
  .nav-email { color: var(--muted-l); font-weight: 500; font-size: .8rem; word-break: break-all; text-align: left; }
  
  .nav-in { gap: 1rem; }
  .brand-sub { font-size: .7rem; letter-spacing: .22em; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 1.5rem; }
  .brand-logo { height: 44px; }
  .brand-emblem { width: 75px; height: 70px; }
  .hdr-right { gap: .85rem; }
  
  .lang { gap: .28rem; font-size: .78rem; }
  .lang .sep { margin: 0; }
  
  .about-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-top, .cform-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .cform-wrap .map-tall, .cform-wrap .map-tall iframe { min-height: 360px; }
  .svc-grid, .parea-grid, .cul-grid, .team-grid, .post-list, .gallery, .v-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-in { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .stat:nth-child(2)::after { display: none; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .about-media img { height: 440px; }
  .cul-mosaic { grid-template-columns: 1fr 1fr; }
  .cm-img { min-height: 200px; }
  
  header:has(nav.open) .menu-toggle, .menu-toggle.open, .menu-toggle.active { color: var(--text-l) !important; }
  header:has(nav.open) .menu-toggle svg, .menu-toggle.open svg, .menu-toggle.active svg { stroke: var(--text-l) !important; fill: var(--text-l) !important; }
}

@media(max-width: 900px) {
  .culture.culture-lg .cm-img { min-height: 220px; }
}

@media(max-width: 640px) {
  .brand-emblem { width: 58px; height: 54px; }
  .brand-name { font-size: 1.1rem; }
  .brand-sub { font-size: .7rem; margin-top: .15rem; letter-spacing: .16em; }
  .brand-txt { gap: .1rem; }
  .hero { height: 90vh; min-height: 560px; }
  .container, .nav-in, .hero-in { padding-left: 22px; padding-right: 22px; }
  section { padding: 4.5rem 0; }
  
  .svc-grid, .v-grid, .mv-grid, .foot-top, .parea-grid, .team-grid, .post-list, .cul-grid, .cul-mosaic { grid-template-columns: 1fr; }
  .contact-top { gap: 1.4rem; }
  .cform-grid { grid-template-columns: 1fr; gap: .9rem; }
  .cform, .office-card { padding: 1.8rem 1.5rem; }
  .culture.culture-lg .cm-img { min-height: 170px; }
  .stats-in { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; gap: .8rem; }
  
  .lang .fl { display: none; }
  .tagline { right: 22px; bottom: 90px; } 
  .tagline span { font-size: 1.15rem; }
  .about-media img { height: 340px; }
  .founder-media img { height: auto; aspect-ratio: 248/350; object-position: center; }
  .map-wrap, .map-wrap iframe { min-height: 340px; }
  .foot-bottom-in { flex-direction: column; text-align: center; }
  .foot-copy { margin-left: 0; }
  
  .fab-stack { right: 18px; bottom: 18px; gap: 12px; }
  .fab { width: 52px; height: 52px; }
  .fab svg { width: 24px; height: 24px; }
  .top-fab { width: 32px !important; height: 32px !important; }
  .top-fab svg { width: 14px !important; height: 14px !important; }
  
  .job { flex-direction: column; align-items: flex-start; }
  .career-tabs { gap: 1.4rem; }
  .ctab { font-size: .95rem; }
  .cm-img { min-height: 170px; }
  
  .ck-head { padding: 1.2rem 1.3rem; }
  .ck-head h2 { font-size: 1.2rem; }
  .ck-body { padding: 1.2rem 1.3rem; }
  .ck-row { grid-template-columns: 1fr; gap: .7rem; padding: 1.3rem 0; }
  .ck-ctrl { justify-content: flex-start; }
  .ck-always { text-align: left; }
  .ck-foot { flex-direction: column; padding: 1.1rem 1.3rem; }
  .ck-foot .btn { width: 100%; text-align: center; }
}

@media(max-width: 380px) {
  .stats-in, .gallery { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .btn { padding: .85rem 1.5rem; font-size: .78rem; }
  .brand-emblem { width: 66px; height: 74px; }
  .brand-name { font-size: 1.6rem; }
  .brand-sub { font-size: .8rem; }
}