/* =========================================================
   LAMORE DAVET SALONLARI - Stil Dosyasi
   Tema: premium-minimalist, sicak siyah + sampanya
   Yaklasim: vurgu rengi yok, animasyon yok, bol bosluk
   ========================================================= */

/* -------- 0. Reset & Temel -------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

:root {
  /* Renkler */
  --bg:           #0c0a08;   /* sicak siyah */
  --bg-2:         #141110;   /* yuzey */
  --bg-3:         #1d1814;   /* kart */
  --line:         rgba(200, 144, 96, 0.20);
  --line-strong:  rgba(200, 144, 96, 0.50);

  --ink:          #f4ebd9;   /* ana metin krem */
  --ink-soft:     #cdc1ac;   /* ikincil metin */
  --ink-mute:     #8e8472;   /* sessiz metin */

  --champ:        #c89060;   /* doygun kahve (caramel/cinnamon ara ton) */
  --champ-soft:   #a87850;
  --diamond:      #e6e8ec;   /* Diamond aksent */
  --silver:       #b8bcc2;   /* Silver aksent */

  /* Tipografi */
  --serif:  "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:   "Urbanist", "Inter", -apple-system, sans-serif;
  --script: "Italianno", "Great Vibes", cursive;

  /* Olcu */
  --container:  1240px;
  --pad-x:      clamp(20px, 4vw, 48px);
  --section-y:  clamp(80px, 12vw, 140px);

  /* Tipografi olcek */
  --fs-display: clamp(48px, 9vw, 124px);
  --fs-h1:      clamp(36px, 6vw, 72px);
  --fs-h2:      clamp(28px, 4vw, 48px);
  --fs-h3:      clamp(22px, 2.4vw, 30px);
  --fs-lead:    clamp(16px, 1.4vw, 19px);
  --fs-body:    16px;
  --fs-small:   13px;
  --fs-eyebrow: 12px;
}

/* -------- 1. Govde -------- */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease, opacity .25s ease;
}

a:hover {
  color: var(--champ);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* -------- 2. Tipografi -------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champ);
  margin-bottom: 18px;
}

.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: italic;
  color: var(--champ);
  font-size: 1.6em;
  line-height: 1;
}

/* Tum h2 icindeki script: ust satira ferah blok */
h2 .script {
  display: block;
  line-height: 1;
  font-size: 1.35em;
  margin-bottom: 16px;
}

.lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.7;
}

/* -------- 3. Yardimcilar -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section {
  padding-block: var(--section-y);
}

.section--alt {
  background: var(--bg-2);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-head .lead {
  margin-inline: auto;
  margin-top: 18px;
}

.divider {
  width: 240px;
  height: 36px;
  margin: 28px auto 0;
  color: var(--champ);
  opacity: .8;
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 920px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* -------- 4. Buton -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.btn:hover {
  background: var(--champ);
  color: var(--bg);
  border-color: var(--champ);
}

.btn--solid {
  background: var(--champ);
  color: #ffffff;
  border-color: var(--champ);
}

.btn--solid:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn--ghost {
  border-color: var(--line);
  color: var(--ink-soft);
}

.btn .arrow {
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* -------- 5. Header -------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-block: 28px;
  background: rgba(12, 10, 8, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  overflow: visible;
}

.site-header.is-scrolled {
  padding-block: 16px;
}

.nav {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  align-items: center;
  gap: 0;
  position: relative;
}

/* Logo absolute + yuvarlak zemin: alttan sarkar, zemin halo gibi durur */
.nav__logo {
  color: var(--ink);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: auto;

  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 50% 38%, #1f1a14 0%, #0c0a08 100%);
  border: 1px solid var(--line-strong);
  box-shadow:
    0 22px 50px -14px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  display: grid;
  place-items: center;
  transition: width .3s ease, height .3s ease;
}

.nav__logo img,
.nav__logo svg {
  height: 140px;
  width: auto;
  transition: height .3s ease;
}

.site-header.is-scrolled .nav__logo {
  width: 100px;
  height: 100px;
}

.site-header.is-scrolled .nav__logo img,
.site-header.is-scrolled .nav__logo svg {
  height: 70px;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav__menu--left  { justify-self: end;   grid-column: 1; }
.nav__menu--right { justify-self: start; grid-column: 3; }

/* Drawer wrapper: desktop'ta seffaf (contents), mobilde drawer */
@media (min-width: 981px) {
  .nav__drawer { display: contents; }
}

.nav__menu a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.nav__menu a:hover {
  color: var(--champ);
}

.nav__cta { margin-left: 12px; }

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.nav__toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 20px; }
.nav__toggle span:nth-child(3) { top: 26px; }

.nav__toggle.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  /* Header mobilde kompakt - scroll'da gorsel degisiklik yok, sabit bant */
  .site-header {
    padding-block: 12px;
    background: rgba(12, 10, 8, 0.55);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header.is-scrolled {
    padding-block: 12px;
    background: rgba(12, 10, 8, 0.55);
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .nav__logo {
    justify-self: auto;
    grid-column: auto;
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    background: none;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    place-items: initial;
  }
  .nav__logo img,
  .nav__logo svg { height: 50px; }
  .site-header.is-scrolled .nav__logo {
    width: auto;
    height: auto;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .site-header.is-scrolled .nav__logo img,
  .site-header.is-scrolled .nav__logo svg { height: 50px; }

  .nav__toggle {
    display: block;
    position: relative;
    z-index: 110;
  }

  /* Drawer = full-screen overlay, mobil viewport icin saglam kapatma */
  .nav__drawer {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 90px 24px 50px;
    background-color: #0c0a08;
    background-image: radial-gradient(circle at 50% 30%, #1a1410 0%, #0c0a08 75%);
    z-index: 100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__drawer.is-open {
    display: flex;
  }

  .nav__drawer .nav__menu {
    position: static;
    background: transparent;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 320px;
    visibility: visible;
    opacity: 1;
    transition: none;
    grid-column: auto;
    justify-self: auto;
  }

  .nav__drawer .nav__menu li {
    width: 100%;
    text-align: center;
  }

  .nav__drawer .nav__menu a {
    font-size: 17px;
    display: block;
    padding: 12px 0;
  }

  html.menu-open,
  body.menu-open {
    overflow: hidden;
    height: 100%;
    touch-action: none;
  }
}

/* -------- 6. Hero -------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px var(--pad-x) 120px;
  overflow: hidden;
  isolation: isolate;
}

/* Hero arka plan video — tum hero'yu kaplar */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

/* Karartma overlay — tum hero, metin okunsun */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.25), rgba(0,0,0,0.55) 70%),
    linear-gradient(180deg, rgba(12,10,8,.40) 0%, rgba(12,10,8,.55) 60%, #0c0a08 100%);
  z-index: -1;
}

/* Icerik wrapper (kart degil, sadece center kapsayici) */
.hero__inner {
  width: 100%;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .12;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero__crown {
  color: var(--champ);
  margin: 60px auto 24px;
  width: 60px;
}

.hero__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--champ);
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--serif);
  font-size: var(--fs-display);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.hero__title .script {
  display: block;
  font-size: 0.6em;
  margin-bottom: -.2em;
}

.hero__sub {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 28px auto 18px;
}

.hero__lead {
  max-width: 640px;
  margin: 18px auto 40px;
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--champ), transparent);
}

/* -------- 7. Hakkimizda -------- */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.about__img {
  aspect-ratio: 4/5;
  background-image: url('../img/hakkimizda.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

/* Hafif alt fade — caramel atmosferi destekler */
.about__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,10,8,0.45) 100%);
  pointer-events: none;
}

.about__content h2 .script {
  display: block;
  font-size: 1.25em;
  margin-bottom: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.stat__num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--champ);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 920px) {
  .about { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 20px; }
}

/* -------- 8. Salonlar -------- */
.halls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hall {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 0 0 36px;
  display: flex;
  flex-direction: column;
  transition: border-color .3s ease, transform .3s ease;
}

.hall:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.hall__visual {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hall--diamond .hall__visual {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.18), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(201,169,110,.18), transparent 60%),
    linear-gradient(135deg, #1f1a16, #0e0c0a);
}

.hall--silver .hall__visual {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184,188,194,.18), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(160,160,160,.10), transparent 60%),
    linear-gradient(135deg, #181715, #0c0b0a);
}

.hall--gold .hall__visual {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,169,110,.28), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(184,154,100,.20), transparent 60%),
    linear-gradient(135deg, #221a12, #0e0a08);
}

.hall__visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.06);
  pointer-events: none;
}

.hall__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(0,0,0,.5);
  border: 1px solid var(--line);
  color: var(--ink);
  z-index: 2;
}

.hall--diamond .hall__tag { color: var(--diamond); }
.hall--silver  .hall__tag { color: var(--silver); }
.hall--gold    .hall__tag { color: var(--champ); }

.hall__body { padding: 32px 32px 0; }

.hall__name {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
}

.hall__sub {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champ);
  margin-bottom: 18px;
}

.hall__desc {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 22px;
}

.hall__specs {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  padding-block: 18px;
  border-block: 1px solid var(--line);
}

.spec__num {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}

.spec__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}

.hall__link {
  margin: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champ);
  padding-top: 8px;
  border-top: 1px solid transparent;
  align-self: flex-start;
}

.hall__link:hover { gap: 16px; }

@media (max-width: 980px) {
  .halls { grid-template-columns: 1fr; }
}

/* -------- 9. Hizmetler -------- */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service {
  padding: 44px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}

.service:hover { background: var(--bg-3); }

.service__icon {
  width: 40px;
  height: 40px;
  color: var(--champ);
  margin-bottom: 22px;
}

.service__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.service__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}

@media (max-width: 1100px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services { grid-template-columns: 1fr; } }

/* -------- 10. Konseptler -------- */
.concepts {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: clamp(540px, 70vh, 760px);
}

.concept {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-3);
  overflow: hidden;
}

.concept:nth-child(1) { grid-row: span 2; }

.concept__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(60%) contrast(1.05);
  transition: filter .4s ease, transform .6s ease;
}

.concept:hover .concept__bg {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.04);
}

.concept--c1 .concept__bg { background-image: linear-gradient(135deg, #2a221a, #0c0908); }
.concept--c2 .concept__bg { background-image: linear-gradient(135deg, #1f1c20, #0a0a0c); }
.concept--c3 .concept__bg { background-image: linear-gradient(135deg, #1a1816, #0a0a0a); }
.concept--c4 .concept__bg { background-image: linear-gradient(135deg, #251c14, #0a0808); }
.concept--c5 .concept__bg { background-image: linear-gradient(135deg, #1c1a18, #08080a); }

.concept__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%);
  z-index: 2;
}

.concept__tag {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champ);
  margin-bottom: 10px;
}

.concept__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}

@media (max-width: 980px) {
  .concepts {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .concept { aspect-ratio: 4/3; }
  .concept:nth-child(1) { grid-row: auto; grid-column: span 2; }
}

@media (max-width: 600px) {
  .concepts { grid-template-columns: 1fr; }
  .concept:nth-child(1) { grid-column: auto; }
}

/* -------- 11. Galeri -------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery__item {
  aspect-ratio: 1;
  background: var(--bg-3);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.gallery__item:nth-child(odd)  { background: linear-gradient(135deg, #1d1814, #0c0a08); }
.gallery__item:nth-child(even) { background: linear-gradient(135deg, #181614, #0a0908); }

.gallery__item::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--champ);
  opacity: 0;
  background: rgba(12,10,8,.55);
  transition: opacity .3s ease;
}

.gallery__item:hover::after { opacity: 1; }

.gallery__item--wide { grid-column: span 2; aspect-ratio: 2/1; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
}

/* -------- 11.b Lightbox -------- */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 4, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 40px;
  opacity: 0;
  transition: opacity .25s ease;
}
.lb-overlay.is-open {
  display: flex;
  opacity: 1;
}
.lb-img {
  max-width: 96vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  background: #0c0a08;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--champ, #c9a96e);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  font-family: var(--serif, serif);
  transition: background .2s ease, color .2s ease, transform .2s ease;
  z-index: 2;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(201, 169, 110, 0.15);
  color: #fff;
}
.lb-close { top: 24px; right: 24px; }
.lb-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }
.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--sans, sans-serif);
}
body.lb-open { overflow: hidden; }

@media (max-width: 600px) {
  .lb-overlay { padding: 16px; }
  .lb-close, .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 22px; }
  .lb-close { top: 12px; right: 12px; }
  .lb-prev  { left: 8px; }
  .lb-next  { right: 8px; }
}

/* -------- 12. Referanslar / Yorumlar -------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  padding: 40px 32px;
  border: 1px solid var(--line);
  background: var(--bg-3);
  position: relative;
}

.tcard::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 18px;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--champ);
  opacity: .25;
  line-height: 1;
}

.tcard__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 22px;
}

.tcard__name {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champ);
}

.tcard__date {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
}

@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* -------- 13. SSS -------- */
.faq { max-width: 880px; margin: 0 auto; }

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}

.faq__plus {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
  color: var(--champ);
}
.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .3s ease;
}
.faq__plus::before { top: 8px; left: 0; right: 0; height: 1px; }
.faq__plus::after  { left: 8px; top: 0; bottom: 0; width: 1px; }

.faq__item.is-open .faq__plus::after { transform: scaleY(0); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  color: var(--ink-soft);
  transition: max-height .35s ease, padding .35s ease;
}

.faq__item.is-open .faq__a {
  max-height: 320px;
  padding-bottom: 26px;
}

/* -------- 14. Iletisim -------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.contact__info h3 { margin-bottom: 18px; }

.contact__rows {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.crow {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}

.crow__icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--champ);
}

.crow__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}

.crow__value {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
}

/* form - cizgisiz degil, kart tipi outline */
.form { display: grid; gap: 16px; }

.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }

.field {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: border-color .25s ease;
}

.field:focus-within { border-color: var(--champ); }

.field label {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-mute);
  pointer-events: none;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink);
  font: inherit;
  padding: 36px 18px 16px;
  font-family: var(--sans);
  font-size: 15px;
}

.field textarea { resize: vertical; min-height: 140px; }

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23c89060' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 44px;
  cursor: pointer;
}

/* Acilan dropdown icindeki secenekler (browser default beyaz arkayi onler) */
.field select option {
  background: #1a1612;
  color: #f4ebd9;
  padding: 12px;
}

@media (max-width: 920px) { .contact { grid-template-columns: 1fr; } }

/* -------- 15. Footer -------- */
.site-footer {
  background: #08070b;
  border-top: 1px solid var(--line);
  padding-block: 80px 32px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer__logo { color: var(--ink); margin-bottom: 22px; display: block; }
.footer__logo svg { height: 90px; width: auto; }

.footer__about {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 32ch;
}

.footer__title {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champ);
  margin-bottom: 22px;
}

.footer__list { list-style: none; display: grid; gap: 12px; }
.footer__list a { color: var(--ink-soft); font-size: 14px; }
.footer__list a:hover { color: var(--champ); }

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
}
.footer__social a:hover {
  border-color: var(--champ);
  color: var(--champ);
}

.footer__contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  padding: 22px 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.footer__contact-strip span {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champ);
  margin-right: 6px;
}
.footer__contact-strip a {
  color: var(--ink);
}
.footer__contact-strip a:hover { color: var(--champ); }

.map-wrap iframe { display: block; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}

@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* -------- 16. Detay sayfa basligi -------- */
.page-hero {
  padding: 200px var(--pad-x) 100px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(201,169,110,.10), transparent 60%),
    var(--bg);
}

/* Page hero with background video (salon-diamond / salon-silver) */
.page-hero--video {
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: #0c0a08;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero--video > .container { position: relative; z-index: 1; }
.page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}
.page-hero--video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0.30), rgba(0,0,0,0.55) 70%),
    linear-gradient(180deg, rgba(12,10,8,.40) 0%, rgba(12,10,8,.55) 60%, rgba(12,10,8,.92) 100%);
  z-index: -1;
}

.page-hero h1 .script {
  display: block;
  font-size: .65em;
  margin-bottom: -.15em;
}

.crumbs {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 24px;
}

.crumbs a:hover { color: var(--champ); }
.crumbs span { color: var(--champ); }

/* (Diamond/Silver tema override'lari kaldirildi — tek caramel temada birlik) */

/* -------- 17. Floating Butonlar (whatsapp sol / yukari sag) -------- */
.float-ctas {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 60;
  pointer-events: none;
  padding-inline: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.float-ctas > * { pointer-events: auto; }

.fbtn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--champ);
  border: 1px solid var(--line-strong);
  transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease, transform .25s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}
.fbtn:hover {
  background: var(--champ);
  color: var(--bg);
  border-color: var(--champ);
}
.fbtn svg {
  width: 22px;
  height: 22px;
}

/* Yukari ciks butonu - scroll edilince gozukur */
.fbtn--top {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.fbtn--top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 600px) {
  .fbtn { width: 48px; height: 48px; }
  .fbtn svg { width: 20px; height: 20px; }
  .float-ctas { bottom: 16px; padding-inline: 16px; }
}
