:root {
  --ink: #181911;
  --muted: #626257;
  --paper: #f6f6f0;
  --white: #fff;
  --sage: #edf1ea;
  --line: #d9dbc9;
  --olive: #74724f;
  --olive-dark: #171904;
  --gold: #b98a45;
  --gold-soft: #ead8a4;
  --blue: #5e91a3;
  --violet: #7865a7;
  --shadow: 0 18px 50px rgba(18, 19, 9, .14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.62;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--olive-dark);
}
.skip-link:focus { top: 1rem; }
.container { width: min(1160px, calc(100% - 44px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f3f1e8;
  border-bottom: 1px solid rgba(117, 116, 80, .28);
}
.topbar {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  min-height: 38px;
  padding: 2px 22px;
  background: #f3f1e8;
}
.brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
}
.brand img { width: clamp(104px, 8.4vw, 130px); height: auto; }
.header-actions { display: none; }
.topbar .icon-button { width: 34px; height: 34px; }
.topbar .icon-button svg { width: 20px; height: 20px; }
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--olive-dark);
  background: transparent;
  cursor: pointer;
}
.icon-button svg { width: 24px; height: 24px; }
.icon-button:hover,
.icon-button:focus-visible { color: var(--gold); outline: 0; }
.nav-row {
  border-top: 1px solid rgba(117, 116, 80, .16);
  background: #edf1ea;
}
.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
}
.nav-inner > .icon-button:last-child { display: none; }
.nav-inner > .icon-button:first-child {
  display: none;
  position: absolute;
  left: 22px;
  top: 66px;
  width: 36px;
  height: 36px;
}
.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-family: var(--serif);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.primary-nav a {
  position: relative;
  padding: 10px 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }

.button,
.button-light,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button { color: var(--white); background: var(--olive-dark); }
.button:hover { color: var(--white); background: #2d2f13; transform: translateY(-1px); }
.button-light { color: var(--olive-dark); background: var(--paper); }
.button-light:hover { color: var(--white); background: var(--gold); }
.button-ghost { color: inherit; border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.03); }
.button-ghost:hover { border-color: rgba(255,255,255,.72); }

.hero {
  position: relative;
  min-height: clamp(370px, 31vw, 450px);
  overflow: hidden;
  color: var(--white);
  background: #101207;
}
.hero-stage,
.hero-slide,
.hero-slide img,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-stage {
  transform: none;
  transition: none;
}
.hero-slide {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.04);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(62, 45, 22, .58), rgba(24, 25, 13, .10) 48%, rgba(10, 11, 6, .40)),
    radial-gradient(circle at 54% 42%, rgba(234, 216, 164, .14), transparent 36%);
  pointer-events: none;
  animation: shadeSweep 1.5s ease .5s both;
}
@keyframes shadeSweep {
  from { opacity: 0; transform: translateX(24%); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-panel {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 88px));
  min-height: clamp(258px, 24vw, 352px);
  margin-left: auto;
  margin-right: max(5vw, 70px);
  display: flex;
  align-items: center;
  padding: clamp(24px, 3.4vw, 40px);
  background: rgba(28, 31, 16, .78);
  border: 1px solid rgba(234, 216, 164, .16);
  box-shadow: var(--shadow);
  border-radius: 6px;
  transform: none;
  animation: panelIn 1s ease both;
}
.hero-kicker,
.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 10px;
  color: #997026;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1,
.page-hero h1,
.section-heading,
.article-body h1,
.article-body h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}
.hero h1 { font-size: clamp(2.05rem, 3.55vw, 4rem); }
.hero p {
  max-width: 520px;
  margin: 18px 0 24px;
  color: rgba(255,255,255,.86);
}
.hero-actions,
.section-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.section { padding: clamp(58px, 6.5vw, 92px) 0; }
.hero + .section { padding-top: clamp(42px, 4.5vw, 64px); }
.section.alt { background: var(--sage); }
.section.compact { padding-block: 46px; }
.center { text-align: center; }
.section-heading { font-size: clamp(1.9rem, 2.8vw, 3.25rem); }
.section-lead {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
}

.feature-strip,
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card,
.practice-card,
.article-card,
.info-card,
.contact-card,
.focus-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(217, 219, 201, .95);
  border-radius: 6px;
}
.feature-card,
.focus-card {
  min-height: 248px;
  padding: 30px 24px 26px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover,
.focus-card:hover,
.article-card:hover,
.practice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 138, 69, .5);
  box-shadow: var(--shadow);
}
.feature-card > img:not(.branch-logo),
.focus-card > img:not(.branch-logo) {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 18px;
}
.branch-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: drop-shadow(0 10px 18px rgba(23, 25, 4, .14));
}
.feature-card svg,
.practice-card svg { width: 48px; height: 48px; color: var(--olive); }
.feature-card h2,
.practice-card h2,
.practice-card h3,
.article-card h2,
.article-card h3,
.contact-card h2,
.info-card h3,
.focus-card h2 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1.18;
}
.feature-card p,
.practice-card p,
.article-card p,
.contact-card p,
.info-card p,
.focus-card p {
  margin: 0;
  color: var(--muted);
}
.card-link {
  display: inline-flex;
  margin-top: 17px;
  color: var(--olive-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.branch-stack {
  display: grid;
  gap: 14px;
}
.branch-stack a {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(217, 219, 201, .95);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(18, 19, 9, .08);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.branch-stack a:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 138, 69, .5);
  box-shadow: var(--shadow);
}
.branch-stack .branch-logo {
  width: 64px;
  height: 64px;
  margin: 0;
}
.branch-stack strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}
.branch-stack small {
  display: block;
  color: var(--muted);
}

.split,
.split.reverse {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.split.reverse { grid-template-columns: 1.08fr .92fr; }
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.mission-list,
.check-list,
.article-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.mission-list li,
.check-list li,
.article-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}
.mission-list li::before,
.check-list li::before,
.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .67em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.practice-card {
  min-height: 190px;
  padding: 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.practice-card.has-image { padding: 14px 14px 20px; }
.practice-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
}
.practice-card.has-image h3,
.practice-card.has-image p,
.practice-card.has-image .card-link {
  margin-left: 6px;
  margin-right: 6px;
}
.practice-card svg { margin-bottom: 16px; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.article-card {
  display: block;
  min-height: 236px;
  padding: 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--olive);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta-band {
  color: var(--white);
  background: linear-gradient(90deg, rgba(23, 25, 4, .95), rgba(60, 61, 33, .88)), url("hukuki-danismanlik-avukat-siyar-celik-4k.webp") center/cover;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta-inner p {
  max-width: 660px;
  margin: 10px 0 0;
  color: rgba(255,255,255,.82);
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(340px, 30vw, 470px);
  padding: 44px 0;
  color: var(--white);
  background: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.50)), var(--page-hero-image, url("hukuk-burosu-avukat-siyar-celik-4k.webp")) center center/cover;
}
.page-hero > .container { width: min(1160px, calc(100% - 44px)); }
.page-hero.ceza { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("ceza-hukuku-avukat-siyar-celik-4k.webp"); }
.page-hero.kripto { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("kripto-hukuku-avukat-siyar-celik-4k.webp"); }
.page-hero.ai { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("yapay-zeka-hukuku-avukat-siyar-celik-4k.webp"); }
.page-hero.aile { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("aile-bosanma-hukuku-avukat-siyar-celik-4k.webp"); }
.page-hero.is { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("is-hukuku-avukat-siyar-celik-4k.webp"); }
.page-hero.gayrimenkul { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("gayrimenkul-hukuku-avukat-siyar-celik-4k.webp"); }
.page-hero.icra { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("icra-iflas-hukuku-avukat-siyar-celik-4k.webp"); }
.page-hero.ticaret { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("sirketler-ticaret-hukuku-avukat-siyar-celik-4k.webp"); }
.page-hero.tuketici { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("tuketici-hukuku-avukat-siyar-celik-4k.webp"); }
.page-hero.hero-hakkimizda { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("hakkimizda-banner-avukat-siyar-celik-4k.webp"); }
.page-hero.hero-hizmetler { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("hizmetler-banner-avukat-siyar-celik-4k.webp"); }
.page-hero.hero-makaleler { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("makaleler-banner-avukat-siyar-celik-4k.webp"); }
.page-hero.hero-iletisim { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("iletisim-banner-avukat-siyar-celik-4k.webp"); }
.page-hero.hero-danismanlik { background-image: linear-gradient(90deg, rgba(17,18,9,.86), rgba(30,32,16,.52)), url("hukuki-danismanlik-avukat-siyar-celik-4k.webp"); }
.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2.1rem, 3.5vw, 3.4rem);
}
.page-hero p {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.85);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.75);
  font-size: .82rem;
}
.breadcrumbs a { text-decoration: underline; text-underline-offset: 4px; }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 38px;
  align-items: start;
}
.prose { max-width: 820px; }
.prose p { color: var(--muted); }
.prose h2,
.prose h3 {
  margin: 30px 0 10px;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.16;
}
.prose h2 { font-size: clamp(1.75rem, 2.4vw, 2.5rem); }
.prose h3 { font-size: 1.35rem; }
.sidebar {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 14px;
}
.info-card,
.contact-card { padding: 22px; }
.side-nav { display: grid; gap: 8px; }
.side-nav a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.contact-list strong { display: block; color: var(--ink); }
.map-link {
  display: grid;
  min-height: 210px;
  margin-top: 18px;
  padding: 20px;
  color: var(--white);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(22,24,9,.88), rgba(22,24,9,.42)),
    url("hukuki-danismanlik-avukat-siyar-celik-4k.webp") center/cover;
}
.map-link strong { align-self: end; font-family: var(--serif); font-size: 1.5rem; }
.map-embed {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--sage);
}
.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
}
.map-open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--olive-dark);
  background: rgba(255,255,255,.88);
  border-top: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.contact-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field label {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}
.field textarea { min-height: 156px; resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: .88rem; }

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: start center;
  padding: 86px 20px 20px;
  background: rgba(18,19,9,.66);
}
.search-modal.is-open { display: grid; }
.search-panel {
  width: min(720px, 100%);
  padding: 22px;
  background: var(--paper);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.search-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.search-panel input {
  width: 100%;
  margin-top: 14px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.search-results { display: grid; gap: 10px; margin-top: 16px; }
.search-results a {
  display: block;
  padding: 13px 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.search-results span { display: block; color: var(--muted); font-size: .86rem; }

.site-footer {
  color: rgba(255,255,255,.78);
  background: #171904;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr .72fr .88fr;
  gap: 30px;
  align-items: start;
  padding: 32px 0 24px;
}
.footer-logo {
  display: block;
  width: min(190px, 78%);
  height: auto;
  margin: 0 auto 16px;
}
.footer-grid > div:first-child { text-align: center; }
.footer-grid > div:first-child p { margin-left: auto; margin-right: auto; }
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--serif);
  font-weight: 500;
}
.footer-links { display: grid; gap: 8px; }
.site-footer p { max-width: 430px; margin: 0 0 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .8rem;
}

.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease;
}
@keyframes panelIn {
  from { opacity: .1; transform: translateX(7%); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 980px) {
  .topbar { min-height: 40px; padding-inline: 14px; }
  .brand img { width: 132px; }
  .nav-inner { min-height: 0; padding: 0; }
  .nav-inner > .icon-button:first-child {
    display: inline-grid;
    top: 64px;
    left: 14px;
    z-index: 25;
  }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    z-index: 20;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 46px 22px 18px;
    background: var(--sage);
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding-block: 12px; border-bottom: 1px solid rgba(217,219,201,.8); }
  .hero { min-height: 520px; }
  .hero-panel {
    width: auto;
    margin: 0 16px;
    min-height: 300px;
    padding: 28px 24px;
    border-radius: 6px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
  }
  .hero h1 { font-size: clamp(2.05rem, 7vw, 2.75rem); }
  .feature-strip,
  .focus-grid,
  .practice-grid,
  .article-grid,
  .branch-stack,
  .split,
  .split.reverse,
  .content-grid,
  .contact-layout,
  .cta-inner,
  .footer-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  body { font-size: 14.5px; }
  .brand img { width: 120px; }
  .hero { min-height: 552px; }
  .hero h1 { font-size: clamp(1.9rem, 10vw, 2.35rem); }
  .hero-panel { margin-inline: 12px; padding: 24px 18px; }
  .hero-kicker { font-size: .62rem; letter-spacing: .12em; }
  .hero-actions .button,
  .hero-actions .button-light,
  .hero-actions .button-ghost { width: 100%; }
  .section { padding-block: 52px; }
  .feature-card,
  .focus-card,
  .practice-card,
  .article-card,
  .info-card,
  .contact-card { padding: 20px; }
  .branch-stack a { grid-template-columns: 58px 1fr; padding: 15px; }
  .branch-stack .branch-logo { width: 52px; height: 52px; }
  .form-row,
  .footer-bottom { display: grid; grid-template-columns: 1fr; }
  .media-frame { max-width: 360px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ===== v6: iki yana yaslı metin ===== */
.prose p,
.prose .check-list li,
.article-body p,
.split .section-lead,
.split > div > p,
.mission-list li,
.step-list li {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.prose .article-meta,
.prose .card-link,
.article-figure figcaption { text-align: left; }

/* ===== v6: numaralı süreç listesi (Danışmanlık Hizmetleri) ===== */
.step-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: adim;
}
.step-list li {
  position: relative;
  padding-left: 46px;
  color: var(--muted);
  counter-increment: adim;
}
.step-list li::before {
  content: counter(adim);
  position: absolute;
  left: 0;
  top: .05em;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 138, 69, .55);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: .95rem;
  background: rgba(255,255,255,.6);
}
.step-list strong { color: var(--ink); }
.branch-icon { color: var(--gold); }
.branch-stack .branch-icon { width: 56px; height: 56px; margin-inline: 4px; }
.practice-card .branch-icon { width: 52px; height: 52px; margin-bottom: 16px; }

/* ===== v6: hakkımızda 4'lü ilke ızgarası ===== */
.practice-grid.grid-4 { grid-template-columns: repeat(4, 1fr); }
.practice-grid.grid-4 .info-card { min-height: 168px; }

/* ===== v6: makale görselleri ve vurgu kutuları ===== */
.icon-card {
  padding: 26px 22px 24px;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.icon-card:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 138, 69, .5);
  box-shadow: var(--shadow);
}
.ic-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 15px;
  border-radius: 11px;
  color: var(--gold);
  background: linear-gradient(140deg, rgba(234,216,164,.28), rgba(185,138,69,.16));
  border: 1px solid rgba(185,138,69,.32);
}
.ic-badge svg { width: 23px; height: 23px; }
.media-frame .frame-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 34px 20px 16px;
  color: var(--white);
  background: linear-gradient(to top, rgba(17,18,9,.82), rgba(17,18,9,0));
}
.media-frame .frame-caption strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; }
.media-frame .frame-caption span { font-size: .82rem; letter-spacing: .04em; color: var(--gold-soft); }
.article-figure {
  margin: 22px 0 28px;
}
.article-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(217, 219, 201, .95);
  box-shadow: 0 12px 30px rgba(18, 19, 9, .12);
}
.article-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: .8rem;
}
.article-callout {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
  clear: both;
  margin: 26px 0;
  padding: 17px 19px;
  background: var(--sage);
  border: 1px solid rgba(217, 219, 201, .95);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
}
.article-callout svg { width: 34px; height: 34px; color: var(--gold); margin-top: 2px; }
.article-callout p { margin: 0; }
.article-callout strong { color: var(--ink); }
.note-line {
  clear: both;
  padding: 15px 19px;
  background: var(--sage);
  border: 1px solid rgba(217, 219, 201, .95);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
}
.prose .note-line { color: var(--ink); }

/* ===== v6: iletişim sayfası widget'ları ===== */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quick-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(217, 219, 201, .95);
  border-radius: 6px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 138, 69, .5);
  box-shadow: var(--shadow);
}
.quick-card .qc-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(185, 138, 69, .1);
  border: 1px solid rgba(185, 138, 69, .35);
}
.quick-card .qc-icon svg { width: 26px; height: 26px; }
.quick-card.wa .qc-icon { color: #1faa54; background: rgba(37, 211, 102, .1); border-color: rgba(37, 211, 102, .4); }
.quick-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 500;
}
.quick-card small { display: block; color: var(--muted); }
.quick-card .qc-go { color: var(--gold); font-size: 1.3rem; }
.contact-panel {
  padding: 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(217, 219, 201, .95);
  border-radius: 6px;
}
.contact-panel > h2 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}
.contact-panel > p.panel-lead { margin: 0 0 18px; color: var(--muted); }
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}
.file-drop {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
  align-items: center;
  padding: 15px 16px;
  border: 1.5px dashed rgba(116, 114, 79, .55);
  border-radius: 6px;
  background: rgba(237, 241, 234, .55);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.file-drop:hover { border-color: var(--gold); background: rgba(234, 216, 164, .18); }
.file-drop svg { width: 30px; height: 30px; color: var(--olive); }
.file-drop strong { display: block; font-size: .92rem; }
.file-drop small { display: block; color: var(--muted); }
.file-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--muted);
  font-size: .88rem;
}
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold); }
.consent a { text-decoration: underline; text-underline-offset: 3px; }
.form-status { display: none; padding: 14px 17px; border-radius: 6px; border: 1px solid; font-size: .92rem; }
.form-status.ok { display: block; color: #23531f; background: #eaf4e6; border-color: #bcd9b2; }
.form-status.err { display: block; color: #7c2a1e; background: #f9ece8; border-color: #e3c0b6; }
.side-widget {
  padding: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(217, 219, 201, .95);
  border-radius: 6px;
}
.side-widget h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
}
.side-widget h3 svg { width: 21px; height: 21px; color: var(--gold); flex: none; }
.side-widget p { margin: 0 0 8px; color: var(--muted); }
.side-widget .contact-list { margin-top: 12px; }
.btn-call,
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 44px;
  margin-top: 13px;
  padding: 0 16px;
  border-radius: 6px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease;
}
.btn-call { color: var(--white); background: var(--olive-dark); }
.btn-call:hover { background: #2d2f13; transform: translateY(-1px); }
.btn-wa { color: #fff; background: #1faa54; }
.btn-wa:hover { background: #178f45; transform: translateY(-1px); }
.btn-call svg, .btn-wa svg { width: 19px; height: 19px; }
.wa-widget { border-top: 3px solid #25d366; }
.map-widget { padding: 0; overflow: hidden; }
.map-widget .map-head { padding: 18px 22px 4px; }
.map-widget .map-head h3 { margin-bottom: 4px; }
.map-widget .map-embed { margin: 14px 0 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; }
.tel-big {
  display: block;
  margin: 2px 0 1px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.42rem;
}
@media (max-width: 980px) {
  .page-hero { min-height: 440px; }
  .quick-grid, .practice-grid.grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .page-hero { min-height: 400px; }
  .quick-grid, .practice-grid.grid-4 { grid-template-columns: 1fr !important; }
  .article-figure { float: none; width: 100%; margin: 14px 0 18px; }
}

@media (min-width: 981px) {
  .contact-layout { grid-template-columns: 1.16fr .84fr; }
}

/* Kütüphane grupları (makaleler hub) */
.lib-group { margin-top: 40px; }
.lib-group:first-of-type { margin-top: 28px; }
.lib-group-head { display:flex; align-items:baseline; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-bottom:18px; padding-bottom:12px; border-bottom:1px solid rgba(0,0,0,.08); }
.lib-group-head h3 { margin:0; font-size:1.35rem; }

.lib-cats { margin-bottom: 8px; }
.lib-cats + .lib-group { margin-top: 44px; }
