/* ===========================================================
   Tunahan Durdu Erkek Kuaförü — styles.css
   Tema: Dark Luxury · Siyah + Altın + Krem
   Font: Bodoni Moda (display) + Jost (body)
   =========================================================== */

:root {
  --bg:        #060606;
  --bg-2:      #0D0D0D;
  --surface:   #131313;
  --surface-2: #1A1A1A;
  --line:      rgba(212,175,55,.22);
  --line-soft: rgba(255,255,255,.06);

  --gold:      #E6C25C;
  --gold-2:    #D4AF37;
  --gold-deep: #9A7711;
  --gold-grad: linear-gradient(135deg, #F6E27A 0%, #D4AF37 52%, #9A7711 100%);

  --text:      #F6F4EF;
  --text-soft: #B2AEA6;
  --text-mute: #797469;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 26px;
  --shadow: 0 30px 80px -30px rgba(0,0,0,.8);
  --maxw: 1200px;
  --ease: cubic-bezier(.22,1,.36,1);
  color-scheme: dark; /* native kontroller (select, picker) açık metinle render edilsin */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Jost", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.ic { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* Atmosfer: ince grain + radial parıltı */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1100px 600px at 85% -5%, rgba(212,175,55,.12), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(212,175,55,.06), transparent 60%);
}
body > * { position: relative; z-index: 1; }

.container { width: min(var(--maxw), 92%); margin-inline: auto; }
.center { text-align: center; }

/* ---------- Tipografi ---------- */
h1, h2, h3 { font-family: "Bodoni Moda", "Didot", serif; font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }
.eyebrow {
  font-size: .82rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
}

/* ---------- Butonlar ---------- */
.btn {
  --pad: .85rem 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--pad);
  font-family: "Jost", sans-serif; font-weight: 600; font-size: .95rem;
  letter-spacing: .03em; border: 1px solid transparent; border-radius: 100px;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn--lg { --pad: 1.05rem 2rem; font-size: 1rem; }
.btn--gold {
  background: var(--gold-grad); color: #1a1300;
  box-shadow: 0 12px 30px -10px rgba(212,175,55,.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(212,175,55,.7); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Üst Şerit ---------- */
.topbar {
  background: var(--bg-2); border-bottom: 1px solid var(--line-soft);
  font-size: .82rem; color: var(--text-soft);
}
.topbar__inner { display: flex; align-items: center; gap: .9rem; padding: .55rem 0; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__sep { color: var(--text-mute); }
.topbar__phone { margin-left: auto; color: var(--gold); font-weight: 600; transition: opacity .2s; }
.topbar__phone:hover { opacity: .8; }

/* ---------- Navigasyon ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12,10,9,.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s, border-color .3s;
}
.nav.is-scrolled { background: rgba(12,10,9,.92); border-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 1.5rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand__logo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-family: "Bodoni Moda", serif; font-size: 1.05rem; letter-spacing: .04em; }
.brand__text small { font-size: .62rem; letter-spacing: .32em; color: var(--gold); margin-top: 3px; }

.nav__links { display: flex; gap: 1.8rem; margin-left: auto; }
.nav__links a { font-size: .95rem; color: var(--text-soft); position: relative; padding: .3rem 0; transition: color .2s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold-grad); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: .8rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 0; overflow: hidden; }
.hero__glow {
  position: absolute; top: -20%; right: -10%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(202,138,4,.22), transparent 65%);
  filter: blur(40px); pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.7rem); margin: .4rem 0 1.3rem; }
.hero__title em { font-style: italic; color: var(--gold);
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__sub { color: var(--text-soft); font-size: 1.12rem; max-width: 38ch; }
.hero__actions { display: flex; gap: 1rem; margin: 2rem 0 2.6rem; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 2.5rem; border-top: 1px solid var(--line-soft); padding-top: 1.8rem; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: "Bodoni Moda", serif; font-size: 2.2rem; color: var(--gold); line-height: 1; }
.stat__num--star::after { content: " ★"; font-size: 1.1rem; }
.stat__label { font-size: .82rem; color: var(--text-mute); letter-spacing: .04em; margin-top: .35rem; }

.hero__media { position: relative; }
.hero__frame { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); aspect-ratio: 4/5; }
.hero__frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(232,196,87,.25); border-radius: inherit; }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: 1rem; bottom: 1rem;
  display: flex; align-items: center; gap: .7rem;
  background: rgba(20,17,16,.82); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--r); padding: .7rem 1rem;
}
.hero__badge .ic { color: var(--gold); width: 1.7em; height: 1.7em; }
.hero__badge strong { display: block; font-family: "Jost", sans-serif; font-size: .9rem; }
.hero__badge small { color: var(--text-mute); font-size: .75rem; }

/* Hero foto + hafif yukarı-aşağı süzülme (kenar boşluğu için %6 taşma) */
.hero__frame--photo img { position: absolute; left: 0; top: -6%; width: 100%; height: 112%;
  object-fit: cover; animation: heroFloat 3.6s var(--ease) infinite; }
@keyframes heroFloat { 0%, 100% { transform: translateY(-7px); } 50% { transform: translateY(7px); } }

/* Marquee */
.hero__marquee { margin-top: clamp(3rem,6vw,5rem); border-block: 1px solid var(--line-soft); overflow: hidden; padding: .9rem 0; }
.marquee__track { display: flex; gap: 2rem; white-space: nowrap; width: max-content; --marquee-shift: -50%; animation: marquee 26s linear infinite; will-change: transform; }
.marquee__track span { font-family: "Bodoni Moda", serif; font-size: 1.3rem; letter-spacing: .12em; color: var(--text-mute); }
@keyframes marquee { to { transform: translateX(var(--marquee-shift)); } }

/* ---------- Section ---------- */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-block: 1px solid var(--line-soft); }
.section__head { max-width: 620px; margin: 0 auto clamp(2.5rem,5vw,3.5rem); text-align: center; }
.section__title { font-size: clamp(2rem, 4.5vw, 3rem); }
.section__lead { color: var(--text-soft); margin-top: .8rem; }

/* ---------- Hizmetler ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: 2rem 1.8rem; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  position: relative; overflow: hidden;
}
.service::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--gold-grad); opacity: 0; transition: opacity .35s; }
.service:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.service:hover::before { opacity: 1; }
.service__icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px;
  background: rgba(202,138,4,.10); border: 1px solid var(--line); margin-bottom: 1.2rem; }
.service__icon svg { width: 28px; height: 28px; color: var(--gold); }
.service h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.service p { color: var(--text-soft); font-size: .98rem; min-height: 3.2em; }
.service__price { display: inline-block; margin-top: 1rem; font-weight: 600; color: var(--gold); letter-spacing: .02em; }

/* ---------- Fiyatlar ---------- */
.pricecard {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 3.5rem;
  max-width: 920px; margin-inline: auto;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem,4vw,2.8rem);
  box-shadow: var(--shadow);
}
.pricelist { list-style: none; }
.pricelist li { display: flex; align-items: center; gap: .6rem; padding: .8rem .7rem; border-bottom: 1px dashed var(--line-soft); }
.pricelist li:last-child { border-bottom: 0; }
.pricelist span:first-child { color: var(--text); }
.pricelist .dots { flex: 1; border-bottom: 1px dotted var(--text-mute); opacity: .45; align-self: flex-end; margin-bottom: .35em; min-width: 16px; }
.pricelist b { color: var(--gold); font-size: 1.05rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pricelist__hl { background: rgba(202,138,4,.08); border-radius: 10px; box-shadow: inset 3px 0 0 var(--gold-2); border-bottom-color: transparent; }
.pricelist__hl span:first-child { font-weight: 600; }
.pricecard__note { text-align: center; color: var(--text-mute); font-size: .85rem; max-width: 600px; margin: 1.4rem auto 2rem; }

/* ---------- Galeri ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gallery__item { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-soft); position: relative; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item--big { grid-column: span 2; grid-row: span 2; }

/* ---------- Neden Biz ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-bottom: clamp(3rem,6vw,4.5rem); }
.feature { text-align: center; padding: 1.6rem 1.2rem; }
.feature__icon { width: 64px; height: 64px; margin: 0 auto 1.1rem; display: grid; place-items: center;
  border-radius: 50%; background: rgba(202,138,4,.08); border: 1px solid var(--line); }
.feature__icon svg { width: 30px; height: 30px; color: var(--gold); }
.feature h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.feature p { color: var(--text-soft); font-size: .95rem; }

/* ---------- Yorumlar ---------- */
.reviews { max-width: 780px; margin: 0 auto; overflow: hidden; }
.reviews__track { display: flex; transition: transform .6s var(--ease); }
.review { min-width: 100%; text-align: center; padding: 0 1rem; }
.review__stars { color: var(--gold); letter-spacing: .25em; font-size: 1.1rem; margin-bottom: 1rem; }
.review p { font-family: "Bodoni Moda", serif; font-style: italic; font-size: clamp(1.2rem,2.6vw,1.7rem); line-height: 1.4; }
.review footer { margin-top: 1.1rem; color: var(--gold); letter-spacing: .05em; font-weight: 500; }
.reviews__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.8rem; }
.reviews__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--text-mute); opacity: .4; cursor: pointer; transition: opacity .25s, transform .25s, background .25s; }
.reviews__dots button.is-active { opacity: 1; background: var(--gold); transform: scale(1.25); }

/* ---------- Randevu (Booking) ---------- */
.booking {
  max-width: 760px; margin-inline: auto;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.8rem); box-shadow: var(--shadow);
}
.steps { list-style: none; display: flex; justify-content: space-between; gap: .5rem; margin-bottom: 2.2rem; position: relative; }
.steps::before { content: ""; position: absolute; top: 17px; left: 8%; right: 8%; height: 2px; background: var(--line-soft); z-index: 0; }
.step { display: flex; flex-direction: column; align-items: center; gap: .5rem; font-size: .82rem; color: var(--text-mute); position: relative; z-index: 1; flex: 1; letter-spacing: .03em; }
.step span { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg-2); border: 1px solid var(--line-soft); font-weight: 600; color: var(--text-mute); transition: all .3s var(--ease); }
.step.is-active span, .step.is-done span { background: var(--gold-grad); color: #2a1c00; border-color: transparent; }
.step.is-active { color: var(--gold); }
.step.is-done span { font-size: 0; }
.step.is-done span::after { content: "✓"; font-size: 1rem; }

.panel { display: none; animation: fade .4s var(--ease); }
.panel.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.panel__title { font-size: 1.5rem; margin-bottom: 1.4rem; }
.panel__actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.8rem; }
.panel__actions--end { justify-content: flex-end; }

.choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.choice { display: flex; justify-content: space-between; align-items: center; gap: .8rem;
  padding: 1rem 1.1rem; border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  background: var(--bg-2); cursor: pointer; transition: border-color .25s, background .25s, transform .2s; }
.choice:hover { border-color: var(--line); transform: translateY(-2px); }
.choice.is-selected { border-color: var(--gold); background: rgba(212,175,55,.10); }
.choice strong { font-family: "Jost", sans-serif; font-weight: 600; }
.choice small { color: var(--gold); font-weight: 600; white-space: nowrap; }

/* Berber seçim kartları */
.barbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.barber-card { display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center;
  padding: 1.1rem .8rem; border: 1px solid var(--line-soft); border-radius: var(--r); background: var(--bg-2);
  cursor: pointer; transition: border-color .25s, background .25s, transform .2s; }
.barber-card:hover { border-color: var(--line); transform: translateY(-3px); }
.barber-card.is-selected { border-color: var(--gold); background: rgba(212,175,55,.10); }
.barber-card__avatar { width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--line); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-family: "Bodoni Moda", serif; font-size: 1.7rem; color: var(--gold); font-weight: 600; }
.barber-card__name { font-weight: 600; font-size: .95rem; }
.barber-card__role { font-size: .78rem; color: var(--text-mute); }
.field__hint { font-weight: 400; color: var(--gold); letter-spacing: 0; text-transform: none; }

.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; color: var(--text-soft); margin-bottom: .45rem; letter-spacing: .03em; }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem; font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.18); }
.field input.invalid, .field textarea.invalid { border-color: #e0594c; box-shadow: 0 0 0 3px rgba(224,89,76,.18); }
.field input::-webkit-calendar-picker-indicator { filter: invert(.7) sepia(1) saturate(4) hue-rotate(5deg); cursor: pointer; }

/* Özel takvim */
.cal { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--r); padding: 1rem 1.1rem 1.2rem; }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; }
.cal__title { font-family: "Bodoni Moda", serif; font-size: 1.1rem; color: var(--text); font-weight: 600; }
.cal__nav { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line-soft); color: var(--gold); cursor: pointer;
  transition: border-color .2s, background .2s; }
.cal__nav svg { width: 18px; height: 18px; }
.cal__nav:hover:not(:disabled) { border-color: var(--gold); background: rgba(212,175,55,.08); }
.cal__nav:disabled { opacity: .28; cursor: default; }
.cal__week { display: grid; grid-template-columns: repeat(7, 1fr); gap: .3rem; margin-bottom: .45rem; }
.cal__week span { text-align: center; font-size: .72rem; letter-spacing: .05em; color: var(--text-mute);
  text-transform: uppercase; font-weight: 600; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .3rem; }
.cal__day { aspect-ratio: 1; display: grid; place-items: center; border-radius: 10px; background: transparent;
  border: 1px solid transparent; color: var(--text); font: 500 .95rem "Jost", sans-serif; cursor: pointer;
  transition: background .18s, border-color .18s, color .18s; font-variant-numeric: tabular-nums; }
.cal__day:hover:not(.is-disabled):not(.is-selected) { border-color: var(--line); color: var(--gold); }
.cal__day.is-today { border-color: var(--line); color: var(--gold); }
.cal__day.is-selected { background: var(--gold-grad); color: #1a1300; border-color: transparent; font-weight: 700; }
.cal__day.is-disabled { color: var(--text-mute); opacity: .35; pointer-events: none; }
.cal__day--empty { pointer-events: none; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: .55rem; }
.slot { padding: .6rem; text-align: center; border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  background: var(--bg-2); cursor: pointer; font-size: .92rem; transition: all .2s; font-variant-numeric: tabular-nums; }
.slot:hover { border-color: var(--line); }
.slot.is-selected { background: var(--gold-grad); color: #1a1300; border-color: transparent; font-weight: 600; }
.slot.is-disabled { opacity: .35; pointer-events: none; text-decoration: line-through; }
.slots__empty { grid-column: 1 / -1; color: var(--text-mute); font-size: .9rem; padding: .4rem 0; }

.summary { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--r-sm); padding: 1rem 1.2rem; margin-top: 1.4rem; font-size: .95rem; }
.summary div { display: flex; justify-content: space-between; padding: .25rem 0; }
.summary span { color: var(--text-mute); }
.summary b { color: var(--text); font-weight: 600; }

/* Başarı */
.success { text-align: center; padding: 1rem; animation: fade .5s var(--ease); }
.success__check { width: 74px; height: 74px; margin: 0 auto 1.2rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--gold-grad); color: #2a1c00; box-shadow: 0 12px 30px -10px rgba(202,138,4,.6); }
.success__check svg { width: 38px; height: 38px; }
.success h3 { font-size: 1.8rem; margin-bottom: .6rem; }
.success p { color: var(--text-soft); }
.success__hint { font-size: .9rem; margin-top: .6rem; }
.success__actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.8rem; flex-wrap: wrap; }

/* ---------- İletişim ---------- */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: stretch; }
.contact__info { display: flex; flex-direction: column; gap: .8rem; }
.contact__row { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem;
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r);
  transition: border-color .25s, transform .2s; }
a.contact__row:hover { border-color: var(--gold); transform: translateX(4px); }
.contact__ic { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 12px;
  background: rgba(202,138,4,.1); border: 1px solid var(--line); color: var(--gold); }
.contact__ic svg { width: 22px; height: 22px; }
.contact__ic--wa { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.4); color: #25D366; }
.contact__row small { display: block; color: var(--text-mute); font-size: .78rem; letter-spacing: .04em; }
.contact__row strong { font-family: "Jost", sans-serif; font-weight: 600; font-size: 1.02rem; }
.contact__cta { margin-top: .4rem; }
.contact__map { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); min-height: 360px; }
.contact__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: grayscale(.3) contrast(1.05) brightness(.85); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 3rem 0 2rem; }
.footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 2rem; align-items: center; }
.footer__brand { display: flex; align-items: center; gap: .9rem; }
.footer__logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.footer__brand p { line-height: 1.4; }
.footer__brand small { color: var(--text-mute); }
.footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.footer__nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: flex-end; }
.footer__nav a { color: var(--text-soft); font-size: .92rem; transition: color .2s; }
.footer__nav a:hover { color: var(--gold); }
.footer__social { display: flex; gap: .7rem; }
.footer__social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line); color: var(--text-soft); transition: color .25s, border-color .25s, transform .2s; }
.footer__social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer__social svg { width: 20px; height: 20px; }
.footer__copy { grid-column: 1 / -1; border-top: 1px solid var(--line-soft); padding-top: 1.5rem; color: var(--text-mute); font-size: .85rem; }

/* ---------- Yüzen sosyal butonlar ---------- */
.social-fab { position: fixed; left: 1.2rem; bottom: 1.2rem; z-index: 40; display: flex; flex-direction: column; gap: .7rem; }
.social-fab__btn { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; color: #fff;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.5); transition: transform .25s var(--ease); }
.social-fab__btn:hover { transform: translateY(-3px) scale(1.05); }
.social-fab__btn svg { width: 28px; height: 28px; }
.social-fab__btn--wa { background: #25D366; box-shadow: 0 12px 28px -6px rgba(37,211,102,.6); }
.social-fab__btn--ig { background: linear-gradient(45deg, #F58529, #DD2A7B 50%, #8134AF); }

/* ---------- FAB ---------- */
.fab { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 40;
  display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.2rem;
  background: var(--gold-grad); color: #2a1c00; border-radius: 100px; font-weight: 600;
  box-shadow: 0 14px 30px -8px rgba(202,138,4,.6); transition: transform .25s var(--ease), opacity .3s;
  transform: translateY(120%); }
.fab.is-visible { transform: translateY(0); }
.fab:hover { transform: translateY(-3px); }
.fab svg { width: 20px; height: 20px; }

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78%, 320px);
    background: var(--bg-2); border-left: 1px solid var(--line);
    flex-direction: column; gap: 1.4rem; padding: 6rem 2rem 2rem;
    transform: translateX(100%); transition: transform .35s var(--ease); margin: 0;
  }
  .nav__links.is-open { transform: translateX(0); box-shadow: -30px 0 80px rgba(0,0,0,.6); }
  .nav__links a { font-size: 1.2rem; }
  .nav__toggle { display: flex; }
  .nav__cta .btn--gold { display: none; }
  .topbar__inner { justify-content: center; font-size: .76rem; }
  .topbar__phone { margin-left: 0; flex-basis: 100%; text-align: center; }
  .hero__stats { gap: 1.5rem; flex-wrap: wrap; }
  .services { grid-template-columns: 1fr; }
  .pricecard { grid-template-columns: 1fr; gap: 0 2rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__item--big { grid-column: span 2; grid-row: span 1; }
  .choices { grid-template-columns: 1fr; }
  .barbers { grid-template-columns: 1fr; }
  .barber-card { flex-direction: row; justify-content: flex-start; text-align: left; }
  .barber-card__avatar { width: 56px; height: 56px; font-size: 1.2rem; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand, .footer__nav { justify-content: center; }
  .footer__right { align-items: center; }
  .footer__social { justify-content: center; }
  .social-fab__btn { width: 46px; height: 46px; }
  .social-fab__btn svg { width: 24px; height: 24px; }
}
@media (max-width: 420px) {
  body { font-size: 16px; }
  .features { grid-template-columns: 1fr; }
}

/* ---------- Video şeridi (reels) ---------- */
.reels { overflow: hidden; padding: .5rem 0 1rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.reels__track { display: flex; gap: 1rem; width: max-content; --reel-shift: -50%;
  animation: reelScroll 40s linear infinite; will-change: transform; }
.reels__group { display: flex; gap: 1rem; flex: none; }
.reels:hover .reels__track { animation-play-state: paused; }
@keyframes reelScroll { from { transform: translateX(0); } to { transform: translateX(var(--reel-shift)); } }

.reel { position: relative; flex: none; width: 220px; aspect-ratio: 9/16; border-radius: var(--r);
  overflow: hidden; cursor: pointer; background: var(--surface); border: 1px solid var(--line-soft);
  transition: transform .25s var(--ease), border-color .25s; }
.reel:hover { transform: translateY(-4px); border-color: var(--gold); }
.reel video, .reel img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel__play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55)); }
.reel__play svg { width: 52px; height: 52px; fill: #fff; opacity: .92; filter: drop-shadow(0 4px 12px rgba(0,0,0,.5)); transition: transform .25s; }
.reel:hover .reel__play svg { transform: scale(1.12); }
.reel__tag { position: absolute; left: .6rem; bottom: .6rem; display: flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; color: #fff; pointer-events: none; }
.reel__tag svg { width: 16px; height: 16px; fill: #fff; }

@media (max-width: 760px) {
  .reel { width: 160px; }
}

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