/* ==========================================================================
   The Majestic Nails Center — stil dosyası
   Token mimarisi: primitive → semantic → component. Mobil öncelikli.
   Tema: krem/şampanya zemin + altın vurgu (logo paletinden).
   ========================================================================== */

/* ---------- Fontlar (self-host, Türkçe + Latin alt kümesi) ---------- */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(../fonts/cinzel.woff2) format('woff2-variations'), url(../fonts/cinzel.woff2) format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url(../fonts/cormorant-italic.woff2) format('woff2-variations'), url(../fonts/cormorant-italic.woff2) format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url(../fonts/montserrat.woff2) format('woff2-variations'), url(../fonts/montserrat.woff2) format('woff2');
}

/* ---------- Tokenlar ---------- */
:root {
  /* primitive — koyu tonlar yalnızca açılış ekranı ve metin için kaldı */
  --ink-950: #0b0a09;
  --ink-900: #11100e;
  --ink-850: #171613;
  --ink-800: #1a1815;
  --ink-700: #3a352d;
  --ink-500: #5e564a;
  --ivory-50: #fdfbf7;
  --ivory-100: #f7f2e9;
  --ivory-200: #f0e8da;
  --ivory-300: #e9dfcc;
  --gold-900: #5f4718;
  --gold-800: #6f5320;
  --gold-700: #7a5a22;
  --gold-600: #a8843f;
  --gold-500: #c9a45c;
  --gold-400: #d9bb7a;
  --gold-300: #e9d3a0;
  --gold-200: #f4e6c3;

  /* semantic */
  --bg: var(--ivory-100);
  --bg-raised: var(--ivory-200);
  --bg-alt: var(--ivory-300);
  --bg-card: #fffdf9;
  --text: var(--ink-800);
  --text-muted: var(--ink-500);
  --accent: var(--gold-700);
  --accent-soft: var(--gold-600);
  --line: rgba(26, 24, 21, .13);
  --line-strong: rgba(122, 90, 34, .42);
  /* büyük başlıklar için metalik altın (açık zeminde okunur tonlar) */
  --gold-gradient: linear-gradient(100deg, #6a4f1c 0%, #b08a3c 28%, #8a6a2f 48%, #c19a4e 68%, #6a4f1c 100%);
  /* butonlar için parlak metalik altın (üstünde koyu metin) */
  --gold-gradient-btn: linear-gradient(100deg, #8a6a2f 0%, #e9d3a0 30%, #c9a45c 50%, #f4e6c3 70%, #a8843f 100%);
  --shadow-soft: 0 30px 60px -30px rgba(70, 52, 20, .35);
  --shadow-card: 0 20px 45px -28px rgba(70, 52, 20, .45);

  /* tipografi */
  --font-display: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* düzen */
  --gutter: clamp(20px, 5vw, 64px);
  --container: 1240px;
  --section-y: clamp(88px, 13vw, 168px);
  --header-h: 68px;
  --dock-h: 72px;
  --arch: 999px 999px 6px 6px;

  /* hareket */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --dur-press: 140ms;
  --dur: 320ms;
  --dur-reveal: 1000ms;
}

/* ---------- Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  scrollbar-gutter: stable;
  background: var(--bg);
}
html.is-loading { overflow: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
figure { margin: 0; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a, button, summary { touch-action: manipulation; }
.btn, .menu-toggle, .video-toggle, summary, .link-arrow { -webkit-user-select: none; user-select: none; }
address { font-style: normal; }
ul, ol { margin: 0; padding: 0; }

:focus-visible { outline: 2px solid var(--gold-700); outline-offset: 3px; border-radius: 2px; }

::selection { background: var(--gold-300); color: var(--ink-900); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1.15em; height: 1.15em; flex: none; }

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

.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 200;
  padding: 12px 18px; background: var(--ink-900); color: var(--gold-200); font-weight: 600;
  border-radius: 4px; transition: top var(--dur) var(--ease-out);
}
.skip-link:focus { top: 12px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }

/* ince kâğıt dokusu */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Tipografi ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 0 20px;
  font-size: .72rem; font-weight: 600; line-height: 1.2;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; opacity: .55; }

.section-title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 600;
  /* 8.4vw tavanı: dar telefonlarda "MÜŞTERİLERİMİZİN" gibi uzun kelimeler taşıp kesilmesin */
  font-size: min(clamp(2rem, 1.35rem + 3.1vw, 3.75rem), 8.4vw);
  line-height: 1.08;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-title em, .hero__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: 1.14em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-800);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: .02em;
}

.muted { color: var(--text-muted); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px;
  border-radius: 999px;
  font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  white-space: nowrap;
  transition: transform var(--dur-press) var(--ease-out), background-position .6s var(--ease-out), background-color var(--dur), color var(--dur), border-color var(--dur), box-shadow var(--dur);
}
.btn:active { transform: scale(.97); }
.btn--sm { min-height: 44px; padding: 0 20px; font-size: .7rem; }
.btn--gold {
  color: #19130a;
  background: var(--gold-gradient-btn);
  background-size: 220% 100%;
  background-position: 0% 0;
  box-shadow: 0 14px 30px -14px rgba(122, 90, 34, .55), inset 0 1px 0 rgba(255, 255, 255, .45);
}
.btn--ghost {
  color: var(--gold-800);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .55);
}
@media (hover: hover) and (pointer: fine) {
  .btn--gold:hover { background-position: 100% 0; box-shadow: 0 18px 36px -14px rgba(122, 90, 34, .7), inset 0 1px 0 rgba(255, 255, 255, .45); }
  .btn--ghost:hover { border-color: var(--gold-700); background: #fff; }
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px;
  font-size: .74rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-800);
  background: linear-gradient(currentColor, currentColor) 0 calc(100% - 10px) / 100% 1px no-repeat;
  transition: background-size .5s var(--ease-out), color var(--dur);
}
.link-arrow .icon { transition: transform .4s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .link-arrow:hover { background-size: 40% 1px; }
  .link-arrow:hover .icon { transform: translate(3px, -3px); }
}

/* ---------- Kemer (salonun kemerli aynalarından gelen imza form) ---------- */
.arch { position: relative; overflow: hidden; border-radius: var(--arch); background: var(--bg-alt); isolation: isolate; }
.arch img, .arch video { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   AÇILIŞ ANİMASYONU (koyu sahne — logo ışıltısı için bilinçli)
   ========================================================================== */
.preloader {
  --t: 1;
  position: fixed; inset: 0; z-index: 100;
  display: none; place-items: center;
  background:
    radial-gradient(120% 80% at 50% 36%, rgba(255,255,255,.92) 0%, rgba(249,244,234,.95) 36%, rgba(238,227,204,.98) 72%),
    linear-gradient(180deg, #fffcf7 0%, #f6efe3 100%);
  clip-path: inset(0 0 0 0);
  /* JS hiç çalışmazsa bile kendiliğinden kalkar */
  animation: pl-failsafe .6s 5s forwards;
}
.js .preloader { display: grid; }
.intro-short .preloader { --t: .4; }
@keyframes pl-failsafe { to { opacity: 0; visibility: hidden; } }

.pl-inner { display: grid; justify-items: center; gap: 18px; padding: 24px; text-align: center; transition: transform .8s var(--ease-in-out), opacity .6s; }
.pl-gem { width: clamp(96px, 26vw, 132px); height: auto; overflow: visible; }

.pl-outline { fill: none; stroke: #b8913f; stroke-width: .9; stroke-linejoin: round; stroke-dasharray: 100; stroke-dashoffset: 100; }
.pl-facet { opacity: 0; transform-origin: 32px 25px; transform: scale(.55); }
.pl-rays line { transform-origin: 32px 22px; transform: scale(0); opacity: 0; }
.pl-shine { transform: translateX(0); }

.pl-word {
  display: flex; justify-content: center; max-width: 100%;
  margin: 6px 0 0; overflow: hidden;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.25rem, 5.9vw, 2.9rem); line-height: 1.15; letter-spacing: .1em;
  color: #6f5320; text-shadow: 0 10px 24px rgba(185, 145, 63, .16);
}
.pl-word span { display: inline-block; transform: translateY(110%); }
.pl-gap { width: .45em; }
.pl-line { width: 0; height: 1px; background: var(--gold-gradient-btn); }
.pl-sub { margin: 0; font-size: .64rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-800); opacity: 0; }

.intro-play .pl-outline { animation: pl-draw calc(1.1s * var(--t)) var(--ease-in-out) forwards; }
.intro-play .pl-facet { animation: pl-facet calc(.7s * var(--t)) var(--ease-out) forwards; animation-delay: calc((.55s + var(--i) * 60ms) * var(--t)); }
.intro-play .pl-rays line { animation: pl-ray calc(1.4s * var(--t)) var(--ease-out) forwards; animation-delay: calc((.95s + var(--r) * 40ms) * var(--t)); }
.intro-play .pl-shine { animation: pl-shine calc(.9s * var(--t)) var(--ease-in-out) forwards; animation-delay: calc(1.45s * var(--t)); }
.intro-play .pl-word span { animation: pl-rise calc(.8s * var(--t)) var(--ease-out) forwards; animation-delay: calc((.85s + var(--i) * 45ms) * var(--t)); }
.intro-play .pl-line { animation: pl-line calc(1s * var(--t)) var(--ease-out) forwards; animation-delay: calc(1.2s * var(--t)); }
.intro-play .pl-sub { animation: pl-sub calc(1s * var(--t)) var(--ease-out) forwards; animation-delay: calc(1.35s * var(--t)); }

@keyframes pl-draw { to { stroke-dashoffset: 0; } }
@keyframes pl-facet { to { opacity: 1; transform: none; } }
@keyframes pl-ray { 0% { transform: scale(0); opacity: 0; } 40% { opacity: .9; } 100% { transform: scale(1); opacity: .35; } }
@keyframes pl-shine { to { transform: translateX(110px); } }
@keyframes pl-rise { to { transform: none; } }
@keyframes pl-line { to { width: min(180px, 50vw); } }
@keyframes pl-sub { from { opacity: 0; letter-spacing: .18em; } to { opacity: 1; letter-spacing: .42em; } }

.intro-done .preloader { clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease-in-out); }
.intro-done .pl-inner { transform: translateY(-48px); opacity: 0; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 60;
  padding-top: env(safe-area-inset-top, 0px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(18, 11, 7, .34) 0%, rgba(18, 11, 7, .18) 58%, rgba(18, 11, 7, 0) 100%);
  transition: background-color .4s, border-color .4s, backdrop-filter .4s, box-shadow .4s;
}
.site-header.is-scrolled, .menu-open .site-header {
  background: rgba(27, 17, 11, .52);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-color: rgba(236, 214, 168, .16);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, .45);
}
.header__bar { height: var(--header-h); display: flex; align-items: center; gap: 24px; }

.brand { display: flex; align-items: center; margin-right: auto; min-height: 44px; }
.brand__logo {
  width: 220px; height: auto;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 10px 20px rgba(122, 90, 34, .16));
  transition: transform var(--dur) var(--ease-out), filter var(--dur) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) { .brand:hover .brand__logo { transform: translateY(-1px); filter: drop-shadow(0 14px 24px rgba(122, 90, 34, .22)); } }
@media (min-width: 640px) { .brand__logo { width: 244px; } }
@media (min-width: 1200px) { .brand__logo { width: 270px; } }

.nav { display: none; }
.nav ul { display: flex; gap: clamp(20px, 2.4vw, 36px); list-style: none; }
.nav a {
  position: relative; display: inline-flex; align-items: center; min-height: 46px; padding: 12px 0;
  font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 245, 227, .92);
  transition: color var(--dur);
}
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 1px; background: #e0bd74; transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .nav a:hover { color: #eac980; }
  .nav a:hover::after { transform: scaleX(1); transform-origin: left; }
}
.header__cta { display: none; }
.site-header.is-scrolled .nav a, .menu-open .site-header .nav a { color: rgba(255, 245, 227, .92); }
.site-header.is-scrolled .menu-toggle span, .menu-open .site-header .menu-toggle span { background: #f3dca4; }

.menu-toggle { position: relative; width: 48px; height: 48px; margin-right: -10px; display: grid; place-content: center; gap: 7px; }
.menu-toggle span { display: block; width: 26px; height: 1.6px; background: #f3dca4; transition: transform .45s var(--ease-out), width .45s var(--ease-out); }
.menu-toggle span:last-child { width: 18px; justify-self: end; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { width: 26px; transform: translateY(-4.3px) rotate(-45deg); }

@media (min-width: 640px) { .header__cta { display: inline-flex; } }
@media (min-width: 1024px) {
  .nav { display: block; margin-inline: auto; }
  .menu-toggle { display: none; }
  .brand { margin-right: 0; }
}

/* ---------- Mobil menü ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 32px) var(--gutter) calc(32px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(201, 164, 92, .28), transparent 60%),
    var(--ivory-100);
  overscroll-behavior: contain;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease-out), visibility 0s .45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transition: opacity .45s var(--ease-out); }
.mobile-menu__links { list-style: none; display: grid; gap: 4px; }
.mobile-menu__links li { overflow: hidden; }
.mobile-menu__links a {
  display: block; padding: 8px 0;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 8vw, 2.6rem); line-height: 1.15;
  text-transform: uppercase; letter-spacing: .04em; color: var(--ink-800);
  transform: translateY(105%);
  transition: transform .7s var(--ease-out), color var(--dur);
}
.mobile-menu.is-open .mobile-menu__links a { transform: none; transition-delay: calc(.08s + var(--i) * 55ms); }
.mobile-menu__links a:active { color: var(--gold-800); }
.mobile-menu__foot { display: grid; gap: 6px; padding-top: 32px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--text-muted); }
.mobile-menu__foot p { margin: 0; }
.mobile-menu__foot a { color: var(--gold-800); font-weight: 600; min-height: 44px; display: inline-flex; align-items: center; }
.menu-open { overflow: hidden; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 0 0 56px;
  background: #120c08;
}
.hero__dust {
  position: absolute; left: 0; top: 0; z-index: 0;
  height: 100%; width: clamp(140px, 34vw, 300px);
  opacity: .08; pointer-events: none;
  background: url(../img/dust-left.webp) left top / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 85%), linear-gradient(180deg, #000 55%, transparent);
  mask-image: linear-gradient(90deg, #000, transparent 85%), linear-gradient(180deg, #000 55%, transparent);
  -webkit-mask-composite: source-in; mask-composite: intersect;
}
.hero__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 36px; width: 100%; min-height: 100svh; padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 18px); padding-bottom: 72px; }
.hero__copy { position: relative; z-index: 4; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: min(100%, 54rem); margin-inline: auto; padding-inline: clamp(8px, 2vw, 20px); }
.hero__copy .eyebrow { margin-bottom: 18px; }
.hero__copy .eyebrow::after { content: ""; width: 32px; height: 1px; background: currentColor; opacity: .55; }

.hero__copy .eyebrow { color: #d8b36a; text-shadow: 0 8px 18px rgba(0,0,0,.24); }
.hero__title { color: #fff3df; text-shadow: 0 18px 38px rgba(0, 0, 0, .32); }
.hero__actions .btn--ghost { background: rgba(255, 255, 255, .06); border-color: rgba(255, 235, 199, .42); color: #fff1d6; }
.hero__actions .btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 235, 199, .7); }
.hero__actions .btn--gold { box-shadow: 0 20px 36px -18px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .45); }

.hero__title {
  margin: 0 0 20px;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.15rem, 1.1rem + 5.4vw, 5.4rem);
  line-height: 1.02; letter-spacing: .01em;
  text-transform: uppercase;
}
.hero__title .line { display: block; }
.js .hero__title .line { transform: translateY(36px); transition: transform 1.2s var(--ease-out); transition-delay: calc(.2s + var(--i) * 90ms); }
.intro-done .hero__title .line { transform: none; }

.hero__lead { max-width: 40rem; margin: 0 0 28px; color: rgba(255, 248, 238, .94); font-size: clamp(1rem, .92rem + .44vw, 1.16rem); text-shadow: 0 10px 24px rgba(0, 0, 0, .28); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.hero__actions .btn { flex: 1 1 150px; max-width: 240px; }

.hero__facts { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; margin-top: 26px; font-size: .84rem; letter-spacing: .04em; color: rgba(255, 244, 228, .86); }
.hero__facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero__facts strong { color: #fff7ea; font-weight: 600; }
.hero__facts .icon { color: #e5bf69; width: 1em; height: 1em; }

.hero__media {
  position: absolute; inset: 0; order: 0; width: 100%;
  z-index: 1;
}
.hero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(60% 55% at 50% 46%, rgba(12, 8, 4, .06), rgba(12, 8, 4, .20) 72%, rgba(12, 8, 4, .36) 100%),
    linear-gradient(90deg, rgba(20, 13, 8, .44) 0%, rgba(20, 13, 8, .28) 24%, rgba(20, 13, 8, .14) 48%, rgba(20, 13, 8, .24) 72%, rgba(20, 13, 8, .42) 100%),
    linear-gradient(180deg, rgba(22, 14, 8, .24) 0%, rgba(22, 14, 8, .16) 18%, rgba(22, 14, 8, .26) 78%, rgba(247, 242, 233, .24) 100%);
  border-radius: 0;
  pointer-events: none;
}
.hero__media::after {
  content: ""; position: absolute; inset: auto 0 0; height: 18%; z-index: 3;
  background: linear-gradient(180deg, transparent 0%, rgba(18, 12, 8, .06) 40%, rgba(18, 12, 8, .42) 100%);
  pointer-events: none;
}
.arch--hero {
  width: 100%; height: 100%; aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  background: #120c08;
}
.arch--hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)); pointer-events: none; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover; object-position: center 34%;
  opacity: .98;
  filter: saturate(1.06) contrast(1.08) brightness(.88);
}
.js .hero__video { transform: scale(1.06); transition: transform 2s var(--ease-out), opacity .8s var(--ease-out); }
.intro-done .hero__video { transform: none; opacity: .98; }

.seal { display: none; }
.seal__bg { fill: var(--ivory-50); stroke: var(--line-strong); stroke-width: 1; }
.seal text { font-family: var(--font-display); font-size: 15px; font-weight: 600; fill: var(--gold-800); letter-spacing: 1px; }
.seal__ring { transform-origin: 100px 100px; animation: spin 26s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.video-toggle {
  position: absolute; right: clamp(18px, 3vw, 28px); bottom: clamp(18px, 4vw, 30px); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(253, 251, 247, .86); border: 1px solid rgba(191, 163, 104, .52); color: var(--gold-800);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px -12px rgba(70, 52, 20, .38);
  transition: transform var(--dur-press) var(--ease-out), background-color var(--dur);
}
.video-toggle:active { transform: scale(.94); }
.video-toggle .icon { width: 16px; height: 16px; }
.video-toggle .icon--play, .video-toggle[aria-pressed="true"] .icon--pause { display: none; }
.video-toggle[aria-pressed="true"] .icon--play { display: block; }

.scroll-cue { display: none; }

@media (min-width: 960px) {
  .hero { padding-bottom: 72px; }
  .hero__inner { display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; justify-items: center; gap: 0; }
  .hero__copy { text-align: center; align-items: center; max-width: min(56rem, 72vw); }
  .hero__copy .eyebrow::after { display: none; }
  .hero__actions { justify-content: center; }
  .hero__actions .btn { flex: 0 0 auto; }
  .hero__facts { justify-content: center; }
  .hero__media { inset: 0; }
  .scroll-cue {
    position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
    display: grid; justify-items: center; gap: 10px; min-height: 44px;
    font-size: .62rem; letter-spacing: .38em; text-transform: uppercase; color: var(--text-muted);
  }
  .scroll-cue::after { content: ""; width: 1px; height: 44px; background: linear-gradient(var(--gold-700), transparent); transform-origin: top; animation: cue 2.4s var(--ease-in-out) infinite; }
}
@keyframes cue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ==========================================================================
   KAYAN BANT
   ========================================================================== */
.marquee { overflow: hidden; padding-block: clamp(20px, 3.4vw, 40px); border-block: 1px solid var(--line); background: var(--ivory-200); }
.marquee__track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: clamp(22px, 3.4vw, 52px); padding-right: clamp(22px, 3.4vw, 52px); }
.marquee__item {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 1.2rem + 5vw, 6.2rem); line-height: 1.05;
  letter-spacing: .03em; text-transform: uppercase; white-space: nowrap;
}
.marquee__item--fill { color: var(--gold-800); background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.marquee__item--outline { color: transparent; -webkit-text-fill-color: transparent; -webkit-text-stroke: 1.2px rgba(111, 83, 32, .8); }
.marquee__gem { width: clamp(22px, 2.6vw, 40px); height: auto; aspect-ratio: 64 / 50; flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (hover: hover) and (pointer: fine) { .marquee:hover .marquee__track { animation-play-state: paused; } }

/* ==========================================================================
   BÖLÜM ORTAK
   ========================================================================== */
.section { position: relative; padding-block: var(--section-y); }
.section-head { display: grid; gap: 20px; margin-bottom: clamp(44px, 6vw, 80px); }
.section-head .section-title { margin-bottom: 0; }
.section-head__aside { display: grid; gap: 6px; justify-items: start; max-width: 26rem; }
.section-head__aside p { margin: 0; }
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1fr auto; align-items: end; gap: 48px; }
}

/* Kaydırınca beliren içerik — yalnızca JS varsa gizlenir */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out); transition-delay: calc(var(--d, 0) * 90ms); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ==========================================================================
   HAKKIMIZDA
   ========================================================================== */
.about { background: var(--bg-raised); }
.about__grid { display: grid; gap: 64px; }
.about__lead { font-size: clamp(1.06rem, 1rem + .5vw, 1.32rem); font-weight: 400; line-height: 1.75; color: var(--ink-800); }
.stats { display: grid; grid-template-columns: 1fr 1fr; margin: 40px 0 0; border-top: 1px solid var(--line); }
.stats div { display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: 6px; padding: 22px 16px 22px 0; border-bottom: 1px solid var(--line); }
.stats div:nth-child(odd) { border-right: 1px solid var(--line); }
.stats div:nth-child(even) { padding-left: 20px; }
.stats dd { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 1.6rem + 2vw, 3rem); line-height: 1; color: var(--gold-800); }
.stats dt { font-size: .7rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); line-height: 1.5; }

.about__media { position: relative; width: min(100%, 460px); margin-inline: auto; padding: 0 0 56px 0; }
.about__main { aspect-ratio: 4 / 5; width: 82%; margin-left: auto; box-shadow: var(--shadow-soft); }
.about__small { position: absolute; left: 0; bottom: 0; width: 44%; aspect-ratio: 4 / 5; overflow: hidden; border: 6px solid var(--bg-raised); border-radius: 4px; box-shadow: var(--shadow-card); }
.about__small img { width: 100%; height: 100%; object-fit: cover; }
.about__small--top { top: 24px; bottom: auto; width: 36%; }
.about__caption { position: absolute; right: 0; bottom: 10px; margin: 0; font-family: var(--font-accent); font-style: italic; font-size: 1.15rem; color: var(--gold-800); }

@media (min-width: 960px) {
  .about__grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(56px, 7vw, 120px); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stats div { border-right: 1px solid var(--line); padding: 24px 18px; }
  .stats div:first-child { padding-left: 0; }
  .stats div:last-child { border-right: 0; }
  .stats div:nth-child(even) { padding-left: 18px; }
  .about__media { margin-inline: 0 0; justify-self: end; }
}

/* ==========================================================================
   HİZMETLER
   ========================================================================== */
.services__grid { display: grid; gap: 64px; }
/* Basık (eliptik) kemer: köşedeki logolu fotoğraflarda logo yazısı kavise takılmasın */
.service__media { aspect-ratio: 4 / 5; box-shadow: var(--shadow-card); border-radius: 50% 50% 6px 6px / 27% 27% 6px 6px; }
.service__media img { transition: transform 1.4s var(--ease-out); }
.service__body { padding-top: 26px; }
.service__num { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .2em; color: var(--gold-700); }
.service__num::after { content: ""; width: 40px; height: 1px; background: var(--line-strong); }
.service h3 { margin: 10px 0 12px; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.45rem, 1.15rem + 1.2vw, 2.05rem); line-height: 1.15; letter-spacing: .05em; text-transform: uppercase; }
.service p { max-width: 44ch; margin-bottom: 18px; color: var(--text-muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin-bottom: 16px; }
.tags li { padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .5); font-size: .66rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-700); }
@media (hover: hover) and (pointer: fine) {
  .service:hover .service__media img { transform: scale(1.05); }
}
@media (min-width: 720px) {
  .services__grid { grid-template-columns: 1fr 1fr; column-gap: clamp(28px, 5vw, 88px); row-gap: 88px; }
  .service:nth-child(even) { margin-top: 140px; margin-bottom: -140px; }
}

/* Güzellik & Bakım — mobilde küçük görselli liste, geniş ekranda kart ızgarası */
.care { margin-top: clamp(80px, 10vw, 140px); }
@media (min-width: 720px) { .care { margin-top: calc(140px + clamp(80px, 10vw, 140px)); } }
.care__head { display: grid; gap: 6px; margin-bottom: 8px; }
.care__title { margin: 0; font-family: var(--font-accent); font-style: italic; font-weight: 500; font-size: clamp(1.7rem, 1.45rem + 1vw, 2.3rem); line-height: 1.2; color: var(--gold-800); }
.care__head p { margin: 0; max-width: 40rem; }
.care__grid { display: grid; border-top: 1px solid var(--line); margin-top: 20px; }
.care-card {
  display: grid; grid-template-columns: 108px minmax(0, 1fr);
  grid-template-areas: "media head" "text text" "link link";
  column-gap: 18px; align-items: center;
  padding: 24px 0 14px; border-bottom: 1px solid var(--line);
}
.care-card__media { grid-area: media; aspect-ratio: 4 / 5; box-shadow: var(--shadow-card); }
.care-card__media img { transition: transform 1.4s var(--ease-out); }
.care-card__head { grid-area: head; min-width: 0; }
.care-card h4 { margin: 8px 0 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; line-height: 1.25; letter-spacing: .06em; text-transform: uppercase; }
.care-card .tags { gap: 6px; margin-bottom: 0; }
.care-card .tags li { padding: 5px 10px; font-size: .62rem; letter-spacing: .12em; }
.care-card__text { grid-area: text; margin: 16px 0 4px; font-size: .95rem; color: var(--text-muted); }
.care-card__link { grid-area: link; justify-self: start; }
@media (hover: hover) and (pointer: fine) { .care-card:hover .care-card__media img { transform: scale(1.05); } }
@media (min-width: 640px) {
  .care__grid { grid-template-columns: 1fr 1fr; gap: 64px clamp(24px, 4vw, 48px); padding-top: clamp(36px, 5vw, 56px); }
  .care-card { grid-template-columns: minmax(0, 1fr); grid-template-areas: "media" "head" "text" "link"; align-items: start; padding: 0; border-bottom: 0; }
  .care-card__head { padding-top: 22px; }
  .care-card h4 { font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); }
  .care-card__text { margin-top: 14px; }
}
@media (min-width: 1024px) { .care__grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   HİJYEN (şampanya tonu)
   ========================================================================== */
.paper { background: var(--bg-alt); color: var(--text); }
.hygiene__grid { display: grid; gap: 56px; }
.hygiene__media { width: min(100%, 420px); aspect-ratio: 4 / 5; margin-inline: auto; box-shadow: var(--shadow-soft); }
.hygiene__lead { font-size: 1.08rem; color: var(--ink-700); max-width: 36rem; }
.steps { list-style: none; margin-top: 36px; }
.step { display: grid; grid-template-columns: 58px 1fr; gap: 16px; padding: 24px 0; border-top: 1px solid rgba(26, 24, 21, .16); }
.step:last-child { border-bottom: 1px solid rgba(26, 24, 21, .16); }
.step__num { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; line-height: 1; color: var(--gold-800); }
.step h3 { margin: 0 0 6px; font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; }
.step p { margin: 0; color: var(--ink-700); }
.hygiene__quote { margin: 40px 0 0; font-family: var(--font-accent); font-style: italic; font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); line-height: 1.35; color: var(--ink-800); }
@media (min-width: 960px) {
  .hygiene__grid { grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(56px, 8vw, 128px); }
  .hygiene__media { margin: 0; }
}

/* ==========================================================================
   GALERİ
   ========================================================================== */
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding-bottom: 28px; }
.gallery__item { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 3px; background: var(--bg-alt); box-shadow: var(--shadow-card); }
.gallery__item:nth-child(even) { translate: 0 28px; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.gallery__item::after { content: ""; position: absolute; inset: 0; border: 1px solid transparent; border-radius: inherit; transition: border-color .5s, inset .5s var(--ease-out); pointer-events: none; }
@media (hover: hover) and (pointer: fine) {
  .gallery__item:hover img { transform: scale(1.06); }
  .gallery__item:hover::after { inset: 10px; border-color: rgba(255, 252, 244, .85); }
}
@media (min-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; padding-bottom: 64px; }
  .gallery__item:nth-child(even) { translate: none; }
  .gallery__item:nth-child(4n + 2), .gallery__item:nth-child(4n + 4) { translate: 0 64px; }
}
.gallery__cta { display: flex; justify-content: center; margin-top: 56px; }
.gallery__cta .btn { max-width: 100%; white-space: normal; text-align: center; }

/* ==========================================================================
   YORUMLAR
   ========================================================================== */
.reviews { background: var(--bg-raised); }
.ratings { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
@media (max-width: 349px) { .ratings { grid-template-columns: 1fr; } }
.rating {
  display: grid; gap: 10px; align-content: start;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line); border-radius: 4px;
  background: linear-gradient(160deg, #fffdf9, rgba(255, 253, 249, .6));
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur), transform var(--dur-press) var(--ease-out);
}
.rating:active { transform: scale(.985); }
.rating__score { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 1.8rem + 3vw, 4.4rem); line-height: 1; color: var(--gold-800); background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stars { position: relative; display: inline-flex; gap: 3px; width: max-content; color: rgba(26, 24, 21, .18); }
.stars svg { width: 15px; height: 15px; }
.stars::before { content: ""; position: absolute; inset: 0; width: var(--rate); background: linear-gradient(90deg, var(--gold-600), var(--gold-500)); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 15'%3E%3Cpath d='m7.5 .8 2.3 4.7 5.2.8-3.8 3.6.9 5.2-4.6-2.4-4.6 2.4.9-5.2L0 6.3l5.2-.8z'/%3E%3C/svg%3E") 0 0 / 18px 15px repeat-x; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 15'%3E%3Cpath d='m7.5 .8 2.3 4.7 5.2.8-3.8 3.6.9 5.2-4.6-2.4-4.6 2.4.9-5.2L0 6.3l5.2-.8z'/%3E%3C/svg%3E") 0 0 / 18px 15px repeat-x; }
.rating__src { font-size: .72rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); }
.rating__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-800); }
@media (hover: hover) and (pointer: fine) { .rating:hover { border-color: var(--line-strong); } }

.quotes {
  display: grid; grid-auto-flow: column; grid-auto-columns: 84%; gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  margin-inline: calc(var(--gutter) * -1); padding: 4px var(--gutter) 12px; scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
}
.quotes::-webkit-scrollbar { display: none; }
.quote {
  scroll-snap-align: start;
  display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
  padding: 30px 26px 26px; border: 1px solid var(--line); border-radius: 4px; background: var(--bg-card);
  box-shadow: var(--shadow-card);
}
.quote::before { content: "“"; display: block; height: .5em; font-family: var(--font-display); font-size: 3.4rem; line-height: 1; color: var(--gold-600); }
.quote blockquote { margin: 0; font-family: var(--font-accent); font-style: italic; font-weight: 500; font-size: 1.42rem; line-height: 1.35; color: var(--ink-800); }
.quote figcaption { font-size: .68rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
@media (min-width: 900px) {
  .ratings { gap: 16px; margin-bottom: 16px; }
  .quotes { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); gap: 16px; overflow: visible; margin: 0; padding: 0; }
}

/* ==========================================================================
   RANDEVU BANDI
   ========================================================================== */
.cta { overflow: hidden; background: radial-gradient(70% 60% at 80% 50%, rgba(201, 164, 92, .26), transparent 70%), var(--bg); }
.cta__dust { position: absolute; right: 0; bottom: 0; width: clamp(200px, 30vw, 300px); aspect-ratio: 1; opacity: .4; pointer-events: none; background: url(../img/dust-corner.webp) center / contain no-repeat; }
.cta__grid { display: grid; gap: 56px; align-items: center; }
.cta__title { font-size: clamp(2.1rem, 1.2rem + 4vw, 4.6rem); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.cta__media { width: min(76%, 440px); aspect-ratio: 4 / 5; margin-inline: auto; box-shadow: 0 40px 70px -34px rgba(70, 52, 20, .65); }
@media (min-width: 960px) {
  .cta__grid { grid-template-columns: 1.15fr .85fr; gap: clamp(56px, 7vw, 120px); }
  .cta__media { width: 100%; margin: 0; }
}

/* ==========================================================================
   SSS
   ========================================================================== */
.faq__grid { display: grid; gap: 32px; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); interpolate-size: allow-keywords; }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: 64px; padding: 18px 0;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, .92rem + .4vw, 1.22rem); letter-spacing: .05em; text-transform: uppercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--gold-700); transition: transform .45s var(--ease-out); }
.faq details[open] summary .icon { transform: rotate(45deg); }
.faq details p { max-width: 62ch; margin: 0; padding: 0 0 26px; color: var(--text-muted); }
.faq details a { color: var(--gold-800); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.faq details::details-content { block-size: 0; overflow: hidden; transition: block-size .45s var(--ease-out), content-visibility .45s allow-discrete; }
.faq details[open]::details-content { block-size: auto; }
@media (hover: hover) and (pointer: fine) { .faq summary:hover { color: var(--gold-800); } }
@media (min-width: 960px) {
  .faq__grid { grid-template-columns: .8fr 1.2fr; gap: 96px; align-items: start; }
  .faq__head { position: sticky; top: calc(var(--header-h) + 40px); }
}

/* ==========================================================================
   İLETİŞİM
   ========================================================================== */
.contact { background: var(--bg-raised); }
.contact__grid { display: grid; gap: 56px; align-items: center; }
.contact__list { display: grid; gap: 22px; margin: 36px 0; }
.contact__list > div { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.contact__list p { margin: 0; line-height: 1.6; }
.contact__icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: rgba(255, 255, 255, .6); color: var(--gold-800); }
.contact__label { display: block; margin-bottom: 3px; font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }
.contact__list a { color: var(--gold-900); font-weight: 500; display: inline-flex; min-height: 44px; align-items: center; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.map {
  width: min(100%, 520px); aspect-ratio: 4 / 5; margin-inline: auto;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
  background:
    radial-gradient(circle at 50% 45%, rgba(201, 164, 92, .28), transparent 55%),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(122, 90, 34, .17) 38px 39px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(122, 90, 34, .17) 38px 39px),
    var(--ivory-200);
}
.map__facade { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 14px; padding: 24px; text-align: center; }
.map__gem { width: 56px; height: 44px; filter: drop-shadow(0 6px 14px rgba(122, 90, 34, .45)); }
.map__addr { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: .1em; text-transform: uppercase; }
.map__note { margin: 0; font-size: .7rem; color: var(--text-muted); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.85) contrast(1.02); }
@media (min-width: 960px) {
  .contact__grid { grid-template-columns: 1fr 1fr; gap: clamp(56px, 7vw, 120px); }
  .map { margin: 0; justify-self: end; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { padding: 80px 0 calc(28px + var(--dock-h) + env(safe-area-inset-bottom, 0px)); background: var(--ivory-300); border-top: 1px solid var(--line); font-size: .92rem; }
.footer__grid { display: grid; gap: 40px; }
.footer__brand img { width: min(300px, 100%); height: auto; margin-bottom: 18px; border-radius: 0; box-shadow: none; filter: drop-shadow(0 12px 24px rgba(122, 90, 34, .14)); }
.footer__brand p { max-width: 30rem; }
.footer__label { margin: 0 0 14px; font-size: .66rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-800); }
.footer__nav ul { list-style: none; display: grid; gap: 2px; }
.footer__nav a, .footer__contact a { display: inline-flex; min-height: 44px; align-items: center; color: var(--ink-700); transition: color var(--dur); }
.footer__contact p { margin: 0 0 10px; color: var(--ink-700); }
.footer__social { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.footer__social .footer__label { width: 100%; }
.footer__icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: rgba(255, 255, 255, .5); color: var(--gold-800); transition: border-color var(--dur), background-color var(--dur); }
@media (hover: hover) and (pointer: fine) {
  .footer__nav a:hover, .footer__contact a:hover { color: var(--gold-800); }
  .footer__icon:hover { border-color: var(--gold-700); background: #fff; }
}
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .74rem; letter-spacing: .08em; color: var(--text-muted); }
.footer__bottom p { margin: 0; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1.3fr 1fr; } }
@media (min-width: 1024px) { .footer { padding-bottom: 28px; } }

/* ==========================================================================
   MOBİL ALT ÇUBUK + MASAÜSTÜ WHATSAPP
   ========================================================================== */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 10px max(14px, env(safe-area-inset-left, 0px)) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(247, 242, 233, .92);
  -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px -24px rgba(70, 52, 20, .8);
  transform: translateY(110%);
  transition: transform .5s var(--ease-out);
}
.dock .btn { min-height: 50px; padding: 0 14px; font-size: .7rem; letter-spacing: .14em; }
.show-dock .dock { transform: none; }
.menu-open .dock { transform: translateY(110%); }

.wa-float {
  position: fixed; right: 28px; bottom: 28px; z-index: 50;
  width: 60px; height: 60px; border-radius: 50%;
  display: none; place-items: center;
  background: var(--bg-card); color: var(--gold-800); border: 1px solid var(--line-strong);
  box-shadow: 0 18px 34px -14px rgba(70, 52, 20, .55);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .4s, visibility 0s .4s, transform .5s var(--ease-out), border-color var(--dur);
}
.wa-float .icon { width: 26px; height: 26px; }
.show-dock .wa-float { opacity: 1; visibility: visible; transform: none; transition: opacity .4s, transform .5s var(--ease-out), border-color var(--dur); }
@media (hover: hover) and (pointer: fine) { .wa-float:hover { border-color: var(--gold-700); } }
@media (min-width: 1024px) {
  .dock { display: none; }
  .wa-float { display: grid; }
}

/* ==========================================================================
   AZALTILMIŞ HAREKET
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .pl-outline { stroke-dashoffset: 0; }
  .pl-facet, .pl-word span, .pl-rays line { opacity: 1; transform: none; }
  .pl-sub { opacity: 1; }
  .pl-line { width: 120px; }
  .intro-done .preloader { clip-path: none; opacity: 0; visibility: hidden; }
  .marquee__track, .seal__ring, .scroll-cue::after { animation: none !important; }
  .js [data-reveal], .js .hero__title .line, .js .hero__video { opacity: 1; transform: none; }
}

/* ==========================================================================
   SEO GÜNCELLEMESİ (2026-09-26): hero anahtar satırı, galeri, blog
   ========================================================================== */

/* H1 içindeki üst satır — görünüşte eski eyebrow ile aynı, H1'e yerel anahtar kelime katar */
.hero__title .hero__kicker { display: inline-flex; flex-wrap: wrap; justify-content: center; font-family: var(--font-body); text-shadow: 0 8px 18px rgba(0, 0, 0, .24); }

/* Galeride son satırda tek kalan kare ortalansın; üstteki kaydırılmış (translate) karelere binmesin */
.gallery__item:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: calc(50% - 5px); translate: none; margin-top: 28px; }
@media (min-width: 900px) {
  .gallery__item:last-child:nth-child(odd) { grid-column: auto; justify-self: stretch; width: auto; margin-top: 0; }
  .gallery__item:last-child:nth-child(4n + 1) { grid-column: 2 / 4; justify-self: center; width: calc(50% - 8px); margin-top: 64px; }
}

/* Menüde aktif sayfa */
.nav a[aria-current="page"] { color: #eac980; }
.nav a[aria-current="page"]::after { transform: scaleX(1); }
@media (min-width: 1024px) and (max-width: 1199px) {
  .header__bar { gap: 18px; }
  .nav ul { gap: 18px; }
  .nav a { letter-spacing: .16em; }
  .brand__logo { width: 210px; }
}

/* Animasyon saati dönmeyen tarayıcılar (bazı uygulama içi tarayıcılar): hiçbir şey gizli kalmasın */
.no-anim [data-reveal], .no-anim .hero__title .line, .no-anim .hero__video { opacity: 1 !important; transform: none !important; transition: none !important; }
.no-anim .preloader { display: none !important; }

/* ---------- Koyu sayfa başlığı (blog) ---------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: calc(var(--header-h) + env(safe-area-inset-top, 0px) + clamp(40px, 7vw, 88px)) 0 clamp(56px, 8vw, 104px);
  color: #fff3df;
  background:
    radial-gradient(60% 70% at 85% 30%, rgba(201, 164, 92, .22), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, rgba(201, 164, 92, .12), transparent 70%),
    #120c08;
}
.page-hero .hero__dust { opacity: .1; }
.page-hero__grid { position: relative; z-index: 1; display: grid; gap: 40px; align-items: center; }
.page-hero .eyebrow { color: #d8b36a; margin-bottom: 18px; }
.page-title {
  margin: 0 0 20px;
  font-family: var(--font-display); font-weight: 600;
  font-size: min(clamp(1.8rem, 1.05rem + 3vw, 3.4rem), 8.6vw);
  line-height: 1.1; letter-spacing: .015em; text-transform: uppercase; text-wrap: balance;
  color: #fff3df; text-shadow: 0 18px 38px rgba(0, 0, 0, .32);
}
.page-title em { font-family: var(--font-accent); font-style: italic; font-weight: 500; font-size: 1.12em; letter-spacing: 0; text-transform: none; color: #e5c47f; }
.page-hero__lead { max-width: 44rem; margin: 0 0 24px; font-size: clamp(1rem, .94rem + .3vw, 1.14rem); color: rgba(255, 248, 238, .9); }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 0; padding: 0; list-style: none; font-size: .78rem; letter-spacing: .06em; color: rgba(255, 244, 228, .74); }
.page-hero__meta li { display: inline-flex; align-items: center; gap: 8px; }
.page-hero__meta .icon { width: 1em; height: 1em; color: #e5bf69; }
.page-hero__media { width: min(78%, 400px); aspect-ratio: 4 / 5; margin-inline: auto; overflow: hidden; border-radius: 50% 50% 6px 6px / 30% 30% 6px 6px; box-shadow: 0 40px 70px -30px rgba(0, 0, 0, .7); outline: 1px solid rgba(229, 196, 127, .35); outline-offset: 10px; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__lead { margin-inline: auto; }
.page-hero--center .page-hero__meta, .page-hero--center .breadcrumb ol { justify-content: center; }
@media (min-width: 960px) {
  .page-hero__grid { grid-template-columns: 1.25fr .75fr; gap: clamp(48px, 7vw, 112px); }
  .page-hero--center .page-hero__grid { grid-template-columns: minmax(0, 1fr); }
  .page-hero__media { width: 100%; margin: 0; }
}

.breadcrumb { margin-bottom: 26px; font-size: .74rem; letter-spacing: .08em; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px 10px; list-style: none; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 10px; color: rgba(255, 244, 228, .62); }
.breadcrumb li + li::before { content: ""; width: 5px; height: 5px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); opacity: .8; }
.breadcrumb a { display: inline-flex; align-items: center; min-height: 32px; color: #e5c47f; }
@media (hover: hover) and (pointer: fine) { .breadcrumb a:hover { color: #fff3df; } }

/* ---------- Yazı düzeni ---------- */
.post { padding-block: clamp(48px, 7vw, 96px) clamp(72px, 9vw, 128px); }
.post__grid { display: grid; gap: 32px; }
.post__article { min-width: 0; max-width: 46rem; }
@media (min-width: 1100px) {
  .post__grid { grid-template-columns: 250px minmax(0, 1fr); gap: clamp(56px, 6vw, 96px); align-items: start; }
  .post__aside { position: sticky; top: calc(var(--header-h) + 32px); max-height: calc(100vh - var(--header-h) - 48px); overflow-y: auto; scrollbar-width: thin; }
}

.toc { border: 1px solid var(--line); border-radius: 6px; background: var(--bg-card); }
.toc summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 56px; padding: 0 20px;
  font-size: .7rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-800);
}
.toc summary::-webkit-details-marker { display: none; }
.toc summary .icon { transition: transform .4s var(--ease-out); }
.toc[open] summary .icon { transform: rotate(45deg); }
.toc ol { list-style: none; counter-reset: toc; padding: 0 20px 18px; display: grid; gap: 2px; }
.toc li { counter-increment: toc; }
.toc a { display: grid; grid-template-columns: 26px 1fr; gap: 6px; padding: 7px 0; font-size: .86rem; line-height: 1.45; color: var(--ink-700); transition: color var(--dur); }
.toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--font-display); font-weight: 600; font-size: .72rem; line-height: 1.9; color: var(--gold-600); }
.toc a.is-active { color: var(--gold-800); font-weight: 600; }
@media (hover: hover) and (pointer: fine) { .toc a:hover { color: var(--gold-800); } }
@media (min-width: 1100px) {
  .toc { border: 0; background: none; }
  .toc summary { padding: 0; min-height: 0; margin-bottom: 14px; cursor: default; pointer-events: none; }
  .toc summary .icon { display: none; }
  .toc ol { padding: 14px 0 0; border-top: 1px solid var(--line); }
}

/* ---------- Makale tipografisi ---------- */
.prose { font-size: clamp(1rem, .97rem + .15vw, 1.07rem); line-height: 1.85; color: var(--ink-700); }
.prose p { margin: 0 0 1.2em; }
.prose > p:first-child { font-size: 1.12em; line-height: 1.75; color: var(--ink-800); }
.prose h2 {
  margin: 2.6em 0 .85em; scroll-margin-top: calc(var(--header-h) + 24px);
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.32rem, 1.08rem + 1vw, 1.8rem); line-height: 1.2; letter-spacing: .03em; text-transform: uppercase;
  color: var(--ink-800); text-wrap: balance;
}
.prose h2::before { content: ""; display: block; width: 44px; height: 1px; margin-bottom: 20px; background: var(--gold-gradient-btn); }
.prose h3 { margin: 1.9em 0 .6em; scroll-margin-top: calc(var(--header-h) + 24px); font-weight: 600; font-size: 1.1em; line-height: 1.4; color: var(--ink-800); }
.prose a { color: var(--gold-800); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: rgba(122, 90, 34, .45); transition: text-decoration-color var(--dur); }
@media (hover: hover) and (pointer: fine) { .prose a:hover { text-decoration-color: currentColor; } }
.prose strong { font-weight: 600; color: var(--ink-800); }
.prose ul, .prose ol { margin: 0 0 1.4em; }
.prose li { margin: .45em 0; }
.prose ul { list-style: none; }
.prose ul > li { position: relative; padding-left: 1.6em; }
.prose ul > li::before { content: ""; position: absolute; left: .25em; top: .72em; width: 7px; height: 7px; background: var(--gold-600); transform: rotate(45deg); }
.prose ol { padding-left: 1.5em; }
.prose ol > li { padding-left: .3em; }
.prose ol > li::marker { font-family: var(--font-display); font-weight: 600; color: var(--gold-700); }
.prose blockquote { margin: 2em 0; padding: 4px 0 4px 26px; border-left: 2px solid var(--gold-500); font-family: var(--font-accent); font-style: italic; font-weight: 500; font-size: 1.5em; line-height: 1.38; color: var(--ink-800); }
.prose figure { margin: 2.4em 0; }
.prose figure img { width: 100%; border-radius: 4px; box-shadow: var(--shadow-card); }
.prose figcaption { margin-top: 12px; font-size: .82rem; line-height: 1.6; color: var(--text-muted); }
.prose .figure-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.prose .figure-pair figcaption { grid-column: 1 / -1; margin-top: 0; }
.prose .figure-pair img { aspect-ratio: 4 / 5; object-fit: cover; }

.keypoints { margin: 0 0 2.4em; padding: clamp(22px, 3vw, 32px); border: 1px solid var(--line-strong); border-radius: 6px; background: linear-gradient(160deg, #fffdf9, rgba(255, 253, 249, .55)); box-shadow: var(--shadow-card); }
.keypoints .eyebrow { margin-bottom: 14px; }
.keypoints ul { margin: 0; }
.keypoints li { margin: .5em 0; }

.callout { margin: 2em 0; padding: 22px 24px; border-left: 2px solid var(--gold-600); border-radius: 0 6px 6px 0; background: var(--bg-alt); }
.callout p:last-child { margin-bottom: 0; }
.callout__title { display: block; margin-bottom: 6px; font-size: .7rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-800); }

.table-wrap { margin: 2em 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; background: var(--bg-card); }
.prose table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: .92rem; line-height: 1.6; }
.prose th { padding: 14px 16px; text-align: left; font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-800); background: var(--bg-raised); border-bottom: 1px solid var(--line-strong); }
.prose td { padding: 14px 16px; vertical-align: top; border-bottom: 1px solid var(--line); }
.prose tr:last-child td { border-bottom: 0; }
.prose td:first-child { font-weight: 600; color: var(--ink-800); }

/* Yazı içi randevu kutusu */
.post-cta {
  position: relative; overflow: hidden; margin: 3em 0; padding: clamp(28px, 4vw, 44px);
  border-radius: 6px; color: #fff3df;
  background: radial-gradient(80% 90% at 100% 0%, rgba(201, 164, 92, .3), transparent 70%), #120c08;
  box-shadow: 0 30px 60px -30px rgba(18, 12, 8, .7);
}
.post-cta .eyebrow { color: #d8b36a; margin-bottom: 12px; }
.post-cta__title { margin: 0 0 12px; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); line-height: 1.2; letter-spacing: .03em; text-transform: uppercase; color: #fff3df; }
.prose .post-cta p { color: rgba(255, 248, 238, .86); }
.post-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.post-cta .btn--ghost { background: rgba(255, 255, 255, .06); border-color: rgba(255, 235, 199, .42); color: #fff1d6; }
.prose .post-cta a.btn { color: #19130a; text-decoration: none; font-weight: 600; }
.prose .post-cta a.btn--ghost { color: #fff1d6; }
@media (max-width: 420px) { .post-cta__actions .btn { flex: 1 1 100%; } }

.post__faq { margin-top: 3em; }
.post__faq .faq__list { margin-top: 8px; }
.post__faq summary { font-size: clamp(.95rem, .9rem + .3vw, 1.08rem); }
.post__faq details p { color: var(--text-muted); }

.post__foot { display: grid; gap: 14px; margin-top: 3em; padding-top: 24px; border-top: 1px solid var(--line); }
.post__foot p { margin: 0; font-size: .88rem; color: var(--text-muted); }

/* ---------- Yazı kartları (blog listesi, ana sayfa, ilgili yazılar) ---------- */
.post-grid { display: grid; gap: 48px 28px; }
@media (min-width: 640px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .post-grid { grid-template-columns: repeat(3, 1fr); gap: 56px clamp(24px, 3vw, 40px); } }
.post-card__link { display: grid; grid-template-rows: auto auto auto 1fr auto; height: 100%; }
.post-card__media { aspect-ratio: 4 / 5; box-shadow: var(--shadow-card); border-radius: 50% 50% 6px 6px / 27% 27% 6px 6px; }
.post-card__media img { transition: transform 1.4s var(--ease-out); }
.post-card__meta { margin: 22px 0 8px; font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-700); }
.post-card__title { margin: 0 0 12px; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.12rem, 1rem + .5vw, 1.36rem); line-height: 1.25; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-800); text-wrap: balance; transition: color var(--dur); }
.post-card__excerpt { margin: 0 0 14px; font-size: .95rem; color: var(--text-muted); }
.post-card__more { display: inline-flex; align-items: center; gap: 10px; justify-self: start; min-height: 44px; font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-800); }
.post-card__more .icon { transition: transform .4s var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .post-card__link:hover .post-card__media img { transform: scale(1.05); }
  .post-card__link:hover .post-card__more .icon { transform: translate(3px, -3px); }
  .post-card__link:hover .post-card__title { color: var(--gold-800); }
}

/* Öne çıkan yazı (blog listesi) */
@media (min-width: 900px) {
  .post-card--feature { grid-column: 1 / -1; }
  .post-card--feature .post-card__link { grid-template-columns: .8fr 1.2fr; grid-template-rows: none; column-gap: clamp(40px, 6vw, 96px); align-items: center; }
  .post-card--feature .post-card__body { display: grid; }
  .post-card--feature .post-card__title { font-size: clamp(1.6rem, 1.1rem + 1.4vw, 2.4rem); }
  .post-card--feature .post-card__excerpt { font-size: 1.05rem; }
}
.post-card__body { display: contents; }

.journal { background: var(--bg-raised); }
.related { padding-block: clamp(72px, 9vw, 120px); background: var(--bg-raised); border-top: 1px solid var(--line); }
.related .section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.blog-list { padding-block: clamp(56px, 8vw, 112px) var(--section-y); }
.blog-list__intro { max-width: 46rem; margin: 0 0 clamp(40px, 6vw, 72px); }
.prose .figure--single { max-width: 460px; margin-inline: auto; }
.prose .figure--single img { aspect-ratio: 4 / 5; object-fit: cover; }
