/* ============================================================
   ATELIER BARBER — tasarim sistemi
   Renk dunyasi: kemik / tas / ceviz / koyu zeytin / komur
   Mobil oncelikli; desktop ayri kompozisyon.
   ============================================================ */

:root {
  --bone: #F2EEE6;
  --bone-2: #EAE4D6;
  --stone: #D9D0BE;
  --walnut: #7A5C42;
  --olive: #3F4638;
  --olive-deep: #333A2E;
  --charcoal: #20211F;
  --ink: #26261F;
  --terra: #A85B38;
  --line: rgba(32, 33, 31, .16);
  --line-light: rgba(242, 238, 230, .18);

  --ff-head: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --gut: clamp(1.375rem, 4.5vw, 4.5rem);
  --max: 1280px;
  --navh: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bone);
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--olive); color: var(--bone); }

h1, h2, h3 { font-family: var(--ff-head); font-weight: 520; line-height: 1.08; letter-spacing: -.01em; }
h2 { font-size: clamp(1.75rem, 4.6vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 520; }

.eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--walnut); margin-bottom: 1rem;
}
.section--dark .eyebrow { color: var(--stone); }

.section { padding: clamp(5rem, 10vw, 7.5rem) var(--gut); }
.section__head { max-width: var(--max); margin: 0 auto clamp(2.25rem, 5vw, 4rem); }
.section__sub { margin-top: 1rem; max-width: 46ch; color: rgba(32, 33, 31, .72); }
.section--dark { background: var(--olive); color: var(--bone); }
.section--dark .section__sub { color: rgba(242, 238, 230, .78); }

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.6rem; min-height: 48px;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 2px; border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn--big { padding: 1.05rem 2.1rem; }
.btn--primary { background: var(--charcoal); color: var(--bone); border-color: var(--charcoal); }
.btn--primary:hover { background: var(--olive); border-color: var(--olive); }
.btn--ghost { border-color: rgba(32, 33, 31, .35); color: var(--charcoal); background: rgba(242, 238, 230, .5); backdrop-filter: blur(4px); }
.btn--ghost:hover { border-color: var(--charcoal); background: var(--bone); }
.btn--light { background: var(--bone); color: var(--charcoal); border-color: var(--bone); }
.btn--light:hover { background: var(--bone-2); }
.btn--outline { border-color: var(--line-light); color: var(--bone); }
.btn--outline:hover { border-color: var(--bone); }
.linkbtn {
  display: inline-flex; align-items: center; gap: .5rem; min-height: 44px;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--walnut); border-bottom: 1px solid rgba(122, 92, 66, .4);
  padding: .2rem 0; transition: color .3s, border-color .3s;
}
.linkbtn::after { content: "→"; transition: transform .3s var(--ease); }
.linkbtn:hover { color: var(--terra); border-color: var(--terra); }
.linkbtn:hover::after { transform: translateX(4px); }

.imgwrap { overflow: hidden; border-radius: 3px; background: var(--bone-2); }
.imgwrap img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- intro ---------- */
.intro {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: var(--bone);
  transition: opacity .6s var(--ease), visibility .6s;
}
.intro.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro__logo { position: relative; width: min(46vw, 240px); overflow: hidden; }
.intro__logo img { width: 100%; height: auto; opacity: 0; transform: scale(.97); animation: introLogo 1s var(--ease) .15s forwards; }
.intro__sheen {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(242, 238, 230, .85) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: sheen 1s var(--ease) .7s forwards;
}
@keyframes introLogo { to { opacity: 1; transform: scale(1); } }
@keyframes sheen { to { transform: translateX(120%); } }
.intro.is-skip { display: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem var(--gut);
  background: rgba(242, 238, 230, .95);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.nav.is-solid { background: rgba(242, 238, 230, .92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.nav__brand img { width: auto; height: 54px; transition: height .4s var(--ease); }
.nav.is-solid .nav__brand img { height: 46px; }
.nav__links { display: none; gap: clamp(1.2rem, 2.4vw, 2.2rem); }
.nav__links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: .4rem 0; position: relative; white-space: nowrap;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--charcoal); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__actions { display: flex; align-items: center; gap: .8rem; }
.btn--nav { display: none; padding: .7rem 1.3rem; min-height: 44px; }
.nav__burger { position: relative; width: 44px; height: 44px; flex: none; }
.nav__burger span {
  position: absolute; left: 50%; top: 50%; width: 22px; height: 2px; border-radius: 2px;
  background: var(--charcoal); transition: transform .35s var(--ease);
}
.nav__burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 4px)); }
.nav__burger span:nth-child(2) { transform: translate(-50%, calc(-50% + 4px)); }
.nav__burger.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.mmenu {
  position: fixed; inset: 0; z-index: 90;
  display: flex; flex-direction: column; justify-content: center; gap: 2rem;
  padding: 6rem var(--gut) calc(2.5rem + env(safe-area-inset-bottom, 0px));
  background: var(--bone);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.mmenu.is-open { opacity: 1; visibility: visible; }
.mmenu__links { display: flex; flex-direction: column; gap: .4rem; }
.mmenu__links a {
  font-family: var(--ff-head); font-size: clamp(1.85rem, 7.5vw, 2.35rem); font-weight: 520;
  padding: .35rem 0; line-height: 1.2;
  opacity: 0; transform: translateY(12px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.mmenu.is-open .mmenu__links a { opacity: 1; transform: none; }
.mmenu.is-open .mmenu__links a:nth-child(2) { transition-delay: .05s; }
.mmenu.is-open .mmenu__links a:nth-child(3) { transition-delay: .1s; }
.mmenu.is-open .mmenu__links a:nth-child(4) { transition-delay: .15s; }
.mmenu__hours { font-size: .8rem; letter-spacing: .08em; color: rgba(32, 33, 31, .6); }

/* ---------- hero ----------
   Mobil: kontrollu yukseklikte foto + altta kemik zeminde metin.
   Desktop (>=900): tam ekran overlay kompozisyon (asagida). */
.hero { padding-top: var(--navh); background: var(--bone); }
.hero__media { position: relative; display: block; height: min(56vh, 500px); overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 18%; }
.hero__scrim { display: none; }
.hero__inner {
  padding: 2.2rem var(--gut) .25rem;
  color: var(--charcoal);
}
.hero__title { font-size: clamp(2.05rem, 8vw, 4.6rem); margin-bottom: 1rem; }
.hero__sub { max-width: 36ch; margin-bottom: 1.9rem; color: rgba(32, 33, 31, .7); font-size: 1rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__cta .btn { flex: 1 1 100%; }
.hero__cta .btn--ghost { background: transparent; border-color: rgba(32, 33, 31, .3); backdrop-filter: none; }

/* ---------- bilgi seridi ---------- */
.strip {
  display: grid; gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bone-2);
  padding: 0 var(--gut);
}
.strip__item {
  display: flex; flex-direction: column; gap: .15rem;
  padding: 1.1rem 0; border-bottom: 1px solid var(--line);
}
.strip__item:last-child { border-bottom: 0; }
.strip__k { font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--walnut); }
.strip__v { font-size: .95rem; font-weight: 500; }

/* ---------- hizmetler ----------
   Mobil: tek destek gorseli + kucuk thumbnail'li kompakt satirlar.
   Desktop: buyuk editorial fotograflar (asagida). */
.services__intro {
  max-width: var(--max); margin: 0 auto clamp(2.25rem, 6vw, 3rem);
  height: clamp(200px, 30vh, 300px);
}
.services__intro img { object-position: 50% 28%; }
.services__grid { display: grid; gap: 2rem; max-width: var(--max); margin: 0 auto; }
.service { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 1.1rem; align-items: start; }
.service + .service { border-top: 1px solid var(--line); padding-top: 2rem; }
.service__photo { display: none; }
.service__thumb { width: 64px; height: 64px; border-radius: 14px; object-fit: cover; }
.service__row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.service__meta { font-size: .88rem; font-weight: 600; white-space: nowrap; color: var(--walnut); font-variant-numeric: tabular-nums; }
.service__desc { margin: .4rem 0 .7rem; color: rgba(32, 33, 31, .68); max-width: 42ch; font-size: .94rem; }
.services__extra {
  max-width: var(--max); margin: clamp(2.75rem, 6vw, 3.5rem) auto 0;
  padding-top: 1.4rem; border-top: 1px solid var(--line);
  font-size: .88rem; color: rgba(32, 33, 31, .65);
}

/* ---------- lookbook ----------
   Mobil: yatay kaydirmali mini katalog (tek gorsel + sayac).
   Desktop: dergi kompozisyonu (asagida). */
.lookbook { background: var(--bone-2); }
.lookbook__grid {
  display: flex; gap: var(--gut); max-width: var(--max);
  margin: 0; padding: 0 0 .75rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.lookbook__grid::-webkit-scrollbar { display: none; }
.look { flex: 0 0 100%; scroll-snap-align: center; margin: 0; }
.look .imgwrap { aspect-ratio: 4 / 5; }
.look figcaption { display: flex; gap: .5rem; margin-top: 1rem; align-items: center; }
/* mobilde tek stil adi + sayac yeter */
.look .tag + .tag { display: none; }
.look__count { margin-left: auto; font-size: .72rem; font-weight: 600; letter-spacing: .18em; color: rgba(32, 33, 31, .5); font-variant-numeric: tabular-nums; }
.tag {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: .38rem .75rem; border: 1px solid var(--line); border-radius: 999px;
  color: rgba(32, 33, 31, .75); background: var(--bone);
}

/* ---------- mekan ----------
   Mobil: 1 ana gorsel (dis cephe) + 1 kucuk destek (tezgah). */
.place__grid { display: grid; gap: 1.25rem; max-width: var(--max); margin: 0 auto; }
.place__out { height: clamp(320px, 52vh, 460px); }
.place__in { width: 62%; margin-left: auto; aspect-ratio: 1 / 1; }
.place__in img { object-position: 50% 62%; }

/* ---------- deneyim ----------
   Mobil: once kontrollu yukseklikte foto, sonra bol bosluklu sakin metin. */
.calm__grid { display: grid; gap: 2.25rem; max-width: var(--max); margin: 0 auto; align-items: start; }
.calm__mirror { order: -1; height: clamp(300px, 46vh, 430px); }
.calm__mirror img { object-position: 50% 30%; }
.calm__text h2 { margin-bottom: 1.1rem; max-width: 16ch; }
.calm__text > p { max-width: 40ch; color: rgba(32, 33, 31, .72); }

/* ---------- mobil deneyim ----------
   Mobil: TEK telefon, ekranlar icinde kayar + nokta gostergesi.
   Desktop: uc telefon yan yana (asagida). */
.apppromo { background: var(--bone-2); overflow: hidden; }
.phones { display: none; }
.phone {
  border-radius: 34px; background: var(--charcoal); padding: 10px;
  box-shadow: 0 24px 60px -28px rgba(32, 33, 31, .55);
}
.phone-solo { width: min(76vw, 300px); margin: 0 auto; }
.phone--solo { width: 100%; }
.phone__track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  border-radius: 26px; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.phone__track::-webkit-scrollbar { display: none; }
.phone__track .phone__screen { flex: 0 0 100%; scroll-snap-align: center; border-radius: 0; }
.phone__card--on { background: var(--olive); color: var(--bone); border-color: var(--olive); }
.phone__card--on em { color: var(--stone); }
.phone-solo__dots { display: flex; gap: .45rem; justify-content: center; margin-top: 1.2rem; }
.phone-solo__dots i {
  width: 7px; height: 7px; border-radius: 4px; background: rgba(32, 33, 31, .22);
  transition: width .3s var(--ease), background .3s;
}
.phone-solo__dots i.on { width: 20px; background: var(--olive); }
.phone__screen {
  border-radius: 26px; background: var(--bone); min-height: 480px;
  padding: 1.6rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .6rem;
}
.phone__logo { width: 54px; margin-bottom: .3rem; }
.phone__q { font-family: var(--ff-head); font-size: 1.22rem; font-weight: 520; line-height: 1.2; margin-bottom: .4rem; }
.phone__step { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--walnut); }
.phone__card {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  border: 1px solid var(--line); border-radius: 10px; padding: .75rem .8rem;
  font-size: .84rem; font-weight: 500; background: #fff9;
}
.phone__card em { font-style: normal; font-size: .72rem; color: var(--walnut); white-space: nowrap; }
.phone__btn {
  margin-top: auto; text-align: center; background: var(--charcoal); color: var(--bone);
  border-radius: 10px; padding: .8rem; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.phone__btn--ok { background: var(--olive); }
.phone__days, .phone__slots { display: grid; gap: .45rem; }
.phone__days { grid-template-columns: repeat(4, 1fr); }
.phone__slots { grid-template-columns: repeat(3, 1fr); }
.phone__days i, .phone__slots i {
  font-style: normal; font-size: .74rem; font-weight: 500; text-align: center;
  border: 1px solid var(--line); border-radius: 8px; padding: .55rem .2rem;
  font-variant-numeric: tabular-nums;
}
.phone__days i.on, .phone__slots i.on { background: var(--olive); color: var(--bone); border-color: var(--olive); }
.phone__slots i.off { opacity: .35; text-decoration: line-through; }
.phone__check {
  width: 52px; height: 52px; border-radius: 50%; background: var(--olive); color: var(--bone);
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: .4rem;
}
.phone__sum { border: 1px solid var(--line); border-radius: 10px; padding: .9rem; display: grid; gap: .55rem; background: #fff9; }
.phone__sum p { display: flex; justify-content: space-between; font-size: .8rem; }
.phone__sum span { color: rgba(32, 33, 31, .6); }
.apppromo__note { max-width: var(--max); margin: .5rem auto 0; font-size: .85rem; color: rgba(32, 33, 31, .6); }

/* ---------- final cta ----------
   Mobil: fotografsiz, sade koyu zeytin kapanis karti. */
.final { background: var(--olive-deep); color: var(--bone); }
.final__grid { display: grid; gap: clamp(2.5rem, 6vw, 4rem); max-width: var(--max); margin: 0 auto; align-items: center; }
.final__text { text-align: center; }
.final__text .eyebrow { color: var(--stone); }
.final__text h2 { margin: 0 auto 2rem; max-width: 15ch; }
.final__info { display: grid; gap: 1.4rem; margin-bottom: 2.4rem; }
.final__info dt { font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); margin-bottom: .25rem; }
.final__info dd { font-size: 1.02rem; font-weight: 500; }
.final__cta { display: grid; gap: .8rem; justify-items: center; }
.final__cta > .btn { width: 100%; }
.final__mini { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; width: 100%; }
.final__img { display: none; aspect-ratio: 4 / 5; max-height: 560px; }

/* ---------- footer ---------- */
.footer {
  background: var(--charcoal); color: rgba(242, 238, 230, .75);
  padding: clamp(3rem, 7vw, 3.5rem) var(--gut) calc(2.75rem + env(safe-area-inset-bottom, 0px));
  text-align: center; font-size: .85rem; line-height: 1.7;
}
.footer p { max-width: 34ch; margin-inline: auto; }
.footer img { width: auto; height: 56px; margin: 0 auto 1.5rem; }
.footer p.footer__bd { margin-top: 1rem; font-size: .78rem; color: rgba(242, 238, 230, .5); max-width: none; }
.footer__bd a { white-space: nowrap; }
.footer__bd a { color: rgba(242, 238, 230, .8); border-bottom: 1px solid rgba(242, 238, 230, .3); padding-bottom: 1px; }
.footer__bd a:hover { color: var(--bone); }

/* ---------- sticky mobil cta ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  padding: .5rem var(--gut) calc(.5rem + env(safe-area-inset-bottom, 0px));
  background: rgba(242, 238, 230, .94); backdrop-filter: blur(10px);
  box-shadow: 0 -1px 0 var(--line);
  transform: translateY(110%);
  transition: transform .45s var(--ease);
}
.sticky-cta.is-in { transform: none; }
.sticky-cta .btn { width: 100%; min-height: 46px; padding: .72rem 1.6rem; font-size: .78rem; }

/* ---------- randevu overlay ---------- */
.book { position: fixed; inset: 0; z-index: 150; visibility: hidden; }
.book.is-open { visibility: visible; }
.book__backdrop {
  position: absolute; inset: 0; background: rgba(32, 33, 31, .5);
  opacity: 0; transition: opacity .35s var(--ease);
}
.book.is-open .book__backdrop { opacity: 1; }
.book__panel {
  position: absolute; inset: 0; top: max(1.2rem, env(safe-area-inset-top, 0px));
  display: flex; flex-direction: column;
  background: var(--bone); border-radius: 18px 18px 0 0;
  transform: translateY(100%);
  transition: transform .45s var(--ease);
  overflow: hidden;
}
.book.is-open .book__panel { transform: none; }
.book__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 1.3rem 1.3rem .8rem;
}
.book__brand { font-size: .68rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--walnut); margin-bottom: .2rem; }
.book__head h2 { font-size: 1.5rem; }
.book__close {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  font-size: 1.5rem; line-height: 1; display: grid; place-items: center;
  transition: background .3s, border-color .3s;
}
.book__close:hover { background: var(--bone-2); border-color: var(--charcoal); }
.book__progress { height: 3px; background: var(--line); margin: 0 1.3rem; border-radius: 3px; overflow: hidden; }
.book__progress span { display: block; height: 100%; width: 20%; background: var(--olive); border-radius: 3px; transition: width .4s var(--ease); }
.book__stepinfo { padding: .55rem 1.3rem 0; font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(32, 33, 31, .55); }
.book__body { flex: 1; overflow-y: auto; padding: 1rem 1.3rem 1.3rem; overscroll-behavior: contain; }
.book__foot {
  display: flex; gap: .8rem; justify-content: space-between;
  padding: .9rem 1.3rem calc(.9rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line); background: var(--bone);
}
.book__foot .btn { flex: 1; }
.book__foot .btn--ghost { border-color: var(--line); background: transparent; flex: 0 0 auto; min-width: 96px; }
.book__foot .btn[disabled] { opacity: .4; cursor: not-allowed; }
.book__foot.is-hidden { display: none; }

/* randevu adim icerigi */
.pick { display: grid; gap: .7rem; }
.pick__opt {
  display: flex; justify-content: space-between; align-items: center; gap: .8rem;
  width: 100%; text-align: left;
  border: 1px solid var(--line); border-radius: 10px; padding: 1rem 1.05rem;
  background: #fff8; min-height: 60px;
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.pick__opt:hover { border-color: var(--olive); }
.pick__opt.is-on { border-color: var(--olive); background: var(--olive); color: var(--bone); }
.pick__opt.is-on .pick__meta { color: var(--stone); }
.pick__name { font-weight: 600; font-size: .96rem; }
.pick__meta { font-size: .8rem; color: var(--walnut); white-space: nowrap; font-variant-numeric: tabular-nums; }

.pick--days { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); }
.pick--days .pick__opt { flex-direction: column; align-items: center; justify-content: center; gap: .1rem; padding: .8rem .4rem; min-height: 76px; }
.pick--days .pick__name { font-size: .82rem; letter-spacing: .04em; }
.pick--days .pick__meta { font-size: 1.05rem; font-weight: 600; color: var(--charcoal); }
.pick--days .pick__opt.is-on .pick__meta { color: var(--bone); }

.pick--slots { grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); }
.pick--slots .pick__opt { justify-content: center; padding: .85rem .4rem; min-height: 52px; font-variant-numeric: tabular-nums; font-weight: 600; font-size: .95rem; }
.pick__opt[disabled] { opacity: .38; cursor: not-allowed; text-decoration: line-through; }
.pick__opt[disabled]:hover { border-color: var(--line); }

.bkform { display: grid; gap: 1.1rem; }
.bkform label { display: grid; gap: .35rem; font-size: .8rem; font-weight: 600; letter-spacing: .06em; }
.bkform input {
  font: inherit; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 10px;
  background: #fffc; color: var(--charcoal); min-height: 52px;
}
.bkform input:focus { outline: 2px solid var(--olive); outline-offset: 0; border-color: var(--olive); }
.bkform__note { font-size: .78rem; color: rgba(32, 33, 31, .55); }
.bkform input.is-err { border-color: #B3502F; outline: 1px solid #B3502F; }

.summary { display: grid; gap: .9rem; }
.summary__box { border: 1px solid var(--line); border-radius: 12px; background: #fff8; padding: 1.1rem; display: grid; gap: .8rem; }
.summary__box p { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; }
.summary__box span { color: rgba(32, 33, 31, .55); }
.summary__box b { text-align: right; }

.bkdone { text-align: center; padding: 2rem 0 1rem; display: grid; gap: 1rem; justify-items: center; }
.bkdone__check {
  width: 64px; height: 64px; border-radius: 50%; background: var(--olive); color: var(--bone);
  display: grid; place-items: center; font-size: 1.8rem;
}
.bkdone h3 { font-size: 1.5rem; }
.bkdone .summary__box { width: 100%; text-align: left; }
.bkdone__badge {
  font-size: .78rem; padding: .55rem .9rem; border-radius: 999px;
  background: var(--bone-2); border: 1px solid var(--line); color: rgba(32, 33, 31, .7);
}

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: calc(5.6rem + env(safe-area-inset-bottom, 0px)); z-index: 160;
  pointer-events: none;
  transform: translate(-50%, 150%);
  background: var(--charcoal); color: var(--bone);
  padding: .8rem 1.3rem; border-radius: 999px; font-size: .84rem;
  transition: transform .4s var(--ease), opacity .4s, visibility .4s;
  max-width: min(90vw, 420px); text-align: center;
  opacity: 0; visibility: hidden;
}
.toast.is-in { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

/* ---------- reveal animasyonlari ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
body.js .imgwrap img { transition: transform 1.1s var(--ease); }

/* ============================================================
   DESKTOP — ayri kompozisyon (>= 900px)
   ============================================================ */
@media (min-width: 900px) {

  .nav__links { display: flex; }
  .btn--nav { display: inline-flex; }
  .nav__burger { display: none; }
  .nav { background: transparent; padding: .9rem var(--gut); }
  .nav.is-solid { background: rgba(242, 238, 230, .92); }

  /* hero: tam ekran overlay, metin soldaki dogal negatif alanda */
  .hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 0; isolation: isolate; }
  .hero__media { position: absolute; inset: 0; height: 100%; }
  .hero__media img { position: absolute; inset: 0; object-position: right center; }
  .hero__scrim {
    display: block; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, rgba(242, 238, 230, .82) 0%, rgba(242, 238, 230, .45) 30%, transparent 55%),
                linear-gradient(to top, rgba(32, 33, 31, .18), transparent 30%);
  }
  .hero__inner { position: relative; z-index: 2; width: 100%; color: var(--charcoal); padding: 0 var(--gut); max-width: var(--max); margin: 0 auto; }
  .hero__title { font-size: clamp(3.4rem, 5.2vw, 5rem); max-width: 14ch; }
  .hero__sub { color: rgba(32, 33, 31, .78); font-size: 1.08rem; margin-bottom: 2.2rem; }
  .hero__cta { gap: 1rem; }
  .hero__cta .btn { flex: 0 0 auto; }
  .hero__cta .btn--ghost { background: transparent; }

  .strip { grid-template-columns: repeat(3, 1fr); padding: 0; }
  .strip__item {
    flex-direction: column; align-items: center; text-align: center;
    padding: 1.5rem 1rem; border-bottom: 0; border-right: 1px solid var(--line);
  }
  .strip__item:first-child { border-left: 1px solid var(--line); }

  /* hizmetler: asimetrik uc kolon, buyuk fotograflar */
  .services__intro { display: none; }
  .services__grid { grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
  .service { display: block; }
  .service + .service { border-top: 0; padding-top: 0; }
  .service__photo { display: block; aspect-ratio: 4 / 5; margin-bottom: 1.1rem; }
  .service__thumb { display: none; }
  .service__desc { font-size: 1rem; margin: .45rem 0 .9rem; }
  .service--mid { margin-top: 4.5rem; }
  .service--last { margin-top: 9rem; }
  .service .imgwrap img { transform: scale(1.001); }
  .service:hover .imgwrap img { transform: scale(1.04); }

  /* lookbook: dergi kompozisyonu */
  .lookbook__grid {
    display: grid; grid-template-columns: 7fr 5fr; align-items: end;
    gap: clamp(2rem, 5vw, 3rem); margin: 0 auto; padding: 0; overflow: visible;
  }
  .look { flex: none; }
  .look--offset { margin-bottom: 5.5rem; }
  .look:hover .imgwrap img { transform: scale(1.03); }
  .look .tag + .tag { display: inline-flex; }
  .look__count { display: none; }

  /* mekan: dis cephe + tezgah detayi (kontrollu asimetri) */
  .place__grid { grid-template-columns: 5fr 7fr; align-items: start; gap: clamp(1.5rem, 4vw, 2.5rem); }
  .place__out { height: auto; aspect-ratio: 4 / 5; box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .5); }
  .place__in { width: auto; margin-left: 0; aspect-ratio: 4 / 3; margin-top: 5.5rem; }

  /* deneyim */
  .calm__grid { grid-template-columns: 6fr 6fr; gap: clamp(3rem, 7vw, 6rem); }
  .calm__text { display: grid; justify-items: start; }
  .calm__mirror { order: 0; height: auto; aspect-ratio: 4 / 5; margin-top: 4rem; }

  /* telefonlar: uc cihaz yan yana */
  .phones {
    display: flex; overflow: visible; justify-content: center;
    padding: 1rem 0 0; gap: 2rem; max-width: var(--max); margin: 0 auto;
  }
  .phone { flex: 0 0 250px; }
  .phone--mid { transform: translateY(-2.2rem); }
  .phone-solo { display: none; }
  .apppromo .section__head { text-align: center; }
  .apppromo .section__head .section__sub { margin-inline: auto; }
  .apppromo__note { text-align: center; }

  /* final: sol metin + dis cephe gorseli */
  .final__grid { grid-template-columns: 7fr 5fr; }
  .final__text { text-align: left; }
  .final__text h2 { margin: 0 0 1.6rem; }
  .final__cta { grid-template-columns: auto auto; justify-content: start; justify-items: start; align-items: center; }
  .final__cta > .btn { width: auto; }
  .final__mini { display: flex; width: auto; justify-content: flex-start; }
  .final__img { display: block; }

  /* randevu: sag panel */
  .book__panel {
    inset: 0 0 0 auto; top: 0; width: min(480px, 92vw);
    border-radius: 0;
    transform: translateX(100%);
  }
  .book.is-open .book__panel { transform: none; }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .hero__title { font-size: 3.2rem; }
}

/* buyuk ekran ferahligi */
@media (min-width: 1600px) {
  .hero__media img { object-position: 70% center; }
}

/* sticky CTA yalniz mobil/tablet */
@media (min-width: 900px) {
  .sticky-cta { display: none; }
}
@media (max-width: 899px) {

  /* randevu: mobilde daha az cizgi/kutu, bol bosluk */
  .book__body { padding: 1.25rem 1.4rem 1.5rem; }
  .pick { gap: .8rem; }
  .pick__opt { background: transparent; border-color: rgba(32, 33, 31, .16); border-radius: 12px; }
  .pick__opt.is-on { background: var(--olive); border-color: var(--olive); }
  .summary__box { background: var(--bone-2); border: 0; }
  .bkform input { background: #fff; }
  .book__head { padding: 1.4rem 1.4rem .9rem; }
  .book__progress { margin: 0 1.4rem; }
  .book__stepinfo { padding: .6rem 1.4rem 0; }

  /* mobilde scroll animasyonu daha sakin */
  .reveal { transform: translateY(10px); }
}

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