/* ==========================================================================
   Bella Nail Art Studio — Ana stil dosyası
   Palet: açık pembe + beyaz
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tasarım token'ları
   -------------------------------------------------------------------------- */
:root {
  /* Pembe skala */
  --pink-50:  #fff7f9;
  --pink-100: #ffeef3;
  --pink-200: #ffdde7;
  --pink-300: #ffc4d7;
  --pink-400: #fba1c0;
  --pink-500: #f2789f;
  --pink-600: #e05c86;
  --pink-700: #c0426a;

  /* Nötr */
  --white:     #ffffff;
  --ink:       #2b2026;
  --ink-soft:  #6e5c65;
  --ink-muted: #9b8a92;
  --line:      #f4e2e9;
  --line-soft: #faf0f4;

  /* Tipografi */
  --font-display: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Ölçü */
  --wrap: 1180px;
  --gutter: 20px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Gölge */
  --shadow-sm: 0 2px 8px rgba(192, 66, 106, .06);
  --shadow:    0 8px 28px rgba(192, 66, 106, .10);
  --shadow-lg: 0 20px 56px rgba(192, 66, 106, .14);

  /* Geçiş */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Sıfırlama ve taban
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--pink-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--pink-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

strong { font-weight: 600; color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--pink-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. Yardımcı sınıflar
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 760px; }

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tint { background: var(--pink-50); }
.section--soft { background: linear-gradient(180deg, var(--white) 0%, var(--pink-50) 100%); }

.section-head { max-width: 620px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink-600);
  margin-bottom: .9em;
}

.lead { font-size: 1.1rem; color: var(--ink-soft); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pink-600);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   4. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-display);
  font-size: .97rem;
  font-weight: 600;
  letter-spacing: -.01em;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--pink-500);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--pink-600); color: #fff; box-shadow: var(--shadow); }

.btn--ghost {
  background: var(--white);
  color: var(--pink-700);
  border-color: var(--pink-200);
}
.btn--ghost:hover { background: var(--pink-50); color: var(--pink-700); border-color: var(--pink-300); }

.btn--soft {
  background: var(--pink-100);
  color: var(--pink-700);
}
.btn--soft:hover { background: var(--pink-200); color: var(--pink-700); }

.btn--wide { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: .88rem; }

/* --------------------------------------------------------------------------
   5. Üst menü
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Header'ın kendisi görünmez — menü, içindeki yüzen kutu */
  background: transparent;
  border: 0;
  padding: 12px 0;
  pointer-events: none;
}
.site-header > .wrap { pointer-events: none; }
.header-inner { pointer-events: auto; }
/* Kaydırınca kutu biraz belirginleşir — altından geçen içerik yazıları bozmasın */
.site-header.is-stuck .header-inner {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 38px rgba(192, 66, 106, .18);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .site-header.is-stuck .header-inner { background: rgba(255, 255, 255, .86); }
}

/* Ana sayfada header video hero'nun ÜZERİNE biner (sticky akışta yer kaplar,
   bu yüzden fixed'e alınır). Hero'nun üst dolgusu header yüksekliğini karşılar.
   Zemin açık kalır: logo koyu bordo olduğu için saydam header'da okunmuyor. */
body.home .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
}

/* Menü kutusu — yuvarlak köşeli, buzlu cam, sayfanın üzerinde yüzer */
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 8px 10px 8px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: 0 8px 30px rgba(192, 66, 106, .12);
  transition: background-color .25s var(--ease), box-shadow .25s var(--ease);
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .header-inner {
    /* Bulanıklık arkayı yumuşatınca daha düşük tint yetiyor */
    background: rgba(255, 255, 255, .74);
    backdrop-filter: saturate(155%) blur(18px);
    -webkit-backdrop-filter: saturate(155%) blur(18px);
  }
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  line-height: 0;
}
.logo__mark { height: 44px; width: auto; }
.logo__type { height: 31px; width: auto; }

/* Footer'da dikey kilit */
.logo--stacked { display: block; }
.logo--stacked img { width: 210px; height: auto; }

/* Gezinme */
.nav { display: flex; align-items: center; gap: 4px; }

.nav a {
  font-family: var(--font-display);
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 9px 13px;
  border-radius: var(--radius-pill);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav a:hover { color: var(--pink-700); background: var(--pink-50); }
.nav a[aria-current="page"] { color: var(--pink-700); background: var(--pink-100); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Alt menü */
.has-sub { position: relative; }
.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 232px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu li { margin: 0; }
.submenu a { display: block; padding: 9px 14px; border-radius: var(--radius-sm); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 19px; height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 19px; height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(116px, 15vh, 165px) 0 clamp(36px, 6vh, 64px);
  background: var(--ink);
  overflow: hidden;
}

/* Arka plan videosu */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* Okunabilirlik katmanı — metin videonun üzerinde net dursun */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg,
      rgba(38, 25, 31, .86) 0%,
      rgba(38, 25, 31, .62) 32%,
      rgba(38, 25, 31, .18) 60%,
      rgba(38, 25, 31, .02) 100%),
    linear-gradient(to top,
      rgba(38, 25, 31, .58) 0%,
      transparent 40%);
}
/* Hafif pembe ton — marka rengiyle bağ kurar */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(1100px 560px at 12% 88%, rgba(242, 120, 159, .17) 0%, transparent 66%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__content { max-width: 720px; }

.hero .eyebrow { color: var(--pink-300); }

.hero h1 {
  color: #fff;
  margin-bottom: .45em;
  text-wrap: balance;
  /* Metin videonun aydınlık bölgelerine denk geldiğinde okunaklı kalsın */
  text-shadow: 0 2px 20px rgba(38, 25, 31, .5);
}
.hero h1 em {
  font-style: normal;
  color: var(--pink-300);
}

.hero__lead {
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  color: rgba(255, 255, 255, .9);
  max-width: 50ch;
  margin-bottom: 2em;
  text-shadow: 0 1px 14px rgba(38, 25, 31, .55);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2.6em; }
.hero__cta .btn--ghost {
  background: rgba(255, 255, 255, .10);
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
  backdrop-filter: blur(6px);
}
.hero__cta .btn--ghost:hover {
  background: rgba(255, 255, 255, .20);
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 40px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}
.hero__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}
.hero__stat span {
  font-size: .85rem;
  color: rgba(255, 255, 255, .72);
}

/* Çalışma saatleri rozeti */
.hero__hours {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(36px, 6vh, 64px);
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .9);
  max-width: 260px;
  line-height: 1.5;
}
.hero__hours b {
  display: block;
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pink-300);
  margin-bottom: 6px;
}

/* Kaydırma ipucu */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius-pill);
  z-index: 1;
}
.hero__scroll::after {
  content: '';
  position: absolute;
  left: 50%; top: 8px;
  width: 3px; height: 7px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .8);
  transform: translateX(-50%);
  animation: heroScroll 1.9s var(--ease) infinite;
}
@keyframes heroScroll {
  0%   { opacity: 0; transform: translate(-50%, -4px); }
  35%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* --------------------------------------------------------------------------
   7. Kart ızgaraları
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--pink-200);
}
.card h3 { margin-bottom: .45em; }
.card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1em; }
.card__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: .4em;
}
.card__link::after { content: '→'; transition: transform .2s var(--ease); }
.card:hover .card__link::after { transform: translateX(3px); }

.card__icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--pink-100);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.card--flat { background: var(--pink-50); border-color: transparent; }
.card--flat:hover { transform: none; box-shadow: none; border-color: var(--pink-200); }

/* Numaralı özellik kartı */
.feature { display: flex; gap: 16px; }
.feature__no {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--pink-500);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
}
.feature h4 { margin-bottom: .3em; }
.feature p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* --------------------------------------------------------------------------
   8. Fiyat tablosu
   -------------------------------------------------------------------------- */
.price-block { margin-bottom: 40px; }
.price-block:last-child { margin-bottom: 0; }
.price-block h3 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-200);
  margin-bottom: 4px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.price-row:last-child { border-bottom: 0; }
.price-row__name { font-weight: 500; }
.price-row__note {
  display: block;
  font-size: .84rem;
  color: var(--ink-muted);
  font-weight: 400;
  margin-top: 2px;
}
.price-row__dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  min-width: 18px;
  transform: translateY(-4px);
}
.price-row__value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--pink-700);
  white-space: nowrap;
}

.price-note {
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: .92rem;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   9. Galeri
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-btn {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: var(--pink-300); color: var(--pink-700); }
.filter-btn[aria-pressed="true"] {
  background: var(--pink-500);
  border-color: var(--pink-500);
  color: #fff;
}

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.gallery__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--pink-200);
  background: linear-gradient(150deg, var(--pink-100), var(--pink-200));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery__item.is-hidden { display: none; }
.gallery__item b {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--pink-700);
  display: block;
}
.gallery__item span {
  font-size: .76rem;
  color: var(--pink-600);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

.gallery-placeholder {
  margin-top: 24px;
  text-align: center;
  font-size: .9rem;
  color: var(--ink-muted);
}

/* --------------------------------------------------------------------------
   10. Yorumlar
   -------------------------------------------------------------------------- */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.quote__stars { color: var(--pink-500); letter-spacing: .12em; margin-bottom: 12px; font-size: .95rem; }
.quote p { font-size: .97rem; color: var(--ink); margin-bottom: 1.2em; }
.quote footer { font-size: .88rem; color: var(--ink-muted); }
.quote footer b { color: var(--ink); font-weight: 600; display: block; }

/* --------------------------------------------------------------------------
   11. Randevu formu
   -------------------------------------------------------------------------- */
.booking {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}

.steps { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.step {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: .87rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.step b {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-600);
  display: grid; place-items: center;
  font-size: .8rem;
}
.step.is-active { color: var(--ink); }
.step.is-active b { background: var(--pink-500); color: #fff; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--ink);
}
.field .hint { font-size: .82rem; color: var(--ink-muted); font-weight: 400; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--pink-50);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pink-400);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 96px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.service-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.service-opt { position: relative; }
.service-opt input {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.service-opt label {
  display: block;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  margin: 0;
  transition: all .2s var(--ease);
}
.service-opt label b { display: block; font-size: .94rem; }
.service-opt label span { font-size: .82rem; color: var(--ink-muted); font-weight: 400; }
.service-opt input:checked + label {
  border-color: var(--pink-500);
  background: var(--pink-50);
}
.service-opt input:focus-visible + label { outline: 3px solid var(--pink-400); outline-offset: 2px; }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 8px; }
.slot {
  padding: 10px;
  text-align: center;
  font-family: var(--font-display);
  font-size: .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: all .2s var(--ease);
}
.slot:hover { border-color: var(--pink-300); }
.slot[aria-pressed="true"] { background: var(--pink-500); border-color: var(--pink-500); color: #fff; }

.form-note {
  font-size: .85rem;
  color: var(--ink-muted);
  margin-top: 14px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   12. SSS akordiyon
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 44px 20px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--pink-700); }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--pink-500);
  /* Süre, panelin açılma animasyonuyla aynı (main.js: 360ms) */
  transition: transform .36s var(--ease), color .2s var(--ease);
  line-height: 1;
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(135deg);
  color: var(--pink-600);
}
.faq details > div {
  padding: 0 44px 22px 0;
  color: var(--ink-soft);
  font-size: .97rem;
}

/* İçerik + yan sütun düzeni (hizmet ve semt sayfaları) */
.layout-aside {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.aside-card { position: sticky; top: 108px; }

@media (max-width: 880px) {
  /* Mobilde tek sütuna iner ve yapışkanlık kalkar */
  .layout-aside { grid-template-columns: 1fr; gap: 32px; }
  .aside-card { position: static; top: auto; }
}

/* Bölge bağlantı rozetleri */
.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.area-links a {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--pink-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  transition: all .2s var(--ease);
}
.area-links a:hover {
  background: var(--pink-500);
  border-color: var(--pink-500);
  color: #fff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   13. CTA şeridi
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--pink-600) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 60px);
  text-align: center;
  color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: .4em; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 auto 1.8em; }
.cta-band .btn--ghost {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.38);
}
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.24); color: #fff; }
.cta-band .btn--primary { background: #fff; color: var(--pink-700); }
.cta-band .btn--primary:hover { background: var(--pink-50); color: var(--pink-700); }
.cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   14. Sayfa başlığı (iç sayfalar)
   -------------------------------------------------------------------------- */
.page-head {
  padding: clamp(44px, 6vw, 72px) 0 clamp(32px, 4vw, 52px);
  background:
    radial-gradient(720px 320px at 82% -20%, var(--pink-200) 0%, transparent 62%),
    var(--pink-50);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-bottom: .4em; }
.page-head p { color: var(--ink-soft); max-width: 62ch; font-size: 1.05rem; margin-bottom: 0; }

.crumbs {
  font-size: .85rem;
  color: var(--ink-muted);
  margin-bottom: 1.4em;
}
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--pink-700); }
.crumbs span { margin: 0 .45em; opacity: .55; }

/* --------------------------------------------------------------------------
   15. İçerik gövdesi (blog / uzun metin)
   -------------------------------------------------------------------------- */
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; }
.prose > *:first-child { margin-top: 0; }
.prose ul li::marker { color: var(--pink-500); }

.callout {
  background: var(--pink-50);
  border-left: 3px solid var(--pink-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 1.6em 0;
  font-size: .96rem;
  color: var(--ink-soft);
}
.callout strong { color: var(--pink-700); }

/* --------------------------------------------------------------------------
   15b. Blog
   -------------------------------------------------------------------------- */
.post-list { display: grid; gap: 18px; }

.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--pink-200);
}
.post-card__meta {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: .7em;
}
.post-card h2 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin-bottom: .5em;
}
.post-card h2 a { color: var(--ink); }
.post-card h2 a:hover { color: var(--pink-700); }
.post-card p { color: var(--ink-soft); font-size: .97rem; margin-bottom: 1em; }

/* Yazı sayfası */
.page-head--post { text-align: left; }
.post-meta {
  font-family: var(--font-display);
  font-size: .88rem;
  color: var(--ink-muted);
  margin-bottom: 0 !important;
}

.post-body { font-size: 1.04rem; line-height: 1.75; }
.post-body h2 {
  margin-top: 1.9em;
  padding-top: .2em;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
}
.post-body h3 {
  margin-top: 1.5em;
  font-size: 1.1rem;
  color: var(--pink-700);
}
.post-body .hours-table { margin: 1.4em 0; font-size: .96rem; }
.post-body .hours-table td { vertical-align: top; padding: 12px 14px 12px 0; }
.post-body .hours-table td:last-child { text-align: left; }
.post-body ol { counter-reset: none; }
.post-body ol li { margin-bottom: .8em; }

.post-cta {
  margin-top: 48px;
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
}
.post-cta h3 { margin-bottom: .4em; }
.post-cta p { color: var(--ink-soft); font-size: .97rem; margin-bottom: 1.4em; }

.post-related { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 28px; }
.post-related h3 { font-size: 1.05rem; margin-bottom: .8em; }
.post-related ul { list-style: none; padding: 0; margin: 0; }
.post-related li { margin-bottom: .7em; }
.post-related a { font-size: .98rem; }

/* --------------------------------------------------------------------------
   16. İletişim / bilgi listesi
   -------------------------------------------------------------------------- */
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  margin: 0;
}
.info-list li:last-child { border-bottom: 0; }
.info-list dt, .info-list b {
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  min-width: 108px;
  flex-shrink: 0;
  font-weight: 500;
}

.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table td { padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }
.hours-table tr:last-child td { border-bottom: 0; }

/* --------------------------------------------------------------------------
   17. Alt bilgi
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--pink-50);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) 0 28px;
  margin-top: clamp(56px, 8vw, 96px);
}
.section:last-of-type + .site-footer { margin-top: 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.1em;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .6em; }
.footer-col a { color: var(--ink-soft); font-size: .93rem; }
.footer-col a:hover { color: var(--pink-700); }
.footer-about p { font-size: .93rem; color: var(--ink-soft); margin-top: 1.2em; max-width: 34ch; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--ink-muted);
}
.footer-bottom a { color: var(--ink-muted); }
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

.social { display: flex; gap: 10px; margin-top: 18px; }
.social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: .85rem;
  color: var(--ink-soft);
  transition: all .2s var(--ease);
}
.social a:hover { background: var(--pink-500); border-color: var(--pink-500); color: #fff; }

/* --------------------------------------------------------------------------
   18. Sabit aksiyon butonları
   -------------------------------------------------------------------------- */
.float-wa {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .36);
  transition: transform .2s var(--ease);
}
.float-wa:hover { transform: scale(1.06); color: #fff; }
.float-wa svg { width: 27px; height: 27px; fill: currentColor; }

/* Mobil alt çubuk */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-bar .btn { flex: 1; padding: 12px 14px; font-size: .9rem; }

/* --------------------------------------------------------------------------
   19. Duyarlı düzen
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .nav-toggle { display: grid; }

  /* Mobil menü, yüzen kutunun hemen altında ayrı bir kart olarak açılır */
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - 150px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 13px 14px; font-size: 1rem; }

  .submenu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--pink-200);
    border-radius: 0;
    padding: 0 0 0 12px;
    margin: 2px 0 6px 14px;
    min-width: 0;
  }

  /* Mobilde randevu ve telefon zaten alt çubukta — header'da logo + menü kalır */
  .header-actions .btn { display: none; }

  .hero { min-height: min(78vh, 640px); }
  .hero__hours { display: none; }
  .hero::before {
    background:
      linear-gradient(160deg, rgba(38,25,31,.62) 0%, rgba(38,25,31,.34) 46%, rgba(38,25,31,.22) 100%),
      linear-gradient(to top, rgba(38,25,31,.78) 0%, transparent 62%);
  }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }

  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .float-wa { bottom: 84px; }
}

@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .service-picker { grid-template-columns: 1fr; }
  .hero { min-height: min(76vh, 600px); }
  .hero__cta .btn { width: 100%; }
  .hero__scroll { display: none; }
  .logo__mark { height: 36px; }
  .logo__type { height: 25px; }
  .card { padding: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   20. Hareket tercihi ve yazdırma
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  /* Hareket tercihi kapalıysa video duraklatılır (main.js) ve ilk karesi
     sabit görsel gibi durur — ayrı bir poster dosyası yok. */
  .hero__scroll { display: none; }
}

@media print {
  .site-header, .site-footer, .float-wa, .mobile-bar, .cta-band { display: none !important; }
  body { padding-bottom: 0; }
}

/* Görünürlük animasyonu */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
