/* ═══════════════════════════════════════════════
   ONLY BEAUTY — Blush & Ivory
   Palet: Stitch tasarım sistemi (assets/12615501281508079468)
   ═══════════════════════════════════════════════ */

:root {
  --bg:        #FDF9FA;  /* beyaza yakın sıcak zemin */
  --bg-soft:   #FFF7F8;
  --blush:     #E8AEBD;  /* pudra pembe */
  --blush-lt:  #F5DDE3;  /* açık pembe */
  --rose:      #D98FA4;  /* gül kurusu — CTA */
  --rose-dk:   #C97E95;
  --gold:      #C9A96E;  /* şampanya altını */
  --ink:       #4A3B3F;  /* yumuşak koyu kahve-gri (saf siyah yasak) */
  --ink-soft:  #8A797E;
  --white:     #FFFFFF;
  --shadow-pink: 0 18px 45px -18px rgba(217, 143, 164, .35);
  --r-md: 16px;
  --r-lg: 24px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --nav-h: 76px;
}

/* Site yalnızca açık tema — tarayıcının force-dark motorunu devre dışı bırak */
:root { color-scheme: light only; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* DİKKAT: scroll-behavior: smooth KOYMA!
   Lenis her karede scrollTo çağırır; tarayıcı bunları da yumuşatırsa
   çifte yumuşatma = ~1 sn girdi gecikmesi olur. Anchor smoothness
   app.js'te lenis.scrollTo ile sağlanıyor. */
html { scroll-behavior: auto; }
html.lenis { height: auto; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── Tipografi temel ── */
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; }
em { font-style: italic; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.section { padding: clamp(72px, 10vw, 130px) 0; }

.section__eyebrow {
  font-size: 12px; letter-spacing: .32em; font-weight: 700;
  color: var(--gold); text-align: center; margin-bottom: 14px;
}
.section__title {
  font-size: clamp(30px, 4.2vw, 46px);
  text-align: center; margin-bottom: clamp(38px, 5vw, 64px);
}
.section__title--left { text-align: left; }
.section__title--flush { margin-bottom: 0; }
.section__title em { color: var(--rose); }
.section__eyebrow--left { text-align: left; }
.section__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: clamp(38px, 5vw, 64px);
}
.section__head-note {
  color: var(--ink-soft); font-size: 14px; font-weight: 500;
  text-align: right; padding-bottom: 6px;
}

/* ── Butonlar ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 13px 28px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, background-color .35s, color .35s, border-color .35s;
  will-change: transform;
}
.btn--lg { padding: 16px 34px; font-size: 16px; }
/* Renkli liquid CTA — referanstaki tinted cam kart gibi */
.btn--solid {
  position: relative;
  background: rgba(199, 107, 135, .78); color: var(--white);
  -webkit-backdrop-filter: blur(8px) saturate(1.6);
  backdrop-filter: blur(8px) saturate(1.6);
  box-shadow:
    0 16px 38px -16px rgba(184, 94, 125, .7),
    inset 0 2px 4px rgba(255, 255, 255, .8),
    inset 0 -2px 5px rgba(255, 255, 255, .3),
    inset 2px 0 4px rgba(255, 255, 255, .32),
    inset -2px 0 4px rgba(255, 255, 255, .32);
}
.btn--solid:hover { background: rgba(185, 90, 120, .88); transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255,255,255,.78); color: var(--ink);
  border-color: rgba(217,143,164,.5);
}
.btn--ghost:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }

/* ═══════════ LIQUID GLASS DİLİ ═══════════
   Buzlu cam DEĞİL — sıvı cam: çok şeffaf gövde, hafif blur,
   kenarlarda KALIN beyaz ışık halkası (iç gölgelerle) ve
   çapraz parlama şeridi. Arka plan mercekten görünür gibi. */
.liquid {
  position: relative;
  background: rgba(255, 255, 255, .22);
  -webkit-backdrop-filter: blur(10px) saturate(1.8);
  backdrop-filter: blur(10px) saturate(1.8);
  border: none;
  box-shadow:
    0 18px 50px -20px rgba(217, 143, 164, .55),
    inset 0 2px 5px rgba(255, 255, 255, .95),
    inset 0 -2px 7px rgba(255, 255, 255, .5),
    inset 2px 0 5px rgba(255, 255, 255, .55),
    inset -2px 0 5px rgba(255, 255, 255, .55);
}
.liquid::before { /* çapraz specular parlama */
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  background: linear-gradient(115deg,
    rgba(255,255,255,.6) 0%, rgba(255,255,255,.14) 26%,
    transparent 44%, transparent 66%, rgba(255,255,255,.4) 100%);
  opacity: .75;
}

/* ═══════════ NAVBAR — Liquid Island ═══════════ */
.nav {
  position: fixed; inset: 14px 0 auto 0; z-index: 60;
  display: flex; justify-content: center;
  pointer-events: none; /* sadece ada tıklanır */
}
.nav__island {
  pointer-events: auto;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  -webkit-backdrop-filter: blur(10px) saturate(1.8);
  backdrop-filter: blur(10px) saturate(1.8);
  box-shadow:
    0 18px 50px -20px rgba(217, 143, 164, .55),
    inset 0 2px 5px rgba(255, 255, 255, .95),
    inset 0 -2px 7px rgba(255, 255, 255, .5),
    inset 2px 0 5px rgba(255, 255, 255, .55),
    inset -2px 0 5px rgba(255, 255, 255, .55);
  /* boyut morph'unu JS (WAAPI) sürüyor; CSS sadece radius + zemin */
  transition: border-radius .5s cubic-bezier(.34,1.3,.5,1),
              transform .5s cubic-bezier(.22,1,.36,1),
              background-color .4s;
}
.nav__island::before { /* çapraz specular parlama */
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none; z-index: 2;
  background: linear-gradient(115deg,
    rgba(255,255,255,.6) 0%, rgba(255,255,255,.14) 26%,
    transparent 44%, transparent 66%, rgba(255,255,255,.4) 100%);
  opacity: .75;
}
.nav__bar {
  display: flex; align-items: center; gap: 26px;
  height: 62px; padding: 0 10px 0 20px;
  position: relative; z-index: 3;
  flex-shrink: 0; /* kapalı ada'da küçülüp logoyu yukarı itmesin */
}
.nav__drawer { flex-shrink: 0; } /* drawer da sabit; ada overflow ile kırpar */
/* scroll'da ada hafifçe büzülür (açıkken değil) */
.nav.is-scrolled .nav__island:not(.is-open) {
  background: rgba(255, 247, 248, .42);
  transform: scale(.93);
}
/* ── Mobil drawer — HEP tam boyutta ve statik. Ada overflow:hidden ile kırpar;
   sadece ada'nın kutusu WAAPI ile büyür → içerik reflow OLMAZ, pop YOK ── */
.nav__drawer { position: relative; z-index: 1; }
.nav__drawer-inner > * {
  /* içerik, ada açılırken belirir (kutu kırpması + hafif fade birlikte) */
  opacity: 0; transform: translateY(6px);
  transition: opacity .28s ease, transform .38s cubic-bezier(.22,1,.36,1);
}
/* ── AÇIK durum ── (köşe SABİT kalır — pill kareleşmez, sadece uzar) ── */
.nav__island.is-open .nav__drawer-inner > * {
  opacity: 1; transform: translateY(0);
  transition-delay: calc(var(--i) * 38ms + 120ms); /* kutu büyürken bekle, sonra belir */
}
.nav__logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.nav__logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blush); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
}
.nav__logo-text { font-family: var(--font-head); font-size: 21px; font-weight: 600; white-space: nowrap; }
.nav__logo-text em { color: var(--rose); }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  text-decoration: none; color: var(--ink); font-size: 14.5px; font-weight: 600;
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { padding: 11px 22px; font-size: 14px; }
.nav__burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__burger span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .35s, opacity .35s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Drawer içeriği — genişlik ≤960 media query'de sabitlenir (morph'ta sıkışmaz) */
.nav__drawer-inner {
  box-sizing: border-box;
  display: flex; flex-direction: column; gap: 4px;
  padding: 4px 16px 16px;
}
.nav__drawer-inner a {
  text-decoration: none; color: var(--ink);
  font-family: var(--font-head); font-size: 20px;
  padding: 11px 12px; border-radius: 14px;
  text-align: center;
  transition: background-color .25s, color .25s;
}
.nav__drawer-inner a:not(.drawer-cta):active,
.nav__drawer-inner a:not(.drawer-cta):hover {
  background: rgba(255,255,255,.4); color: var(--rose);
}
.nav__drawer-inner .drawer-cta {
  font-family: var(--font-body); font-size: 15px;
  margin-top: 8px; justify-content: center;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.1s ease;
  /* parallax kaldırıldı: 4K videoyu scroll'da transform'lamak jank yapıyor */
}
.hero__video.is-active { opacity: 1; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(253,249,250,.97) 0%, rgba(253,249,250,.88) 38%, rgba(253,249,250,.45) 64%, rgba(253,249,250,.05) 82%),
    linear-gradient(to top, rgba(253,249,250,.65) 0%, rgba(253,249,250,0) 30%);
}
.hero__content {
  position: relative; z-index: 2;
  width: min(1180px, 92vw); margin-inline: auto;
  padding-top: var(--nav-h);
}
.hero__eyebrow {
  font-size: 12.5px; letter-spacing: .34em; font-weight: 700;
  color: var(--gold); margin-bottom: 24px;
}
/* Düzenli blok kompozisyon: tüm satırlar aynı sol hizada,
   hiyerarşi sadece boyutla kurulur (girinti karmaşası yok).
   Kontrast kuralı: video üstünde soluk gri / açık pembe YASAK. */
.hero__title {
  font-weight: 500; margin-bottom: 26px;
  line-height: 1.08;
}
.hero__l1 { font-size: clamp(26px, 3vw, 40px); color: var(--ink); letter-spacing: .01em; }
.hero__l2 { font-size: clamp(46px, 6.2vw, 80px); }
.hero__l2 em { color: #B85E7D; font-weight: 600; } /* derin gül — açık pembe eriyordu */
.hero__l3 { font-size: clamp(46px, 6.2vw, 80px); }
.hero__dot { font-style: normal; color: var(--gold); }
.hero__sub {
  font-size: clamp(15.5px, 1.6vw, 18px); color: #5E4B51; /* video üstünde gri eriyor, koyu ton */
  margin-bottom: 38px; font-weight: 600;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn--glass {
  position: relative;
  background: rgba(255, 255, 255, .2);
  -webkit-backdrop-filter: blur(10px) saturate(1.8);
  backdrop-filter: blur(10px) saturate(1.8);
  color: var(--ink);
  box-shadow:
    0 14px 34px -16px rgba(217, 143, 164, .45),
    inset 0 2px 4px rgba(255, 255, 255, .95),
    inset 0 -2px 6px rgba(255, 255, 255, .5),
    inset 2px 0 4px rgba(255, 255, 255, .55),
    inset -2px 0 4px rgba(255, 255, 255, .55);
}
.btn--glass:hover { background: rgba(255,255,255,.38); transform: translateY(-2px); }

.hero__petals { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero__petals .petal { animation-name: petalfallLong; }
@keyframes petalfallLong {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--s, 1)); opacity: 0; }
  6%   { opacity: .75; }
  50%  { transform: translate3d(-44px, 420px, 0) rotate(160deg) scale(var(--s, 1)); }
  88%  { opacity: .6; }
  100% { transform: translate3d(30px, 860px, 0) rotate(340deg) scale(var(--s, 1)); opacity: 0; }
}
.hero__scrollcue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.hero__scrollcue-line {
  width: 1.5px; height: 44px; background: var(--gold); position: relative; overflow: hidden;
}
.hero__scrollcue-line::after {
  content: ""; position: absolute; inset: 0; background: var(--bg);
  animation: cue 2.2s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes cue { 0% { transform: translateY(-100%); } 55%, 100% { transform: translateY(100%); } }
.hero__scrollcue-text { font-size: 11px; letter-spacing: .28em; color: var(--ink-soft); font-weight: 700; }

/* Satır satır reveal (GSAP ile oynatılır).
   DİKKAT: overflow:hidden, g/ş/y kuyruklarını keser —
   padding + negatif margin ile kuyruklara nefes alanı açıyoruz. */
.reveal-line {
  display: block; overflow: hidden;
  padding-bottom: .16em; margin-bottom: -.16em;
  padding-right: .08em; /* italik harflerin sağ taşması için */
}
.reveal-line > span { display: block; transform: translateY(115%); }

/* ═══════════ HİZMETLER ═══════════ */
/* Kartlarda "sahte cam": arkaya renk lekeleri + yarı saydam beyaz kart.
   Statik zeminde gerçek blur ile aynı görünür ama GPU maliyeti sıfır. */
.services { position: relative; overflow: hidden; }
.services::before, .services::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.services::before {
  width: 480px; height: 480px; top: 60px; left: -140px;
  background: rgba(232, 174, 189, .5);
}
.services::after {
  width: 420px; height: 420px; bottom: -80px; right: -120px;
  background: rgba(201, 169, 110, .3);
}
.services .container { position: relative; z-index: 1; }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.scard {
  background: rgba(255, 255, 255, .4);
  border: none;
  border-radius: var(--r-lg);
  padding: 34px 30px 30px;
  box-shadow:
    0 14px 38px -22px rgba(217,143,164,.45),
    inset 0 2px 4px rgba(255,255,255,.95),
    inset 0 -2px 6px rgba(255,255,255,.5),
    inset 2px 0 4px rgba(255,255,255,.55),
    inset -2px 0 4px rgba(255,255,255,.55);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s, background-color .45s;
  will-change: transform;
}
.scard:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .58);
  box-shadow:
    0 22px 50px -22px rgba(217,143,164,.6),
    inset 0 2px 4px rgba(255,255,255,1),
    inset 0 -2px 6px rgba(255,255,255,.55),
    inset 2px 0 4px rgba(255,255,255,.6),
    inset -2px 0 4px rgba(255,255,255,.6);
}
.scard__icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--blush-lt); color: var(--rose);
  display: grid; place-items: center; margin-bottom: 20px;
}
.scard__icon svg { width: 28px; height: 28px; }
.scard h3 { font-size: 21px; margin-bottom: 10px; }
.scard p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }
.scard__link {
  font-size: 13.5px; font-weight: 700; letter-spacing: .04em;
  color: var(--rose); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.scard__link span { transition: transform .3s; display: inline-block; }
.scard__link:hover span { transform: translateX(4px); }

/* ═══════════ BOTANİK SÜSLEMELER ═══════════ */
.flor path, .flor use {
  stroke: var(--gold); stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.flor { pointer-events: none; }
.flor--rose {
  position: absolute; right: clamp(8px, 6vw, 110px); top: 40px;
  width: clamp(120px, 16vw, 220px); opacity: .45;
}
.flor--sprig {
  display: block; width: 150px; margin: 0 auto 18px;
  opacity: .7;
}
.flor--sprig path { stroke: var(--rose); stroke-width: 1.3; }
/* hero sağ alt köşe gülü — video üstünde hafif */
.flor--hero {
  position: absolute; right: clamp(16px, 4vw, 70px); bottom: 40px;
  width: clamp(90px, 11vw, 160px); opacity: .55; z-index: 2;
  transform: rotate(8deg);
}
/* galeri altı dal */
.flor--gal { display: block; width: 170px; margin: 26px auto 0; opacity: .55; }
/* CTA yanlarındaki güller */
.flor--cta { position: absolute; bottom: -30px; width: clamp(90px, 10vw, 150px); opacity: .35; }
.flor--cta-l { left: clamp(8px, 5vw, 80px); transform: rotate(-14deg); }
.flor--cta-r { right: clamp(8px, 5vw, 80px); transform: rotate(14deg) scaleX(-1); }
.flor--cta use { stroke: var(--rose); }
/* footer üstü sarmaşık ayracı */
.flor--vine { display: block; width: min(1180px, 92vw); height: 44px; margin: 0 auto 40px; opacity: .5; }

/* Eyebrow'ların önünde minik çiçek tomurcuğu */
.section__eyebrow::before, .hero__eyebrow::before {
  content: ""; display: inline-block; vertical-align: -2px;
  width: 13px; height: 13px; margin-right: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='%23C9A96E' stroke-width='2.4'%3E%3Ccircle cx='20' cy='20' r='3.2'/%3E%3Cellipse cx='20' cy='10' rx='3.6' ry='6'/%3E%3Cellipse cx='20' cy='10' rx='3.6' ry='6' transform='rotate(72 20 20)'/%3E%3Cellipse cx='20' cy='10' rx='3.6' ry='6' transform='rotate(144 20 20)'/%3E%3Cellipse cx='20' cy='10' rx='3.6' ry='6' transform='rotate(216 20 20)'/%3E%3Cellipse cx='20' cy='10' rx='3.6' ry='6' transform='rotate(288 20 20)'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

/* Kart köşelerine filigran çiçek */
.scard, .rcard { position: relative; overflow: hidden; }
.scard::after, .rcard::after {
  content: ""; position: absolute; right: -18px; bottom: -18px;
  width: 90px; height: 90px; opacity: .1; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='%23B85E7D' stroke-width='1.6'%3E%3Ccircle cx='20' cy='20' r='3.2'/%3E%3Cellipse cx='20' cy='10' rx='3.6' ry='6'/%3E%3Cellipse cx='20' cy='10' rx='3.6' ry='6' transform='rotate(72 20 20)'/%3E%3Cellipse cx='20' cy='10' rx='3.6' ry='6' transform='rotate(144 20 20)'/%3E%3Cellipse cx='20' cy='10' rx='3.6' ry='6' transform='rotate(216 20 20)'/%3E%3Cellipse cx='20' cy='10' rx='3.6' ry='6' transform='rotate(288 20 20)'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  transform: rotate(-12deg);
  transition: opacity .45s, transform .45s;
}
.scard:hover::after { opacity: .22; transform: rotate(6deg) scale(1.08); }

/* ═══════════ DENEYİM ═══════════ */
.experience {
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 50%, var(--bg) 100%);
}
.experience__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.experience__media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-pink);
}
.experience__media img, .experience__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.experience__media-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 20% 15%, #F9E4EA 0%, transparent 55%),
    radial-gradient(110% 90% at 85% 80%, #F1CDD8 0%, transparent 60%),
    linear-gradient(160deg, #FBEFF2 0%, #F5DDE3 100%);
}
.experience__text .section__eyebrow { text-align: left; }
.experience__list { list-style: none; margin-top: 34px; display: grid; gap: 28px; }
.experience__list li {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(201,169,110,.35); /* ince altın ayraç */
}
.experience__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.experience__num {
  font-family: var(--font-head); font-style: italic;
  font-size: 22px; color: var(--gold); line-height: 1.3; min-width: 40px;
}
.experience__list h3 { font-size: 19px; margin-bottom: 5px; }
.experience__list p { font-size: 14.5px; color: var(--ink-soft); }

/* ═══════════ GALERİ ═══════════ */
.gallery__grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
}
.gallery__item {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 12px 34px -22px rgba(217,143,164,.4);
}
.gallery__item img, .gallery__item video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__fallback { position: absolute; inset: 0; }
.g1 { background: radial-gradient(130% 100% at 30% 20%, #FAE7EC 0%, transparent 60%), linear-gradient(150deg, #F7DFE6 0%, #EFC4D0 100%); }
.g2 { background: radial-gradient(120% 100% at 70% 30%, #FDF3F5 0%, transparent 55%), linear-gradient(200deg, #F5DDE3 0%, #E8AEBD 120%); }
.g3 { background: radial-gradient(140% 110% at 20% 80%, #FBEBEF 0%, transparent 60%), linear-gradient(120deg, #F2D2DB 0%, #E5A9BA 100%); }
.g4 { background: radial-gradient(100% 120% at 80% 20%, #FCF0F3 0%, transparent 50%), linear-gradient(170deg, #F6E0E6 0%, #ECBAC8 100%); }
.gallery__note { text-align: center; margin-top: 30px; color: var(--ink-soft); font-size: 14px; }

/* ═══════════ YORUMLAR ═══════════ */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.rcard {
  background: var(--white);
  border: 1px solid rgba(217,143,164,.22);
  border-radius: var(--r-lg); padding: 32px 28px;
  box-shadow: 0 10px 32px -20px rgba(217,143,164,.28);
}
.rcard__stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 16px; font-size: 15px; }
.rcard p { font-size: 15px; margin-bottom: 18px; font-style: italic; font-family: var(--font-head); line-height: 1.6; }
.rcard footer { font-size: 13.5px; font-weight: 700; color: var(--rose); }

/* ═══════════ CTA BANDI ═══════════ */
.ctaband {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--blush-lt) 0%, #FBEDF1 55%, var(--blush-lt) 100%);
  padding: clamp(64px, 8vw, 100px) 0;
}
/* İpek video arka planı: slot sistemi videoyu buraya enjekte eder */
.ctaband__bg { position: absolute; inset: 0; }
.ctaband__bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.ctaband__bg::after { /* okunurluk tülü — video parlak, metin koyu kalmalı */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg,
    rgba(245,221,227,.82) 0%, rgba(251,237,241,.55) 50%, rgba(245,221,227,.82) 100%);
}
.ctaband__inner { text-align: center; position: relative; z-index: 1; }

/* Süzülen gül yaprakları — sadece transform+opacity, ucuz */
.ctaband__petals { position: absolute; inset: 0; pointer-events: none; }
.petal {
  position: absolute; top: -30px;
  width: 16px; height: 20px;
  background: radial-gradient(120% 120% at 30% 25%, #F6D7DF 0%, #E8AEBD 70%, #DD9CAF 100%);
  border-radius: 62% 38% 55% 45% / 60% 55% 45% 40%;
  opacity: 0;
  animation: petalfall linear infinite;
  will-change: transform, opacity;
}
.petal:nth-child(1) { left: 12%; animation-duration: 11s; animation-delay: 0s;   --s: .9; }
.petal:nth-child(2) { left: 28%; animation-duration: 14s; animation-delay: 3.5s; --s: .7; }
.petal:nth-child(3) { left: 46%; animation-duration: 12s; animation-delay: 7s;   --s: 1.05; }
.petal:nth-child(4) { left: 62%; animation-duration: 15s; animation-delay: 1.5s; --s: .8; }
.petal:nth-child(5) { left: 78%; animation-duration: 13s; animation-delay: 5s;   --s: .95; }
.petal:nth-child(6) { left: 90%; animation-duration: 16s; animation-delay: 9s;   --s: .65; }
@keyframes petalfall {
  0%   { transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--s, 1)); opacity: 0; }
  8%   { opacity: .85; }
  50%  { transform: translate3d(-34px, 220px, 0) rotate(150deg) scale(var(--s, 1)); }
  85%  { opacity: .7; }
  100% { transform: translate3d(22px, 460px, 0) rotate(320deg) scale(var(--s, 1)); opacity: 0; }
}
.ctaband h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 14px; }
.ctaband p { color: var(--ink-soft); margin-bottom: 30px; font-weight: 500; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--bg); padding-top: clamp(56px, 7vw, 90px); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer__logo { margin-bottom: 14px; }
.footer__tag { color: var(--ink-soft); font-size: 14.5px; max-width: 30ch; }
.footer__col h3 { font-size: 17px; margin-bottom: 14px; }
.footer__col p { font-size: 14.5px; margin-bottom: 6px; }
.footer__muted { color: var(--ink-soft); font-size: 13px; }
.footer__link { color: var(--rose); font-weight: 700; font-size: 14.5px; text-decoration: none; }
.footer__link:hover { text-decoration: underline; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0 26px; font-size: 13px;
  border-top: 1px solid rgba(201,169,110,.35); /* ince altın çizgi */
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 960px) {
  .services__grid, .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .experience__grid { grid-template-columns: 1fr; }
  .experience__media { aspect-ratio: 16 / 10; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  /* Mobil nav: kapalı = kompakt kutu (statik içeriği kırpar), açık = geniş kart.
     Boyut morph'unu JS(WAAPI) sürer; içerik sabit genişlik → asla sıkışmaz. */
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__bar { justify-content: space-between; gap: 14px; width: 100%; height: 58px; }
  /* köşe SABİT 29px: 58px'lik kapalı pill'de tam stadium (yuvarlak uçlu),
     uzayınca aynı yuvarlaklıkta kart — kareleşme yok */
  .nav__island { width: min(82vw, 292px); height: 58px; border-radius: 29px; }
  .nav__island.is-open { width: min(88vw, 320px); height: auto; } /* AÇIK: sadece uzar */
  .nav__drawer-inner { width: min(88vw, 320px); }                 /* içerik = açık genişlik */
  .nav__logo-text { font-size: 19px; }                            /* uzun ad tek satır sığsın */
  .nav__logo-mark { width: 34px; height: 34px; font-size: 14px; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section__head-note { text-align: left; }
}
/* Desktop: drawer hiç yok (mobilde grid'e döner) */
@media (min-width: 961px) { .nav__drawer { display: none; } }
@media (max-width: 680px) {
  .nav__bar { padding: 0 8px 0 16px; } /* yükseklik 58px (kapalı ada ile aynı) */
  .services__grid, .reviews__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery__item--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 6px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal-line > span { transform: none; }
  .hero__video { transform: none; }
}
