/* ==========================================================================
   AYDIN HUKUK BÜROSU — Sigorta ve Tazminat Hukuku
   Tasarım sistemi — siyah & altın
   ========================================================================== */

/* --- 1. Değişkenler ------------------------------------------------------ */
:root {
  /* Siyah skalası */
  --black:       #0A0A0A;   /* sayfa zemini (en koyu)    */
  --ink:         #0F0F0F;   /* birincil koyu yüzey       */
  --coal:        #161616;   /* yükseltilmiş yüzey        */
  --char:        #1E1E1E;   /* koyu zeminde kart         */
  --smoke:       #2A2A2A;   /* koyu zeminde kenarlık     */

  /* Altın — logodan örneklendi */
  --gold:        #C1963C;
  --gold-hi:     #D8B968;
  --gold-pale:   #E4C87A;
  --gold-deep:   #8E6A1C;
  --gold-grad:   linear-gradient(135deg, #E7CE87 0%, #C1963C 44%, #9A7526 100%);
  --gold-line:   linear-gradient(90deg, transparent, #C1963C 22%, #E4C87A 50%, #C1963C 78%, transparent);

  /* Açık skala */
  --cream:       #F6F3EC;
  --cream-2:     #EFEAE0;
  --white:       #FFFFFF;
  --text:        #16130E;
  --muted:       #5A5348;
  --muted-2:     #8C857A;
  --line:        rgba(0, 0, 0, .10);
  --line-2:      rgba(0, 0, 0, .16);
  --line-dk:     rgba(214, 184, 116, .16);
  --line-dk-2:   rgba(214, 184, 116, .32);

  --radius:      3px;
  --radius-lg:   6px;

  --shadow-xs:   0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:   0 2px 4px rgba(0,0,0,.04), 0 12px 28px -20px rgba(0,0,0,.28);
  --shadow-md:   0 20px 50px -32px rgba(0,0,0,.45);
  --shadow-lg:   0 34px 80px -44px rgba(0,0,0,.55);

  --container:   1200px;
  --gutter:      clamp(20px, 4vw, 40px);
  --section:     clamp(72px, 8.4vw, 126px);

  --ff-display:  'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:     'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --ease:        cubic-bezier(.22, .61, .36, 1);
  --dur:         .32s;

  --header-h:    112px;
}

/* --- 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p, figure { margin: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
::selection { background: var(--ink); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- 3. Tipografi -------------------------------------------------------- */
.display-1, .display-2, .display-3, h1, h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.005em;
  color: var(--ink);
}
.display-1 { font-size: clamp(2.55rem, 5.4vw, 4.45rem); line-height: 1.04; }
.display-2 { font-size: clamp(2rem, 3.7vw, 3.15rem); }
.display-3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .705rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: .85;
  flex: none;
}
.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: .85;
  flex: none;
}

.lead {
  font-size: clamp(1.02rem, 1.25vw, 1.115rem);
  line-height: 1.78;
  color: var(--muted);
}
.text-muted { color: var(--muted); }
.on-dark, .on-dark h1, .on-dark h2, .on-dark .display-1,
.on-dark .display-2, .on-dark .display-3 { color: #fff; }
.on-dark .lead, .on-dark .text-muted { color: rgba(255,255,255,.7); }

/* --- 4. Yerleşim --------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 920px; }
.section { padding-block: var(--section); position: relative; }
.section--cream    { background: var(--cream); }
.section--ink  { background: var(--ink); color: rgba(255,255,255,.78); }
.section--black  { background: var(--black); color: rgba(255,255,255,.78); }
.section--tight { padding-block: clamp(56px, 6vw, 84px); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 4.6vw, 68px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { margin-top: 1.25rem; }

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  max-width: none;
}
.section-head--split p { margin-top: 0; }

.grid { display: grid; gap: clamp(18px, 2vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.rule { height: 1px; background: var(--line); }
.rule--black { background: var(--line-dk); }

/* --- 5. İkonlar ---------------------------------------------------------- */
.ico { width: 24px; height: 24px; flex: none; }
.ico-lg { width: 30px; height: 30px; }
.ico-sm { width: 17px; height: 17px; }

/* --- 6. Butonlar --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1.02rem 1.75rem;
  font-size: .755rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.btn .ico { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.btn:hover .ico { transform: translateX(4px); }

.btn--gold   { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: #D3AA55; border-color: #D3AA55; transform: translateY(-2px); }

.btn--ink   { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ink:hover { background: var(--coal); border-color: var(--coal); transform: translateY(-2px); }

.btn--outline { border-color: var(--line-2); color: var(--ink); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn--ghost  { border-color: var(--line-dk-2); color: #fff; }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn--sm { padding: .78rem 1.3rem; font-size: .71rem; }
.btn--block { width: 100%; }

/* Metin bağlantısı: "Detaylı Bilgi →" */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
}
.link-more .ico { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.link-more:hover { color: var(--gold); }
.link-more:hover .ico { transform: translateX(5px); }
.on-dark .link-more { color: var(--gold-pale); }
.on-dark .link-more:hover { color: #fff; }

/* --- 7. Üst bilgi çubuğu -------------------------------------------------- */
.topbar {
  background: var(--black);
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
}
.topbar__left  { display: flex; align-items: center; gap: 1.4rem; flex-shrink: 0; }
.topbar__note  { display: flex; align-items: center; gap: .55rem; letter-spacing: .04em; flex: 1; justify-content: center; white-space: nowrap; }
.topbar__right { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.topbar__item  { display: inline-flex; align-items: center; gap: .45rem; transition: color var(--dur) var(--ease); white-space: nowrap; }
.topbar__item .ico { width: 14px; height: 14px; color: var(--gold); opacity: .9; flex-shrink: 0; }
.topbar__item:hover { color: #fff; }
.topbar__item--wa .ico { color: #1FA855; }
.topbar__item--wa:hover { color: #2fcc68; }

/* Scroll-to-top arrow in topbar */
.topbar__scroll-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--gold);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.topbar__scroll-top .ico { width: 14px; height: 14px; color: inherit; }
.topbar__scroll-top:hover { background: var(--gold); color: #000; border-color: var(--gold); transform: translateY(-2px); }

/* --- 8. Site başlığı / navigasyon ---------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.5vw, 44px);
  min-height: var(--header-h);
}
.site-header.is-stuck { box-shadow: 0 12px 30px -22px rgba(0,0,0,.5); }

/* Anasayfa: hero üzerinde saydam başlık */
.site-header--overlay {
  position: fixed;
  left: 0; right: 0;
  background: transparent;
  border-bottom-color: rgba(255,255,255,.12);
}
.site-header--overlay .nav__link,
.site-header--overlay .nav-toggle { color: #fff; }
.site-header--overlay .header__phone { color: #fff; }
.site-header--overlay.is-stuck,
.site-header--overlay.is-open {
  position: fixed;
  background: rgba(255,255,255,.985);
  backdrop-filter: saturate(1.4) blur(6px);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px -22px rgba(0,0,0,.5);
}
.site-header--overlay.is-stuck .nav__link,
.site-header--overlay.is-stuck .nav-toggle,
.site-header--overlay.is-open .nav__link,
.site-header--overlay.is-open .nav-toggle { color: var(--ink); }
.site-header--overlay.is-stuck .header__phone,
.site-header--overlay.is-open .header__phone { color: var(--ink); }

/* Marka */
.brand { display: inline-flex; align-items: center; gap: .85rem; flex: none; }

/* Sabit arka plan ve logo */
body.info-center .section {
  background:
    rgba(10,10,10,.7),
    url('../img/ofis/ofis-alani.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
body.info-center .logo-fixed {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 100;
  width: 180px;
  pointer-events: none;
}

/* Bilgi Merkezi arka plan */
.info-center-bg {
  background:
    linear-gradient(rgba(10,10,10,.8), rgba(10,10,10,.8)),
    url('../img/ofis/ofis-alani.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}
.info-center-bg .logo-fixed {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 100;
  width: 180px;
  height: auto;
}

/* Menü */
.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: clamp(13px, 1.35vw, 21px); justify-content: space-between; }
.nav__item { position: relative; flex: none; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem 0;
  font-size: .795rem;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
  color: var(--text);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover::after,
.nav__item.is-current > .nav__link::after { transform: scaleX(1); }
.nav__link:hover { color: var(--gold); }
.nav__item.is-current > .nav__link { color: var(--gold); }
.nav__link .ico { width: 13px; height: 13px; opacity: .55; transition: transform var(--dur) var(--ease); }
.nav__item:hover .nav__link .ico { transform: rotate(180deg); }

/* Açılır menü */
.nav__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  width: min(620px, 82vw);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .2rem 1.4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.nav__item:hover .nav__panel,
.nav__item:focus-within .nav__panel,
.nav__panel:hover {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav__panel-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .68rem .7rem;
  font-size: .845rem;
  color: var(--text);
  border-radius: 2px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  width: 100%;
}
.nav__panel-link .ico { width: 19px; height: 19px; color: var(--gold); opacity: .85; }
.nav__panel-link:hover { background: var(--cream); color: var(--ink); }
.nav__panel-foot {
  grid-column: 1 / -1;
  margin-top: .7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .82rem;
  color: var(--muted);
}

/* Sağ aksiyon alanı */
.header__actions { display: flex; align-items: center; gap: clamp(10px, 1.4vw, 20px); flex: none; }
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .855rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.header__phone .ico { width: 17px; height: 17px; color: var(--gold); }
.header__phone:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  margin-right: -8px;
  color: var(--ink);
}
.nav-toggle .ico { width: 26px; height: 26px; }
.nav-toggle .ico--close { display: none; }
.is-open .nav-toggle .ico--menu { display: none; }
.is-open .nav-toggle .ico--close { display: block; }

/* --- 9. Mobil menü ------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 88;
  background: var(--ink);
  padding: calc(var(--header-h) + 20px) var(--gutter) 40px;
  overflow-y: auto;
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav__list { border-top: 1px solid var(--line-dk); }
.mobile-nav__item { border-bottom: 1px solid var(--line-dk); }
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.05rem 0;
  font-size: 1.02rem;
  color: #fff;
  text-align: left;
}
.mobile-nav__link .ico { width: 18px; height: 18px; color: var(--gold); transition: transform var(--dur) var(--ease); }
.mobile-nav__item.is-expanded .mobile-nav__link .ico { transform: rotate(180deg); }
.mobile-nav__sub { display: none; padding: 0 0 1rem .1rem; }
.mobile-nav__item.is-expanded .mobile-nav__sub { display: block; }
.mobile-nav__sub a {
  display: block;
  padding: .58rem 0 .58rem 1rem;
  font-size: .93rem;
  color: rgba(255,255,255,.7);
  border-left: 1px solid var(--line-dk);
}
.mobile-nav__sub a:hover { color: var(--gold); border-left-color: var(--gold); }
.mobile-nav__foot { margin-top: 2.2rem; display: grid; gap: .85rem; }
.mobile-nav__meta { margin-top: 2rem; font-size: .85rem; color: rgba(255,255,255,.55); display: grid; gap: .6rem; }
.mobile-nav__meta span,
.mobile-nav__meta a { display: flex; align-items: center; gap: .6rem; }
.mobile-nav__meta .ico { width: 16px; height: 16px; color: var(--gold); }
body.nav-open { overflow: hidden; }

/* --- 10. Hero ------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(72px, 11vh, 132px));
  padding-bottom: clamp(120px, 14vh, 170px);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 620px at 78% 18%, rgba(193,150,60,.16), transparent 62%),
    radial-gradient(900px 520px at 12% 82%, rgba(30,30,30,.65), transparent 65%),
    linear-gradient(160deg, #121212 0%, #0F0F0F 46%, #0A0A0A 100%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero-road.svg");
  background-size: cover;
  background-position: center right;
  opacity: .5;
  mix-blend-mode: screen;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.72) 42%, rgba(0,0,0,.28) 100%);
}
.hero__inner { position: relative; max-width: 830px; }
.hero .eyebrow { color: var(--gold-pale); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 { color: #fff; margin-bottom: 1.7rem; }
.hero h1 em { font-style: normal; color: var(--gold-pale); }
.hero__lead {
  font-size: clamp(1.04rem, 1.35vw, 1.185rem);
  line-height: 1.8;
  color: rgba(255,255,255,.76);
  max-width: 640px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.5rem; }
.hero__note {
  margin-top: 2.9rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line-dk);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem 2rem;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.hero__note span { display: inline-flex; align-items: center; gap: .6rem; }
.hero__note span::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex: none; }
.hero__aside {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(120px, 14vh, 170px);
  width: 250px;
  padding-left: 1.5rem;
  border-left: 1px solid var(--line-dk);
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255,255,255,.62);
}
.hero__aside strong { display: block; color: var(--gold-pale); font-weight: 600; letter-spacing: .04em; margin-bottom: .35rem; }

/* --- 11. Hızlı hizmet kartları (hero altı) ------------------------------- */
.quick { position: relative; margin-top: clamp(-96px, -8vw, -70px); z-index: 5; }
.quick__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.quick__card {
  background: #fff;
  padding: clamp(26px, 2.6vw, 38px) clamp(22px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.quick__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.quick__card:hover::before { transform: scaleX(1); }
.quick__card:hover { transform: translateY(-4px); }
.quick__card .ico { color: var(--gold); width: 30px; height: 30px; }
.quick__card h3 { font-size: 1.015rem; font-weight: 600; color: var(--ink); letter-spacing: -.005em; }
.quick__card p { font-size: .885rem; line-height: 1.7; color: var(--muted); }
.quick__card .link-more { margin-top: auto; padding-top: .4rem; font-size: .715rem; }

/* --- 12. Uzmanlık alanı kartları ----------------------------------------- */
.area-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 1.6vw, 22px); }
.area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: clamp(26px, 2.4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  overflow: hidden;
}
.area-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .38s var(--ease);
}
.area-card:hover { border-color: rgba(193,150,60,.42); transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.area-card:hover::after { transform: scaleY(1); }
.area-card__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.area-card__num {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--line-2);
  line-height: 1;
  transition: color var(--dur) var(--ease);
}
.area-card:hover .area-card__num { color: var(--gold); }
.area-card .ico { width: 28px; height: 28px; color: var(--gold); transition: transform var(--dur) var(--ease); }
.area-card:hover .ico { transform: translateY(-2px); }
.area-card h3 { font-size: 1.045rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.area-card p { font-size: .875rem; line-height: 1.72; color: var(--muted); }
.area-card .link-more { margin-top: auto; padding-top: .8rem; font-size: .71rem; }

/* --- 13. Trafik kazası bölümü + zaman çizelgesi -------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(38px, 5.5vw, 92px);
  align-items: center;
}
.split--start { align-items: start; }
.split__media { position: relative; }
.split__media img, .split__media .visual { border-radius: var(--radius); width: 100%; }
.split__badge {
  position: absolute;
  right: -18px;
  bottom: 30px;
  background: var(--gold);
  color: var(--ink);
  padding: 1.1rem 1.4rem;
  max-width: 220px;
  font-size: .82rem;
  line-height: 1.55;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.split__badge strong { display: block; font-family: var(--ff-display); font-size: 1.4rem; line-height: 1.1; margin-bottom: .25rem; }

.timeline { position: relative; padding-left: 2.6rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 10px; bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(193,150,60,.28) 55%, transparent 100%);
}
.timeline__item { position: relative; padding-bottom: clamp(26px, 3vw, 38px); }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-2.6rem + 4px);
  top: 9px;
  width: 9px; height: 9px;
  background: var(--ink);
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  transition: background var(--dur) var(--ease);
}
.on-dark .timeline__item::before { background: var(--ink); }
.timeline__item:hover::before { background: var(--gold); }
.timeline__no {
  font-family: var(--ff-display);
  font-size: .95rem;
  letter-spacing: .1em;
  color: var(--gold);
  display: block;
  margin-bottom: .25rem;
}
.timeline__title { font-size: 1.06rem; font-weight: 600; color: #fff; margin-bottom: .4rem; }
.timeline__text { font-size: .89rem; line-height: 1.72; color: rgba(255,255,255,.66); max-width: 46ch; }
.timeline--light .timeline__title { color: var(--ink); }
.timeline--light .timeline__text { color: var(--muted); }
.timeline--light .timeline__item::before { background: #fff; }

/* --- 14. Üç adımlı süreç -------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 44px); counter-reset: step; }
.step { position: relative; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.step__no {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1;
  color: var(--gold);
  opacity: .5;
  margin-bottom: 1.1rem;
  transition: opacity var(--dur) var(--ease);
}
.step:hover .step__no { opacity: 1; }
.step h3 { font-size: 1.14rem; font-weight: 600; color: var(--ink); margin-bottom: .65rem; }
.step p { font-size: .92rem; line-height: 1.75; color: var(--muted); }
.on-dark .step { border-top-color: var(--line-dk); }
.on-dark .step h3 { color: #fff; }
.on-dark .step p { color: rgba(255,255,255,.66); }

/* --- 15. Neden biz -------------------------------------------------------- */
.reasons { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.reason {
  padding: clamp(28px, 2.6vw, 40px) clamp(18px, 1.8vw, 28px);
  border-right: 1px solid var(--line);
  transition: background var(--dur) var(--ease);
}
.reason:last-child { border-right: 0; }
.reason:hover { background: var(--white); }
.section--cream .reason:hover { background: #fff; }
.reason .ico { width: 27px; height: 27px; color: var(--gold); margin-bottom: 1.35rem; }
.reason h3 { font-size: .985rem; font-weight: 600; color: var(--ink); margin-bottom: .55rem; line-height: 1.4; }
.reason p { font-size: .855rem; line-height: 1.7; color: var(--muted); }

/* --- 16. Hesaplama araçları ---------------------------------------------- */
.tool-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 1.6vw, 22px); }
.tool-card {
  display: flex;
  flex-direction: column;
  gap: .95rem;
  padding: clamp(24px, 2.3vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tool-card:hover { transform: translateY(-4px); border-color: rgba(193,150,60,.45); box-shadow: var(--shadow-sm); }
.tool-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.tool-card:hover .tool-card__icon { border-color: var(--gold); background: rgba(193,150,60,.07); }
.tool-card h3 { font-size: 1rem; font-weight: 600; color: var(--ink); line-height: 1.4; }
.tool-card p { font-size: .865rem; line-height: 1.7; color: var(--muted); }
.tool-card .link-more { margin-top: auto; padding-top: .5rem; font-size: .705rem; }

.disclaimer {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-top: clamp(24px, 2.6vw, 36px);
  background: rgba(193,150,60,.07);
  border-left: 2px solid var(--gold);
  font-size: .855rem;
  line-height: 1.72;
  color: var(--muted);
}
.disclaimer .ico { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: .18rem; }
.on-dark .disclaimer { background: rgba(255,255,255,.05); color: rgba(255,255,255,.66); }

/* --- 17. Hakkımızda ------------------------------------------------------- */
.about__media { position: relative; }
.about__frame {
  position: relative;
  border: 1px solid var(--line);
  padding: 14px;
  background: #fff;
}
.about__frame::before {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 88px; height: 88px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.about__stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; margin-top: clamp(28px, 3vw, 42px); background: var(--line); }
.about__stat { background: var(--cream); padding: 1.35rem 1.2rem; }
.section--cream .about__stat { background: #fff; }
.about__stat dt { font-size: .705rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: .5rem; }
.about__stat dd { margin: 0; font-family: var(--ff-display); font-size: 1.28rem; color: var(--ink); line-height: 1.25; }

.values { display: grid; gap: .1rem; margin-top: 2rem; }
.values li {
  display: flex;
  gap: .9rem;
  padding: .78rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .93rem;
  color: var(--text);
}
.values li:last-child { border-bottom: 0; }
.values .ico { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: .3rem; }
.on-dark .values li { border-bottom-color: var(--line-dk); color: rgba(255,255,255,.78); }

/* --- 18. Ekip ------------------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2vw, 28px); }
.member { background: #fff; border: 1px solid var(--line); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease); }
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(193,150,60,.4); }
.member__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, #1A1A1A 0%, #0F0F0F 60%, #0A0A0A 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  filter: grayscale(1) contrast(1.02);
  transition: filter .45s var(--ease);
}
.member:hover .member__photo { filter: grayscale(.55); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member__initials {
  font-family: var(--ff-display);
  font-size: 3.4rem;
  color: rgba(193,150,60,.55);
  letter-spacing: .06em;
}
.member__body { padding: clamp(20px, 2vw, 28px); }
.member__name { font-size: 1.075rem; font-weight: 600; color: var(--ink); }
.member__role { font-size: .715rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-top: .4rem; }
.member__areas { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.15rem; }
.member__areas span {
  font-size: .715rem;
  letter-spacing: .04em;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: .3rem .6rem;
  border-radius: 999px;
}
.member__bio { font-size: .875rem; line-height: 1.7; color: var(--muted); margin-top: 1.1rem; }
.member .link-more { margin-top: 1.25rem; font-size: .705rem; }

/* --- 19. Bilgi merkezi / makale kartları --------------------------------- */
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2vw, 28px); }
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  height: 100%;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(193,150,60,.4); }
.post-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(420px 180px at 82% 12%, rgba(193,150,60,.24), transparent 62%),
    linear-gradient(150deg, #1A1A1A 0%, #0F0F0F 62%, #0A0A0A 100%);
  overflow: hidden;
}
.post-card__thumb::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../img/logo-mark-gold.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 96px;
  opacity: .92;
}
.post-card__thumb::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../img/pattern-lines.svg");
  background-size: 220px;
  opacity: .2;
}
.post-card__body { padding: clamp(20px, 2vw, 28px); display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: .7rem; font-size: .705rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted-2); }
.post-card__cat { color: var(--gold); font-weight: 600; }
.post-card__meta span:not(:first-child)::before { content: "•"; margin-right: .7rem; color: var(--line-2); }
.post-card h3 { font-size: 1.075rem; font-weight: 600; line-height: 1.42; color: var(--ink); }
.post-card p { font-size: .875rem; line-height: 1.72; color: var(--muted); }
.post-card .link-more { margin-top: auto; padding-top: .6rem; font-size: .705rem; }

.cat-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(30px, 3.4vw, 46px); }
.cat-filter a {
  font-size: .795rem;
  padding: .55rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  transition: all var(--dur) var(--ease);
}
.cat-filter a:hover { border-color: var(--gold); color: var(--ink); }
.cat-filter a.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* --- 20. SSS akordiyon ---------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: clamp(18px, 2vw, 26px) 0;
  text-align: left;
  font-family: var(--ff-display);
  font-size: clamp(1.12rem, 1.5vw, 1.32rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  transition: color var(--dur) var(--ease);
}
.faq__q:hover { color: var(--gold); }
.faq__q .ico { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: .3rem; transition: transform var(--dur) var(--ease); }
.faq__item.is-open .faq__q .ico { transform: rotate(180deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .36s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: clamp(20px, 2.2vw, 30px); font-size: .945rem; line-height: 1.82; color: var(--muted); max-width: 78ch; }

/* --- 21. Büyük CTA bölümü ------------------------------------------------ */
.cta-band {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(760px 380px at 50% 0%, rgba(193,150,60,.19), transparent 68%),
    linear-gradient(180deg, #121212 0%, #0F0F0F 55%, #0A0A0A 100%);
}
.cta-band::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image: url("../img/pattern-lines.svg");
  background-size: 300px;
  opacity: .18;
}
.cta-band__inner { max-width: 780px; margin-inline: auto; }
.cta-band h2 { color: #fff; margin-bottom: 1.35rem; }
.cta-band p { color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.2vw, 1.1rem); line-height: 1.78; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem; margin-top: 2.4rem; }
.cta-band__phone { margin-top: 2.2rem; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.cta-band__phone a { color: var(--gold-pale); }
.cta-band__phone a:hover { color: #fff; }

/* --- 22. Sayfa başlığı (iç sayfalar) ------------------------------------- */
.page-hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding-block: clamp(58px, 7vw, 96px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(680px 320px at 88% 0%, rgba(193,150,60,.16), transparent 66%),
    linear-gradient(150deg, #141414 0%, #0F0F0F 58%, #0A0A0A 100%);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image: url("../img/pattern-lines.svg");
  background-size: 260px;
  opacity: .16;
}
.page-hero__icon {
  position: absolute; z-index: -1;
  top: 50%; right: clamp(-30px, 3vw, 60px);
  transform: translateY(-50%);
  width: clamp(200px, 20vw, 360px); height: clamp(200px, 20vw, 360px);
  color: var(--gold);
  opacity: .09;
  pointer-events: none;
}
.page-hero__icon .ico { width: 100%; height: 100%; stroke-width: .6; }
.page-hero h1 { color: #fff; max-width: 20ch; }

.page-hero__brand-mark {
  position: absolute; z-index: -1;
  top: 50%; right: clamp(-20px, 4vw, 50px);
  transform: translateY(-50%);
  width: clamp(200px, 22vw, 340px);
  height: clamp(200px, 22vw, 340px);
  background-image: url("../img/logo-mark-gold.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .55;
  pointer-events: none;
}
@media (max-width: 820px) { .page-hero__brand-mark { display: none; } }

.page-hero__icon--pulse::before,
.page-hero__icon--pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: ping-404 3.2s var(--ease) infinite;
}
.page-hero__icon--pulse::after { animation-delay: 1.6s; }
@keyframes ping-404 {
  0%   { transform: scale(.7); opacity: .5; }
  70%, 100% { transform: scale(1.3); opacity: 0; }
}

.error-404 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(4.6rem, 14vw, 9.5rem);
  line-height: .9;
  letter-spacing: -.01em;
  margin-bottom: .2rem;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  background: linear-gradient(100deg, var(--gold-deep) 0%, var(--gold-pale) 42%, var(--gold-deep) 58%, var(--gold-pale) 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer-404 5s linear infinite;
}
@keyframes shimmer-404 {
  from { background-position: 0% 0; }
  to   { background-position: -260% 0; }
}
.page-hero p { margin-top: 1.35rem; max-width: 62ch; color: rgba(255,255,255,.72); font-size: 1.03rem; line-height: 1.78; }

.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem; font-size: .765rem; color: rgba(255,255,255,.55); margin-bottom: 1.4rem; }
.breadcrumb a { transition: color var(--dur) var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.28); }
.breadcrumb [aria-current] { color: var(--gold-pale); }

/* --- 23. İçerik tipografisi (makale / alan detayı) ----------------------- */
.prose { max-width: 74ch; }
.prose > * + * { margin-top: 1.25rem; }
.prose p { font-size: 1.005rem; line-height: 1.88; color: #2A241B; }
.prose h2 {
  font-size: clamp(1.42rem, 2.1vw, 1.85rem);
  margin-top: clamp(38px, 4vw, 58px);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.prose h3 { font-family: var(--ff-body); font-size: 1.08rem; font-weight: 600; color: var(--ink); margin-top: 2rem; }
.prose ul { display: grid; gap: .7rem; }
.prose ul li { position: relative; padding-left: 1.5rem; font-size: .975rem; line-height: 1.8; color: #2A241B; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .72rem;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--ink); border-bottom: 1px solid var(--gold); }
.prose a:hover { color: var(--gold); }

.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.article-meta .dot { width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); }
.article-meta .cat { color: var(--gold); font-weight: 600; }

.aside-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: clamp(22px, 2.2vw, 30px);
}
.aside-card + .aside-card { margin-top: 1.25rem; }

.map-embed { border: 1px solid var(--line); overflow: hidden; line-height: 0; }
.map-embed iframe { display: block; width: 100%; height: 420px; filter: grayscale(.3) contrast(1.03); }
@media (max-width: 620px) { .map-embed iframe { height: 300px; } }
.aside-card h3 { font-family: var(--ff-display); font-size: 1.3rem; color: var(--ink); margin-bottom: 1rem; }
.aside-card ul { display: grid; gap: .1rem; }
.aside-card ul a {
  display: block;
  padding: .68rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .895rem;
  line-height: 1.55;
  color: var(--text);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.aside-card ul li:last-child a { border-bottom: 0; }
.aside-card ul a:hover { color: var(--gold); padding-left: .35rem; }
.aside-card--ink { background: var(--ink); border-color: var(--ink); color: rgba(255,255,255,.72); }
.aside-card--ink h3 { color: #fff; }
.aside-card--ink p { font-size: .9rem; line-height: 1.75; margin-bottom: 1.4rem; }

.layout-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(34px, 4.5vw, 72px); align-items: start; }
.sticky-side { position: sticky; top: calc(var(--header-h) + 24px); }

/* --- 24. Formlar ---------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .745rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .92rem 1rem;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; line-height: 1.7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193,150,60,.14);
}
.field input::placeholder, .field textarea::placeholder { color: #A9A296; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b3413a; }
.field__error { font-size: .78rem; color: #b3413a; display: none; }
.field.has-error .field__error { display: block; }

.check, .field label.check {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.check input { width: 18px; height: 18px; margin-top: .18rem; flex: none; accent-color: var(--gold); }
.check a { color: var(--ink); border-bottom: 1px solid var(--gold); }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { display: flex; gap: .9rem; padding: 1.05rem 1.3rem; border-radius: 2px; font-size: .915rem; line-height: 1.65; margin-bottom: 1.75rem; }
.alert .ico { width: 20px; height: 20px; flex: none; margin-top: .18rem; }
.alert--ok  { background: rgba(46,110,74,.08); border-left: 2px solid #2E6E4A; color: #245c3d; }
.alert--err { background: rgba(179,65,58,.07); border-left: 2px solid #B3413A; color: #93332d; }

/* --- 25. İletişim bilgileri ---------------------------------------------- */
.contact-list { display: grid; gap: .1rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.contact-list li { display: flex; gap: 1.1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ico { width: 21px; height: 21px; color: var(--gold); flex: none; margin-top: .28rem; }
.contact-list dt { font-size: .715rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted-2); margin-bottom: .35rem; }
.contact-list dd { margin: 0; font-size: .985rem; line-height: 1.65; color: var(--text); }
.contact-list dd a:hover { color: var(--gold); }
.contact-list dd small { display: block; font-size: .82rem; color: var(--muted); margin-top: .25rem; }

.whats-app-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  border-radius: 2px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
  margin-left: 1rem;
}
.whats-app-link .ico { width: 28px; height: 28px; color: var(--ink); }
.whats-app-link:hover { background: #D3AA55; transform: translateY(-2px); }

/* Scrollbar styling */
.contact-list::-webkit-scrollbar { width: 6px; }
.contact-list::-webkit-scrollbar-track { background: transparent; }
.contact-list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.contact-list::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.map-frame { border: 1px solid var(--line); background: var(--cream); aspect-ratio: 16 / 7; display: grid; place-items: center; margin-top: clamp(28px, 3vw, 42px); }

/* --- 26. Hesaplama arayüzü ------------------------------------------------ */
.calc { background: #fff; border: 1px solid var(--line); }
.calc__head { padding: clamp(22px, 2.2vw, 30px); border-bottom: 1px solid var(--line); display: flex; gap: 1.1rem; align-items: flex-start; }
.calc__head .ico { width: 26px; height: 26px; color: var(--gold); flex: none; margin-top: .2rem; }
.calc__head h3 { font-size: 1.12rem; font-weight: 600; color: var(--ink); }
.calc__head p { font-size: .87rem; color: var(--muted); line-height: 1.65; margin-top: .35rem; }
.calc__body { padding: clamp(22px, 2.2vw, 30px); }
.calc__result {
  margin-top: 1.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--ink);
  color: #fff;
  display: none;
}
.calc__result.is-visible { display: block; }
.calc__result dt { font-size: .705rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.calc__result dd { margin: .45rem 0 0; font-family: var(--ff-display); font-size: clamp(1.7rem, 2.6vw, 2.25rem); color: var(--gold-pale); line-height: 1.15; }
.calc__result p { margin-top: .9rem; font-size: .82rem; line-height: 1.65; color: rgba(255,255,255,.6); }

/* --- 27. Footer ----------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); font-size: .9rem; }
.site-footer a { transition: color var(--dur) var(--ease); }
.site-footer a:hover { color: var(--gold); }
.footer__top { padding-block: clamp(52px, 6vw, 84px); display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3.5vw, 56px); }
.footer__desc { margin-top: 1.5rem; max-width: 34ch; line-height: 1.78; color: rgba(255,255,255,.58); font-size: .885rem; }
.footer__contact { margin-top: 1.75rem; display: grid; gap: .7rem; font-size: .875rem; }
.footer__contact span { display: flex; gap: .7rem; align-items: flex-start; }
.footer__contact .ico { width: 16px; height: 16px; color: var(--gold); flex: none; margin-top: .28rem; }
.footer__col h4 {
  font-size: .715rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-weight: 600;
}
.footer__col ul { display: grid; gap: .72rem; }
.footer__col a { color: rgba(255,255,255,.66); font-size: .885rem; }
.footer__bottom {
  border-top: 1px solid var(--line-dk);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.6rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__disclaimer {
  border-top: 1px solid var(--line-dk);
  padding-block: 1.4rem 2rem;
  font-size: .765rem;
  line-height: 1.7;
  color: rgba(255,255,255,.36);
  max-width: 92ch;
}
.footer__col-toggle { display: none; }

/* --- 28. Sabit iletişim butonları ---------------------------------------- */
.floaters { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: grid; gap: .6rem; }
.floater {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(0,0,0,.55);
  transition: transform var(--dur) var(--ease);
}
.floater:hover { transform: translateY(-3px); }
.floater .ico { width: 25px; height: 25px; }
.floater--wa { background: #1FA855; }
.floater--tel { background: var(--ink); display: none; }

/* --- 29. Görünüm animasyonu ---------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --- 30. Yardımcı sınıflar ------------------------------------------------ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -110%);
  z-index: 200; background: var(--gold); color: var(--ink);
  padding: .75rem 1.4rem; font-size: .82rem; font-weight: 600;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }
.mt-0 { margin-top: 0 !important; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.text-center { text-align: center; }
.center-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .85rem; margin-top: clamp(34px, 3.6vw, 52px); }

/* ==========================================================================
   31. DUYARLI TASARIM
   ========================================================================== */

.cookie-banner {
  background: var(--black);
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  padding: .75rem 0;
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.cookie-banner__inner { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem .85rem; max-width: 1200px; margin-inline: auto; }
.cookie-banner__inner .cookie-icon { flex: none; width: 24px; height: 24px; color: var(--gold); margin-right: .5rem; }
.cookie-banner__inner p { flex: 1 1 auto; min-width: 240px; }
.cookie-banner__link { color: var(--gold); font-weight: 500; transition: color var(--dur) var(--ease); }
.cookie-banner__link:hover { color: #D3AA55; }
.cookie-banner__accept { flex: none; margin-left: auto; }

@media (max-width: 1180px) {
  .quick__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-grid   { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tool-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reasons     { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reason      { border-bottom: 1px solid var(--line); }
  .reason:nth-child(3n) { border-right: 0; }
  .hero__aside { display: none; }
}

/* Ana menü 1080px altında çekmeceye dönüşür */
@media (max-width: 1080px) {
  :root { --header-h: 92px; }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header, .site-header--overlay { position: fixed; left: 0; right: 0; top: 0; }
  body { padding-top: var(--header-h); }
  body.has-overlay-header { padding-top: 0; }
  .topbar { display: none; }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: minmax(0, 1fr); gap: clamp(34px, 6vw, 52px); }
  .split__badge { right: 16px; bottom: -22px; }
  .section-head--split { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .layout-sidebar { grid-template-columns: minmax(0, 1fr); }
  .sticky-side { position: static; }
  .team-grid, .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about__frame::before { width: 62px; height: 62px; }
}

@media (max-width: 820px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .step { padding-block: 1.8rem; }
  .step:first-child { padding-top: 0; border-top: 0; }
  .step__no { margin-bottom: .6rem; }
  .reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reason:nth-child(3n) { border-right: 1px solid var(--line); }
  .reason:nth-child(2n) { border-right: 0; }
  .reason:last-child { border-right: 0; }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .about__stats { grid-template-columns: minmax(0, 1fr); }
  .hero { padding-top: calc(var(--header-h) + 68px); padding-bottom: 108px; }
  .quick { margin-top: -66px; }
  .page-hero__icon { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 15.5px; }
  .quick__grid, .area-grid, .tool-grid, .team-grid, .post-grid,
  .reasons, .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .reason { border-right: 0 !important; }
  .quick { margin-top: -52px; }
  .quick__card { padding: 24px 22px; }

  .hero { padding-top: calc(var(--header-h) + 52px); padding-bottom: 88px; }
  .hero__lead { font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__note { gap: .55rem 1.2rem; font-size: .705rem; }

  .cta-band__actions { flex-direction: column; align-items: stretch; }
  .cta-band__actions .btn, .center-actions .btn { width: 100%; }
  .center-actions { flex-direction: column; align-items: stretch; }

  .split__badge { position: static; max-width: none; margin-top: 1rem; box-shadow: none; }
  .timeline { padding-left: 2rem; }
  .timeline__item::before { left: calc(-2rem + 4px); }

  .footer__top { grid-template-columns: minmax(0, 1fr); gap: 0; padding-bottom: 2rem; }
  .footer__brand { padding-bottom: 2.2rem; }
  .footer__col { border-top: 1px solid var(--line-dk); }
  .footer__col h4 {
    display: flex; align-items: center; justify-content: space-between;
    margin: 0; padding: 1.15rem 0; cursor: pointer;
  }
  .footer__col h4 .ico { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
  .footer__col.is-open h4 .ico { transform: rotate(180deg); }
  .footer__col ul { display: none; padding-bottom: 1.4rem; }
  .footer__col.is-open ul { display: grid; }
  .footer__col-toggle { display: block; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  /* Başlıktaki CTA mobilde gizlenir; çekmece menüde yer alır */
  .header__actions .btn { display: none; }
  .floater--tel { display: grid; }
  .floaters { left: 14px; right: auto; bottom: 14px; }
  .prose h2 { margin-top: 34px; }
  .aside-card { padding: 22px; }
}

@media (max-width: 420px) {
}

/* --- 32. Yazdırma --------------------------------------------------------- */
@media print {
  .site-header, .topbar, .mobile-nav, .floaters, .cta-band, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 24px; }
}

/* Başlık; footer ve tüm içerik bölümleriyle aynı kapsayıcıyı kullanır.
   Ayrı bir max-width TANIMLANMAZ — logo ve footer logosu aynı hizada durur. */

/* Orta genişlikte menü sıkıştırması */
@media (max-width: 1430px) and (min-width: 1081px) {
  .site-header__inner { gap: 16px; }
  .nav__list { gap: 10px; }
  .nav__link { font-size: .745rem; }
  .brand { gap: .7rem; }
  .header__actions .btn { padding: .7rem 1rem; font-size: .665rem; }
}

/* Sabit başlık altında kalmaması için bağlantı hedefleri */
[id] { scroll-margin-top: calc(var(--header-h) + 24px); }
.calc__result dl { margin: 0; }

/* ==========================================================================
   33. SİYAH & ALTIN — yüzeyler, logo, fotoğraf dili
   ========================================================================== */

/* --- 33.1 Koyu yüzeyler --------------------------------------------------- */
.section--ink   { background: var(--ink);   color: rgba(255,255,255,.72); }
.section--black { background: var(--black); color: rgba(255,255,255,.72); }
.section--ink::before, .section--black::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--gold-line);
  opacity: .5;
}
.section--cream { background: var(--cream); }

.on-dark .rule, .section--ink .rule, .section--black .rule { background: var(--line-dk); }

/* --- 33.2 Altın vurgular -------------------------------------------------- */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-rule { height: 1px; background: var(--gold-line); border: 0; }
.eyebrow::before, .eyebrow--center::after { background: var(--gold-grad); }

/* --- 33.4 Fotoğraf dili --------------------------------------------------- */
.photo {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(.35) contrast(1.06) brightness(.92);
  transition: transform .9s var(--ease), filter .7s var(--ease);
}
.photo:hover img { transform: scale(1.045); filter: grayscale(0) contrast(1.02) brightness(1); }
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.10) 0%, rgba(10,10,10,.55) 100%);
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.photo--flat::after { opacity: 0; }
.photo--frame { border: 1px solid var(--line-dk); }
.photo--gold {
  position: relative;
  padding: 10px;
  background: var(--gold-grad);
}
.photo--gold > .photo { border: 0; }

.photo__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.1rem 1.25rem;
  font-size: .715rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.photo__cap::before { content: ""; width: 16px; height: 1px; background: var(--gold); flex: none; }

/* --- 33.5 Fotoğraflı hero ------------------------------------------------- */
.hero--photo .hero__bg { background: var(--black); }
.hero--photo .hero__bg::after {
  background-image: none;
  background: var(--black);
  opacity: 1;
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__photo img {
  /* transform kullanılmaz: bileşik katman oluşturup sabit konumlu
     mobil çekmecenin üzerine çıkabiliyor. Aynı etki ölçüyle verilir. */
  width: 104%;
  height: 104%;
  margin: -2%;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(.12) contrast(1.04) brightness(.86) saturate(1.02);
}
.hero--photo .hero__veil {
  background:
    linear-gradient(90deg, rgba(8,8,8,.94) 0%, rgba(8,8,8,.82) 34%, rgba(8,8,8,.34) 62%, rgba(8,8,8,.14) 100%),
    linear-gradient(180deg, rgba(8,8,8,.55) 0%, transparent 26%, transparent 62%, rgba(8,8,8,.6) 100%),
    radial-gradient(900px 480px at 80% 26%, rgba(193,150,60,.14), transparent 66%);
}
.hero__frame {
  position: absolute;
  inset: clamp(14px, 1.6vw, 26px);
  top: calc(var(--header-h) + clamp(12px, 1.4vw, 22px));
  border: 1px solid rgba(214,184,116,.16);
  pointer-events: none;
  z-index: 1;
}
.hero__frame::before, .hero__frame::after {
  content: "";
  position: absolute;
  width: 54px; height: 54px;
}
.hero__frame::before { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.hero__frame::after  { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

/* --- 33.6 Ofis galerisi --------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(130px, 13vw, 200px);
  gap: clamp(10px, 1.1vw, 16px);
}
.gallery > * { min-width: 0; }
.gallery__item { position: relative; overflow: hidden; }
.gallery__item--tall  { grid-row: span 2; }
.gallery__item--wide  { grid-column: span 2; }
.gallery__item--hero  { grid-column: span 2; grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  aspect-ratio: 16 / 9;
  filter: grayscale(.4) contrast(1.05) brightness(.86);
  transition: transform 1s var(--ease), filter .6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); filter: grayscale(0) brightness(1); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(214,184,116,.14);
  transition: border-color var(--dur) var(--ease);
  pointer-events: none;
}
.gallery__item:hover::after { border-color: rgba(214,184,116,.5); }
.gallery__label {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  padding: .9rem 1.05rem;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,.9);
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery__item:hover .gallery__label { opacity: 1; transform: none; }

/* --- 33.7 Kayan şerit (uzmanlık alanları) --------------------------------- */
.ticker {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line-dk);
  background: var(--black);
  padding-block: 1.15rem;
  --ticker-dur: 46s;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-run var(--ticker-dur) linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding-inline: 1.6rem;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  letter-spacing: .02em;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.ticker__item::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}
@keyframes ticker-run { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* --- 33.8 İstatistik / künye şeridi --------------------------------------- */
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line-dk); }
.fact { background: var(--black); padding: clamp(24px, 2.6vw, 38px) clamp(18px, 2vw, 28px); }
.fact__k {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fact__v { margin-top: .8rem; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.52); }

/* --- 33.9 Koyu zeminde kart varyantları ----------------------------------- */
.section--ink .area-card,
.section--black .area-card,
.section--ink .tool-card,
.section--black .tool-card,
.section--ink .post-card,
.section--black .post-card,
.section--ink .member,
.section--black .member {
  background: var(--char);
  border-color: var(--line-dk);
}
.section--ink .area-card h3, .section--black .area-card h3,
.section--ink .tool-card h3, .section--black .tool-card h3,
.section--ink .post-card h3, .section--black .post-card h3,
.section--ink .member__name, .section--black .member__name { color: #fff; }
.section--ink .area-card p, .section--black .area-card p,
.section--ink .tool-card p, .section--black .tool-card p,
.section--ink .post-card p, .section--black .post-card p,
.section--ink .member__bio, .section--black .member__bio { color: rgba(255,255,255,.62); }
.section--ink .area-card:hover, .section--black .area-card:hover,
.section--ink .tool-card:hover, .section--black .tool-card:hover,
.section--ink .post-card:hover, .section--black .post-card:hover,
.section--ink .member:hover, .section--black .member:hover {
  border-color: rgba(214,184,116,.5);
  background: #202020;
}
.section--ink .area-card__num, .section--black .area-card__num { color: rgba(255,255,255,.16); }
.section--ink .link-more, .section--black .link-more { color: var(--gold-pale); }
.section--ink .link-more:hover, .section--black .link-more:hover { color: #fff; }
.section--ink .tool-card__icon, .section--black .tool-card__icon { border-color: var(--line-dk); }
.section--ink .member__areas span, .section--black .member__areas span {
  border-color: var(--line-dk); color: rgba(255,255,255,.6);
}
.section--ink .reasons, .section--black .reasons { border-top-color: var(--line-dk); }
.section--ink .reason, .section--black .reason { border-right-color: var(--line-dk); border-bottom-color: var(--line-dk); }
.section--ink .reason h3, .section--black .reason h3 { color: #fff; }
.section--ink .reason p, .section--black .reason p { color: rgba(255,255,255,.62); }
.section--ink .reason:hover, .section--black .reason:hover { background: rgba(255,255,255,.03); }
.section--ink .faq, .section--black .faq { border-top-color: var(--line-dk); }
.section--ink .faq__item, .section--black .faq__item { border-bottom-color: var(--line-dk); }
.section--ink .faq__q, .section--black .faq__q { color: #fff; }
.section--ink .faq__a p, .section--black .faq__a p { color: rgba(255,255,255,.66); }
.section--ink .cat-filter a, .section--black .cat-filter a { border-color: var(--line-dk); color: rgba(255,255,255,.6); }
.section--ink .cat-filter a.is-active, .section--black .cat-filter a.is-active {
  background: var(--gold); border-color: var(--gold); color: var(--black);
}

/* --- 33.10 Başlık: siyah zemin --------------------------------------------- */
.topbar { background: #060606; color: rgba(255,255,255,.58); border-bottom-color: rgba(214,184,116,.14); }
.site-header { background: var(--black); border-bottom-color: rgba(214,184,116,.16); }
.site-header .nav__link   { color: rgba(255,255,255,.82); }
.site-header .nav__link:hover,
.site-header .nav__item.is-current > .nav__link { color: var(--gold-pale); }
.site-header .header__phone { color: #fff; }
.site-header .nav-toggle { color: #fff; }
.site-header.is-stuck {
  background: rgba(8,8,8,.94);
  backdrop-filter: saturate(1.3) blur(10px);
  box-shadow: 0 14px 34px -26px #000;
}
/* Anasayfada hero üzerinde tam saydam */
.site-header--overlay { background: transparent; border-bottom-color: rgba(255,255,255,.10); }
.site-header--overlay.is-stuck,
.site-header--overlay.is-open {
  background: rgba(8,8,8,.94);
  backdrop-filter: saturate(1.3) blur(10px);
  border-bottom-color: rgba(214,184,116,.18);
}
.site-header--overlay.is-stuck .nav__link,
.site-header--overlay.is-open .nav__link,
.site-header--overlay.is-stuck .nav-toggle,
.site-header--overlay.is-open .nav-toggle,
.site-header--overlay.is-stuck .header__phone,
.site-header--overlay.is-open .header__phone { color: #fff; }

/* Açılır menü koyu */
.nav__panel {
  background: #101010;
  border-color: rgba(214,184,116,.18);
  border-top: 2px solid var(--gold);
  box-shadow: 0 28px 60px -30px #000;
}
.nav__panel-link { color: rgba(255,255,255,.78); }
.nav__panel-link:hover { background: rgba(214,184,116,.08); color: var(--gold-pale); }
.nav__panel-foot { border-top-color: var(--line-dk); color: rgba(255,255,255,.55); }
.mobile-nav { background: var(--black); }

/* --- 33.11 Footer --------------------------------------------------------- */
.site-footer { background: var(--black); border-top: 1px solid rgba(214,184,116,.18); }
.site-footer::before { content: ""; display: block; height: 1px; background: var(--gold-line); }

/* --- 33.12 Sayfa başlığı (iç sayfa) --------------------------------------- */
.page-hero { background: var(--black); }
.page-hero::before {
  background:
    radial-gradient(720px 340px at 86% 0%, rgba(193,150,60,.14), transparent 68%),
    linear-gradient(160deg, #131313 0%, #0C0C0C 58%, #070707 100%);
}
.page-hero--photo::before { background: none; }
.page-hero__photo { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.page-hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.6) contrast(1.08) brightness(.42);
}
.page-hero--photo::after {
  background:
    linear-gradient(90deg, rgba(8,8,8,.94) 0%, rgba(8,8,8,.78) 52%, rgba(8,8,8,.5) 100%);
  background-image: none;
  opacity: 1;
}

/* --- 33.13 CTA şeridi ------------------------------------------------------ */
.cta-band::before {
  background:
    radial-gradient(760px 380px at 50% 0%, rgba(193,150,60,.2), transparent 68%),
    linear-gradient(180deg, #141414 0%, #0C0C0C 55%, #070707 100%);
}
.cta-band { background: var(--black); }

/* --- 33.14 Hesaplama sonucu ------------------------------------------------ */
.calc__result { background: var(--black); border: 1px solid rgba(214,184,116,.28); }
.calc__result dd { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* --- 33.15 Yüzen butonlar -------------------------------------------------- */
.floater--tel { background: var(--gold); color: var(--black); }
.floater--tel:hover { background: var(--gold-hi); }

/* --- 33.16 Duyarlı düzeltmeler --------------------------------------------- */
@media (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 120px; }
  .gallery__item--hero { grid-column: span 2; grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
  .facts { grid-template-columns: minmax(0, 1fr); }
  .hero__frame { inset: 8px; }
  .hero__frame::before, .hero__frame::after { width: 32px; height: 32px; }
}

/* --- 33.17 Marka: yatay logo kilidi ---------------------------------------
   Kaynak 575x220 (2.614:1). Header ve footer AYNI yüksekliği kullanır —
   .footer__brand için ayrı bir override TANIMLANMAZ; ikisi de tek kural
   üzerinden büyür/küçülür ve her zaman birbirine eşit kalır. */
.brand { display: block; flex: none; }
.brand__logo {
  height: 88px;
  width: auto;
  max-width: none;
  object-fit: contain;
  transition: height var(--dur) var(--ease);
}

/* --- 33.18 Hızlı hizmet kartları: koyu varyant ---------------------------- */
.quick__grid {
  background: rgba(214,184,116,.18);
  border: 1px solid rgba(214,184,116,.22);
  box-shadow: 0 40px 90px -50px #000;
}
.quick__card { background: var(--char); }
.quick__card h3 { color: #fff; }
.quick__card p  { color: rgba(255,255,255,.62); }
.quick__card .link-more { color: var(--gold-pale); }
.quick__card .link-more:hover { color: #fff; }
.quick__card:hover { background: #212121; }
.quick__card::before { background: var(--gold-grad); }

/* --- 33.19 Ekip: koyu zeminde ------------------------------------------- */
.section--ink .member__photo, .section--black .member__photo {
  background: linear-gradient(155deg, #1E1E1E 0%, #131313 60%, #0A0A0A 100%);
}
.member__initials { color: rgba(216,185,104,.6); }
.section--ink .member__role, .section--black .member__role { color: var(--gold); }

/* --- 33.20 Katman düzeni ---------------------------------------------------
   Fotoğraflardaki filter/transform bileşik katman oluşturduğundan, bazı
   tarayıcılarda sabit konumlu çekmecenin üzerine çıkabiliyor. Katman
   sıralamasına güvenmek yerine çekmece açıkken arka içerik gizlenir. */
main { position: relative; z-index: 0; }
.mobile-nav { z-index: 89; }

/* Sidebar açıkken sayfa perdenin ardında görünür kalır; yalnızca fotoğraf
   katmanları gizlenir (filter/transform bileşik katmanları bazı tarayıcılarda
   sabit konumlu panelin üzerine çıkabiliyor). */
body.nav-open .hero__photo,
body.nav-open .page-hero__photo,
body.nav-open .floaters {
  visibility: hidden;
}

/* --- 33.21 Marka: duyarlı ölçüler -----------------------------------------
   Tek kaynak: logo yüksekliği ve başlık yüksekliği burada birlikte tanımlanır.
   Header ve footer her kırılma noktasında AYNI değeri kullanır.
   Logo scroll sırasında küçülmez — her durumda sabit ve büyük kalır. */
@media (max-width: 1430px) { .brand__logo { height: 82px; } }
@media (max-width: 1080px) { .brand__logo { height: 76px; } }
@media (max-width: 620px)  {
  :root { --header-h: 92px; }
  .brand__logo { height: 68px; }
}
@media (max-width: 400px) {
  :root { --header-h: 84px; }
  .brand__logo { height: 60px; }
}

/* ==========================================================================
   34. KANUNLAR VE İÇTİHATLAR
   ========================================================================== */
.law-group + .law-group { margin-top: clamp(52px, 6vw, 88px); }

.law-group__head {
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 2.4vw, 34px);
  padding-bottom: clamp(20px, 2.2vw, 30px);
  margin-bottom: clamp(20px, 2.2vw, 30px);
  border-bottom: 1px solid var(--line);
}
.law-group__no {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  flex: none;
}
.law-group__head h2 { display: flex; align-items: center; gap: .75rem; }
.law-group__head h2 .ico { color: var(--gold); flex: none; }
.law-group__head p { margin-top: .6rem; font-size: .95rem; max-width: 68ch; }

.law-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.law-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  background: #fff;
  padding: clamp(20px, 2.1vw, 28px) clamp(20px, 2.2vw, 30px);
  transition: background var(--dur) var(--ease), padding-left var(--dur) var(--ease);
  position: relative;
}
.law-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold-grad);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .34s var(--ease);
}
.law-item:hover { background: var(--cream); padding-left: calc(clamp(20px, 2.2vw, 30px) + 8px); }
.law-item:hover::before { transform: scaleY(1); }
.law-item__main { min-width: 0; }
.law-item h3 { font-size: 1.045rem; font-weight: 600; color: var(--ink); line-height: 1.4; }
.law-item__meta {
  display: block;
  margin-top: .3rem;
  font-size: .715rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.law-item p { margin-top: .7rem; font-size: .89rem; line-height: 1.7; color: var(--muted); max-width: 76ch; }
.law-item__side { display: flex; align-items: center; gap: 1rem; flex: none; }
.law-item__kind {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  border: 1px solid var(--line);
  padding: .34rem .7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.law-item__go {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all var(--dur) var(--ease);
}
.law-item__go .ico { width: 17px; height: 17px; transition: transform var(--dur) var(--ease); }
.law-item:hover .law-item__go { background: var(--gold); border-color: var(--gold); color: var(--black); }
.law-item:hover .law-item__go .ico { transform: translateX(3px); }

@media (max-width: 760px) {
  .law-group__head { flex-direction: column; gap: .6rem; }
  .law-item { flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .law-item__side { width: 100%; justify-content: space-between; }
  .law-item:hover { padding-left: clamp(20px, 2.2vw, 30px); }
}

/* --- 34.1 Mega menü (3 sütunlu uzmanlık paneli) --------------------------- */
.nav__item--mega { position: static; }
.nav__item--mega .nav__panel {
  left: 50%;
  width: min(880px, calc(100vw - 2 * var(--gutter)));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(16px, 2vw, 32px);
  padding: clamp(22px, 2.2vw, 30px);
}
.nav__col { display: flex; flex-direction: column; }
.nav__col + .nav__col { border-left: 1px solid rgba(214,184,116,.14); padding-left: clamp(16px, 2vw, 30px); }
.nav__col-head {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 0 .7rem .85rem;
  margin-bottom: .5rem;
  border-bottom: 1px solid rgba(214,184,116,.2);
  font-size: .715rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--dur) var(--ease);
}
.nav__col-head .ico { width: 18px; height: 18px; flex: none; }
.nav__col-head:hover { color: var(--gold-pale); }
.nav__col .nav__panel-link { padding: .52rem .7rem; font-size: .825rem; }
.nav__item--mega .nav__panel-foot { margin-top: 1.1rem; }

/* --- 34.2 Makale kartı görseli (marka kapağı) ----------------------------- */
.post-card__thumb::before { transition: transform .9s var(--ease), opacity .6s var(--ease); }
.post-card:hover .post-card__thumb::before { transform: scale(1.06); opacity: 1; }
.post-card__thumb::after { z-index: 1; }

/* --- 34.3 Tek sütunlu açılır menü (Kurumsal / Bilgi Merkezi) -------------- */
.nav__panel--single {
  width: 268px;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: .85rem;
}
.nav__panel--single .nav__panel-link { padding: .68rem .8rem; font-size: .86rem; }
.nav__panel--single .nav__panel-link:hover { background: transparent; color: var(--ink); }

/* --- 34.4 Hero metni: parlak fotoğraf bölgelerinde güvenlik gölgesi -------- */
.hero--photo h1,
.hero--photo .hero__lead,
.hero--photo .eyebrow,
.hero--photo .hero__note { text-shadow: 0 2px 18px rgba(0,0,0,.55); }
.page-hero--photo h1,
.page-hero--photo p,
.page-hero--photo .breadcrumb,
.page-hero--photo .article-meta { text-shadow: 0 2px 16px rgba(0,0,0,.5); }

/* ==========================================================================
   35. MOBİL SIDEBAR (sağdan açılan off-canvas menü)
   ========================================================================== */

/* --- 35.1 Hamburger (bars) ------------------------------------------------ */
.nav-toggle {
  width: 46px; height: 46px;
  border: 1px solid rgba(214,184,116,.35);
  border-radius: 2px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-toggle:hover { border-color: var(--gold); background: rgba(193,150,60,.1); }
.nav-toggle__bars { display: block; width: 22px; height: 14px; position: relative; }
.nav-toggle__bars i {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), width .3s var(--ease);
}
.nav-toggle__bars i:nth-child(1) { top: 0; }
.nav-toggle__bars i:nth-child(2) { top: 6px; width: 70%; }
.nav-toggle__bars i:nth-child(3) { top: 12px; }
.nav-toggle:hover .nav-toggle__bars i:nth-child(2) { width: 100%; }
.is-open .nav-toggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.is-open .nav-toggle__bars i:nth-child(2) { opacity: 0; }
.is-open .nav-toggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --- 35.2 Arka perde ------------------------------------------------------ */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(4, 4, 4, .72);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.nav-backdrop.is-visible { opacity: 1; }

/* --- 35.3 Sidebar --------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  left: auto;
  z-index: 96;
  width: min(360px, 86vw);
  max-width: 100%;
  padding: 0;
  background: var(--black);
  border-left: 1px solid rgba(214,184,116,.28);
  box-shadow: -30px 0 70px -30px rgba(0,0,0,.9);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  opacity: 1;
  visibility: hidden;
  transition: transform .38s var(--ease), visibility .38s;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--gutter);
  border-bottom: 1px solid var(--line-dk);
  position: sticky;
  top: 0;
  background: var(--black);
  z-index: 2;
}
.mobile-nav__logo { height: 64px; width: auto; }
.mobile-nav__close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(214,184,116,.3);
  border-radius: 2px;
  color: var(--gold);
  flex: none;
  transition: all var(--dur) var(--ease);
}
.mobile-nav__close:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.mobile-nav__close .ico { width: 20px; height: 20px; }

.mobile-nav__list { padding-inline: var(--gutter); margin-top: .4rem; border-top: 0; }
.mobile-nav__foot,
.mobile-nav__meta { padding-inline: var(--gutter); }
.mobile-nav__foot { margin-top: 1.6rem; }
.mobile-nav__meta { margin-top: 1.6rem; padding-bottom: 2.2rem; }
.mobile-nav__meta a { transition: color var(--dur) var(--ease); }
.mobile-nav__meta a:hover { color: var(--gold); }
.mobile-nav__link { font-size: .98rem; padding: .95rem 0; }
.mobile-nav__sub a { font-size: .89rem; }

/* Sidebar açıkken sayfa kaymasın */
body.nav-open { overflow: hidden; }
