/* ============================================================
   FotoğrafÇekimi — Editöryel & Vintage Magazin Teması
   Karakterli, "AI-look değil": dergi kapağı, vintage stamp,
   el yazısı accent, grain texture, drop cap
   ============================================================ */

/* === TOKENS === */
:root {
  --bg:           #F4EFE6;          /* daha sıcak krem - saf beyaz değil */
  --bg-paper:     #FBF7EE;          /* kart yüzeyi - hafif sarımsı kâğıt */
  --bg-tonal:     #E9DFCE;          /* alternatif blok arkaplanı - daha doygun */
  --bg-deep:      #14110D;          /* daha siyah kahve */
  --ink:          #14110D;          /* gerçek kontrast ink */
  --ink-soft:     #3A332A;
  --ink-muted:    #7C7368;
  --line:         #D8CDB9;
  --line-soft:    #E5DCC8;
  --accent:       #A8794B;          /* daha doygun terracotta */
  --accent-deep:  #6B4A2C;
  --accent-soft:  #D9B387;
  --gold:         #C29A55;
  --rust:         #B5532B;           /* aksent vurgu */
  --success:      #2F5D3A;
  --wa-green:     #25D366;

  --shadow-sm: 0 1px 2px rgba(26, 23, 19, 0.04), 0 1px 1px rgba(26, 23, 19, 0.03);
  --shadow-md: 0 8px 24px -8px rgba(26, 23, 19, 0.10), 0 2px 6px rgba(26, 23, 19, 0.04);
  --shadow-lg: 0 24px 48px -16px rgba(26, 23, 19, 0.16), 0 6px 12px rgba(26, 23, 19, 0.05);
  --shadow-sticky: 0 6px 16px rgba(26, 23, 19, 0.18), 0 2px 4px rgba(26, 23, 19, 0.06);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  --ease: cubic-bezier(.2, .8, .2, 1);
  --t-fast: 180ms;
  --t-med: 320ms;
  --t-slow: 600ms;

  --container: 1280px;
  --container-narrow: 980px;

  --header-h: 72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; min-width: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: clip; max-width: 100%; width: 100%; }
body { margin: 0; }
img, picture, svg, video { max-width: 100%; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* === BASE === */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "ss02", "cv11";
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-feature-settings: "ss01";
}

h1 {
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.025em;
}
/* Hero h1'in son kelimesi italic vurgulanır */
h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
  font-feature-settings: "ss01";
}
h2 { font-size: clamp(30px, 4.2vw, 52px); line-height: 1.08; font-weight: 500; }
h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.25; }
h4 { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.3; }

/* El yazısı accent — başlık üstü, küçük "from the editor" hissi */
.handwrite {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  font-size: 28px;
  color: var(--rust);
  line-height: 1;
  display: inline-block;
  transform: rotate(-4deg);
  letter-spacing: 0.01em;
}

/* Drop cap — uzun açıklama paragraflarının ilk harfi büyük */
.drop-cap::first-letter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 4.6em;
  float: left;
  line-height: 0.82;
  padding: 6px 14px 0 0;
  color: var(--rust);
}

p { color: var(--ink-soft); }
a { color: var(--ink); text-decoration: none; }
a.inline-link { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color var(--t-fast) var(--ease); }
a.inline-link:hover { color: var(--accent); }

::selection { background: var(--accent-soft); color: var(--ink); }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.container--narrow { max-width: var(--container-narrow); }

/* === SECTION === */
.section {
  padding-block: clamp(72px, 9vw, 130px);
}
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.section--tonal { background: var(--bg-tonal); }
.section--deep { background: var(--bg-deep); color: #F5F2EC; }
.section--deep h1, .section--deep h2, .section--deep h3 { color: #FFFFFF; }
.section--deep p { color: rgba(245, 242, 236, 0.78); }

body { counter-reset: section-counter; }
.section .section-header { counter-increment: section-counter; }

.section-header {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
  position: relative;
}
/* "N° 02" tarzı dergi numara vurgusu — h2'nin yanında büyük rakam */
.section .section-header::after {
  content: "N° " counter(section-counter, decimal-leading-zero);
  position: absolute;
  right: 0;
  top: -20px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(54px, 8vw, 96px);
  color: var(--bg-tonal);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.section--tonal .section-header::after { color: rgba(20, 17, 13, 0.10); }
.section--deep .section-header::after { color: rgba(255, 255, 255, 0.08); }
@media (max-width: 760px) {
  .section .section-header::after { font-size: 56px; opacity: 0.65; }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 1;
}
.section-eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--rust);
  flex-shrink: 0;
}
.section-header > h2,
.section-header > h1,
.section-header > p { position: relative; z-index: 1; }

/* === MASTHEAD MARGIN — "ISSUE No / DATE" çubuğu */
.masthead {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.masthead-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.masthead em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent-soft);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-left: 6px;
}
.masthead-hide-mobile { display: none; }
@media (min-width: 760px) { .masthead-hide-mobile { display: inline; } }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--ink);
  background: rgba(244, 239, 230, 0.98);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text > span:first-child {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.018em;
}
.brand-sub {
  font-family: 'Caveat', cursive;
  font-size: 14px;
  color: var(--rust);
  margin-top: 2px;
  transform: rotate(-2deg);
  transform-origin: left;
  display: inline-block;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  font-size: 18px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
}
.nav { display: none; }
@media (min-width: 980px) {
  .nav { display: flex; gap: 28px; align-items: center; }
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}
.nav a:hover { color: var(--ink); }
.nav a.is-active { color: var(--ink); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
}
.header-cta { display: none; }
@media (min-width: 980px) {
  .header-cta { display: inline-flex; }
}
.hamburger {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg-paper);
}
@media (min-width: 980px) { .hamburger { display: none; } }
.hamburger svg { width: 22px; height: 22px; stroke: var(--ink); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  transform: translateY(-100%);
  transition: transform var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: translateY(0); }
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding-inline: clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}
.drawer__body {
  flex: 1;
  padding: 32px clamp(20px, 4vw, 48px);
  overflow-y: auto;
}
.drawer__body a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
}
.drawer__cta {
  padding: 24px clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: #FFFFFF;
}
.btn--primary:hover {
  background: var(--bg-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--secondary:hover {
  background: var(--ink);
  color: #FFFFFF;
}
.btn--accent {
  background: var(--accent);
  color: #FFFFFF;
}
.btn--accent:hover {
  background: var(--accent-deep);
}
.btn--ghost {
  color: var(--ink);
  padding: 14px 0;
  position: relative;
}
.btn--ghost::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform var(--t-fast) var(--ease);
}
.btn--ghost:hover::after { transform: scaleX(0.8); }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--full { width: 100%; }
.btn .ic { width: 18px; height: 18px; }

/* === HERO === */
.hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 96px) clamp(40px, 5vw, 56px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 7fr 5fr;
  }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--accent);
}
.hero h1 {
  margin-bottom: 24px;
  max-width: 18ch;
}
.hero__lead {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__kpis {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.kpi__value {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.kpi__label {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero__visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-tonal);
  /* vintage çift çerçeve */
  outline: 1px solid var(--ink);
  outline-offset: -10px;
  box-shadow: 8px 8px 0 var(--ink);
}
.hero__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
  transition: filter 600ms var(--ease);
}
.hero__visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 13, 0.05) 0%, transparent 30%, transparent 65%, rgba(20, 17, 13, 0.25));
  pointer-events: none;
}
/* Film grain — analog kamera hissi */
.hero__visual-grain {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero__caption {
  position: absolute;
  left: -8px;
  bottom: -28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  background: var(--bg);
  padding: 8px 16px 8px 0;
  font-family: 'Inter', sans-serif;
}
.hero__caption-no {
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
}
.hero__caption-no strong {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-style: italic;
  font-size: 22px;
  color: var(--rust);
  margin-left: 4px;
  letter-spacing: 0;
  vertical-align: -3px;
}
.hero__caption-text {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
  padding-left: 14px;
}
/* Vintage döner damga */
.hero__stamp {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 110px;
  height: 110px;
  color: var(--ink);
  background: var(--bg);
  border-radius: 50%;
  animation: spin 30s linear infinite;
  z-index: 2;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.hero__stamp svg { width: 100%; height: 100%; fill: currentColor; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero__stamp { animation: none; }
}

/* === HERO FORM (WhatsApp lead) === */
.hero-form-strip {
  background: var(--bg-paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(28px, 4vw, 48px);
}
.hero-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: end;
}
@media (min-width: 760px) {
  .hero-form {
    grid-template-columns: 1.4fr 1.4fr auto;
  }
}
.hero-form__micro {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.hero-form__micro::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.field input,
.field select {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-paper);
}

/* === STICKY CTA (right-bottom) === */
.sticky-cta {
  position: fixed;
  right: clamp(16px, 2.5vw, 24px);
  bottom: clamp(16px, 2.5vw, 24px);
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.sticky-cta__btn {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sticky);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  position: relative;
}
@media (min-width: 980px) {
  .sticky-cta__btn { width: 64px; height: 64px; }
}
.sticky-cta__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(26, 23, 19, 0.22);
}
.sticky-cta__btn--call {
  background: var(--ink);
  color: #FFFFFF;
}
.sticky-cta__btn--wa {
  background: var(--wa-green);
  color: #FFFFFF;
}
.sticky-cta__btn svg {
  width: 26px;
  height: 26px;
}
.sticky-cta__label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--ink);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.sticky-cta__btn:hover .sticky-cta__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* === BREADCRUMB === */
.breadcrumb {
  padding-block: 24px;
  font-size: 13px;
  color: var(--ink-muted);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--ink-muted);
  opacity: 0.6;
}
.breadcrumb li:last-child { color: var(--ink); }

/* === CARDS GRID === */
.cards {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.card {
  background: transparent;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease);
  position: relative;
}
.card:hover { transform: translateY(-3px); }
.card__visual {
  aspect-ratio: 3 / 4;
  background: var(--bg-tonal);
  overflow: hidden;
  position: relative;
  /* polaroid hissi: ince çerçeve */
  outline: 1px solid var(--line);
  outline-offset: -1px;
}
.card__visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.04) saturate(0.9);
  transition: transform 800ms var(--ease), filter var(--t-fast) var(--ease);
}
.card:hover .card__visual img {
  transform: scale(1.05);
  filter: contrast(1.08) saturate(1);
}
/* Numara etiketi her kartın üst-sol köşesinde */
.card__visual::after {
  content: attr(data-no);
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  letter-spacing: 0.02em;
}
.card__body { padding: 18px 4px 8px; }
.card__title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.15;
}
.card__title em { font-style: italic; color: var(--rust); font-feature-settings: "ss01"; }
.card__desc { font-size: 14px; color: var(--ink-muted); line-height: 1.55; }
.card__arrow {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-deep);
  letter-spacing: 0.04em;
}
.card a.card__overlay-link {
  position: absolute;
  inset: 0;
}

/* === LIST GRID (smaller text cards) === */
.list-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  border-top: 1px solid var(--line);
}
.list-grid > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
  transition: padding-inline var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.list-grid > a:hover {
  color: var(--accent-deep);
  padding-inline: 8px;
}
.list-grid > a::after {
  content: "→";
  color: var(--ink-muted);
  transition: transform var(--t-fast) var(--ease);
}
.list-grid > a:hover::after { transform: translateX(4px); }

/* === KPI ROW === */
.kpi-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-block: 40px;
}
@media (min-width: 760px) {
  .kpi-row { grid-template-columns: repeat(4, 1fr); }
}
.kpi-row .kpi { padding-right: 24px; border-right: 1px solid var(--line); }
.kpi-row .kpi:last-child { border-right: 0; }

/* === FEATURE GRID (4 reasons why) === */
.feature-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
}
.feature {
  position: relative;
}
.feature::before {
  content: counter(feature-counter, decimal-leading-zero);
  counter-increment: feature-counter;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.feature-grid { counter-reset: feature-counter; }
.feature h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.feature p { font-size: 15px; line-height: 1.6; }

/* === INCLUDES LIST === */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 760px) {
  .includes-grid { grid-template-columns: 1fr 1fr; }
}
.includes-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.includes-grid li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

/* === PROCESS / STEPS === */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(5, 1fr); }
}
.step {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}
.step__num {
  position: absolute;
  top: -1px;
  left: 0;
  background: var(--bg);
  padding-right: 8px;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  transform: translateY(-55%);
  letter-spacing: 0.08em;
}
.step h4 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14px; line-height: 1.6; }

/* === FAQ === */
.faq-list { max-width: 820px; }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding-block: 20px;
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  padding: 4px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease);
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
}
.faq-list .answer {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 65ch;
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.pkg {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pkg--highlight {
  border-color: var(--ink);
  background: var(--bg-deep);
  color: #F5F2EC;
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.pkg--highlight h3,
.pkg--highlight .pkg__price { color: #FFFFFF; }
.pkg--highlight .pkg__features li { color: rgba(245, 242, 236, 0.85); border-bottom-color: rgba(255,255,255,0.08); }
.pkg--highlight .pkg__features li::before { background: var(--gold); color: var(--bg-deep); }
.pkg__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pkg h3 { font-size: 26px; margin-bottom: 8px; }
.pkg__duration { font-size: 13px; color: var(--ink-muted); margin-bottom: 24px; }
.pkg--highlight .pkg__duration { color: rgba(245, 242, 236, 0.6); }
.pkg__price {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.pkg--highlight .pkg__price { border-bottom-color: rgba(255,255,255,0.12); }
.pkg__features {
  flex: 1;
  margin-bottom: 28px;
}
.pkg__features li {
  font-size: 14.5px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pkg__features li::before {
  content: "✓";
  width: 18px; height: 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* === TESTIMONIALS === */
.testimonials {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  padding: 8px 0;
}
.testimonial__quote {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  padding-top: 22px;
}
.testimonial__quote::before {
  content: """;
  position: absolute;
  top: -10px;
  left: -2px;
  font-size: 64px;
  font-family: 'Fraunces', serif;
  color: var(--accent-soft);
  line-height: 1;
}
.testimonial__meta {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial__name {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.testimonial__date {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.testimonial__stars {
  display: inline-flex;
  gap: 2px;
  font-size: 14px;
  color: var(--gold);
}

/* === FOOTER === */
.site-footer {
  background: var(--bg-deep);
  color: #C8C2B5;
  padding-top: clamp(60px, 8vw, 96px);
  padding-bottom: 24px;
  margin-top: clamp(80px, 10vw, 140px);
}
.site-footer h3, .site-footer h4 { color: #FFFFFF; }
.site-footer a { color: #C8C2B5; transition: color var(--t-fast) var(--ease); }
.site-footer a:hover { color: #FFFFFF; }
.brand--footer { color: #FFFFFF; }
.brand--footer .brand-mark { background: var(--accent-soft); color: var(--bg-deep); }
.brand--footer .brand-text > span:first-child { color: #FFFFFF; }
.brand--footer .brand-sub { color: var(--accent-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 980px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul li { padding: 6px 0; font-size: 14.5px; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* === RELATED LINKS BLOCK === */
.related {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .related { grid-template-columns: 1fr 1fr; }
}
.related-block h3 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.related-block ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.related-block ul li a {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.related-block ul li a::after {
  content: "→";
  color: var(--ink-muted);
}

/* === CONTACT STRIP === */
.contact-strip {
  background: var(--bg-deep);
  color: #F5F2EC;
  padding-block: clamp(60px, 7vw, 96px);
}
.contact-strip h2 { color: #FFFFFF; margin-bottom: 18px; max-width: 18ch; }
.contact-strip p { color: rgba(245, 242, 236, 0.7); margin-bottom: 36px; max-width: 50ch; }
.contact-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.contact-strip .btn--primary {
  background: var(--gold);
  color: var(--bg-deep);
}
.contact-strip .btn--primary:hover {
  background: #D4B57E;
}
.contact-strip .btn--secondary {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.32);
}
.contact-strip .btn--secondary:hover {
  background: #FFFFFF;
  color: var(--bg-deep);
}

/* === LOCAL ENTITY (Neighborhoods/Venues) === */
.entity-list {
  columns: 1;
  column-gap: 32px;
  margin-top: 24px;
}
@media (min-width: 760px) { .entity-list { columns: 2; } }
@media (min-width: 1100px) { .entity-list { columns: 3; } }
.entity-list li {
  break-inside: avoid;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.entity-list li::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* === DEFINITION BLOCK (AI Overview / Featured Snippet) === */
.definition {
  background: var(--bg-paper);
  border-left: 3px solid var(--accent);
  padding: 28px 32px;
  margin-block: 32px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  max-width: 820px;
}
.definition__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.definition p {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}

/* === TWO-COL TEXT (Why us / Service intro) === */
.two-col {
  display: grid;
  gap: clamp(40px, 5vw, 80px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 980px) {
  .two-col { grid-template-columns: 5fr 7fr; }
}
.two-col__lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* === PORTFOLIO MASONRY-LIKE GRID === */
.portfolio {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) {
  .portfolio { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.portfolio__cell {
  position: relative;
  overflow: hidden;
  background: var(--bg-tonal);
  aspect-ratio: 3 / 4;
  outline: 1px solid var(--line);
  outline-offset: -1px;
}
.portfolio__cell--wide { aspect-ratio: 16 / 10; grid-column: span 2; }
.portfolio__cell img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
  transition: transform 800ms var(--ease), filter 400ms var(--ease);
}
.portfolio__cell:hover img {
  transform: scale(1.04);
  filter: contrast(1.1) saturate(1);
}
.portfolio__cell-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(20, 17, 13, 0.75));
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.portfolio__cell-label::before {
  content: "FOTO N°";
  font-family: 'Fraunces', serif;
  font-style: italic;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--accent-soft);
  font-size: 13px;
  margin-right: 8px;
}

/* === IMAGE PLACEHOLDER === */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #EFEAE0 0%, #E0D8C9 100%);
  color: var(--ink-muted);
  font-family: 'Fraunces', serif;
  font-size: 20px;
  position: relative;
}
.img-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(139, 115, 85, 0.02),
    rgba(139, 115, 85, 0.02) 12px,
    rgba(139, 115, 85, 0.05) 12px,
    rgba(139, 115, 85, 0.05) 24px
  );
  pointer-events: none;
}

/* === UTILITY === */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.divider {
  height: 1px;
  background: var(--line);
  margin-block: clamp(40px, 5vw, 64px);
}
.hide-mobile { display: none; }
@media (min-width: 760px) { .hide-mobile { display: block; } }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* === PRINT === */
@media print {
  .sticky-cta, .hero-form-strip, .site-header { display: none; }
}

/* ============================================================
   MASTHEAD CTA — iletişim odaklı bağlantı stilleri
   ============================================================ */
.masthead__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  transition: color var(--t-fast) var(--ease);
}
.masthead__link:hover { color: var(--accent-soft); }
.masthead__link svg { flex-shrink: 0; opacity: 0.9; }

/* ============================================================
   MOBİL TUNING — küçük ekran taşma & layout düzeltmeleri
   ============================================================ */
@media (max-width: 760px) {
  :root { --header-h: 60px; }

  /* Uzun Türkçe kelimeler taşmasın */
  h1, h2, h3, p, span, a { overflow-wrap: anywhere; word-break: break-word; }
  h1, h2 { hyphens: auto; -webkit-hyphens: auto; }

  /* Container — TAM ortalı, taşma yok */
  .container {
    padding-inline: 16px;
    max-width: 100vw;
    width: 100%;
    margin-inline: auto;
  }

  /* Section padding */
  .section { padding-block: 52px; }
  .section-header { margin-bottom: 28px; max-width: 100%; }
  .section .section-header::after {
    font-size: 38px;
    top: -8px;
    opacity: 0.4;
    right: -4px;
  }

  /* Masthead — mobilde sadece telefon CTA */
  .masthead {
    font-size: 11px;
    padding: 8px 0;
    letter-spacing: 0.06em;
    text-transform: none;
  }
  .masthead-inner {
    gap: 14px;
    justify-content: center;
    flex-wrap: nowrap;
    text-align: center;
  }
  .masthead em {
    margin-left: 3px;
    font-style: italic;
    color: var(--accent-soft);
  }
  .masthead-hide-mobile { display: none !important; }
  .masthead__link { font-weight: 500; }

  /* Header — brand sıkı, taşma yok */
  .site-header__inner {
    gap: 10px;
    height: var(--header-h);
  }
  .brand {
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }
  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 16px;
    flex-shrink: 0;
  }
  .brand-text {
    min-width: 0;
    overflow: hidden;
    flex: 1 1 auto;
  }
  .brand-text > span:first-child {
    font-size: 17px;
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-sub {
    font-size: 11px;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hamburger {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  /* Hero — taşma kesin engellenmiş */
  .hero { padding-block: 32px 24px; overflow: hidden; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__grid > * { min-width: 0; max-width: 100%; }

  .hero__eyebrow { margin-bottom: 18px; font-size: 11px; }
  .hero h1 {
    font-size: clamp(28px, 8.5vw, 42px);
    max-width: 100%;
    line-height: 1.04;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
  }
  .hero__lead {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 100%;
  }
  .hero__ctas {
    gap: 10px;
    margin-bottom: 28px;
    flex-direction: column;
  }
  .hero__ctas .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 14.5px;
  }

  /* Hero görseli — kenarlara taşmaz */
  .hero__visual {
    aspect-ratio: 4 / 5;
    max-width: 100%;
    width: 100%;
    margin-inline: auto;
  }
  .hero__visual-frame {
    outline-offset: -6px;
    box-shadow: 4px 4px 0 var(--ink);
  }
  .hero__stamp {
    width: 64px;
    height: 64px;
    top: -10px;
    right: 4px;
  }
  .hero__caption {
    left: 0;
    bottom: -20px;
    padding: 6px 10px 6px 0;
    gap: 10px;
    font-size: 10px;
    max-width: 100%;
  }
  .hero__caption-no { font-size: 10px; letter-spacing: 0.16em; }
  .hero__caption-no strong { font-size: 17px; }
  .hero__caption-text {
    font-size: 10px;
    padding-left: 10px;
    letter-spacing: 0.08em;
  }

  /* KPI satırı — 2x2 grid mobilde */
  .hero__kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    padding-top: 22px;
  }
  .kpi { padding: 0; }
  .kpi__value { font-size: 24px; }
  .kpi__label { font-size: 11px; }

  /* Kartlar — 2 kolon tablet/mobil, 1 kolon küçük mobil */
  .cards {
    gap: 18px;
    grid-template-columns: repeat(2, 1fr);
  }
  .card__visual { aspect-ratio: 3 / 4; }
  .card__title { font-size: 17px; line-height: 1.2; }
  .card__desc { font-size: 13px; line-height: 1.5; }
  .card__arrow { font-size: 12px; margin-top: 10px; }
  .card__body { padding: 12px 2px 6px; }

  /* Form — iOS zoom önlemi (16px input) */
  .hero-form {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .field input, .field select {
    padding: 13px 14px;
    font-size: 16px;
    width: 100%;
  }
  .hero-form-strip { padding-block: 22px; }
  .hero-form .btn { width: 100%; }

  /* Sticky CTA — küçük & sabit */
  .sticky-cta { right: 14px; bottom: 14px; gap: 10px; }
  .sticky-cta__btn { width: 50px; height: 50px; }
  .sticky-cta__btn svg { width: 22px; height: 22px; }
  .sticky-cta__label { display: none; }

  /* Footer */
  .footer-grid { gap: 28px; padding-bottom: 32px; }
  .site-footer { padding-top: 48px; margin-top: 56px; }

  /* Pricing — highlight scale mobilde sıkışıyor */
  .pricing-grid { gap: 18px; }
  .pkg { padding: 24px 20px; }
  .pkg--highlight { transform: none; }

  /* Drawer */
  .drawer__body a { font-size: 19px; padding: 12px 0; }
  .drawer__cta .btn { padding: 14px 12px; font-size: 13px; }

  /* Tüm section'larda dekoratif elemanların taşmasını engelle */
  section, .section, header, footer { overflow-x: hidden; }
}

/* Çok dar ekranlar (≤400px) */
@media (max-width: 400px) {
  .container { padding-inline: 14px; }
  .cards { grid-template-columns: 1fr; gap: 16px; }
  .hero h1 { font-size: 26px; }
  .hero__kpis { gap: 14px 16px; }
  .kpi__value { font-size: 22px; }
  .brand-text > span:first-child { font-size: 16px; }
  .brand-sub { font-size: 10px; }
}
