/* ==========================================================================
   TASLAK — Berber / Erkek Kuaforu  ·  premium surum
   Renk, tipografi ve animasyon sistemi. Emoji kullanilmaz; ikonlar inline SVG.
   Icerik ve gorseller ORNEK/placeholder'dir.
   ========================================================================== */

/* ---------- 1. Degiskenler ---------- */
:root {
  --ink:        #08080a;
  --ink-2:      #0e0e11;
  --surface:    #14141a;
  --surface-2:  #1b1b22;
  --line:       rgba(245, 241, 232, .10);
  --line-soft:  rgba(245, 241, 232, .06);

  --gold:       #c9a349;
  --gold-lt:    #ecd79b;
  --gold-dk:    #8d6f26;
  --cream:      #f5f1e8;
  --muted:      #9a948c;
  --muted-2:    #6d6862;

  --display: "Bodoni Moda", "Playfair Display", "Times New Roman", serif;
  --sans:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --r-sm: 6px;
  --r:    14px;
  --r-lg: 22px;

  --ease:      cubic-bezier(.22, .61, .36, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.76, 0, .24, 1);

  --pad-x: clamp(20px, 5vw, 72px);
  --shell: 1240px;
}

/* ---------- 2. Reset / temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection { background: var(--gold); color: #14100a; }

/* film grain — "yapay" duzlugu kiran ince doku */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 3. Tipografi ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.015em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.7rem, 7.4vw, 5.5rem); }
h2 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.italic  { font-style: italic; font-weight: 400; }
.g       { color: var(--gold); }
.thin    { font-weight: 400; }

p { color: var(--muted); }
.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  color: #cfc9bf;
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ---------- 4. Duzen ---------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { position: relative; padding: clamp(72px, 11vh, 132px) 0; }
.section--tight { padding-top: clamp(40px, 6vh, 70px); }
.sec-head { max-width: 620px; margin-bottom: clamp(38px, 5vw, 62px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { margin: 18px 0 16px; }
.sec-num {
  position: absolute;
  top: clamp(40px, 7vh, 90px);
  right: var(--pad-x);
  font-family: var(--display);
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-style: italic;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 241, 232, .09);
  pointer-events: none;
  user-select: none;
}
.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  border: 0;
}

/* ---------- 5. Butonlar ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #17120a;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), color .3s;
}
.btn > * { position: relative; z-index: 2; }
.btn::before {                       /* parlak supurme */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .8s var(--ease-out);
}
.btn:hover::before { transform: translateX(130%); }
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px -12px rgba(201, 163, 73, .65);
}
.btn:active { transform: translateY(-1px) scale(.99); }
.btn svg { width: 17px; height: 17px; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  border: 1px solid rgba(245, 241, 232, .22);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  --btn-fg: var(--gold);
  border-color: rgba(201, 163, 73, .55);
  box-shadow: none;
}
.btn--sm { padding: 12px 22px; font-size: .68rem; }
.btn--block { width: 100%; }

/* metin bagi */
.link-u {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
}
.link-u::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.link-u:hover::after { transform: scaleX(1); }
.link-u svg { width: 15px; height: 15px; transition: transform .4s var(--ease-out); }
.link-u:hover svg { transform: translateX(5px); }

/* ---------- 6. Gorsel cercevesi (renk placeholder + fade-in) ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background: var(--ph, #1a1a1f);
  border-radius: inherit;
}
.ph::after {                          /* yukleniyor parlamasi */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, .06) 45%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 1.6s infinite;
}
.ph.is-loaded::after { display: none; }
.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s var(--ease-out), transform 1.4s var(--ease-out);
}
.ph.is-loaded img { opacity: 1; transform: scale(1); }
@keyframes shimmer { 100% { transform: translateX(100%); } }

/* ---------- 7. Preloader ---------- */
.preload {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  gap: 26px;
  background: var(--ink);
  transition: opacity .6s var(--ease), visibility .6s;
}
.preload.is-done { opacity: 0; visibility: hidden; }
.preload__mark {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  text-align: center;
  color: var(--cream);
}
.preload__mark span { color: var(--gold); }
.preload__bar {
  width: min(240px, 55vw);
  height: 2px;
  margin: 0 auto;
  background: rgba(245, 241, 232, .12);
  overflow: hidden;
}
.preload__bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  transition: width .35s var(--ease);
}
.preload__pct {
  text-align: center;
  font-size: .68rem;
  letter-spacing: .3em;
  color: var(--muted-2);
}

/* ---------- 8. Imlec (masaustu) ---------- */
.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  z-index: 9997;
  pointer-events: none;
  border-radius: 50%;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .3s;
}
.cursor {
  width: 34px; height: 34px;
  border: 1px solid rgba(245, 241, 232, .55);
  transition: width .35s var(--ease-out), height .35s var(--ease-out),
              background .35s, opacity .3s, border-color .35s;
}
.cursor-dot { width: 5px; height: 5px; background: var(--cream); }
.cursor.is-on { opacity: 1; }
.cursor-dot.is-on { opacity: 1; }
.cursor.is-hover { width: 58px; height: 58px; background: rgba(245, 241, 232, .1); border-color: transparent; }
.cursor.is-media { width: 78px; height: 78px; background: rgba(245, 241, 232, .92); border-color: transparent; }

/* ---------- 9. Ust bar ---------- */
.topline {
  position: fixed;
  top: 0; left: 0;
  z-index: 90;
  height: 2px;
  width: 100%;
  background: transparent;
}
.topline i {
  display: block;
  height: 100%;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  transition: background .5s var(--ease), box-shadow .5s, backdrop-filter .5s;
}
.nav.is-stuck {
  background: rgba(8, 8, 10, .78);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-h, 88px);
  transition: height .5s var(--ease);
}
.nav.is-stuck .nav__in { --nav-h: 70px; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.22rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(201, 163, 73, .45);
  border-radius: 50%;
  color: var(--gold);
  flex: none;
  transition: transform .6s var(--ease-out), border-color .4s;
}
.brand:hover .brand__mark { transform: rotate(-18deg); border-color: var(--gold); }
.brand__mark svg { width: 19px; height: 19px; }
.brand > span:last-child {          /* iki satirli logo kilidi */
  display: grid;
  gap: 3px;
  line-height: 1;
  white-space: nowrap;
}
.brand b { font-weight: 500; font-size: 1.05rem; letter-spacing: .2em; }
.brand i {
  font-family: var(--sans);
  font-style: normal;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .34em;
  color: var(--gold);
}

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  position: relative;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #cbc6bd;
  padding: 6px 0;
  transition: color .3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--cream); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__tel {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 9px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: #cbc6bd;
  transition: color .3s;
}
.nav__tel:hover { color: var(--gold); }
.nav__tel svg { width: 16px; height: 16px; color: var(--gold); }

/* hamburger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
  flex: none;
}
.burger i {
  position: absolute;
  left: 50%; top: 50%;
  width: 17px; height: 1.5px;
  background: var(--cream);
  transform: translate(-50%, -50%);
  transition: transform .45s var(--ease-in-out), opacity .3s;
}
.burger i:nth-child(1) { transform: translate(-50%, calc(-50% - 4px)); }
.burger i:nth-child(3) { transform: translate(-50%, calc(-50% + 4px)); }
.burger.is-open i:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.burger.is-open i:nth-child(2) { opacity: 0; transform: translate(-50%, -50%) scaleX(.3); }
.burger.is-open i:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* tam ekran menu */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 79;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 110px var(--pad-x) 40px;
  background: var(--ink-2);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .8s var(--ease-in-out), visibility .8s;
}
.drawer.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
.drawer a {
  font-family: var(--display);
  font-size: clamp(2rem, 9vw, 3.4rem);
  line-height: 1.15;
  display: flex;
  align-items: baseline;
  gap: 14px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), color .3s;
  transition-delay: var(--d, 0s);
}
.drawer.is-open a { opacity: 1; transform: none; }
.drawer a:hover { color: var(--gold); }
.drawer a span {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--muted-2);
}
.drawer__foot {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-size: .8rem;
  color: var(--muted);
  opacity: 0;
  transition: opacity .6s .5s;
}
.drawer.is-open .drawer__foot { opacity: 1; }

/* ---------- 10. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 148px 0 90px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: -8% 0 -8%;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 26s var(--ease-in-out) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.17) translate3d(-2%, -1.5%, 0); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 12% 30%, rgba(8, 8, 10, .92) 0%, rgba(8, 8, 10, .55) 45%, rgba(8, 8, 10, .2) 70%),
    linear-gradient(180deg, rgba(8, 8, 10, .82) 0%, rgba(8, 8, 10, .28) 32%, rgba(8, 8, 10, .78) 82%, var(--ink) 100%);
}
.hero__in {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero__copy { max-width: 660px; }
.hero h1 { margin: 22px 0 0; }
.hero h1 .line { display: block; }
.hero__sub {
  margin: 26px 0 36px;
  max-width: 460px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: #d5cfc5;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.rating { display: flex; align-items: center; gap: 10px; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }
.rating .stars { color: var(--gold); }   /* .rating span kuralini ez */
.rating b { font-weight: 600; font-size: .92rem; }
.rating span { font-size: .82rem; color: var(--muted); }
.hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
.open-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .8rem;
  color: #cfc9bf;
}
.pulse {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #57c98a;
  flex: none;
}
.pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid #57c98a;
  animation: pulse 2.2s var(--ease-out) infinite;
}
.pulse.off { background: #c96b57; }
.pulse.off::after { border-color: #c96b57; }
@keyframes pulse {
  0%   { transform: scale(.6); opacity: .9; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* hero gorsel kartlari */
.hero__cards {
  position: relative;
  height: clamp(320px, 46vw, 520px);
  transform-style: preserve-3d;
}
.hero-card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .9);
  border: 1px solid rgba(245, 241, 232, .12);
  will-change: transform;
}
.hero-card--a { width: 61%; aspect-ratio: 4/5; top: 0; right: 6%; }
.hero-card--a .hero-card__tag { left: auto; right: 12px; }   /* B karti A'nin sol altini kapatiyor */
.hero-card--b { width: 47%; aspect-ratio: 4/5; bottom: -4%; left: 0; }
.hero-card__tag {
  position: absolute;
  left: 12px; bottom: 12px;
  padding: 7px 13px;
  border-radius: 100px;
  background: rgba(8, 8, 10, .68);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero__badge {
  position: absolute;
  z-index: 4;
  left: -6px; top: 2%;
  width: 104px; height: 104px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-lt), var(--gold-dk));
  color: #17120a;
  font-family: var(--display);
  align-content: center;
  gap: 1px;
  line-height: 1;
  box-shadow: 0 18px 40px -16px rgba(201, 163, 73, .8);
  animation: float 6s ease-in-out infinite;
}
.hero__badge b { display: block; font-size: 1.5rem; font-weight: 700; }
.hero__badge span {
  font-family: var(--sans);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-12px) rotate(-2deg); }
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.scroll-cue i {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--gold), transparent);
  transform-origin: top;
  animation: cue 2.4s var(--ease-in-out) infinite;
}
@keyframes cue {
  0%, 100% { transform: scaleY(.25); opacity: .4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ---------- 11. Kayan seritler ---------- */
.marquee {
  position: relative;
  z-index: 3;
  display: flex;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__row {
  display: flex;
  flex: none;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
  animation: slide 34s linear infinite;
}
.marquee:hover .marquee__row { animation-play-state: paused; }
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 42px;
  font-family: var(--display);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #b9b3aa;
  white-space: nowrap;
}
.marquee span svg { width: 13px; height: 13px; color: var(--gold); }
@keyframes slide { to { transform: translateX(-100%); } }

/* ---------- 12. Hikaye ---------- */
.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}
.story__media { position: relative; }
.story__media .main {
  border-radius: var(--r-lg);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.story__media .sub {
  position: absolute;
  right: -6%;
  bottom: -9%;
  width: 46%;
  aspect-ratio: 4/3;
  border-radius: var(--r);
  overflow: hidden;
  border: 6px solid var(--ink);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .9);
}
.story__frame {
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(201, 163, 73, .3);
  border-radius: var(--r-lg);
  z-index: -1;
}
.story__body h2 { margin: 18px 0 22px; }
.sign {
  margin-top: 26px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-lt);
}
.sign span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 6px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 34px 0 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.stat b {
  display: block;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1;
  color: var(--cream);
}
.stat b i { font-style: normal; color: var(--gold); }
.stat > span {           /* dogrudan cocuk: sayac span'i etkilenmesin */
  display: block;
  margin-top: 8px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 12b. Guvence seridi ---------- */
.perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(30px, 4vw, 46px) 0;
}
.perk { display: flex; align-items: flex-start; gap: 18px; }
.perk__i {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  flex: none;
  border: 1px solid rgba(201, 163, 73, .32);
  border-radius: 50%;
  color: var(--gold);
  transition: background .45s var(--ease), color .45s, transform .6s var(--ease-out);
}
.perk:hover .perk__i { background: var(--gold); color: #17120a; transform: rotate(-10deg) scale(1.06); }
.perk__i svg { width: 22px; height: 22px; }
.perk h3 {
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.perk p { font-size: .9rem; max-width: 30ch; }

/* ---------- 13. Hizmetler ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 26px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.svc::before {                                  /* hover dolgusu */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(201, 163, 73, .1), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease-out);
}
.svc:hover::before { transform: scaleX(1); }
.svc__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted-2);
  transition: color .4s;
}
.svc:hover .svc__num { color: var(--gold); }
.svc__name {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  transition: transform .6s var(--ease-out), color .4s;
}
.svc:hover .svc__name { transform: translateX(10px); }
.svc__desc {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 5px;
  transition: transform .6s var(--ease-out);
}
.svc:hover .svc__desc { transform: translateX(10px); }
.svc__time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.svc__time svg { width: 14px; height: 14px; }
.svc__price i {
  font-family: var(--sans);
  font-style: normal;
  font-size: .74em;
  font-weight: 500;
  margin-right: .1em;
  vertical-align: .04em;
}
.svc__price {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--gold);
  min-width: 92px;
  text-align: right;
}
/* hover'da gorsel onizleme (imlec takipli) */
.svc__peek {
  position: fixed;
  z-index: 70;
  width: 232px;
  aspect-ratio: 4/3;
  border-radius: var(--r);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.86) rotate(-4deg);
  transition: opacity .35s var(--ease), transform .5s var(--ease-out);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .95);
  border: 1px solid var(--line);
}
.svc__peek.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-2deg); }
.svc__peek img { width: 100%; height: 100%; object-fit: cover; }
.svc-note { margin-top: 24px; font-size: .8rem; color: var(--muted-2); }

/* hizmet grubu basligi */
.svc-group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 34px 4px 14px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-group::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.svc-list > .svc-group:first-child { padding-top: 20px; }

/* ---------- 14. Parallax serit ---------- */
.band {
  position: relative;
  height: clamp(240px, 38vw, 400px);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}
.band__bg { position: absolute; inset: -14% 0; z-index: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(8, 8, 10, .55) 30%, rgba(8, 8, 10, .6) 70%, var(--ink) 100%);
}
.band__in { position: relative; z-index: 2; padding: 0 var(--pad-x); }
.band__in q {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  quotes: "\201C" "\201D";
}
.band__in cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- 15. Kesim modelleri ---------- */
.styles { background: var(--ink-2); }
.styles__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}
.styles__list { display: grid; }
.style-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 6px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  transition: color .4s, padding-left .5s var(--ease-out);
}
.style-item:first-child { border-top: 1px solid var(--line); }
.style-item__i {
  font-family: var(--display);
  font-style: italic;
  font-size: .95rem;
  color: var(--muted-2);
  transition: color .4s;
}
.style-item__n {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  color: #b4aea5;
  transition: color .4s;
}
.style-item__d {
  display: block;
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--muted-2);
  margin-top: 4px;
  max-width: 34ch;
}
.style-item__go {
  opacity: 0;
  transform: translateX(-8px);
  color: var(--gold);
  transition: opacity .4s, transform .5s var(--ease-out);
}
.style-item__go svg { width: 18px; height: 18px; }
.style-item:hover { padding-left: 14px; }
.style-item:hover .style-item__n { color: var(--cream); }
.style-item.is-on { padding-left: 14px; }
.style-item.is-on .style-item__n { color: var(--cream); }
.style-item.is-on .style-item__i { color: var(--gold); }
.style-item.is-on .style-item__go { opacity: 1; transform: none; }
.style-item__bar {
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px; width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}
.style-item.is-on .style-item__bar { animation: barfill 6s linear forwards; }
@keyframes barfill { to { transform: scaleX(1); } }

.styles__stage {
  position: relative;
  aspect-ratio: 4/4.6;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #101014;
}
.styles__stage figure {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s var(--ease-out), transform 1.4s var(--ease-out);
}
.styles__stage figure.is-on { opacity: 1; transform: scale(1); z-index: 2; }
.styles__stage img { width: 100%; height: 100%; object-fit: cover; }
.styles__stage figure::before {           /* ::before — .ph::after parlamasiyla cakismasin */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 8, 10, .85));
}
.styles__cap {
  position: absolute;
  z-index: 4;
  left: 26px; right: 26px; bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.styles__cap h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.styles__cap p { font-size: .84rem; margin-top: 4px; }
.styles__count {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
}

/* ---------- 16. Galeri ---------- */
.gal__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}
.tabs { display: inline-flex; flex-wrap: wrap; gap: 8px; }
.tab {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s, border-color .3s, background .3s;
}
.tab:hover { color: var(--cream); border-color: rgba(245, 241, 232, .3); }
.tab.is-on { background: var(--gold); border-color: var(--gold); color: #17120a; }

.gal {
  columns: 4;
  column-gap: 14px;
}
.gal__item {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 14px;
  border-radius: var(--r);
  overflow: hidden;
  break-inside: avoid;
  transition: opacity .5s var(--ease), transform .5s var(--ease), filter .6s;
}
.gal__item img { transition: transform 1.1s var(--ease-out), filter .6s; filter: saturate(.85); }
.gal__item:hover img { transform: scale(1.07); filter: saturate(1.05); }
.gal__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 8, 10, .8));
  opacity: 0;
  transition: opacity .5s;
}
.gal__item:hover::before { opacity: 1; }
.gal__cap {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s var(--ease), transform .55s var(--ease-out);
}
.gal__item:hover .gal__cap { opacity: 1; transform: none; }
.gal__item.is-hidden { display: none; }
.gal__item.is-in { animation: popin .6s var(--ease-out) both; }
@keyframes popin {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: none; }
}

/* lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 5vh 6vw;
  background: rgba(6, 6, 8, .94);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb__img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--r);
  transform: scale(.94);
  opacity: 0;
  transition: transform .6s var(--ease-out), opacity .5s;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .9);
}
.lb.is-open .lb__img { transform: none; opacity: 1; }
.lb__cap {
  position: absolute;
  bottom: 4vh; left: 0; right: 0;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.lb__x, .lb__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(20, 20, 26, .6);
  transition: background .3s, border-color .3s, transform .3s;
}
.lb__x:hover, .lb__nav:hover { background: var(--gold); color: #17120a; border-color: var(--gold); }
.lb__x { top: 3vh; right: 4vw; }
.lb__nav svg, .lb__x svg { width: 20px; height: 20px; }
.lb__nav--prev { left: 2vw; top: 50%; transform: translateY(-50%); }
.lb__nav--next { right: 2vw; top: 50%; transform: translateY(-50%); }

/* ---------- 17. Ekip ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.member {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface);
}
.member img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 1.2s var(--ease-out), filter .8s var(--ease);
}
.member:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1); }
.member::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 28%, rgba(8, 8, 10, .72) 62%, rgba(8, 8, 10, .96));
}
.member__body {
  position: absolute;
  z-index: 2;
  left: 18px; right: 18px; bottom: 18px;
}
.member__role {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.member__body h3 { margin: 7px 0 0; font-size: clamp(1.02rem, 1.15vw, 1.22rem); }
.member__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease-out), opacity .5s var(--ease), margin-top .5s;
}
.member:hover .member__meta { max-height: 90px; opacity: 1; }
.member__meta span {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #cbc6bd;
  background: rgba(8, 8, 10, .5);
  backdrop-filter: blur(4px);
}

/* ---------- 18. Yorumlar ---------- */
.reviews { background: var(--ink-2); overflow: hidden; }
.rev__viewport { overflow: hidden; }
.rev__track {
  display: flex;
  gap: 20px;
  transition: transform .8s var(--ease-out);
  cursor: grab;
}
.rev__track.is-drag { cursor: grabbing; transition: none; }
.rev {
  flex: 0 0 calc((100% - 40px) / 3);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  display: grid;
  align-content: start;
  gap: 16px;
  user-select: none;
}
.rev__q { color: var(--gold); opacity: .5; }
.rev__q svg { width: 30px; height: 30px; }
.rev p {
  font-family: var(--display);
  font-size: 1.06rem;
  font-style: italic;
  line-height: 1.55;
  color: #ded8ce;
}
.rev__who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.rev__av {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-lt), var(--gold-dk));
  color: #17120a;
  font-weight: 700;
  font-size: .9rem;
  flex: none;
}
.rev__who b { display: block; font-size: .92rem; font-weight: 600; }
.rev__who > span > span { font-size: .74rem; color: var(--muted-2); }
.rev__ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
}
.dots { display: flex; gap: 8px; }
.dots button {
  width: 26px; height: 3px;
  background: rgba(245, 241, 232, .18);
  border-radius: 2px;
  transition: background .4s, width .4s var(--ease-out);
}
.dots button.is-on { background: var(--gold); width: 44px; }
.arrows { display: flex; gap: 10px; }
.arrow {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  transition: background .35s, border-color .35s, color .35s, transform .35s;
}
.arrow:hover { background: var(--gold); border-color: var(--gold); color: #17120a; }
.arrow:disabled { opacity: .3; cursor: not-allowed; }
.arrow svg { width: 18px; height: 18px; }

/* ---------- 19. SSS ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.3;
  transition: color .3s;
}
.qa__q:hover { color: var(--gold); }
.qa__ico {
  position: relative;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: none;
  transition: border-color .4s, transform .5s var(--ease-out);
}
.qa__ico::before, .qa__ico::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .45s var(--ease-in-out), opacity .3s;
}
.qa__ico::before { width: 13px; height: 1.5px; }
.qa__ico::after  { width: 1.5px; height: 13px; }
.qa.is-open .qa__ico { border-color: var(--gold); transform: rotate(180deg); }
.qa.is-open .qa__ico::after { opacity: 0; transform: translate(-50%, -50%) scaleY(0); }
.qa__a {
  height: 0;
  overflow: hidden;
  transition: height .6s var(--ease-in-out);
}
.qa__a p { padding: 0 60px 26px 4px; font-size: .95rem; }

/* ---------- 20. Randevu (demo) ---------- */
.book {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(201, 163, 73, .1), transparent 60%),
    var(--surface);
  padding: clamp(26px, 4vw, 46px);
  overflow: hidden;
}
.book__steps {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.book__step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color .4s;
}
.book__step i {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  font-size: .7rem;
  transition: background .4s, color .4s, border-color .4s;
}
.book__step.is-on { color: var(--cream); }
.book__step.is-on i { background: var(--gold); border-color: var(--gold); color: #17120a; }
.book__step.is-done i { border-color: var(--gold); color: var(--gold); }
.book__sep { width: 26px; height: 1px; background: var(--line); }

.book__pane { display: none; animation: paneIn .55s var(--ease-out) both; }
.book__pane.is-on { display: block; }
@keyframes paneIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.book__lbl {
  display: block;
  margin-top: 4px;
  margin-bottom: 14px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  flex: none;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .82rem;
  color: #cbc6bd;
  transition: border-color .3s, background .3s, color .3s, transform .3s var(--ease-out);
}
.chip:hover { border-color: rgba(201, 163, 73, .5); transform: translateY(-2px); }
.chip.is-on { background: var(--gold); border-color: var(--gold); color: #17120a; font-weight: 600; }
.chip small { display: block; font-size: .68rem; opacity: .7; }
.chip:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.book__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px; }
.field { display: grid; gap: 8px; }
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-family: inherit;
  font-size: .92rem;
  transition: border-color .3s, background .3s;
}
.field input::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(201, 163, 73, .6);
  background: #101014;
}
.book__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.book__sum { font-size: .84rem; color: var(--muted); }
.book__sum b { color: var(--cream); font-weight: 600; }
.link-in { color: var(--gold); border-bottom: 1px solid rgba(201, 163, 73, .4); }
.link-in:hover { border-bottom-color: var(--gold); }
.book__ok { display: none; text-align: center; padding: 20px 0; }
.book__ok.is-on { display: block; animation: paneIn .6s var(--ease-out) both; }
.tick {
  width: 74px; height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 73, .45);
  display: grid;
  place-items: center;
  color: var(--gold);
}
.tick svg { width: 34px; height: 34px; }
.tick path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: draw .8s .2s var(--ease-out) forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.book__ok h3 { margin-bottom: 10px; }
.demo-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 16px;
  border-radius: 100px;
  background: rgba(201, 163, 73, .1);
  border: 1px solid rgba(201, 163, 73, .28);
  font-size: .74rem;
  color: var(--gold-lt);
}
.demo-note svg { width: 14px; height: 14px; flex: none; }

/* ---------- 21. Iletisim ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
}
.hours { border-top: 1px solid var(--line); }
.hours li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.hours li span:first-child { color: #cbc6bd; }
.hours li span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; }
.hours li.is-today {
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(201, 163, 73, .12), transparent 70%);
}
.hours li.is-today span:first-child { color: var(--cream); font-weight: 600; }
.hours li.is-today span:last-child { color: var(--gold); }
.info { display: grid; gap: 4px; margin-top: 28px; }
.info a, .info div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: .94rem;
  color: #cbc6bd;
  transition: color .3s;
}
.info a:hover { color: var(--gold); }
.info svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.info small {
  display: block;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 2px;
}
.map {
  display: block;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 340px;
  height: 100%;
}
.map img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.4) brightness(.7); }
.map__pin {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.map__pin i {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: #17120a;
}
.map__pin i::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(201, 163, 73, .6);
  border-radius: 50%;
  animation: pulse 2.4s var(--ease-out) infinite;
}
.map__pin svg { width: 24px; height: 24px; }
.map__tag {
  position: absolute;
  z-index: 3;
  left: 18px; bottom: 18px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(8, 8, 10, .8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: .74rem;
  color: var(--muted);
}

/* ---------- 22. Kapanis CTA ---------- */
.close-cta { position: relative; overflow: hidden; text-align: center; }
.close-cta__bg { position: absolute; inset: -12% 0; z-index: 0; }
.close-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.close-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(80% 80% at 50% 50%, rgba(8, 8, 10, .72), rgba(8, 8, 10, .94)),
    linear-gradient(180deg, var(--ink), transparent 25%, transparent 75%, var(--ink));
}
.close-cta__in { position: relative; z-index: 2; padding: clamp(80px, 14vh, 150px) var(--pad-x); }
.close-cta h2 { margin: 20px auto 18px; max-width: 20ch; }
.close-cta p { max-width: 46ch; margin: 0 auto 32px; }
.close-cta .btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- 23. Footer ---------- */
.foot { border-top: 1px solid var(--line); background: var(--ink-2); }
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: clamp(48px, 8vh, 80px) 0 40px;
}
.foot__grid h4 {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.foot__grid li { margin-bottom: 10px; }
.foot__grid a, .foot__grid p { font-size: .9rem; color: #b5afa6; transition: color .3s; }
.foot__grid a:hover { color: var(--gold); }
.foot__brand p { margin-top: 18px; max-width: 34ch; font-size: .9rem; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #cbc6bd;
  transition: background .35s, border-color .35s, color .35s, transform .35s var(--ease-out);
}
.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #17120a;
  transform: translateY(-3px);
}
.socials svg { width: 17px; height: 17px; }
.foot__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  color: var(--muted-2);
}

/* ---------- 24. Yuzen ogeler ---------- */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 75;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(20, 20, 26, .82);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  color: var(--cream);
  opacity: 0;
  transform: translateY(14px) scale(.9);
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease-out), background .3s, color .3s;
}
.to-top.is-on { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold); color: #17120a; }
.to-top svg { width: 18px; height: 18px; }

.mbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 78;
  gap: 8px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 13, .94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mbar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 8px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--cream);
}
.mbar a.pri { background: var(--gold); border-color: var(--gold); color: #17120a; }
.mbar svg { width: 15px; height: 15px; }

/* ---------- 25. Reveal animasyonlari ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="mask"]  { opacity: 1; clip-path: inset(0 0 100% 0); transform: none; transition: clip-path 1.2s var(--ease-out); transition-delay: var(--d, 0s); }
[data-reveal].is-in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }

/* baslik kelime maskesi */
.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split .w > i {
  display: inline-block;
  font-style: inherit;
  transform: translateY(115%) rotate(2deg);
  transition: transform 1.1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.split.is-in .w > i { transform: none; }

/* ---------- 26. Duyarli ---------- */
@media (max-width: 1080px) {
  .gal { columns: 3; }
  .rev { flex-basis: calc((100% - 20px) / 2); }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 940px) {
  .nav__links, .nav__tel { display: none; }
  .burger { display: block; }
  .hero { min-height: auto; padding: 132px 0 72px; }
  .hero__in { grid-template-columns: 1fr; gap: 44px; }
  .hero__cards { height: min(62vw, 420px); max-width: 460px; }
  .hero__badge { left: auto; right: 4%; top: -6%; width: 88px; height: 88px; }
  .hero__cards { margin-top: 8px; }
  .story__grid, .styles__grid, .contact__grid { grid-template-columns: 1fr; }
  .story__media { max-width: 480px; }
  .styles__stage { aspect-ratio: 4/3.6; }
  .team { grid-template-columns: repeat(3, 1fr); }
  /* mobilde sure gizlenmiyor, adin altina iniyor */
  .svc {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    column-gap: 14px;
    row-gap: 6px;
  }
  .svc__num, .svc > div, .svc__price { grid-row: 1; }
  .svc__num { grid-column: 1; align-self: start; padding-top: 3px; }
  .svc > div { grid-column: 2; }
  .svc__price { grid-column: 3; align-self: start; }
  .svc__time { grid-column: 2; grid-row: 2; font-size: .7rem; letter-spacing: .12em; }
  .svc__time svg { width: 12px; height: 12px; }
}
@media (max-width: 720px) {
  /* dar ekranda yatay reveal kaymasi shrink-to-fit'i bozuyordu -> dikey */
  [data-reveal="left"], [data-reveal="right"] { transform: translateY(26px); }
  body { padding-bottom: 68px; }
  .mbar { display: flex; }
  .to-top { bottom: 84px; }
  .gal { columns: 2; column-gap: 10px; }
  .gal__item { margin-bottom: 10px; }
  .team { grid-template-columns: 1fr 1fr; gap: 12px; }
  .rev { flex-basis: 100%; }
  .stats { grid-template-columns: 1fr; gap: 18px; text-align: left; }
  .book__row { grid-template-columns: 1fr; }
  .qa__a p { padding-right: 10px; }
  .styles__cap { left: 18px; right: 18px; }
  .hero__meta { gap: 12px 16px; }
  .hero__badge { display: none; }   /* mobilde puan zaten ust satirda */
  .hero__meta .dot { display: none; }
  .cursor, .cursor-dot { display: none; }
  .sec-num { font-size: 3.2rem; top: 26px; }
  .foot__grid { grid-template-columns: 1fr; }
  .perks { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav__right .btn { display: none; }   /* alt bardaki randevu yeterli */
}
@media (max-width: 420px) {
  .btn { padding: 14px 22px; font-size: .68rem; }
  .mbar a { font-size: .62rem; letter-spacing: .06em; }
}

/* ---------- 27. Hareket azaltma / baski ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], .split .w > i { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .ph img { opacity: 1; transform: none; }
  .cursor, .cursor-dot { display: none; }
}
@media print {
  .nav, .mbar, .to-top, .preload, .drawer, .lb, .cursor, .cursor-dot { display: none !important; }
  body { background: #fff; color: #111; }
}
