/* ==========================================================================
   DALYAN NAILS YELİZCE
   Kimlik logodan türetildi: siyah rozet · fuşya halka · metalik altın imza
   Motif: kemer = badem tırnak formu (hero, menü sahnesi, küçük görseller)
   ========================================================================== */

/* --- 1. Tokenlar --------------------------------------------------------- */
:root {
  /* Tarayıcının zorla karanlık modu renkleri bozmasın */
  color-scheme: only light;

  /* Logodan ölçülen renkler */
  --ink:        #0E0B0C;   /* rozet siyahı */
  --ink-2:      #171214;
  --ink-3:      #241C1F;
  --pink:       #F868B8;   /* halka fuşyası — koyu zeminde */
  --gold-1:     #C88818;   /* imza altını: koyu → açık */
  --gold-2:     #E8B038;
  --gold-3:     #F8D858;

  /* Açık zemin */
  --paper:      #FBF7F4;
  --paper-2:    #F3EBE7;
  --blush:      #FCE6F0;

  /* Açık zeminde okunur tonlar (WCAG AA ≥ 4.5) */
  --pink-ink:   #C0287A;
  --gold-ink:   #825906;   /* kontrast 4.5'in hemen altındaydı, bir tık koyulaştırıldı */
  --muted:      #6E6266;

  --on-ink:       #F4ECE8;
  --on-ink-muted: rgba(244, 236, 232, .66);
  --line:         rgba(14, 11, 12, .12);
  --line-ink:     rgba(244, 236, 232, .14);
  --wa:           #25D366;

  --gold-grad: linear-gradient(100deg, #B5760C 0%, #E8B038 30%, #F8D858 50%, #E2A52E 72%, #B5760C 100%);

  /* Tipografi */
  --display: "Bodoni Moda", "Didot", "Bodoni 72", "Times New Roman", serif;
  --script:  "Sacramento", "Brush Script MT", cursive;
  --sans:    "Jost", "Segoe UI", system-ui, sans-serif;

  /* Ölçüler */
  --container: 1240px;
  --gutter:   clamp(20px, 5vw, 56px);
  --section:  clamp(84px, 11vw, 150px);
  --radius:   22px;
  --arch:     999px 999px 26px 26px;
  --header-h: 84px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* --- 2. Temel ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 300 16px/1.7 var(--sans);
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--pink); color: var(--ink); }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; position: relative; }
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
.on-ink { background: var(--ink); color: var(--on-ink); }
.bg-paper-2 { background: var(--paper-2); }
.bg-blush { background: var(--blush); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* --- 3. Tipografi yardımcıları ------------------------------------------ */
.script { font-family: var(--script); font-weight: 400; font-style: normal; letter-spacing: 0; }

/* Metalik altın yazı — sadece koyu zeminde kullan */
.gold-text { color: var(--gold-2); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .gold-text {
    /* background-clip:text sadece kutuyu boyar; el yazısının kuyrukları kutudan
       taşıyordu ve kesik görünüyordu. Kutuyu genişletip margin ile telafi et. */
    padding: .2em .14em .32em;
    margin: -.2em -.14em -.32em;
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
    background: var(--gold-grad);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
}

/* Bölüm etiketi: "02 — MENÜ ———" */
.kicker {
  display: flex;
  align-items: center;
  gap: .9em;
  margin-bottom: 1.4rem;
  font: 500 .72rem/1 var(--sans);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.kicker b {
  font: italic 400 1.15rem/1 var(--display);
  letter-spacing: 0;
  text-transform: none;
  color: var(--pink-ink);
}
.kicker::after { content: ""; width: 44px; height: 1px; background: currentColor; opacity: .45; }
.on-ink .kicker { color: var(--gold-2); }
.on-ink .kicker b { color: var(--pink); }

.h2 {
  font: 400 clamp(2.3rem, 5vw, 4.1rem)/1.04 var(--display);
  letter-spacing: -.02em;
}
.h2 em { font-style: italic; color: var(--pink-ink); }
.on-ink .h2 { color: var(--on-ink); }
.on-ink .h2 em { color: var(--pink); }

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 1.6rem 4rem;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 84px);
}
.split-head > p { color: var(--muted); }

.stars { color: var(--gold-2); letter-spacing: .14em; }

/* --- 4. Butonlar --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7em;
  padding: 1.05em 1.75em;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 500 .78rem/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease),
              transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn--pink { background: var(--pink); color: var(--ink); }
.btn--pink:hover { background: #FF86C8; box-shadow: 0 16px 36px -14px rgba(248, 104, 184, .7); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--ink-3); }
.btn--wa { background: var(--wa); color: var(--ink); }
.btn--wa:hover { background: #3BE07A; }
.btn--line { border-color: rgba(244, 236, 232, .32); color: var(--on-ink); }
.btn--line:hover { border-color: var(--on-ink); background: rgba(244, 236, 232, .06); }
.btn--line-dark { border-color: rgba(14, 11, 12, .25); color: var(--ink); }
.btn--line-dark:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font: 500 .78rem/1 var(--sans);
  letter-spacing: .14em;
  color: var(--ink);
  padding-bottom: .4em;
  border-bottom: 1px solid var(--line);
  transition: gap .35s var(--ease), border-color .35s, color .35s;
}
.link-arrow:hover { gap: 1em; border-color: var(--pink-ink); color: var(--pink-ink); }

/* --- 5. Üst çubuk -------------------------------------------------------- */
.topbar { background: var(--ink); color: var(--on-ink-muted); font-size: .78rem; letter-spacing: .04em; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar__group { display: flex; align-items: center; gap: 1.6rem; }
.topbar__item { display: inline-flex; align-items: center; gap: .5rem; }
/* Üst çubuktaki linkler parmakla rahat basılsın */
a.topbar__item { padding-block: .6rem; }
.topbar svg { width: 13px; height: 13px; color: var(--gold-2); flex: none; }
.topbar a:hover { color: var(--pink); }

/* --- 6. Menü ------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 247, 244, .84);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
          backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.header.is-stuck { background: rgba(251, 247, 244, .97); box-shadow: 0 12px 40px -24px rgba(14, 11, 12, .45); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }

.brand { display: flex; align-items: center; gap: .85rem; flex: none; }
.brand__mark { width: 50px; height: 50px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font: 500 1.08rem/1 var(--display); letter-spacing: .14em; }
/* Salonu farklı kılan isim: logodaki imza gibi el yazısıyla */
.brand__sub {
  margin: .02rem 0 -.2rem;
  padding: 0 .12em .12em 0;
  font: 400 1.9rem/1 var(--script);
  color: var(--pink-ink);
}

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__links a {
  position: relative;
  padding: .55rem 0;
  font: 400 .78rem/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--pink-ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { display: flex; align-items: center; gap: 1.1rem; flex: none; }
.nav__phone { display: inline-flex; align-items: center; gap: .5rem; font-size: .86rem; letter-spacing: .04em; white-space: nowrap; }
.nav__phone svg { width: 14px; height: 14px; color: var(--pink-ink); }
.nav__cta .btn { padding: .95em 1.4em; }

.burger { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); place-items: center; }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease), opacity .25s; }
.burger span + span { margin-top: 5px; }
.burger__lines { display: block; }

.mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 96px var(--gutter) 36px;
  background: var(--ink);
  color: var(--on-ink);
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
  overflow-y: auto;
}
.mobile.is-open { transform: none; }
.mobile__close {
  position: absolute;
  top: 22px; right: var(--gutter);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-ink);
  font-size: 1.5rem;
  line-height: 1;
}
.mobile__logo { position: absolute; top: 20px; left: var(--gutter); width: 52px; height: 52px; }
.mobile__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line-ink);
  font: 400 clamp(1.9rem, 7vw, 2.6rem)/1.1 var(--display);
}
.mobile__link small { font: italic 400 .95rem/1 var(--display); color: var(--pink); }
.mobile__foot { display: grid; gap: .8rem; margin-top: auto; padding-top: 2rem; }
.mobile__foot .btn { width: 100%; }

/* --- 7. Hero ------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; isolation: isolate; background: var(--ink); color: var(--on-ink); }
.hero::before { /* fuşya ışıma */
  content: "";
  position: absolute;
  z-index: -1;
  right: -12%;
  top: -8%;
  width: min(80vw, 980px);
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(248, 104, 184, .20), rgba(248, 104, 184, .06) 55%, transparent 72%);
  pointer-events: none;
}
.hero::after { /* ince film grenı */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  /* padding-block: .container'ın yan boşluğunu ezmemesi için kısaltma kullanılmadı */
  padding-block: clamp(56px, 7vw, 100px) clamp(64px, 8vw, 116px);
}

.hero__loc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem 1.1rem;
  margin-bottom: 2rem;
  font: 500 .72rem/1 var(--sans);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--pink);
}
.hero__loc i { width: 36px; height: 1px; background: var(--gold-2); opacity: .6; }

.hero__title {
  margin-bottom: 1.8rem;
  font: 400 clamp(3rem, 6.6vw, 6rem)/.98 var(--display);
  letter-spacing: -.025em;
}
/* Başlık alttan yukarı kısa bir girişle gelir. MASKE YOK (overflow:hidden yok) —
   bu yüzden el yazısının kuyruğu hiçbir karede kesilmez. Sadece opaklık + kayma. */
.hero__title .ln { display: block; padding: .3em .16em .34em; margin: -.3em -.16em -.34em; }
.hero__title .ln > span { display: inline-block; }
.js .hero__title .ln > span { animation: lnUp .5s var(--ease) backwards; }
.js .hero__title .ln:nth-child(2) > span { animation-delay: .07s; }
.js .hero__title .ln:nth-child(3) > span { animation-delay: .14s; }
@keyframes lnUp { from { opacity: 0; transform: translateY(26px); } }
.hero__title .script { font-size: 1.45em; line-height: .5; margin-right: .06em; }
.hero__title em { font-style: italic; }

.hero__lead { max-width: 46ch; margin-bottom: 2.4rem; font-size: clamp(1rem, 1.3vw, 1.12rem); color: var(--on-ink-muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
  margin-top: 2.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-ink);
  font-size: .86rem;
  color: var(--on-ink-muted);
}
.hero__proof li { display: flex; align-items: baseline; gap: .55rem; }
.hero__proof b { font: 400 1.7rem/1 var(--display); color: var(--on-ink); }
.hero__proof a:hover { color: var(--pink); }

/* Kompozisyon: kemer (badem tırnak) + küçük kare + dönen mühür */
.hero__art { position: relative; width: 100%; max-width: 540px; margin-left: auto; aspect-ratio: 540 / 600; isolation: isolate; }
/* Katmanlar: çerçeve çizgisi < dönen yazı < kemer foto < küçük kare < logo.
   Yazı fotoğrafın arkasından geçer, logo mühür gibi önde durur. */
.hero__outline { z-index: 0; }
.seal__ring    { z-index: 1; }
.hero__arch    { z-index: 2; }
.hero__chip    { z-index: 3; }
.seal__logo    { z-index: 4; }
.hero__arch,
.hero__outline {
  position: absolute;
  top: 0;
  right: 0;
  width: 76%;
  aspect-ratio: 3 / 4;
  border-radius: var(--arch);
}
.hero__arch { overflow: hidden; background: var(--ink-3); box-shadow: 0 50px 90px -40px rgba(0, 0, 0, .85); }
.hero__arch img { width: 100%; height: 100%; object-fit: cover; }
/* Koyu arka planlı fotoğraflarda kemerin kenarı siyah zemine karışıyordu:
   ince altın kenar çizgisi şekli her fotoğrafta okunur kılar */
.hero__arch::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(232, 176, 56, .55);
  border-radius: inherit;
  pointer-events: none;
}
.hero__outline { transform: translate(16px, 16px); border: 1px solid rgba(232, 176, 56, .5); pointer-events: none; }
.hero__chip {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 7px solid var(--ink);
  border-radius: 22px;
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .9);
}
.hero__chip img { width: 100%; height: 100%; object-fit: cover; }

.seal { position: absolute; left: 3%; top: 5%; width: clamp(116px, 12vw, 156px); aspect-ratio: 1; }
.seal__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 28s linear infinite; }
.seal__ring text { font: 500 12px var(--sans); letter-spacing: 3px; fill: var(--gold-2); }
.seal__logo { position: absolute; left: 19%; top: 19%; width: 62%; height: 62%; filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .7)); }
@keyframes spin { to { transform: rotate(360deg); } }

/* --- 9. Menü (hizmetler) ------------------------------------------------- */
.menu__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}
.menu__stage { position: sticky; top: calc(var(--header-h) + 32px); isolation: isolate; }
.menu__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--arch);
  background: var(--paper-2);
}
.menu__frame > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.menu__frame > .is-on { opacity: 1; }
.menu__stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto 0;
  aspect-ratio: 4 / 5;
  transform: translate(-16px, 16px);
  border: 1px solid rgba(143, 99, 8, .38);
  border-radius: var(--arch);
}
/* Fotoğrafı olmayan hizmetler için marka paneli */
.menu__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  text-align: center;
  color: var(--pink-ink);
  background: radial-gradient(circle at 50% 38%, #FFD1E7 0%, var(--blush) 58%, var(--paper-2) 100%);
}
.menu__empty img { width: 34%; height: auto; }
.menu__empty .script { font-size: clamp(3.2rem, 5.6vw, 4.8rem); line-height: 1.3; padding: 0 .2em; }
.menu__empty small { font: 500 .66rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }

.menu__caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  font: 500 .7rem/1 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.menu__caption b { font-weight: 500; color: var(--pink-ink); }

.menu__list { border-top: 1px solid var(--line); }
.menu__item { border-bottom: 1px solid var(--line); }
.menu__link {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  column-gap: 1.1rem;
  row-gap: .35rem;
  align-items: baseline;
  padding: 1.55rem .2rem;
}
.menu__no    { grid-column: 1; grid-row: 1 / span 2; padding-top: .45rem; font: italic 400 1rem/1 var(--display); color: var(--gold-ink); }
.menu__line  { grid-column: 2; grid-row: 1; display: flex; align-items: baseline; gap: .9rem; min-width: 0; }
.menu__desc  { grid-column: 2; grid-row: 2; max-width: 52ch; font-size: .95rem; color: var(--muted); }
.menu__arrow {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .35s, color .35s, border-color .35s, transform .5s var(--ease);
}
.menu__arrow svg { width: 16px; height: 16px; }
.menu__name { font: 400 clamp(1.35rem, 2.2vw, 1.8rem)/1.15 var(--display); letter-spacing: -.01em; transition: color .3s; }
.menu__dots { flex: 1; min-width: 1.4rem; border-bottom: 1px dotted rgba(14, 11, 12, .32); transform: translateY(-.3em); }
.menu__time { font-size: .84rem; letter-spacing: .04em; color: var(--muted); white-space: nowrap; }
.menu__tag {
  display: inline-block;
  margin-left: .55rem;
  padding: .42em .75em;
  border-radius: 999px;
  vertical-align: .35em;
  background: var(--ink);
  color: var(--pink);
  font: 500 .69rem/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu__link:hover .menu__name,
.menu__item.is-on .menu__name { color: var(--pink-ink); }
.menu__link:hover .menu__arrow,
.menu__item.is-on .menu__arrow { background: var(--ink); border-color: var(--ink); color: var(--pink); transform: rotate(-45deg); }
.menu__thumb { display: none; }

.menu__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: 2.2rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  background: var(--paper-2);
}
.menu__note p { max-width: 44ch; font-size: .95rem; color: var(--muted); }

/* --- 10. Randevu adımları + form seçici ---------------------------------- */
.steps__head { margin-bottom: clamp(48px, 6vw, 80px); text-align: center; }
.steps__head .kicker { justify-content: center; }
.steps__head .kicker::before { content: ""; width: 44px; height: 1px; background: currentColor; opacity: .45; }

.steps__row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(16px, 2.4vw, 32px); }
.step {
  position: relative;
  padding: 2.2rem 2rem 2.4rem;
  border: 1px solid var(--line-ink);
  border-radius: var(--radius);
  background: var(--ink-2);
}
.step__no { display: inline-block; margin-bottom: 1.3rem; font: italic 400 3.2rem/1 var(--display); }
.step h3 { margin-bottom: .7rem; font: 400 1.6rem/1.15 var(--display); color: var(--on-ink); }
.step p { font-size: .96rem; color: var(--on-ink-muted); }
.step blockquote {
  margin-top: 1.3rem;
  padding-left: 1rem;
  border-left: 2px solid var(--pink);
  font: italic 400 1.04rem/1.45 var(--display);
  color: var(--on-ink);
}
.step cite {
  display: block;
  margin-top: .6rem;
  font: normal 500 .64rem/1.5 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.step--picker { border-color: rgba(248, 104, 184, .3); background: linear-gradient(165deg, #25191E 0%, var(--ink-2) 70%); }

.shapes { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .55rem; margin-top: 1.4rem; }
.shape {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1rem .15rem .8rem;
  border: 1px solid var(--line-ink);
  border-radius: 16px;
  font: 500 .62rem/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--on-ink-muted);
  transition: background .3s, color .3s, border-color .3s, transform .35s var(--ease);
}
.shape svg { width: 28px; height: 50px; overflow: visible; }
.shape .skin { fill: rgba(244, 236, 232, .09); transition: fill .3s; }
.shape .nail { fill: transparent; stroke: var(--gold-2); stroke-width: 1.5; transition: fill .35s, stroke .35s; }
.shape:hover { color: var(--on-ink); border-color: rgba(244, 236, 232, .4); transform: translateY(-3px); }
.shape.is-on { background: var(--pink); border-color: var(--pink); color: var(--ink); }
.shape.is-on .skin { fill: rgba(14, 11, 12, .14); }
.shape.is-on .nail { fill: url(#nailGold); stroke: var(--ink); }
.shapes__hint { margin-top: 1rem; font-size: .84rem; color: var(--on-ink-muted); }

.steps__cta { display: flex; flex-direction: column; align-items: center; gap: .9rem; margin-top: clamp(40px, 5vw, 64px); text-align: center; }
.steps__cta small { font-size: .84rem; color: var(--on-ink-muted); }

/* --- 11. Stüdyo (hakkımızda) --------------------------------------------- */
.studio__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(48px, 8vw, 120px); align-items: center; }
.studio__media { position: relative; isolation: isolate; }
/* Sadece ana fotoğraf — rozet de aynı kutuda bir img, ona uygulanmamalı */
.studio__photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.studio__media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: translate(22px, 22px);
  border: 1px solid rgba(143, 99, 8, .42);
  border-radius: var(--radius);
}
.studio__text > p { max-width: 54ch; margin-top: 1.2rem; color: var(--muted); }
.studio__text > p:first-of-type { margin-top: 1.8rem; }

.team {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin: 2.4rem 0;
  padding: 1.5rem 0 1.3rem;
  border-block: 1px solid var(--line);
}
.team li { display: flex; flex-direction: column; gap: .15rem; }
.team__name { padding-top: .12em; font: 400 3.1rem/1.2 var(--script); color: var(--pink-ink); }
.team__role { font: 500 .64rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }

.figures { display: flex; flex-wrap: wrap; gap: 1.4rem 3.2rem; }
.figures div { display: flex; flex-direction: column-reverse; gap: .5rem; }
.figures dd { font: 400 clamp(2rem, 3.4vw, 2.8rem)/1 var(--display); }
.figures dt { font: 500 .64rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }

/* --- 12. Galeri (bento) -------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 19vw, 270px);
  grid-auto-flow: dense;
  gap: clamp(10px, 1.4vw, 18px);
}
.tile { position: relative; overflow: hidden; border-radius: 18px; background: var(--paper); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
@media (hover: hover) { .tile:hover img { transform: scale(1.04); } }
.tile--xl { grid-column: span 2; grid-row: span 2; }
.tile--tall { grid-row: span 2; }
.tile__cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: .5em .85em;
  border-radius: 999px;
  background: rgba(14, 11, 12, .74);
  color: var(--on-ink);
  font: 500 .62rem/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.tile:hover .tile__cap,
.tile:focus-visible .tile__cap { opacity: 1; transform: none; }

.tile--cta,
.tile--ig { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(1rem, 1.6vw, 1.5rem); }
.tile--cta { background: var(--pink); color: var(--ink); }
.tile--cta .script { padding-top: .1em; font-size: clamp(2.4rem, 3.6vw, 3.4rem); line-height: 1.15; }
.tile--cta p { font: 400 clamp(1rem, 1.4vw, 1.25rem)/1.2 var(--display); }
.tile--ig { background: var(--ink); color: var(--on-ink); }
.tile--ig svg { width: 30px; height: 30px; color: var(--pink); }
.tile__small { font: 500 .64rem/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.tile--cta:hover,
.tile--ig:hover { filter: brightness(1.06); }

/* --- 13. Yorumlar -------------------------------------------------------- */
.reviews__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.q-feature { position: relative; padding-top: 3rem; }
.q-feature::before {
  content: "\201C";
  position: absolute;
  top: -2.2rem;
  left: -.4rem;
  font: 400 10rem/1 var(--display);
  color: var(--pink);
}
.q-feature blockquote { font: 400 clamp(1.6rem, 3vw, 2.4rem)/1.24 var(--display); letter-spacing: -.01em; }
.q-meta {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1.8rem;
  font: 500 .68rem/1.5 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.q-meta b { display: block; font-weight: 500; color: var(--ink); }
.avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--ink);
  color: var(--pink);
  font: italic 400 1.2rem/1 var(--display);
  letter-spacing: 0;
  text-transform: none;
}
.q-side { display: grid; gap: 1.1rem; }
.q-card { padding: 1.6rem 1.7rem 1.5rem; border: 1px solid rgba(192, 40, 122, .14); border-radius: var(--radius); background: var(--paper); }
.q-card .stars { font-size: .78rem; }
.q-card blockquote { margin-top: .7rem; font-size: .98rem; color: var(--ink-3); }
.q-card .q-meta { margin-top: 1.1rem; }
.q-card .avatar { width: 36px; height: 36px; font-size: 1rem; }

.g-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1rem;
  margin-top: clamp(40px, 5vw, 60px);
  padding: .9rem 1.4rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--on-ink);
  font-size: .88rem;
  transition: transform .35s var(--ease);
}
.g-badge b { font: 400 1.5rem/1 var(--display); }
.g-badge:hover { transform: translateY(-2px); }
.g-badge span:last-child { color: var(--pink); }

/* --- 14. İletişim -------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 84px); align-items: stretch; }
.info { display: grid; gap: 1.5rem; margin: 2.4rem 0 2.2rem; }
.info__row { display: grid; grid-template-columns: 44px minmax(0, 1fr); gap: 1rem; align-items: start; }
.info__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--pink); }
.info__icon svg { width: 18px; height: 18px; }
.info__label { margin-bottom: .4rem; font: 500 .64rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.info__value { font: 400 1.14rem/1.45 var(--display); }
.info__value a:hover { color: var(--pink-ink); }
.contact__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.map { position: relative; min-height: 480px; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.04); }

/* --- 15. Footer ---------------------------------------------------------- */
.footer { position: relative; overflow: hidden; isolation: isolate; padding-top: clamp(76px, 9vw, 124px); background: var(--ink); color: var(--on-ink-muted); }
.footer__watermark {
  position: absolute;
  z-index: -1;
  right: -3vw;
  bottom: -6vw;
  font: 400 clamp(9rem, 26vw, 22rem)/1 var(--script);
  opacity: .07;
  pointer-events: none;
  user-select: none;
}
.footer__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: clamp(56px, 7vw, 90px);
  border-bottom: 1px solid var(--line-ink);
}
.footer__big { font: 400 clamp(2.6rem, 6vw, 5.2rem)/1 var(--display); letter-spacing: -.02em; color: var(--on-ink); }
.footer__big .script { display: block; font-size: 1.3em; line-height: 1.15; }
.footer__big em { font-style: italic; color: var(--pink); }
.footer__cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.footer__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr); gap: 2.5rem; padding: clamp(48px, 6vw, 72px) 0; }
.footer__brand { display: flex; gap: 1.1rem; align-items: flex-start; }
.footer__brand img { width: 88px; height: 88px; flex: none; }
.footer__brand p { max-width: 32ch; font-size: .93rem; }
.footer h4 { margin-bottom: 1.2rem; font: 500 .64rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold-2); }
.footer__list { display: grid; gap: .15rem; font-size: .95rem; }
.footer__list a { display: inline-block; padding-block: .5rem; }
.footer a:hover { color: var(--pink); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .8rem 2rem;
  padding: 1.4rem 0 1.8rem;
  border-top: 1px solid var(--line-ink);
  font-size: .76rem;
  color: rgba(244, 236, 232, .45);
}

/* --- 16. Sabit butonlar -------------------------------------------------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: grid; gap: 10px; justify-items: end; }
.fab a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  font: 500 .78rem/1 var(--sans);
  letter-spacing: .06em;
  box-shadow: 0 18px 38px -16px rgba(0, 0, 0, .55);
  transition: transform .35s var(--ease);
}
.fab a:hover { transform: translateY(-3px); }
.fab svg { width: 18px; height: 18px; flex: none; }
.fab__wa { background: var(--wa); color: var(--ink); }
.fab__call { border: 1px solid rgba(248, 104, 184, .4); background: var(--ink); color: var(--pink); }

/* Telefon alt çubuğu (640px altı) */
.mbar { display: none; }

/* --- 16b. Okunaklılık: Bodoni optik boyutu ------------------------------
   Bodoni Moda'nın "opsz" ekseni var. Otomatikte küçük/orta boyutlarda ince
   çizgiler kayboluyordu (özellikle Yorumlar ve İletişim). Düşük opsz çizgileri
   kalınlaştırır, font aynı kalır. Büyük başlıklar otomatikte bırakıldı.
   Not: "font" kısaltması font-variation-settings'i sıfırlar; bu blok o
   kuralların SONRASINDA durmalı. */
.info__value,
.tile--cta p,
.step blockquote,
.kicker b,
.menu__no,
.avatar,
.mobile__link small { font-variation-settings: "opsz" 9; font-weight: 500; }

.q-feature blockquote,
.menu__name,
.step h3,
.hero__proof b,
.g-badge b,
.figures dd { font-variation-settings: "opsz" 16; font-weight: 500; }

.info__value { font-size: 1.2rem; }
.info__label { font-size: .7rem; }
.q-meta { font-size: .72rem; }

/* --- 17. Scroll girişleri (JS varsa) ------------------------------------- */
.js [data-d="1"] { transition-delay: .08s; }
.js [data-d="2"] { transition-delay: .16s; }
.js [data-d="3"] { transition-delay: .24s; }
.js [data-d="4"] { transition-delay: .32s; }
.js .rv { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }

/* --- 18. Duyarlı düzen --------------------------------------------------- */
@media (max-width: 1180px) {
  .nav__links, .nav__phone { display: none; }
  .burger { display: grid; }
}

@media (max-width: 980px) {
  :root { --header-h: 72px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; margin: 0 auto; }
  .split-head { grid-template-columns: 1fr; }

  .menu__grid { grid-template-columns: 1fr; }
  .menu__stage { display: none; }
  .menu__link { grid-template-columns: 62px minmax(0, 1fr) auto; }
  .menu__no { display: none; }
  .menu__thumb {
    display: block;
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    width: 62px;
    height: 78px;
    overflow: hidden;
    border-radius: 999px 999px 10px 10px;
    background: var(--blush);
  }
  .menu__thumb img { width: 100%; height: 100%; object-fit: cover; }
  .menu__thumb--empty { display: grid; place-items: center; }
  .menu__thumb--empty img { width: 70%; height: auto; }

  .steps__row { grid-template-columns: 1fr; }
  .studio__grid { grid-template-columns: 1fr; }
  .studio__media { max-width: 520px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .map { min-height: 380px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .bento { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .topbar__hide { display: none; }
  .topbar__in { justify-content: center; }
  .brand__mark { width: 42px; height: 42px; }
  .brand__name { font-size: .95rem; }
  .brand__sub { font-size: 1.65rem; }
  .nav__cta .btn { display: none; }

  .hero__actions .btn { flex: 1 1 100%; }
  .hero__proof { gap: .9rem 1.6rem; }
  .seal { width: 104px; }

  .menu__line { flex-wrap: wrap; row-gap: .3rem; }
  .menu__arrow { width: 38px; height: 38px; }
  .menu__note .btn { width: 100%; }

  .shapes { gap: .4rem; }
  .shape { padding: .8rem 0 .7rem; font-size: .56rem; letter-spacing: .04em; }
  .shape svg { width: 22px; height: 40px; }

  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 42vw; }
  .tile__cap { opacity: 1; transform: none; }

  .team { gap: .8rem 2rem; }
  .team__name { font-size: 2.6rem; }
  .figures { gap: 1.2rem 2rem; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__cta-actions, .footer__cta-actions .btn { width: 100%; }
  .footer__bottom { justify-content: center; text-align: center; }

  /* Yuvarlak butonlar telefonda içeriğin (menü okları vb.) üstüne biniyordu:
     yerine ekranın altına sabit çubuk */
  .fab { display: none; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .mbar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(14, 11, 12, .94);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    border-top: 1px solid var(--line-ink);
  }
  .mbar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    min-height: 52px;
    padding: 0 1.3rem;
    border-radius: 999px;
    font: 500 .82rem/1 var(--sans);
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .mbar svg { width: 19px; height: 19px; flex: none; }
  .mbar__wa { background: var(--wa); color: var(--ink); }
  .mbar__call { border: 1px solid rgba(248, 104, 184, .45); color: var(--pink); }

  /* Dokunma alanları en az ~44px */
  .link-arrow { padding: .9rem 0 .6rem; }
  .hero__proof a,
  .info__value a { display: inline-block; padding: .55rem 0; margin: -.55rem 0; }
  .shape { min-height: 72px; }

  /* Telefonda hiçbir yazı 11px'in altına düşmesin */
  .step { padding: 1.8rem 1.25rem 2rem; }
  .shapes { gap: .35rem; }
  .shape { font-size: .7rem; letter-spacing: 0; }
  .tile__cap { font-size: .72rem; letter-spacing: .08em; }
  .tile__small,
  .team__role,
  .figures dt,
  .footer h4,
  .q-meta,
  .step cite,
  .menu__caption { font-size: .72rem; }
  .menu__tag { font-size: .7rem; letter-spacing: .1em; }

  .contact__actions .btn { flex: 1 1 100%; }
  .g-badge { border-radius: 22px; }
  .studio__media::before { transform: translate(10px, 10px); }
  .hero__outline { transform: translate(10px, 10px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .js .rv { opacity: 1; transform: none; }
  .js .hero__title .ln > span { animation: none; }
}

/* --- 18b. Dokunmatik cihazlar (tablet dahil) ----------------------------- */
/* Genişlikten bağımsız: fare yoksa küçük metin linkleri de parmakla rahat basılsın */
@media (hover: none) {
  .link-arrow { padding: .9rem 0 .6rem; }
  .hero__proof a,
  .info__value a,
  .tile__small,
  .topbar a { display: inline-block; padding-block: .5rem; }
  .footer__list a { padding-block: .6rem; }
}

/* --- 19. Blog ------------------------------------------------------------ */
.menu__item[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

.split-head > .split-head__link { justify-self: end; }
@media (max-width: 980px) { .split-head > .split-head__link { justify-self: start; } }
.page-hero__title .q { margin-left: -.1em; }

.nav__links a[aria-current]::after { transform: scaleX(1); }
.nav__links a[aria-current] { color: var(--pink-ink); }

/* Sayfa başlığı (blog listesi ve yazılar) */
.page-hero { position: relative; overflow: hidden; isolation: isolate; padding: clamp(48px, 7vw, 100px) 0 clamp(52px, 7vw, 96px); }
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -10%;
  top: -30%;
  width: min(80vw, 900px);
  aspect-ratio: 1;
  background: radial-gradient(closest-side, rgba(248, 104, 184, .18), transparent 72%);
  pointer-events: none;
}
.page-hero__title { font: 400 clamp(2.5rem, 5.6vw, 4.6rem)/1.04 var(--display); letter-spacing: -.02em; }
.page-hero__title em { font-style: italic; color: var(--pink); }
.page-hero__lead { max-width: 54ch; margin-top: 1.3rem; font-size: clamp(1rem, 1.3vw, 1.12rem); color: var(--on-ink-muted); }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem .6rem; margin-bottom: 1.6rem; font: 500 .76rem/1.4 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--on-ink-muted); }
.crumbs a { display: inline-block; padding: .5rem 0; }
.crumbs a:hover { color: var(--pink); }
.crumbs [aria-current] { color: var(--pink); }

/* Yazı kartları */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: clamp(32px, 3.4vw, 48px) clamp(20px, 2.4vw, 32px); }
.post-card { display: flex; flex-direction: column; color: var(--ink); }
.post-card__img { aspect-ratio: 4 / 5; margin-bottom: 1.3rem; overflow: hidden; border-radius: var(--arch); background: var(--paper-2); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.post-card__meta { display: flex; flex-wrap: wrap; gap: .3rem .7rem; margin-bottom: .7rem; font: 500 .72rem/1.3 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--gold-ink); }
.post-card__meta span + span::before { content: "·"; margin-right: .7rem; }
.post-card__title { margin-bottom: .6rem; font: 500 clamp(1.3rem, 2vw, 1.55rem)/1.22 var(--display); font-variation-settings: "opsz" 16; transition: color .3s; }
.post-card__excerpt { font-size: .95rem; color: var(--muted); }
.post-card__more { align-self: flex-start; margin-top: 1rem; }
@media (hover: hover) {
  .post-card:hover .post-card__img img { transform: scale(1.03); }
  .post-card:hover .post-card__title { color: var(--pink-ink); }
}

/* Yazı sayfası */
.post-hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.post-hero__img { justify-self: end; width: 100%; max-width: 380px; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--arch); border: 1px solid rgba(232, 176, 56, .55); background: var(--ink-3); }
.post-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.post-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; margin-top: 1.6rem; font-size: .88rem; color: var(--on-ink-muted); }
.post-meta span + span::before { content: "·"; margin-right: 1.1rem; }

.post-body { padding: clamp(48px, 6vw, 88px) 0 clamp(64px, 8vw, 110px); }
.prose { max-width: 70ch; margin: 0 auto; font-size: 1.06rem; font-weight: 400; line-height: 1.8; color: #2F2629; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 2.1em; font: 500 clamp(1.55rem, 2.8vw, 2.1rem)/1.22 var(--display); font-variation-settings: "opsz" 16; color: var(--ink); scroll-margin-top: calc(var(--header-h) + 20px); }
.prose h3 { margin-top: 1.7em; font: 500 1.28rem/1.3 var(--display); font-variation-settings: "opsz" 12; color: var(--ink); }
.prose h2 + *, .prose h3 + * { margin-top: .6em; }
.prose a { color: var(--pink-ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .18em; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose a.btn { color: var(--ink); text-decoration: none; }
.prose a strong { color: inherit; }
.prose strong { font-weight: 500; color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: .5em; }
.prose li::marker { color: var(--pink-ink); }

.tldr { padding: 1.5rem 1.7rem; border-left: 3px solid var(--pink-ink); border-radius: 4px var(--radius) var(--radius) 4px; background: var(--blush); }
.tldr > p:first-child { margin: 0 0 .7rem; font: 500 .74rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--pink-ink); }
.tldr ul { margin: 0; }

/* Yana kayan tabloda sağ/sol kenarda gölge: devamı olduğunu yazıyla anlatmadan gösterir */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(90deg, var(--paper) 30%, rgba(251, 247, 244, 0)) left / 40px 100% no-repeat local,
    linear-gradient(270deg, var(--paper) 30%, rgba(251, 247, 244, 0)) right / 40px 100% no-repeat local,
    radial-gradient(farthest-side at 0 50%, rgba(14, 11, 12, .16), transparent) left / 14px 100% no-repeat scroll,
    radial-gradient(farthest-side at 100% 50%, rgba(14, 11, 12, .16), transparent) right / 14px 100% no-repeat scroll;
}
.prose table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: .95rem; line-height: 1.55; }
.prose th, .prose td { padding: .85rem 1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.prose thead th { background: rgba(192, 40, 122, .06); font-weight: 500; color: var(--ink); }
.prose tbody th { font-weight: 500; color: var(--ink); }
.prose tr:last-child > * { border-bottom: 0; }

.faq { margin-top: 2.6em; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { position: relative; padding: 1.15rem 2.6rem 1.15rem 0; list-style: none; cursor: pointer; font: 500 1.14rem/1.4 var(--display); font-variation-settings: "opsz" 14; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 50%; right: .3rem; transform: translateY(-50%); font: 300 1.7rem/1 var(--sans); color: var(--pink-ink); }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 0 1.3rem; color: var(--muted); }

.post-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem 2rem; margin-top: 2.8em; padding: 2rem 2.2rem; border-radius: var(--radius); background: var(--ink); color: var(--on-ink); }
.post-cta p { margin: 0; max-width: 32ch; font: 400 1.45rem/1.3 var(--display); font-variation-settings: "opsz" 16; }

.related .split-head { margin-bottom: clamp(36px, 4vw, 56px); }

@media (max-width: 980px) {
  .post-hero__grid { grid-template-columns: 1fr; }
  .post-hero__img { justify-self: start; max-width: 300px; }
}

@media (max-width: 640px) {
  .blog-grid { gap: 1.6rem; }
  .post-card { display: grid; grid-template-columns: 104px minmax(0, 1fr); column-gap: 1.1rem; align-items: start; }
  .post-card__img { grid-row: 1 / span 4; margin: 0; }
  .post-card__title { font-size: 1.18rem; }
  .post-card__excerpt { font-size: .9rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .post-card__more { display: none; }
  .post-hero__img { max-width: 240px; }
  .post-meta span:first-child { flex-basis: 100%; }
  .post-meta span:nth-child(2)::before { content: none; }
  .prose { font-size: 1rem; }
  .prose table { min-width: 480px; }
  .tldr { padding: 1.2rem 1.25rem; }
  .post-cta { padding: 1.5rem 1.3rem; }
  .post-cta p { font-size: 1.25rem; }
  .post-cta .btn { width: 100%; }
}
