:root {
  --burgundy: #6B1220;
  --burgundy-dk: #4E0D18;
  --cream: #F8F4EF;
  --cream-dk: #EDE7DC;
  --text: #1C1512;
  --text-mid: #5A5048;
  --text-light: #756B65;
  --gold: #B59043;
  --rule: rgba(107,18,32,0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --max: 1200px;
  --gutter: clamp(1.5rem, 4vw, 3rem);
  --section: clamp(5rem, 10vw, 8rem);
}
/* Skip link */
.skip-link { position: absolute; top: -3rem; left: 0; background: var(--burgundy); color: #fff; padding: 0.5rem 1rem; z-index: 10000; font-size: 0.875rem; text-decoration: none; transition: top 0.2s; }
.skip-link:focus { top: 0; }

/* Global focus indicator */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--burgundy);
  flex-shrink: 0;
}

/* Top bar */
.topbar {
  background: #1a0c10;
  color: rgba(255,255,255,0.7);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
}
.topbar__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0.55rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: inherit; text-decoration: none; transition: color 0.15s; }
.topbar a:hover { color: #fff; }
.topbar__right { display: flex; align-items: center; gap: 1.25rem; }
.topbar__phone-link { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.85); text-decoration: none; }
.topbar__sep { width: 1px; height: 0.7rem; background: rgba(255,255,255,0.2); }

/* Language switch */
.lang-switch { display: flex; align-items: center; gap: 0.375rem; }
.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.lang-switch__btn:hover { color: rgba(255,255,255,0.85); }
.lang-switch__btn--active { color: #fff; }
.lang-switch__flag {
  width: 1rem;
  height: 0.75rem;
  border-radius: 2px;
  flex-shrink: 0;
}
.lang-switch__sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.5rem;
  user-select: none;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a0c10;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.35s;
}
.page--hero-dark .topbar {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 102;
}
.page--hero-dark .site-header {
  position: fixed;
  top: 1.75rem;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: rgba(255,255,255,0.06);
}
.page--hero-dark .site-header.site-header--scrolled {
  top: 0;
  background: rgba(26,12,16,0.97);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.08);
}
.page--hero-dark .topbar.topbar--scrolled {
  display: none;
}
.page--hero-dark .hero--dark {
  padding-top: 9rem;
}
.page--hero-dark .hero--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 17rem;
  background: linear-gradient(to bottom, rgba(35,10,16,0.96) 0, rgba(35,10,16,0.88) 7rem, rgba(35,10,16,0.4) 12rem, transparent 17rem);
  pointer-events: none;
  z-index: 1;
}
.nav__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 4.75rem;
}
.nav__links { display: flex; list-style: none; gap: 2.25rem; }
.nav__links--right { justify-content: flex-end; }
.nav__links a {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }
.nav__link--active { color: #fff !important; position: relative; }
.nav__links .nav__link--active::after { content: ''; position: absolute; bottom: -0.25rem; left: 0; right: 0; height: 1px; background: var(--gold); }
.nav__right { display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem; }
.nav__lang {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.nav__lang a { color: inherit; text-decoration: none; }
.nav__lang a.active { color: var(--gold); font-weight: 500; }
.nav__cta {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy-dk);
  background: var(--gold);
  padding: 0.6rem 1.25rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav__cta:hover { background: #c9a255; color: var(--burgundy-dk); }
.logo { text-align: center; text-decoration: none; color: var(--cream); }
.logo__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  line-height: 1;
}
.logo__sub {
  display: block;
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}

/* Hero */
.hero { overflow: hidden; }
.hero--dark {
  background: #231018;
  background-image:
    linear-gradient(165deg, rgba(35,16,24,0.7) 0%, rgba(45,21,32,0.6) 50%, rgba(26,12,16,0.75) 100%),
    url('/uploads/img/hero-bg.webp');
  background-size: cover;
  background-position: center center;
  background-blend-mode: normal, normal;
  position: relative;
}
.hero--dark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, transparent 0%, #1a0c10 100%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3rem) var(--gutter) clamp(1.5rem, 3vw, 2.5rem);
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}
.hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 5.25rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--cream);
  max-width: 16ch;
  margin-bottom: 2.25rem;
}
.hero__heading em { font-style: italic; color: var(--gold); }
.hero__body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  max-width: 54ch;
  margin-bottom: 3rem;
  line-height: 1.85;
  font-weight: 300;
}
.hero__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.btn--outline {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--cream);
  background: none;
  padding: 0.9rem 1.875rem;
}
.btn--outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.hero__text-link {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.hero__text-link:hover { color: var(--gold); }
.hero-fade { display: none; }
.hero__label { margin-bottom: 2rem; }
.hero__rule { width: 3rem; height: 1px; background: var(--gold); margin-bottom: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.875rem;
  border-radius: 0.375rem;
  transition: background-color 0.22s, color 0.22s, border-color 0.22s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--burgundy); color: var(--cream); }
.btn--primary:hover { background: var(--burgundy-dk); }
.btn--ghost { border: 1px solid rgba(35,16,24,0.3); color: var(--text); background: none; }
.btn--ghost:hover { border-color: var(--burgundy); color: var(--burgundy); }

/* Sections */
.section { padding-block: var(--section); }
.section--alt { background: var(--cream-dk); }
.section__header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-top: 1rem;
  max-width: 22ch;
}
h1, h2, .section__title { text-wrap: balance; }

/* Firma */
.firma__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 660px;
}
.firma__body { color: var(--text-mid); line-height: 1.85; font-weight: 300; }
.firma__body p + p { margin-top: 1.125rem; }
.firma__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
}
.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1;
  color: var(--burgundy);
}
.stat__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  color: var(--text-light);
  margin-top: 0.45rem;
  text-transform: uppercase;
}
.firma__stats-rule {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--rule);
  margin-bottom: 0.5rem;
}

/* Practice areas */
.alanlar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.alan-card {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.25s;
  cursor: default;
  color: var(--text);
  text-decoration: none;
}
.alan-card:hover { background: white; }
.alan-card__number {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 1.125rem;
}
.alan-card__title {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.alan-card__body { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
.alan-card__arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 1.75rem;
  height: 1px;
  background: var(--burgundy);
  opacity: 0;
  transition: opacity 0.22s, transform 0.22s;
  transform: translateX(-0.5rem);
}
.alan-card__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.375rem;
  height: 0.375rem;
  border-right: 1px solid var(--burgundy);
  border-top: 1px solid var(--burgundy);
  transform: translateY(-50%) rotate(45deg);
}
.alan-card:hover .alan-card__arrow { opacity: 1; transform: translateX(0); }

/* Alanlar — tek sira dik dikdortgenler */
#alanlar { background: var(--cream); padding: 0; }
#alanlar .section__title { color: var(--text); }
#alanlar .eyebrow { color: var(--text-light); }
#alanlar .eyebrow::before { background: var(--text-light); }
#alanlar .alanlar-grid {
  grid-template-columns: repeat(9, 1fr);
  border: none;
  gap: 0;
  align-items: stretch;
}
#alanlar .alan-card {
  background-color: #fff;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.92) 100%), var(--card-bg, none);
  background-size: cover;
  background-position: center;
  background-position: center;
  background-blend-mode: normal, luminosity;
  border: none;
  border-right: 1px solid var(--rule);
  min-height: 420px;
  height: 100%;
  padding: 1.75rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  color: var(--text);
  text-decoration: none;
  transition: background 0.25s;
}
#alanlar .alan-card:last-child { border-right: none; }
#alanlar .alan-card:hover {
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.85) 100%), var(--card-bg, none);
}
.alan-card__icon {
  display: flex;
  margin-bottom: auto;
  color: var(--burgundy);
}
.alan-card__icon svg { width: 1.875rem; height: 1.875rem; }
#alanlar .alan-card__number { color: var(--text-light); margin-top: 1.75rem; }
#alanlar .alan-card__title {
  color: var(--burgundy-dk);
  font-size: 1rem;
  margin-top: 0.5rem;
}
#alanlar .alan-card__body { display: none; }
#alanlar .alan-card__arrow { background: var(--burgundy); bottom: 1.5rem; right: 1.25rem; }
#alanlar .alan-card__arrow::after { border-color: var(--burgundy); }

/* Alanlar — light editorial (hizmetler sayfası) */
.alanlar--light {
  background: var(--cream);
  padding-bottom: 1rem;
}
.alanlar--light .alanlar-grid {
  grid-template-columns: repeat(3, 1fr);
  border: none;
  gap: 1.75rem;
  align-items: stretch;
}
.alanlar--light .alan-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s;
}
.alanlar--light .alan-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(107,18,32,0.08), 0 2px 8px rgba(0,0,0,0.06);
  border-color: rgba(107,18,32,0.12);
}
.alanlar--light .alan-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.alanlar--light .alan-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15) saturate(0.9);
  transition: filter 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.alanlar--light .alan-card:hover .alan-card__visual img {
  filter: none;
  transform: scale(1.05);
}
.alanlar--light .alan-card__content {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.alanlar--light .alan-card__number {
  font-family: var(--font-serif);
  font-size: 0.6875rem;
  color: #8a6f3e;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.alanlar--light .alan-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--burgundy);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}
.alanlar--light .alan-card:hover .alan-card__title {
  color: var(--burgundy-dk);
}
.alanlar--light .alan-card__body {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.alanlar--light .alan-card__icon { display: none; }
.alanlar--light .alan-card__arrow { display: none; }
.alanlar--light .alan-card__arrow-label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  transition: color 0.25s, gap 0.25s;
}
.alanlar--light .alan-card:hover .alan-card__arrow-label {
  color: var(--burgundy-dk);
  gap: 0.625rem;
}
.alanlar--light .alan-card:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}
@media (max-width: 960px) {
  .alanlar--light .alanlar-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 600px) {
  .alanlar--light .alanlar-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Kadro */
.kadro-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.kadro-card {
  background-color: #2d1520;
  background-image: linear-gradient(to bottom, rgba(35,16,24,0.4) 0%, rgba(26,12,16,0.92) 100%), var(--kadro-bg, none);
  background-size: cover;
  background-position: center;
  background-blend-mode: normal, overlay;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.625rem;
  min-height: 400px;
  height: 100%;
  padding: 1.75rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s, opacity 0.3s;
  text-decoration: none;
  color: inherit;
}
.kadro-card:hover {
  background-image: linear-gradient(to bottom, rgba(35,16,24,0.25) 0%, rgba(26,12,16,0.82) 100%), var(--kadro-bg, none);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.kadro-card__monogram {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-bottom: auto;
}
.kadro-card__unvan {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.75rem;
}
.kadro-card__ad {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  margin-top: 0.4rem;
}
.kadro-card__uzmanlik {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin-top: 0.5rem;
  font-weight: 300;
  line-height: 1.5;
}

/* Ayirac Bandi */
.divider-band {
  background: var(--cream-dk);
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.divider-band__label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.divider-band__rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
  margin: 0 1.5rem;
}

/* Stat Bandi */
.stat-band {
  background: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--rule);
}
.stat-item__number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-item__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* Publications — horizontal card track */
.pub-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1.5rem;
}
.pub-header__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.pub-header__link:hover { color: var(--gold); }
.pub-track-wrap {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.pub-track-wrap::after {
  display: none;
}
/* Pub slider layout */
.pub-slider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
/* Pub nav arrows */
.pub-nav {
  flex-shrink: 0;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--cream);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.pub-nav:hover {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}
.pub-nav:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
@media (max-width: 600px) {
  .pub-nav { width: 2rem; height: 2rem; }
  .pub-nav svg { width: 16px; height: 16px; }
}
/* Scroll indicator dots */
.pub-dots {
  display: none;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
}
.pub-dots__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rule);
  transition: background 0.25s, transform 0.25s;
}
.pub-dots__dot.active {
  background: var(--burgundy);
  transform: scale(1.3);
}
.pub-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: none;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding-bottom: 0.5rem;
}
.pub-track::-webkit-scrollbar { display: none; }
.pub-card {
  flex: 0 0 calc(33.333% - 1.5rem);
  min-width: 280px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.3s;
}
.pub-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  border-radius: 0.75rem 0.75rem 0 0;
}
.pub-card:hover {
  border-color: rgba(107,18,32,0.12);
  box-shadow: 0 8px 28px rgba(107,18,32,0.08), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.pub-card:hover::before { transform: scaleX(1); }
.pub-card__cat {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a6f3e;
  margin-bottom: 1rem;
}
.pub-card__title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.45;
  margin: 0 0 0.75rem;
  flex: 1;
}
.pub-card__excerpt {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0 0 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pub-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}
.pub-card__date {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: uppercase;
}
.pub-card__arrow {
  font-size: 1.125rem;
  color: var(--burgundy);
  opacity: 0;
  transform: translateX(-0.5rem);
  transition: opacity 0.25s, transform 0.25s;
}
.pub-card:hover .pub-card__arrow {
  opacity: 1;
  transform: translateX(0);
}
/* Yayınlar sayfası — grid layout */
.pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
/* Yayınlar sayfası tab'ları (eski class'lar hâlâ kullanılıyor) */
.yayinlar__tabs-wrap {
  position: relative;
  margin-bottom: 0;
}
.yayinlar__tabs {
  display: flex;
  border-bottom: 1px solid var(--rule);
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.yayinlar__tabs::-webkit-scrollbar { display: none; }
/* Scrollable-tabs affordance: fade hints that more tabs sit off-screen on mobile */
.yayinlar__tabs-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 1px;
  width: 2.25rem;
  background: linear-gradient(to right, rgba(237,231,220,0), var(--cream-dk));
  pointer-events: none;
}
@media (min-width: 601px) {
  .yayinlar__tabs-wrap::after { display: none; }
}
.tab-btn {
  background: none;
  border: none;
  white-space: nowrap;
  padding: 0.75rem 1.375rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.tab-btn.active, .tab-btn:hover { color: var(--burgundy); }
.tab-btn.active::after { transform: scaleX(1); }

/* Contact */
#iletisim { background: none; padding: 0; }
.iletisim__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.iletisim__form-col {
  background: var(--cream);
  padding-inline-start: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding-inline-end: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(3rem, 5vw, 5rem);
}
.iletisim__info-col {
  background: #231018;
  border-left: 1px solid rgba(181,144,67,0.45);
  padding-inline-start: clamp(2rem, 4vw, 4rem);
  padding-inline-end: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding-block: clamp(3rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.iletisim__info-top { position: relative; z-index: 1; }
.iletisim__info-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
  margin-bottom: 1.75rem;
}
.iletisim__info-rule {
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.75rem;
}
.iletisim__deco {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 16rem;
  height: 16rem;
  opacity: 0.06;
  pointer-events: none;
}
.iletisim__deco svg { width: 100%; height: 100%; }
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6d635d;
  margin-bottom: 0.6rem;
}
.form-input, .form-textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.5rem 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--burgundy); }
.form-input:focus-visible, .form-textarea:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 2px; }
.form-textarea { resize: vertical; min-height: 5.5rem; }
.form-note { font-size: 0.75rem; color: var(--text-light); line-height: 1.65; margin-top: 1.5rem; font-weight: 300; }
.contact-info { position: relative; z-index: 1; }
.contact-block { margin-bottom: 1.625rem; }
.contact-block:last-child { margin-bottom: 0; }
.contact-block__label {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-block__value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}
.contact-block__value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-block__value a:hover { color: var(--gold); }

/* Footer */
.site-footer { background: var(--cream-dk); border-top: 1px solid var(--gold); padding-block: 4rem 2rem; }
.footer__inner { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 0;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
}
.footer__top > div {
  padding: 0 clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--rule);
}
.footer__top > div:first-child { padding-left: 0; }
.footer__top > div:last-child { border-right: none; padding-right: 0; }
.footer__logo .logo__name { color: var(--burgundy); }
.footer__logo .logo__sub { color: #7d5f2c; }
.footer__tagline { font-size: 0.8125rem; color: var(--text-light); margin-top: 1.25rem; line-height: 1.75; font-weight: 300; }
.footer__col-title {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6d635d;
  margin-bottom: 1.375rem;
}
.footer__links { list-style: none; }
.footer__links li + li { margin-top: 0.7rem; }
.footer__links a { font-size: 0.875rem; color: var(--text-mid); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer__links a:hover { color: var(--burgundy); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  color: #6d635d;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1), visibility 0.55s;
}
.page-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__wordmark {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--burgundy);
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  animation: loaderFadeUp 0.6s 0.1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.page-loader__sub {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 0.4rem;
  opacity: 0;
  animation: loaderFadeUp 0.5s 0.25s cubic-bezier(0.16,1,0.3,1) forwards;
}
.page-loader__line {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin-top: 1.25rem;
  transform: scaleX(0);
  transform-origin: center;
  animation: loaderLineGrow 0.7s 0.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes loaderFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderLineGrow {
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader__wordmark,
  .page-loader__sub { opacity: 1; transform: none; animation: none; }
  .page-loader__line { transform: scaleX(1); animation: none; }
  .page-loader { transition: none; }
  .page-loader.is-loaded { display: none; }
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(1.25rem); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,0.6), #fff);
  z-index: 1000;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* Ticker band */
.ticker-band {
  background: var(--burgundy);
  overflow: hidden;
  padding-block: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-inline: 1.75rem;
  white-space: nowrap;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.ticker-item__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* Hakkimizda */
/* Kariyer popup */
.kariyer-popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(45,8,14,0.6);
  backdrop-filter: blur(6px);
  animation: kariyerFadeIn 0.3s ease;
}
@keyframes kariyerFadeIn { from { opacity:0 } to { opacity:1 } }
.kariyer-popup {
  background: var(--white, #fff);
  max-width: 420px; width: 90%;
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  animation: kariyerSlideUp 0.35s cubic-bezier(0.16,1,0.3,1);
}
@keyframes kariyerSlideUp { from { opacity:0;transform:translateY(1.5rem) } to { opacity:1;transform:translateY(0) } }
.kariyer-popup__icon { color: var(--gold); margin-bottom: 1.25rem; }
.kariyer-popup__title {
  font-family: var(--font-serif); font-size: 1.375rem; font-weight: 400;
  margin-bottom: 0.75rem; color: var(--text);
}
.kariyer-popup__text {
  font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.25rem;
}
.kariyer-popup__countdown {
  font-size: 0.75rem; color: var(--text-light); margin-bottom: 1.5rem;
}
.kariyer-popup__btn { display: inline-block; }

/* Kariyer grid */
.kariyer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hakkimizda__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 6rem;
  align-items: center;
}
.hakkimizda__visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hakkimizda__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hakkimizda__accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 5rem;
  height: 5rem;
  background: var(--burgundy);
  z-index: 1;
}
.hakkimizda__body {
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  font-size: 1rem;
}
.hakkimizda__body p + p { margin-top: 1.25rem; }
.hakkimizda__detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.hakkimizda__detail-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--burgundy);
  line-height: 1;
  flex-shrink: 0;
}
.hakkimizda__detail-text {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 300;
}

/* Hakkımızda — Values */
.hakkimizda-values .section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2rem);
  color: var(--burgundy);
  margin-bottom: 0.625rem;
}
.hakkimizda-values .section-subtitle {
  color: var(--text-mid);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: 2.5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.value-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(107,18,32,0.07);
}
.value-card__icon {
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.value-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--burgundy);
  margin-bottom: 0.625rem;
}
.value-card__body {
  font-size: 0.8125rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}
@media (max-width: 960px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* Hakkımızda — Approach */
.approach-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.approach-text .section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2rem);
  color: var(--burgundy);
  margin-bottom: 1.25rem;
}
.approach-text p {
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  font-size: 0.9375rem;
}
.approach-text p + p { margin-top: 1rem; }
.approach-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.approach-stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.approach-stat:last-child { border-bottom: none; }
.approach-stat__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--burgundy);
  line-height: 1;
  flex-shrink: 0;
}
.approach-stat__label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 300;
}
@media (max-width: 960px) {
  .approach-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .approach-stats { flex-direction: row; gap: 2rem; flex-wrap: wrap; }
  .approach-stat { border-bottom: none; border-right: 1px solid var(--rule); padding-right: 2rem; padding-bottom: 0; }
  .approach-stat:last-child { border-right: none; }
}
@media (max-width: 600px) {
  .approach-stats { flex-direction: column; }
  .approach-stat { border-right: none; border-bottom: 1px solid var(--rule); padding-right: 0; padding-bottom: 1.5rem; }
}

/* About — editorial redesign */
.about-editorial {
  background: #231018;
  background-image:
    linear-gradient(165deg, rgba(35,16,24,0.75) 0%, rgba(45,21,32,0.65) 50%, rgba(26,12,16,0.8) 100%),
    url('/uploads/img/hero-bg.webp');
  background-size: cover;
  background-position: center center;
  background-blend-mode: normal, normal;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.about-editorial__top {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.about-editorial__top .eyebrow {
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-editorial__top .eyebrow::before { background: var(--gold); }
.about-editorial__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  max-width: 22ch;
  margin-inline: auto;
}
.about-editorial__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 56rem;
  margin-inline: auto;
}
.about-editorial__col p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  line-height: 1.85;
  font-weight: 300;
}
.about-editorial__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2.5rem;
}
.about-editorial__stat {
  text-align: center;
  padding-inline: clamp(1.5rem, 3vw, 3rem);
}
.about-editorial__stat-sep {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.about-editorial__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}
.about-editorial__stat-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.375rem;
}
@media (max-width: 960px) {
  .about-editorial__columns { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 600px) {
  .about-editorial__stats { flex-wrap: wrap; gap: 1.5rem; }
  .about-editorial__stat-sep { display: none; }
  .about-editorial__stat { padding-inline: 1.25rem; }
}

/* Hakkımızda — dark variant (legacy) */
.hakkimizda--dark {
  background: #1a0c10;
  padding-block: clamp(4rem, 8vw, 7rem);
}
.hakkimizda__grid--dark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 6rem;
  align-items: start;
}
.hakkimizda__lead-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--cream);
  max-width: 18ch;
}
.hakkimizda__blocks {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.hakkimizda__block-title {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.hakkimizda__block-body {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  line-height: 1.85;
  font-weight: 300;
}
.hakkimizda__stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hakkimizda__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1;
  color: var(--cream);
}
.hakkimizda__stat-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
}

/* Alan card hover */
#alanlar .alan-card__arrow-label {
  display: block;
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0);
  margin-top: auto;
  padding-top: 0.75rem;
  transition: color 0.25s, transform 0.25s;
  transform: translateY(5px);
}
#alanlar .alan-card:hover .alan-card__arrow-label {
  color: var(--burgundy);
  transform: translateY(0);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: auto;
  width: min(22rem, calc(100vw - 2rem));
  z-index: 500;
  background: #231018;
  border: 1px solid rgba(181,144,67,0.25);
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.875rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(calc(100% + 1rem));
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.is-collapsed { transform: translateY(calc(100% + 1rem)); }
.cookie-banner__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.cookie-banner__close:hover { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.cookie-banner__text {
  padding-right: 1.25rem;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  font-weight: 300;
}
.cookie-banner__text a { color: var(--gold); text-decoration: none; }
.cookie-banner__text a:hover { text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.625rem; flex-wrap: nowrap; }
.cookie-btn {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.625rem 1.125rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex: 1;
  text-align: center;
}
.cookie-btn--accept { background: var(--cream); color: var(--burgundy-dk); }
.cookie-btn--accept:hover { background: #fff; }
.cookie-btn--reject { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); border-radius: 0.375rem; }
.cookie-btn--reject:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.4); }
.cookie-btn:active { transform: scale(0.98); }
@media (max-width: 600px) {
  .cookie-banner { right: 0.75rem; bottom: 0.75rem; width: calc(100vw - 1.5rem); padding: 0.875rem 1rem; }
  .cookie-btn { min-height: 2.75rem; display: flex; align-items: center; justify-content: center; padding-top: 0; padding-bottom: 0; }
}

/* Mobile menu */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  justify-self: end;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-menu.open { pointer-events: all; }
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(35,16,24,0);
  transition: background 0.35s;
}
.mobile-menu.open .mobile-menu__overlay { background: rgba(35,16,24,0.45); }
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--cream);
  border-left: 1px solid var(--rule);
  border-radius: 1rem 0 0 1rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  padding: 2rem var(--gutter);
}
.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__close {
  display: flex;
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem;
  margin-bottom: 2rem;
}
.mobile-menu__links { list-style: none; flex: 1; }
.mobile-menu__links li { border-bottom: 1px solid var(--rule); }
.mobile-menu__links a {
  display: block;
  padding: 1rem 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu__links a:hover { color: var(--burgundy); }
.mobile-menu__cta {
  display: block;
  margin-top: 2rem;
  text-align: center;
  background: var(--burgundy);
  color: var(--cream);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}
.mobile-menu__cta:hover { background: var(--burgundy-dk); }
.mobile-menu__lang {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
}
.mobile-menu__lang .lang-switch__btn {
  font-size: 0.75rem;
  color: var(--text-light);
}
.mobile-menu__lang .lang-switch__btn--active { color: var(--burgundy); }
.mobile-menu__lang .lang-switch__flag { width: 1.25rem; height: 0.9rem; }
.mobile-menu__info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--burgundy);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.page-hero .eyebrow { color: rgba(255,255,255,0.5); }
.page-hero .eyebrow::before { background: rgba(255,255,255,0.3); }
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  margin-top: 1rem;
  line-height: 1.2;
}
.page-hero__desc {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  font-weight: 300;
  margin-top: 1rem;
  max-width: 60ch;
  line-height: 1.75;
}

/* Content page */
.content-page { padding-block: var(--section); }
.content-page__body {
  max-width: 760px;
  margin-inline: auto;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}
.content-page__body h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.content-page__body h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.content-page__body p { margin-bottom: 1.25rem; }
.content-page__body ul, .content-page__body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.content-page__body li { margin-bottom: 0.5rem; }

/* Services grid (hizmetler page) */
.hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.hizmet-card {
  background: white;
  border: 1px solid var(--rule);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}
.hizmet-card:hover {
  box-shadow: 0 8px 32px rgba(107,18,32,0.08);
  transform: translateY(-2px);
}
.hizmet-card__number {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.hizmet-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.hizmet-card__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* Kadro page grid */
.kadro-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.kadro-page-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0.75rem;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s, border-color 0.35s;
}
.kadro-page-card:hover {
  box-shadow: 0 8px 28px rgba(107,18,32,0.08), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-3px);
  border-color: rgba(107,18,32,0.12);
}
.kadro-page-card__monogram {
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--burgundy);
  margin: 0 auto 1.25rem;
}
.kadro-page-card__photo {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  display: block;
}
.kadro-page-card__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.kadro-page-card__title {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.kadro-page-card__spec {
  font-size: 0.8125rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.6;
}

/* Avukat profile */
.avukat-profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.avukat-profile__sidebar {
  background: white;
  border: 1px solid var(--rule);
  padding: 2rem;
  text-align: center;
}
.avukat-profile__content {
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}
.avukat-profile__content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Flash messages */
.flash-message {
  max-width: var(--max);
  margin: 1rem auto;
  padding: 1rem var(--gutter);
  font-size: 0.875rem;
  font-weight: 400;
}
.flash-message--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.flash-message--error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* 404 */
.error-page {
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) var(--gutter);
}
.error-page__code {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1;
  opacity: 0.15;
}
.error-page__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin-top: 1rem;
}
.error-page__body {
  color: var(--text-mid);
  font-weight: 300;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* Admin login */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dk);
}
.admin-login__box {
  background: white;
  border: 1px solid var(--rule);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 400px;
}
.admin-login__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--burgundy);
}

/* Responsive */
@media (max-width: 960px) {
  .topbar .lang-switch { display: none; }
  .topbar__right { display: none; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .mobile-menu { display: block; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__lang { display: none; }
  .hero__inner { padding: clamp(1.5rem, 5vw, 3rem) var(--gutter); }
  .hero__heading { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .hero__body { font-size: 0.9375rem; margin-bottom: 2rem; }
  .firma__grid { grid-template-columns: 1fr; gap: 3rem; }
  .firma__visual { order: -1; }
  .firma__visual img { max-width: 260px; }
  #alanlar .alanlar-grid { grid-template-columns: repeat(3, 1fr); }
  #alanlar .alan-card { aspect-ratio: 3/4; height: auto; min-height: unset; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  #alanlar .alan-card:nth-child(3n) { border-right: none; }
  #alanlar .alan-card:last-child { border-right: none; }
  .divider-band { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.25rem var(--gutter); }
  .divider-band__rule { width: 2rem; height: 1px; }
  .divider-band__label--secondary { display: none; }
  .hakkimizda__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .kariyer-grid { grid-template-columns: 1fr; }
  .hakkimizda__grid--dark { grid-template-columns: 1fr; gap: 2rem; }
  .hakkimizda__visual { max-width: 420px; aspect-ratio: 3/2; }
  .hakkimizda__accent { display: none; }
  .iletisim__inner { grid-template-columns: 1fr; }
  .iletisim__form-col { padding-inline-start: var(--gutter); padding-inline-end: var(--gutter); }
  .iletisim__info-col { border-left: none; border-top: 1px solid rgba(181,144,67,0.45); padding-inline-start: var(--gutter); padding-inline-end: var(--gutter); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__top > div { border-right: none; padding: 0; }
  .pub-card { flex: 0 0 calc(45% - 0.75rem); }
  .pub-grid { grid-template-columns: repeat(2, 1fr); }
  .kadro-grid { grid-template-columns: repeat(3, 1fr); }
  .kadro-card { min-height: 300px; }
  .yayin-date { display: block; }
  .section__title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  .hizmetler-grid { grid-template-columns: repeat(2, 1fr); }
  .kadro-page-grid { grid-template-columns: repeat(2, 1fr); }
  .avukat-profile { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav__cta { display: none; }
  #alanlar .alanlar-grid { grid-template-columns: repeat(3, 1fr); }
  #alanlar .alan-card { aspect-ratio: 3/4; height: auto; min-height: unset; padding: 0.875rem 0.75rem 1rem; }
  #alanlar .alan-card__title { font-size: 0.75rem; }
  #alanlar .alan-card__icon { font-size: 1.1rem; margin-bottom: 0.5rem; }
  #alanlar .alan-card:nth-child(3n) { border-right: none; }
  #alanlar .alan-card:nth-child(2n) { border-right: 1px solid var(--rule); }
  .iletisim__info-tagline { font-size: 1.4rem; }
  .kadro-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: repeat(3, 1fr); gap: 1.25rem 1rem; }
  .footer__top > div { border-right: none; padding: 0; }
  .footer__top > div:first-child { grid-column: 1 / -1; padding-bottom: 1.5rem; border-bottom: 1px solid var(--rule); text-align: center; }
  .footer__logo { display: inline-flex; flex-direction: column; align-items: center; }
  .footer__tagline { display: none; }
  .footer__col-title { margin-bottom: 0.75rem; font-size: 0.5rem; }
  .footer__links a { font-size: 0.75rem; }
  .footer__links li + li { margin-top: 0.5rem; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.375rem; padding-top: 1.5rem; }
  .hizmetler-grid { grid-template-columns: 1fr; }
  .kadro-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  #alanlar .alanlar-grid { grid-template-columns: 1fr; }
  #alanlar .alan-card {
    aspect-ratio: auto;
    height: auto;
    min-height: unset;
    border-right: none;
    border-bottom: 1px solid var(--rule);
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "icon title arrow" "number title arrow";
    align-items: center;
    column-gap: 1rem;
    row-gap: 0.125rem;
    padding: 1rem 1.25rem;
  }
  #alanlar .alan-card__icon { grid-area: icon; margin-bottom: 0; align-self: end; }
  #alanlar .alan-card__icon svg { width: 1.375rem; height: 1.375rem; }
  #alanlar .alan-card__number { grid-area: number; margin-top: 0; align-self: start; font-size: 0.6875rem; }
  #alanlar .alan-card__title { grid-area: title; margin-top: 0; font-size: 0.9375rem; }
  #alanlar .alan-card__arrow-label { display: none; }
  #alanlar .alan-card__arrow {
    grid-area: arrow;
    position: static;
    opacity: 1;
    transform: none;
    width: 1.125rem;
  }
  .kadro-grid { grid-template-columns: 1fr; }
  .kadro-card { min-height: auto; }
  .pub-card { flex: 0 0 78%; min-width: 240px; }
  .pub-dots { display: flex; }
  .pub-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > div:first-child { grid-column: 1 / -1; }
}

/* ============================================================
   İç sayfa tasarım sistemi — page-header, breadcrumb,
   content-body, sidebar, CTA band (anasayfa diliyle uyumlu)
   ============================================================ */

/* Page header — bordo zemin, hero görselli */
.page-header {
  position: relative;
  background-color: #231018;
  background-image:
    linear-gradient(to bottom, rgba(35,10,16,0.96) 0, rgba(35,10,16,0.88) 7rem, rgba(35,10,16,0.4) 12rem, transparent 17rem),
    linear-gradient(165deg, rgba(35,16,24,0.7) 0%, rgba(45,21,32,0.6) 50%, rgba(26,12,16,0.75) 100%),
    url('/uploads/img/hero-bg.webp');
  background-size: cover;
  background-position: center center;
  background-blend-mode: normal, normal, normal;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}
/* Transparent navbar ile page-header iç içe geçtiğinde üst boşluk */
.page--hero-dark .page-header {
  padding-top: clamp(6rem, 10vw, 8rem);
}
/* subtle radial vignette for depth */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(181,144,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-header-fade {
  height: 3rem;
  background: linear-gradient(to bottom, #1a0c10, transparent);
  pointer-events: none;
}
.page-header .eyebrow { color: var(--gold); }
.page-header .eyebrow::before { background: var(--gold); }
.page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-top: 1.125rem;
  max-width: 20ch;
}
.page-header__desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 1.25rem;
  max-width: 58ch;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  padding: 1.125rem 0;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--rule);
}
.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--burgundy); }
.breadcrumb__sep { color: var(--gold); opacity: 0.7; }
.breadcrumb span:last-child { color: var(--burgundy); }

/* Content body — zengin metin tipografisi */
.content-body {
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
  font-size: 1.0313rem;
}
.content-body > p:first-child,
.content-body .content-lead {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 400;
}
.content-body p { margin-bottom: 1.375rem; }
.content-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin: 2.75rem 0 1.125rem;
  padding-top: 1.75rem;
  position: relative;
}
.content-body h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}
.content-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  font-weight: 500;
  color: var(--text);
  margin: 2rem 0 0.875rem;
}
.content-body ul, .content-body ol {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.content-body ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}
.content-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 1rem;
  height: 1px;
  background: var(--burgundy);
}
.content-body ol { counter-reset: cb; }
.content-body ol li {
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 0.75rem;
  counter-increment: cb;
}
.content-body ol li::before {
  content: counter(cb, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  color: var(--burgundy);
}
.content-body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--burgundy);
  background: var(--cream-dk);
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-style: italic;
  color: var(--text);
}
.content-body a { color: var(--burgundy); text-decoration: none; border-bottom: 1px solid rgba(107,18,32,0.3); }
.content-body a:hover { border-bottom-color: var(--burgundy); }

/* Hizmet detay — içerik + sidebar */
.hizmet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.hizmet-sidebar {
  position: sticky;
  top: 6.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-box {
  border: 1px solid var(--rule);
  background: #fff;
}
.sidebar-box__title {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.sidebar-list { list-style: none; margin: 0; padding: 0.5rem 0; }
.sidebar-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.sidebar-list a::after {
  content: '→';
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.sidebar-list a:hover { color: var(--burgundy); background: var(--cream); }
.sidebar-list a:hover::after { opacity: 1; transform: translateX(0); }
.sidebar-list a.active {
  color: var(--burgundy);
  font-weight: 400;
  border-left: 2px solid var(--burgundy);
  background: var(--cream);
}
.sidebar-cta {
  background: #231018;
  padding: 1.75rem 1.5rem;
  border: none;
}
.sidebar-cta__tagline {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
  margin-bottom: 1rem;
}
.sidebar-cta__rule { display: block; width: 2rem; height: 1px; background: var(--gold); margin-bottom: 1rem; }
.sidebar-cta__text { font-size: 0.8125rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; }
.sidebar-cta .btn { width: 100%; justify-content: center; background: var(--cream); color: var(--burgundy-dk); }
.sidebar-cta .btn:hover { background: #fff; }

/* CTA bandı — sayfa altı (hero tarzı) */
.cta-band {
  position: relative;
  padding: clamp(3rem, 6vw, 3.5rem) 0;
  overflow: hidden;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(35,16,24,0.94) 0%, rgba(45,21,32,0.9) 50%, rgba(26,12,16,0.96) 100%);
  z-index: 1;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.cta-band__text { flex: 1 1 auto; }
.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
}
.cta-band__contact {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
.cta-band__row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.cta-band__row svg { flex-shrink: 0; color: var(--gold); opacity: 0.6; }
.cta-band__row a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.cta-band__row a:hover { color: #fff; }
.cta-band__link {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.375rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.cta-band__link:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* Alert (iletişim formu) */
.alert {
  padding: 1rem 1.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 1.75rem;
  border-left: 2px solid;
}
.alert--success { background: rgba(46,125,50,0.07); color: #2e7d32; border-color: #2e7d32; }
.alert--error { background: rgba(198,40,40,0.06); color: #c62828; border-color: #c62828; }

/* Hakkımızda — ilkeler */
.ilkeler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-top: 1.5rem;
}
.ilke-card {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.ilke-card__num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.ilke-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.625rem;
}
.ilke-card__body { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }

/* İç sayfa responsive */
@media (max-width: 960px) {
  .hizmet-layout { grid-template-columns: 1fr; }
  .hizmet-sidebar { position: static; }
  .ilkeler-grid { grid-template-columns: 1fr 1fr; }
  .page-header__title { font-size: clamp(1.875rem, 6vw, 2.5rem); }
}
@media (max-width: 600px) {
  .ilkeler-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 1.75rem 0; }
  .cta-band__inner { justify-content: center; }
  .cta-band__text { display: none; }
  .cta-band__row { display: none; }
  .cta-band__contact { align-items: center; }
  .cta-band__link { font-size: 0.5625rem; padding: 0.4rem 0.875rem; }
  .breadcrumb { font-size: 0.5625rem; }
}

/* ============================================================
   Tasarım Rafine Paketi
   ============================================================ */

/* Signature Band — tam genislik koyu bandi */
.signature-band {
  position: relative;
  background: linear-gradient(165deg, #1a0c10 0%, #231018 40%, #2d1520 100%);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  overflow: hidden;
  text-align: center;
}
.signature-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(181,144,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.signature-band::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.signature-band__inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}
.signature-band__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.3;
  margin: 0;
  padding: 0;
  border: none;
}
.signature-band__attrib {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.25rem;
}
.signature-band__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.signature-band__stat {
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  text-align: center;
}
.signature-band__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}
.signature-band__stat-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
}
.signature-band__stat-sep {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .signature-band__stats { flex-direction: column; gap: 1.5rem; }
  .signature-band__stat-sep { width: 2rem; height: 1px; }
}

/* Lawyer Monogram Placeholder */
.lawyer-monogram {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(165deg, #1a0c10 0%, #231018 60%, #2d1520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lawyer-monogram::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(181,144,67,0.35);
  pointer-events: none;
}
.lawyer-monogram__initials {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
}

/* Kadro sayfasi icindeki monogram */
.kadro-card .lawyer-monogram {
  width: 2.75rem;
  height: 2.75rem;
  aspect-ratio: 1;
  margin-bottom: auto;
}
.kadro-card .lawyer-monogram::after {
  inset: 3px;
  border-color: rgba(181,144,67,0.3);
}
.kadro-card .lawyer-monogram__initials {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
}
.kadro-card__photo {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: cover;
  margin-bottom: auto;
}

/* Avukat profil sayfasi buyuk monogram */
.lawyer-monogram--large {
  width: 220px;
  aspect-ratio: 3/4;
}
.lawyer-monogram--large::after {
  inset: 10px;
}
.lawyer-monogram--large .lawyer-monogram__initials {
  font-size: 3.5rem;
}

/* Double-bezel hairline for light cards */
.alanlar--light .alan-card { position: relative; }

/* Kadro page card double-bezel */
.kadro-page-card { position: relative; }
.kadro-page-card::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(181,144,67,0);
  border-radius: 0.5rem;
  pointer-events: none;
  transition: border-color 0.3s cubic-bezier(0.16,1,0.3,1);
}
.kadro-page-card:hover::after {
  border-color: rgba(181,144,67,0.15);
}

/* Yayin excerpt box */
.yayin-excerpt {
  max-width: 65ch;
  margin: 0 auto 2.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--cream-dk);
  border-left: 3px solid var(--burgundy);
}
.yayin-excerpt__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}
.yayin-excerpt__text {
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* Yayin detay — editorial layout */
.content-body--article {
  max-width: 65ch;
  margin-inline: auto;
}
.content-body--article > p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 3.75rem;
  font-weight: 500;
  color: var(--burgundy);
  float: left;
  line-height: 0.8;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
}
.content-body--article p {
  line-height: 1.85;
}

/* Related header */
.related-header {
  margin-bottom: 2rem;
}
.related-header__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  color: var(--text);
  margin-top: 1rem;
}

/* Avukat profil layout */
.avukat-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}
.avukat-layout__img {
  width: 220px;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.avukat-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .avukat-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .avukat-layout__img { width: 160px; }
  .avukat-layout__photo { text-align: center; }
}

/* Yayin detay — gold separator before related posts */
.yayin-gold-sep {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* Mikro-dokunuslar — tinted shadows (override defaults) */
.hizmet-card:hover {
  box-shadow: 0 8px 32px rgba(35,16,24,0.12);
}
.kadro-page-card:hover {
  box-shadow: 0 8px 32px rgba(35,16,24,0.12);
}
.alanlar--light .alan-card:hover {
  box-shadow: none;
}

/* Diger Calisma Alanlari — hizmet detay alt seridi */
.related-alanlar {
  background: var(--cream);
  padding: 2.5rem 0;
}
.related-alanlar .alanlar-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  border: none;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.related-alanlar .alan-card {
  background-color: #fff;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.92) 100%), var(--card-bg, none);
  background-size: cover;
  background-position: center;
  background-blend-mode: normal, luminosity;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0.625rem;
  min-height: 320px;
  height: 100%;
  padding: 1.75rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s, background-image 0.35s;
}
.related-alanlar .alan-card:hover {
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.85) 100%), var(--card-bg, none);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(107,18,32,0.08), 0 2px 8px rgba(0,0,0,0.06);
  border-color: rgba(107,18,32,0.12);
}
.related-alanlar .alan-card__number { color: var(--text-light); margin-top: 1.75rem; }
.related-alanlar .alan-card__title { color: var(--burgundy-dk); font-size: 1rem; margin-top: 0.5rem; }
.related-alanlar .alan-card__body { display: none; }
.related-alanlar .alan-card__icon { display: none; }
.related-alanlar .alan-card__arrow { background: var(--burgundy); bottom: 1.5rem; right: 1.25rem; }
.related-alanlar .alan-card__arrow::after { border-color: var(--burgundy); }
.related-alanlar .alan-card__arrow-label {
  display: block;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0);
  margin-top: auto;
  padding-top: 0.75rem;
  transition: color 0.25s, transform 0.25s;
  transform: translateY(5px);
}
.related-alanlar .alan-card:hover .alan-card__arrow-label {
  color: var(--burgundy);
  transform: translateY(0);
}
@media (max-width: 960px) {
  .related-alanlar .alanlar-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .related-alanlar .alan-card { min-height: 260px; }
}
@media (max-width: 600px) {
  .related-alanlar { padding: 1.5rem 0; }
  .related-alanlar .alanlar-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .related-alanlar .alan-card { min-height: 200px; }
}

/* Reduced motion — new animations */
@media (prefers-reduced-motion: reduce) {
  .pub-card::before { transition: none; }
  .pub-card__arrow { transition: none; }
  .kadro-card { transition: none; }
  .related-alanlar .alan-card__arrow-label { transition: none; }
}

/* Cookie button — sharp corners */
.cookie-btn {
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

@media (max-width: 960px) {
  .lawyer-monogram--large {
    width: 160px;
  }
}
