/* ═══════════════════════════════════════════════════════════
   MERAM PSİKOLOJİ KLİNİĞİ
   Sanat yönetimi: sıcak kağıt zemin · didone tipografi ·
   kolaj görseller · kemer motifi · fısıltı dozunda kil rengi
   ═══════════════════════════════════════════════════════════ */

:root {
  --paper:      #EFEBE3;
  --paper-2:    #E8E2D7;
  --paper-3:    #E2DBCE;
  --ink:        #111114;
  --ink-2:      #2C2A27;
  --ink-3:      #6B655C;
  --clay:       #A9552E;
  --clay-soft:  #C47C57;
  --sand:       #C9B392;
  --line:       rgba(17, 17, 20, .14);
  --line-soft:  rgba(17, 17, 20, .08);
  --line-light: rgba(239, 235, 227, .18);

  --dsp: "Bodoni Moda", "Times New Roman", Georgia, serif;
  --ui:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gut: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --slow: cubic-bezier(.19, 1, .22, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--ui);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: .002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
::selection { background: var(--ink); color: var(--paper); }

section[id] { scroll-margin-top: 86px; }

.wrap { width: 100%; max-width: 1420px; margin-inline: auto; padding-inline: var(--gut); }

/* ── Kağıt dokusu ───────────────────────────────────────── */
.grain { position: absolute; }
.grain__layer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background-image: url("../assets/grain.png");
  background-size: 128px 128px;
  opacity: .05;
  mix-blend-mode: multiply;
}

/* ── Tipografi ──────────────────────────────────────────── */
.dsp {
  font-family: var(--dsp);
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -.018em;
  color: var(--ink);
}
.dsp--light { color: var(--paper); }

.eyebrow, .secnum {
  display: flex;
  align-items: center;
  gap: .7em;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--clay);
}
.secnum { color: var(--ink-3); letter-spacing: .2em; }
.secnum--light { color: rgba(239, 235, 227, .58); }
.secnum::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .45;
}
.eyebrow__star { width: 13px; flex: none; color: var(--clay-soft); }
.eyebrow__star svg { width: 100%; fill: currentColor; }

/* ── Butonlar ───────────────────────────────────────────── */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: .7em;
  padding: 1.05em 1.75em;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: .01em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--fg);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.btn:hover { color: var(--bg); }
.btn:hover::after { transform: translateY(0); }
.btn__arw { transition: transform .45s var(--ease); }
.btn:hover .btn__arw { transform: translate(2px, -2px); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover { color: var(--paper); border-color: var(--ink); }

.btn--wide { width: 100%; justify-content: center; }

.link-ul {
  position: relative;
  font-size: 14px;
  padding-bottom: 6px;
  color: var(--ink);
}
.link-ul::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.link-ul:hover::after { transform: scaleX(0); transform-origin: right; }

/* ── Açılış perdesi ─────────────────────────────────────── */
.intro { display: none; }
.js .intro {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: var(--paper);
  animation: introOut .9s var(--ease) 2.3s forwards;   /* JS ölse bile perde kalkar */
}
.intro.is-out { animation: introOut .9s var(--ease) forwards; }
@keyframes introOut {
  to { opacity: 0; visibility: hidden; transform: translateY(-1.2%); }
}
.intro__mark { text-align: center; }
.intro__word {
  display: block;
  font-family: var(--dsp);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  letter-spacing: -.02em;
  color: var(--ink);
  animation: introUp 1s var(--ease) both;
}
.intro__sub {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--ink-3);
  animation: introUp 1s var(--ease) .12s both;
}
@keyframes introUp { from { opacity: 0; transform: translateY(14px); } }
.intro__bar { width: min(180px, 40vw); height: 1px; background: var(--line); overflow: hidden; }
.intro__bar i { display: block; height: 100%; width: 0; background: var(--ink); }
.is-instant .intro, .is-still .intro { display: none !important; }

/* ── İmleç ──────────────────────────────────────────────── */
.cursor { display: none; }
.has-cursor .cursor {
  display: block;
  position: fixed;
  top: 0; left: 0;
  z-index: 9200;
  width: 26px; height: 26px;
  margin: -13px 0 0 -13px;
  border: 1px solid rgba(17, 17, 20, .38);
  border-radius: 50%;
  pointer-events: none;
  transition: width .35s var(--ease), height .35s var(--ease), margin .35s var(--ease),
              background-color .35s var(--ease), border-color .35s var(--ease), opacity .3s;
  opacity: 0;
}
.has-cursor .cursor.is-live { opacity: 1; }
.has-cursor .cursor.is-link {
  width: 54px; height: 54px; margin: -27px 0 0 -27px;
  background: rgba(169, 85, 46, .1);
  border-color: rgba(169, 85, 46, .5);
}
.has-cursor .cursor.is-dark { border-color: rgba(239, 235, 227, .5); }
.is-still .cursor { display: none !important; }

/* ── Başlık ─────────────────────────────────────────────── */
.head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  padding: 26px var(--gut);
  transition: padding .5s var(--ease), background-color .5s var(--ease), box-shadow .5s var(--ease);
}
.head.is-stuck {
  padding-block: 15px;
  background: rgba(239, 235, 227, .94);
  box-shadow: 0 1px 0 var(--line-soft);
}
.head__brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.head__mark { width: 26px; flex: none; color: var(--ink); }
.head__mark svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 1.2; }
.head__mark svg circle { stroke-width: 1; }
.head__name {
  font-family: var(--dsp);
  font-size: 24px;
  letter-spacing: .002em;
  color: var(--ink);
}
.head__nav { display: flex; gap: clamp(16px, 2.4vw, 38px); }
.head__nav a {
  position: relative;
  font-size: 13.5px;
  color: var(--ink-2);
  transition: color .35s;
}
.head__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.head__nav a:hover { color: var(--ink); }
.head__nav a:hover::after { transform: scaleX(1); }
.head__cta { padding: .85em 1.4em; font-size: 13px; }

.head__burger {
  display: none;
  width: 40px; height: 40px;
  margin-right: -8px;
  position: relative;
}
.head__burger i {
  position: absolute;
  left: 9px;
  width: 22px; height: 1px;
  background: var(--ink);
  transition: transform .45s var(--ease), opacity .3s;
}
.head__burger i:nth-child(1) { top: 17px; }
.head__burger i:nth-child(2) { top: 23px; }
.is-open .head__burger i:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.is-open .head__burger i:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ── Mobil çekmece ──────────────────────────────────────── */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 880;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 120px var(--gut) 40px;
  background: var(--paper);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s var(--slow);
  pointer-events: none;
}
.is-open .drawer { clip-path: inset(0 0 0 0); pointer-events: auto; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
  font-family: var(--dsp);
  font-size: clamp(1.7rem, 8.5vw, 2.6rem);
  line-height: 1;
  color: var(--ink);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.is-open .drawer__nav a { opacity: 1; transform: none; }
.drawer__nav a em {
  font-family: var(--ui);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .2em;
  color: var(--clay);
}
.drawer__foot { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.drawer__foot p { font-size: 13px; color: var(--ink-3); line-height: 1.8; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 50%);
  align-items: center;
}
.hero__text {
  padding: 150px var(--gut) 88px;
  max-width: 44rem;
  justify-self: end;
  width: 100%;
}
.hero__title {
  font-family: var(--dsp);
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: clamp(2.9rem, 6.2vw, 6.1rem);
  line-height: .98;
  letter-spacing: -.028em;
  color: var(--ink);
  margin: clamp(20px, 3.4vw, 40px) 0 0;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .line > span { display: block; }
.js .hero__title .line > span {
  transform: translateY(110%);
  transition: transform 1.25s var(--slow);
}
.js .hero.is-in .hero__title .line > span { transform: none; }
.js .hero.is-in .hero__title .line:nth-child(2) > span { transition-delay: .09s; }
.js .hero.is-in .hero__title .line:nth-child(3) > span { transition-delay: .18s; }

.hero__lead {
  margin-top: clamp(20px, 2.4vw, 30px);
  max-width: 30rem;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: var(--ink-3);
}
.hero__acts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
  margin-top: clamp(30px, 3.6vw, 48px);
}

/* Hero döngü */
.rotator { margin-top: clamp(46px, 7vw, 92px); }
.rotator__idx {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--ink-3);
}
.rotator__idx em { font-style: normal; }
.rotator__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--ink); }
.rotator__rail { display: block; width: clamp(60px, 10vw, 120px); height: 1px; background: var(--line); }
.rotator__rail b { display: block; height: 100%; width: 33%; background: var(--ink-3); transition: width .6s var(--ease); }
.rotator__stack { position: relative; margin-top: 14px; min-height: 3.4em; }
.rotator__line {
  font-family: var(--dsp);
  font-size: clamp(1.02rem, 1.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 24rem;
}
.js .rotator__line {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  pointer-events: none;
}
.js .rotator__line.is-on { opacity: 1; transform: none; position: relative; }

/* Hero görsel */
.hero__vis { position: relative; align-self: stretch; }
.hero__plate { position: absolute; inset: 0; overflow: hidden; }
/* Kolajın üst kenarı kağıda eriyor — başlık her zaman okunur kalsın */
.hero__vis::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: clamp(96px, 13vh, 150px);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to bottom,
    var(--paper) 0%,
    rgba(239, 235, 227, .88) 34%,
    rgba(239, 235, 227, .42) 68%,
    rgba(239, 235, 227, 0) 100%);
}
.hero__plate img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 17%);
  mask-image: linear-gradient(to right, transparent 0, #000 17%);
}
.js .hero__plate img { transform: scale(1.1); transition: transform 2.2s var(--slow); }
.js .hero.is-in .hero__plate img { transform: none; }

.hero__ring {
  position: absolute;
  top: 50%; left: -12%;
  width: min(58vw, 640px);
  aspect-ratio: 1;
  transform: translateY(-54%);
  fill: none;
  stroke: rgba(17, 17, 20, .28);
  stroke-width: .8;
  pointer-events: none;
}
.js .hero__ring circle {
  stroke-dasharray: 1880;
  stroke-dashoffset: 1880;
  transition: stroke-dashoffset 2.6s var(--slow) .4s;
}
.js .hero.is-in .hero__ring circle { stroke-dashoffset: 0; }

.hero__rail {
  position: absolute;
  right: clamp(14px, 2vw, 30px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.05em;
  text-align: right;
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(18, 16, 14, .72);
  text-shadow: 0 0 14px rgba(239, 235, 227, .6);
}

.seal {
  position: absolute;
  right: clamp(18px, 4vw, 62px);
  bottom: clamp(44px, 7vw, 92px);
  width: clamp(96px, 11vw, 132px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 235, 227, .38);
  border-radius: 50%;
  background: rgba(15, 14, 13, .34);
  color: rgba(239, 235, 227, .92);
}
.seal__type { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 26s linear infinite; }
.seal__type text {
  font-family: var(--ui);
  font-size: 7.6px;
  letter-spacing: .18em;
  fill: currentColor;
}
@keyframes spin { to { transform: rotate(360deg); } }
.seal__core { width: 15px; color: rgba(239, 235, 227, .9); }
.seal__core svg { width: 100%; fill: currentColor; }
.seal:hover { border-color: rgba(239, 235, 227, .7); }

.scrollcue {
  position: absolute;
  left: var(--gut);
  bottom: 26px;
  width: 1px; height: 54px;
  background: var(--line);
  overflow: hidden;
}
.scrollcue i { position: absolute; inset: 0; background: var(--ink); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue {
  0% { transform: translateY(-100%); }
  55%, 100% { transform: translateY(100%); }
}

/* ═══════════════ ŞERİT ═══════════════ */
.serit {
  border-block: 1px solid var(--line-soft);
  padding: 22px 0;
  overflow: hidden;
  background: var(--paper-2);
}
.serit__track { display: flex; width: max-content; animation: run 46s linear infinite; }
.serit__run { display: flex; align-items: center; gap: 30px; padding-right: 30px; }
.serit__run span {
  font-family: var(--dsp);
  font-size: clamp(.95rem, 1.5vw, 1.28rem);
  color: var(--ink-2);
  white-space: nowrap;
}
.serit__run i { color: var(--clay-soft); font-style: normal; }
@keyframes run { to { transform: translateX(-50%); } }
.serit:hover .serit__track { animation-play-state: paused; }

/* ═══════════════ HAKKIMIZDA ═══════════════ */
.about { padding: clamp(84px, 12vw, 172px) 0 clamp(70px, 9vw, 128px); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 27%) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 96px);
}
.about__plate {
  margin-top: 40px;
  border-radius: 50% 50% 3px 3px / 27% 27% 3px 3px;
  overflow: hidden;
  background: var(--paper-3);
}
.about__plate img { width: 100%; aspect-ratio: 3 / 5.4; object-fit: cover; object-position: 50% 32%; }

.statement {
  font-family: var(--dsp);
  font-size: clamp(1.42rem, 2.75vw, 2.5rem);
  line-height: 1.24;
  letter-spacing: -.014em;
  color: var(--ink);
  max-width: 34ch;
}
.statement em { font-style: italic; color: var(--clay); }

.about__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(22px, 3vw, 48px);
  margin-top: clamp(34px, 4.5vw, 62px);
  padding-top: clamp(30px, 4vw, 50px);
  border-top: 1px solid var(--line-soft);
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 1px;
  margin-top: clamp(44px, 6vw, 84px);
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.stats li { background: var(--paper); padding: clamp(20px, 2.4vw, 32px) clamp(16px, 2vw, 26px); }
.stats b .num { font: inherit; letter-spacing: inherit; color: inherit; }
.stats b i {
  font-family: var(--ui);
  font-size: .38em;
  font-style: normal;
  font-weight: 400;
  vertical-align: .78em;
  letter-spacing: 0;
  margin-right: .05em;
  color: var(--ink-3);
}
.stats b {
  display: block;
  font-family: var(--dsp);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: lining-nums tabular-nums;
}
.stats li > span {
  display: block;
  margin-top: 12px;
  font-size: 11.5px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ═══════════════ HİZMETLER ═══════════════ */
.serv { position: relative; padding: clamp(70px, 9vw, 128px) 0 clamp(80px, 10vw, 148px); }
.sechead { display: flex; flex-direction: column; gap: clamp(16px, 2vw, 26px); }
.sechead--split {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 90px);
  flex-wrap: wrap;
}
.sechead__note { max-width: 30rem; font-size: 15px; line-height: 1.8; color: var(--ink-3); }

.serv__list { margin-top: clamp(40px, 5.5vw, 78px); border-top: 1px solid var(--line); }
.serv__row {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 8.5fr) minmax(0, 11fr) minmax(0, 5fr) 40px;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  padding: clamp(22px, 2.7vw, 34px) 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left .6s var(--ease);
}
.serv__row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-2);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .6s var(--ease);
  z-index: -1;
}
.serv__row:hover { padding-left: clamp(10px, 1.6vw, 24px); }
.serv__row:hover::before { transform: scaleY(1); }
.serv__no {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--ink-3);
  transition: color .4s;
}
.serv__row:hover .serv__no { color: var(--clay); }
.serv__name {
  font-family: var(--dsp);
  font-weight: 400;
  font-size: clamp(1.28rem, 2.3vw, 2.05rem);
  line-height: 1.1;
  letter-spacing: -.012em;
  color: var(--ink);
}
.serv__desc { font-size: 14.5px; line-height: 1.7; color: var(--ink-3); }
.serv__meta {
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.serv__arw {
  justify-self: end;
  font-size: 18px;
  color: var(--ink);
  opacity: .25;
  transition: opacity .4s, transform .5s var(--ease);
}
.serv__row:hover .serv__arw { opacity: 1; transform: translate(3px, -3px); }

.serv__peek { display: none; }
.has-cursor .serv__peek {
  display: block;
  position: fixed;
  top: 0; left: 0;
  z-index: 800;
  width: clamp(180px, 17vw, 260px);
  margin: 0;
  pointer-events: none;
  border-radius: 50% 50% 3px 3px / 37% 37% 3px 3px;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.9);
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.has-cursor .serv__peek.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.has-cursor .serv__peek img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.is-still .serv__peek { display: none !important; }

/* ═══════════════ YAKLAŞIM ═══════════════ */
.path { padding: clamp(70px, 9vw, 124px) 0; background: var(--paper-2); }
.path__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1px;
  margin-top: clamp(42px, 6vw, 82px);
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.path__step {
  background: var(--paper-2);
  padding: clamp(26px, 3vw, 42px) clamp(20px, 2.2vw, 32px) clamp(30px, 3.4vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background-color .55s var(--ease);
}
.path__step:hover { background: var(--paper); }
.path__no {
  font-family: var(--dsp);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
  color: var(--ink);
  opacity: .2;
  transition: opacity .5s, color .5s;
}
.path__step:hover .path__no { opacity: 1; color: var(--clay); }
.path__step h3 {
  font-family: var(--dsp);
  font-weight: 400;
  font-size: clamp(1.16rem, 1.8vw, 1.5rem);
  letter-spacing: -.01em;
  color: var(--ink);
}
.path__step p { font-size: 14.5px; line-height: 1.75; color: var(--ink-3); }
.path__tag {
  margin-top: auto;
  padding-top: 18px;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clay);
}

/* ═══════════════ EKİP ═══════════════ */
.team { padding: clamp(80px, 10vw, 140px) 0; }
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: clamp(24px, 3vw, 44px);
  margin-top: clamp(42px, 6vw, 80px);
}
.plate {
  display: block;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 50% 50% 3px 3px / 38% 38% 3px 3px;
  background: var(--paper-3);
  aspect-ratio: 3 / 3.9;
}
.plate img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--slow); }
.team__card:hover .plate img { transform: scale(1.045); }
.plate::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--line-soft);
  border-radius: inherit;
  pointer-events: none;
}
/* Fotoğraf yoksa: baş harfli kağıt levha */
.plate--none {
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(201, 179, 146, .5) 0, rgba(201, 179, 146, 0) 62%),
    repeating-linear-gradient(115deg, rgba(17,17,20,.035) 0 1px, transparent 1px 7px),
    var(--paper-3);
}
.plate--none::before {
  content: attr(data-initials);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--dsp);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: rgba(17, 17, 20, .3);
  letter-spacing: .02em;
}
.plate--wide { aspect-ratio: 4 / 4.6; }

.team__card h3 {
  margin-top: 22px;
  font-family: var(--dsp);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  letter-spacing: -.008em;
  color: var(--ink);
}
.team__role { margin-top: 6px; font-size: 12.5px; color: var(--clay); }
.team__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.team__tags li {
  padding: 5px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ═══════════════ SÖZ ═══════════════ */
.voice {
  position: relative;
  isolation: isolate;
  padding: clamp(84px, 12vw, 158px) 0;
  background: #131311;
  color: var(--paper);
  overflow: hidden;
}
.voice__bg { position: absolute; inset: 0; z-index: -1; margin: 0; }
.voice__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .17;
  filter: grayscale(.5);
}
.voice__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 30% 40%, rgba(19,19,17,.2) 0, rgba(19,19,17,.9) 70%);
}
.voice__inner { position: relative; }
.voice__stack { position: relative; margin-top: clamp(30px, 4vw, 50px); min-height: 8.5em; }
.voice__item p {
  font-family: var(--dsp);
  font-weight: 400;
  font-size: clamp(1.4rem, 3.1vw, 2.65rem);
  line-height: 1.26;
  letter-spacing: -.014em;
  color: var(--paper);
  max-width: 40ch;
}
.voice__item footer {
  margin-top: clamp(20px, 2.5vw, 30px);
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(239, 235, 227, .55);
}
.voice__item footer i { color: var(--clay-soft); font-style: normal; margin-inline: .5em; }
.js .voice__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  pointer-events: none;
}
.js .voice__item.is-on { opacity: 1; transform: none; position: relative; pointer-events: auto; }
.voice__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(34px, 4.5vw, 56px);
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(239, 235, 227, .55);
}
.voice__nav button {
  width: 46px; height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  color: var(--paper);
  font-size: 15px;
  transition: background-color .4s, border-color .4s, transform .4s var(--ease);
}
.voice__nav button:hover { background: rgba(239, 235, 227, .1); border-color: rgba(239, 235, 227, .45); }

/* ═══════════════ ORTAM ═══════════════ */
.rooms { padding: clamp(80px, 10vw, 140px) 0; }
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(42px, 6vw, 78px);
  align-items: start;
}
.room:nth-child(2) { margin-top: clamp(0px, 5vw, 68px); }
.room .plate--wide { aspect-ratio: 4 / 4.9; }
.room:nth-child(2) .plate--wide { aspect-ratio: 4 / 3.4; }
.room:nth-child(3) .plate--wide { aspect-ratio: 4 / 4.3; }
.room figcaption {
  margin-top: 18px;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.room figcaption i { color: var(--clay-soft); font-style: normal; margin-inline: .3em; }

/* ═══════════════ S.S.S. ═══════════════ */
.faq { padding: clamp(70px, 9vw, 120px) 0 clamp(84px, 11vw, 150px); }
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 34%) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
}
.faq__head { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 120px; align-self: start; }
.faq__note { font-size: 14.5px; line-height: 1.8; color: var(--ink-3); max-width: 24rem; }

.qa { border-bottom: 1px solid var(--line); }
.qa:first-child { border-top: 1px solid var(--line); }
.qa summary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: clamp(20px, 2.4vw, 28px) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--dsp);
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  letter-spacing: -.008em;
  color: var(--ink);
  transition: color .4s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary span { flex: 1; }
.qa summary i {
  position: relative;
  flex: none;
  width: 15px; height: 15px;
}
.qa summary i::before, .qa summary i::after {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 15px; height: 1px;
  background: var(--ink);
  transition: transform .45s var(--ease);
}
.qa summary i::after { transform: rotate(90deg); }
.qa[open] summary { color: var(--clay); }
.qa[open] summary i::before { background: var(--clay); }
.qa[open] summary i::after { transform: rotate(0deg); background: var(--clay); }
.qa__body { overflow: hidden; }
.qa__body p {
  padding: 0 clamp(30px, 6vw, 76px) clamp(24px, 2.6vw, 32px) 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--ink-3);
}
.js .qa .qa__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.js .qa[open] .qa__body { grid-template-rows: 1fr; }
.js .qa .qa__body > p { min-height: 0; }

/* ═══════════════ RANDEVU ═══════════════ */
.book {
  padding: clamp(80px, 11vw, 150px) 0;
  background: #131311;
  color: rgba(239, 235, 227, .78);
}
.book__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 42%);
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}
.book__side { display: flex; flex-direction: column; gap: clamp(18px, 2.2vw, 28px); }
.book__lead { max-width: 30rem; font-size: 15px; line-height: 1.8; color: rgba(239, 235, 227, .6); }
.book__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: clamp(20px, 2.6vw, 34px);
  margin-top: clamp(14px, 2vw, 26px);
  padding-top: clamp(26px, 3vw, 38px);
  border-top: 1px solid var(--line-light);
}
.book__info dt {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(239, 235, 227, .42);
}
.book__info dd { margin-top: 10px; font-size: 14.5px; line-height: 1.7; color: var(--paper); }
.book__info a { border-bottom: 1px solid var(--line-light); padding-bottom: 2px; transition: border-color .4s; }
.book__info a:hover { border-color: var(--clay-soft); }
.book__acil {
  margin-top: clamp(18px, 2.4vw, 30px);
  padding: 16px 20px;
  border-left: 2px solid var(--clay);
  background: rgba(169, 85, 46, .1);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(239, 235, 227, .72);
}
.book__acil strong { color: var(--paper); font-weight: 500; }

.book__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line-light);
  background: rgba(239, 235, 227, .035);
}
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full, .book__form > .btn, .book__hint { grid-column: 1 / -1; }
.field label, .check span {
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(239, 235, 227, .5);
}
.field label span { text-transform: none; letter-spacing: .02em; opacity: .7; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 300;
  transition: border-color .4s;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: linear-gradient(45deg, transparent 50%, rgba(239,235,227,.5) 50%),
                    linear-gradient(135deg, rgba(239,235,227,.5) 50%, transparent 50%);
  background-position: right 8px center, right 3px center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.field select option { background: #1a1a18; color: var(--paper); }
.field textarea { resize: vertical; min-height: 76px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(239, 235, 227, .28); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay-soft); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #C0563E; }

.check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; margin-top: 4px; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check > i {
  flex: none;
  width: 15px; height: 15px;
  margin-top: 3px;
  border: 1px solid var(--line-light);
  position: relative;
  transition: border-color .3s, background-color .3s;
}
.check > i::after {
  content: "";
  position: absolute;
  left: 4px; top: 3px;
  width: 5px; height: 8px;
  border-right: 1px solid #131311;
  border-bottom: 1px solid #131311;
  transform: rotate(40deg) scale(0);
  transition: transform .3s var(--ease);
}
.check span { display: block; text-transform: none; letter-spacing: .01em; font-size: 12.5px; line-height: 1.65; }
.check input:checked ~ i { background: var(--clay-soft); border-color: var(--clay-soft); }
.check input:checked ~ i::after { transform: rotate(40deg) scale(1); }
.check input:focus-visible ~ i { border-color: var(--clay-soft); }
.check a { border-bottom: 1px solid var(--line-light); white-space: nowrap; }

.book__form .btn { --bg: var(--paper); --fg: #131311; margin-top: 8px; }
.book__hint { font-size: 12.5px; color: rgba(239, 235, 227, .5); min-height: 1.4em; }
.book__hint.is-bad { color: #E09A80; }

/* ═══════════════ FOOTER ═══════════════ */
.foot { background: var(--paper); padding-top: clamp(64px, 8vw, 104px); }
.foot__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: clamp(40px, 6vw, 90px);
  padding-bottom: clamp(48px, 6vw, 76px);
}
.foot__word {
  display: block;
  font-family: var(--dsp);
  font-size: clamp(3.4rem, 10vw, 8rem);
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--ink);
}
.foot__brand p { margin-top: 16px; font-size: 14px; color: var(--ink-3); }
.foot__nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: clamp(24px, 3vw, 40px);
  align-content: start;
  padding-top: 12px;
}
.foot__nav > div { display: flex; flex-direction: column; gap: 11px; }
.foot__nav h3 {
  margin-bottom: 6px;
  font-family: var(--ui);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay);
}
.foot__nav a, .foot__nav span { font-size: 13.5px; line-height: 1.6; color: var(--ink-3); }
.foot__nav a { width: fit-content; transition: color .35s; }
.foot__nav a:hover { color: var(--ink); }

.foot__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--ink-3);
}
.foot__legal { display: flex; flex-wrap: wrap; gap: 12px; }
.foot__legal a { transition: color .3s; }
.foot__legal a:hover { color: var(--ink); }
.foot__legal i { opacity: .4; font-style: normal; }

.demo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 34px;
  padding: 26px var(--gut);
  background: var(--ink);
  color: rgba(239, 235, 227, .62);
  font-size: 13px;
}
.demo strong { color: var(--paper); font-weight: 500; }
.demo .btn { --bg: var(--paper); --fg: var(--ink); padding: .85em 1.5em; font-size: 12.5px; }

/* ── Reveal (JS ölürse içerik görünür kalır) ────────────── */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-d="1"] { transition-delay: .09s; }
.js .reveal[data-d="2"] { transition-delay: .18s; }
.js .reveal[data-d="3"] { transition-delay: .27s; }
.js .reveal[data-d="4"] { transition-delay: .36s; }
.js .reveal[data-d="5"] { transition-delay: .45s; }

.is-instant .reveal, .is-still .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.is-instant .hero__title .line > span, .is-still .hero__title .line > span { transform: none !important; }
.is-instant .hero__plate img, .is-still .hero__plate img { transform: none !important; }
.is-instant .hero__ring circle, .is-still .hero__ring circle { stroke-dashoffset: 0 !important; }
.is-instant .serit__track, .is-instant .seal__type, .is-instant .scrollcue i { animation: none !important; }
.is-instant .rotator__line, .is-instant .voice__item { transition: none !important; }

/* ═══════════════ Duyarlı ═══════════════ */
@media (max-width: 1180px) {
  .head__nav { display: none; }
  .head__burger { display: block; }
  .head__cta { display: none; }
  .serv__row { grid-template-columns: 46px minmax(0, 1fr) 28px; row-gap: 8px; }
  .serv__desc { grid-column: 2 / 4; }
  .serv__meta { grid-column: 2 / 4; }
  .serv__arw { grid-row: 1; grid-column: 3; align-self: center; }
  .faq__grid, .about__grid { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .about__side { display: flex; flex-direction: column; gap: 8px; }
  .about__plate { display: none; }
  .book__grid { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__text { order: 2; padding: clamp(34px, 8vw, 56px) var(--gut) clamp(50px, 9vw, 76px); max-width: none; }
  .hero__vis { order: 1; height: 78svh; min-height: 420px; }
  .hero__plate img {
    object-position: 56% 42%;
    -webkit-mask-image: linear-gradient(to bottom, #000 62%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 62%, transparent 100%);
  }
  .hero__ring { left: 50%; top: 42%; transform: translate(-50%, -50%); width: 128vw; }
  .hero__rail { flex-direction: row; gap: 1.6em; right: auto; left: var(--gut); top: auto; bottom: 20px; transform: none; font-size: 9.5px; }
  .seal { top: clamp(80px, 16vw, 110px); bottom: auto; }
  .scrollcue { display: none; }
  .rotator__stack { min-height: 4.6em; }
  .book__form { grid-template-columns: 1fr; }
  .room:nth-child(2) { margin-top: 0; }
  .room .plate--wide, .room:nth-child(2) .plate--wide, .room:nth-child(3) .plate--wide { aspect-ratio: 4 / 4.2; }
}

@media (max-width: 560px) {
  .head { padding-block: 18px; }
  .head__name { font-size: 21px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .demo { flex-direction: column; align-items: flex-start; }
  .team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .team__card h3 { font-size: 1rem; margin-top: 16px; }
  .voice__stack { min-height: 12em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .intro { display: none !important; }
}

@media print { .head, .drawer, .intro, .cursor, .grain__layer, .serv__peek, .demo { display: none !important; } }
