/* ==========================================================================
   KAHRAMAN KUYUMCULUK – style.css
   Mobile-first: temel stiller 360px+, ardından 768 / 1024 / 1440 kırılımları
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TASARIM DEĞİŞKENLERİ
   Renkler logodaki mor (#732B8C) tonundan türetildi; altın vurgu, inci beyazı zemin.
   -------------------------------------------------------------------------- */
:root {
  /* Renkler */
  --plum:        #732B8C;   /* logo moru */
  --plum-700:    #581F6C;
  --aubergine:   #2A0E36;   /* koyu zemin */
  --gold:        #C9A45C;   /* şampanya altın – yalnızca vurgu / koyu metinle */
  --gold-light:  #EAD7A8;
  --pearl:       #FBF9FC;   /* sayfa zemini: soğuk inci beyazı */
  --mist:        #F2ECF5;   /* ikincil zemin */
  --ink:         #241B2A;   /* ana metin */
  --muted:       #665B6D;   /* ikincil metin (AA kontrast) */
  --line:        #E4DAE9;
  --white:       #FFFFFF;

  /* Gradyanlar */
  --grad-hero: linear-gradient(125deg, #2A0E36 0%, #4B1A5E 35%, #732B8C 65%, #3A1449 100%);
  --grad-gold: linear-gradient(135deg, #EAD7A8 0%, #C9A45C 50%, #A9853F 100%);
  --pearl-sheen: radial-gradient(circle at 32% 28%, #fff 0%, #f6f0f8 22%, #e3d6ea 55%, #b9a3c6 85%, #9c83ab 100%);

  /* Tipografi */
  --font-display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --font-body:    "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Modüler ölçek (mobil) – geniş ekranlarda büyütülür */
  --fs-xs:   .8125rem;
  --fs-sm:   .9375rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.5rem;
  --fs-xl:   2rem;
  --fs-2xl:  2.5rem;
  --fs-hero: clamp(3rem, 12.5vw, 7.5rem);

  /* Boşluk sistemi (8px tabanlı) */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --section-y: 4.5rem;

  /* Yüzey */
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(42, 14, 54, .06);
  --shadow:    0 18px 40px -18px rgba(42, 14, 54, .28);
  --shadow-lg: 0 30px 60px -20px rgba(88, 31, 108, .38);

  /* Hareket */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .45s;

  --header-h: 76px;
  --container: 1200px;
}

/* --------------------------------------------------------------------------
   2. SIFIRLAMA VE TEMEL
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) - 8px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading, body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
address { font-style: normal; }

/* Klavye odağı: her zaman görünür */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: var(--sp-4); z-index: 1000;
  padding: var(--sp-3) var(--sp-4);
  background: var(--aubergine); color: var(--white); border-radius: var(--radius-sm);
}
.skip-link:focus { top: var(--sp-4); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container--narrow { max-width: 860px; }

/* --------------------------------------------------------------------------
   3. TİPOGRAFİ VE BÖLÜM İSKELETİ
   -------------------------------------------------------------------------- */
.section { padding-block: var(--section-y); }

.section__head { margin-bottom: var(--sp-7); max-width: 38rem; }
.section__head--split { max-width: none; display: grid; gap: var(--sp-5); }

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-2xl);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--aubergine);
  margin-bottom: var(--sp-4);
  text-wrap: balance;
}
.section__title--center { text-align: center; }

.section__lead { color: var(--muted); font-size: var(--fs-md); max-width: 34rem; }

/* Alt çizgisi soldan sağa dolan link */
.link-u {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: var(--plum);
}
.link-u::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.link-u:hover::after, .link-u:focus-visible::after { transform: scaleX(1); transform-origin: left; }

/* --------------------------------------------------------------------------
   4. BUTONLAR – parlama (shine) ve dolma animasyonu
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  min-height: 52px;
  padding: .85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .35s var(--ease);
}
/* Parlama şeridi */
.btn::before {
  content: "";
  position: absolute; inset: 0 auto 0 -60%;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg) translateX(0);
  transition: transform .8s var(--ease);
  z-index: 1;
  pointer-events: none;
}
.btn:hover::before, .btn:focus-visible::before { transform: skewX(-20deg) translateX(420%); }
.btn:hover { transform: translateY(-2px); }

/* Dolma katmanı */
.btn::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .45s var(--ease);
  z-index: -1;
}
.btn:hover::after, .btn:focus-visible::after { transform: scaleY(1); }

.btn--gold { background: var(--grad-gold); color: var(--aubergine); box-shadow: 0 10px 24px -10px rgba(201,164,92,.7); }
.btn--gold::after { background: var(--aubergine); }
.btn--gold:hover { color: var(--gold-light); }

.btn--ghost { color: var(--white); border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.btn--ghost::after { background: var(--white); }
.btn--ghost:hover { color: var(--aubergine); }

.btn--plum { background: var(--plum); color: var(--white); }
.btn--plum::after { background: var(--aubergine); }

.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   5. PRELOADER – inciler ipe dizilir
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed; inset: 0; z-index: 999;
  display: grid; place-items: center;
  background: var(--pearl);
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; gap: var(--sp-5); justify-items: center; }
.preloader__logo { width: min(240px, 60vw); animation: fadeIn .8s var(--ease) both; }
.preloader__string {
  position: relative;
  display: flex; gap: 10px;
  padding-block: 4px;
}
.preloader__string::before { /* ip */
  content: ""; position: absolute; left: -12px; right: -12px; top: 50%;
  height: 1px; background: var(--line);
}
.preloader__string span {
  position: relative;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--pearl-sheen);
  box-shadow: 0 2px 4px rgba(42,14,54,.18);
  opacity: 0; transform: translateX(-24px);
  animation: bead 1.6s var(--ease-out) infinite;
}
.preloader__string span:nth-child(2) { animation-delay: .12s; }
.preloader__string span:nth-child(3) { animation-delay: .24s; }
.preloader__string span:nth-child(4) { animation-delay: .36s; }
.preloader__string span:nth-child(5) { animation-delay: .48s; }

@keyframes bead {
  0%   { opacity: 0; transform: translateX(-24px); }
  30%, 70% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(24px); }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   6. HEADER – sabit, scroll'da glassmorphism + küçülme
   -------------------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h);
  transition: height .4s var(--ease), background-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.header__inner { position: relative; height: 100%; display: flex; align-items: center; justify-content: space-between; }

.header__logo { position: relative; display: block; width: 150px; z-index: 2; transition: width .4s var(--ease); }
.logo { width: 100%; transition: opacity .35s var(--ease); }
.logo--dark { position: absolute; inset: 0; opacity: 0; }

/* Kaydırıldığında */
/* Cam arka plan ayrı bir katmanda: backdrop-filter doğrudan header'a verilirse
   mobil menünün (position: fixed) tam ekran açılmasını engeller */
.header::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(251, 249, 252, .72);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 rgba(115, 43, 140, .08), var(--shadow-sm);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.header.is-scrolled { --header-h: 62px; }
.header.is-scrolled::before { opacity: 1; }
.header.is-scrolled .header__logo { width: 124px; }
.header.is-scrolled .logo--light { opacity: 0; }
.header.is-scrolled .logo--dark  { opacity: 1; }
.header.is-scrolled .burger span { background: var(--aubergine); }

/* Hamburger */
.burger {
  position: relative; z-index: 2;
  width: 44px; height: 44px;
  display: grid; place-content: center; gap: 6px;
}
.burger span {
  display: block; width: 26px; height: 2px; border-radius: 2px;
  background: var(--white);
  transition: transform .4s var(--ease), opacity .25s, background-color .3s, width .3s;
}
.burger span:nth-child(3) { width: 18px; justify-self: end; }
.burger[aria-expanded="true"] span { background: var(--aubergine); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.2); }
.burger[aria-expanded="true"] span:nth-child(3) { width: 26px; transform: translateY(-8px) rotate(-45deg); }

/* Mobil menü paneli */
.nav {
  position: fixed; inset: 0;
  display: flex; flex-direction: column; justify-content: center; gap: var(--sp-7);
  padding: calc(var(--header-h) + var(--sp-5)) var(--sp-6) var(--sp-7);
  background: var(--pearl);
  clip-path: circle(0% at calc(100% - 42px) 38px);
  visibility: hidden;
  transition: clip-path .6s var(--ease-out), visibility .6s;
}
.nav.is-open { clip-path: circle(150% at calc(100% - 42px) 38px); visibility: visible; }
/* Menü açıkken logo koyu görünsün */
body.no-scroll .logo--light { opacity: 0; }
body.no-scroll .logo--dark  { opacity: 1; }

.nav__list { display: grid; gap: var(--sp-2); }
.nav__link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.3;
  color: var(--aubergine);
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), color .3s;
}
.nav.is-open .nav__link { opacity: 1; transform: none; }
.nav.is-open li:nth-child(1) .nav__link { transition-delay: .15s; }
.nav.is-open li:nth-child(2) .nav__link { transition-delay: .2s; }
.nav.is-open li:nth-child(3) .nav__link { transition-delay: .25s; }
.nav.is-open li:nth-child(4) .nav__link { transition-delay: .3s; }
.nav.is-open li:nth-child(5) .nav__link { transition-delay: .35s; }
.nav__link.is-active { color: var(--plum); font-style: italic; }

.nav__phone {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-weight: 600; color: var(--plum);
}

/* --------------------------------------------------------------------------
   7. HERO – hareketli gradient + yüzen inciler
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding-block: calc(var(--header-h) + var(--sp-7)) var(--sp-9);
  color: var(--white);
  background: var(--grad-hero);
  background-size: 300% 300%;
  animation: gradientShift 18s ease-in-out infinite;
  overflow: hidden;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 40%; }
  50%      { background-position: 100% 60%; }
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

/* İnce altın ip */
.hero__thread { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.hero__thread path {
  fill: none; stroke: var(--gold-light); stroke-width: 1;
  stroke-dasharray: 2400; stroke-dashoffset: 2400;
  animation: drawThread 3s var(--ease-out) .6s forwards;
}
@keyframes drawThread { to { stroke-dashoffset: 0; } }

/* İnciler – her biri kendi yüzme animasyonunda; JS parallax için --px/--py kullanır */
.pearl {
  --size: 80px; --px: 0px; --py: 0px;
  position: absolute;
  width: var(--size); aspect-ratio: 1; border-radius: 50%;
  background: var(--pearl-sheen);
  box-shadow:
    inset -8px -10px 18px rgba(115, 43, 140, .35),
    inset 6px 6px 14px rgba(255, 255, 255, .7),
    0 20px 40px -10px rgba(0, 0, 0, .45);
  translate: var(--px) var(--py);
  animation: float 9s ease-in-out infinite;
  transition: translate .6s var(--ease-out);
}
/* İnci yüzeyindeki yanardöner parıltı */
.pearl::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: conic-gradient(from 200deg, transparent 0 60%, rgba(234,215,168,.35), rgba(190,160,230,.3), transparent 85%);
  mix-blend-mode: soft-light;
}
/* Mobil yerleşim: inciler metnin üstüne binmesin diye kenarlarda */
.pearl--1 { --size: 84px;  top: 11%; right: -18px; animation-duration: 10s; }
.pearl--2 { --size: 34px;  bottom: 13%; left: 8%;  animation-duration: 8s;  animation-delay: -2s; }
.pearl--3 { --size: 120px; bottom: 7%; right: -34px; animation-duration: 12s; animation-delay: -4s; opacity: .9; }
.pearl--4 { --size: 26px;  top: 17%; left: 52%; animation-duration: 7s; animation-delay: -1s; }
.pearl--5 { --size: 18px;  bottom: 18%; left: 48%; animation-duration: 6s; animation-delay: -3s; }
.pearl--6 { --size: 52px;  top: 9%; left: -18px; animation-duration: 11s; animation-delay: -5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-22px) rotate(8deg); }
}

/* Işık parlamaları */
.glint {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .55;
  animation: glow 14s ease-in-out infinite alternate;
}
.glint--1 { width: 60vmax; height: 60vmax; left: -20vmax; top: -25vmax; background: radial-gradient(circle, rgba(201,164,92,.35), transparent 60%); }
.glint--2 { width: 50vmax; height: 50vmax; right: -20vmax; bottom: -25vmax; background: radial-gradient(circle, rgba(190,120,220,.45), transparent 60%); animation-delay: -7s; }
@keyframes glow { to { transform: translate3d(8vmax, 6vmax, 0) scale(1.1); } }

.hero__content { position: relative; z-index: 1; }

.hero__place {
  font-size: var(--fs-sm);
  color: var(--gold-light);
  margin-bottom: var(--sp-5);
  opacity: 0; animation: fadeIn .8s var(--ease) .3s forwards;
}

/* Başlık: iki satır, maskeli yükselme */
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-hero);
  line-height: .98;
  letter-spacing: -.02em;
  margin-bottom: var(--sp-6);
}
.hero__line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero__line:nth-child(2) { font-style: italic; padding-left: 8vw; color: var(--gold-light); }
.hero__title .hero__line { animation: lineUp 1.1s var(--ease-out) both; }
.hero__title .hero__line:nth-child(1) { animation-delay: .45s; }
.hero__title .hero__line:nth-child(2) { animation-delay: .6s; }
@keyframes lineUp { from { opacity: 0; transform: translateY(60%); clip-path: inset(0 0 100% 0); } to { opacity: 1; transform: none; clip-path: inset(0 0 0 0); } }

.hero__lead {
  max-width: 32rem;
  font-size: var(--fs-md);
  color: rgba(255,255,255,.82);
  margin-bottom: var(--sp-6);
  opacity: 0; animation: fadeIn .8s var(--ease) .9s forwards;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  opacity: 0; animation: fadeIn .8s var(--ease) 1.05s forwards;
}

/* Scroll göstergesi */
.hero__scroll {
  position: absolute; left: 50%; bottom: 90px; z-index: 1;
  width: 26px; height: 42px; margin-left: -13px;
  border: 1px solid rgba(255,255,255,.5); border-radius: 20px;
  display: none;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px;
  width: 6px; height: 6px; margin-left: -3px; border-radius: 50%;
  background: var(--pearl-sheen);
  animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(18px); } }

/* --------------------------------------------------------------------------
   8. SVG DALGA GEÇİŞLERİ
   -------------------------------------------------------------------------- */
.wave { position: absolute; left: 0; width: 100%; height: 60px; display: block; pointer-events: none; }
.wave--bottom { bottom: -1px; }
.wave--top { top: -1px; }
.hero .wave path { fill: var(--pearl); }

/* --------------------------------------------------------------------------
   9. HAKKIMIZDA
   -------------------------------------------------------------------------- */
.about__grid { display: grid; gap: var(--sp-7); align-items: center; }

.about__media { position: relative; }
.about__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 200px 200px var(--radius) var(--radius);   /* kemer formu: çarşı kapıları */
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute; right: -4px; bottom: 24px;
  display: grid;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  line-height: 1.35;
}
.about__badge strong { font-family: var(--font-display); font-size: var(--fs-md); color: var(--plum); font-weight: 500; }
.about__badge span { font-size: var(--fs-xs); color: var(--muted); }

.about__text p { color: var(--muted); margin-bottom: var(--sp-4); max-width: 36rem; }

.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5) var(--sp-4);
  margin-top: var(--sp-6); padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
}
.stat { display: grid; gap: 2px; }
.stat__num {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  line-height: 1.1;
  color: var(--plum);
  font-variant-numeric: lining-nums tabular-nums;
}
.stat__label { font-size: var(--fs-sm); color: var(--muted); }

/* --------------------------------------------------------------------------
   10. HİZMETLER – kartlar (3D tilt + yükselme)
   -------------------------------------------------------------------------- */
.services { background: var(--mist); }

.services__grid { display: grid; gap: var(--sp-4); }

.card {
  --rx: 0deg; --ry: 0deg; --lift: 0px;
  position: relative;
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
  transition: transform .5s var(--ease-out), box-shadow .4s var(--ease), border-color .4s, background-color .4s;
  transform-style: preserve-3d;
  will-change: transform;
}
.card:hover {
  --lift: -8px;
  box-shadow: var(--shadow-lg);
  border-color: rgba(115,43,140,.25);
}
.card__icon {
  display: grid; place-items: center;
  width: 56px; height: 56px; margin-bottom: var(--sp-5);
  border-radius: 50%;
  background: var(--mist); color: var(--plum);
  font-size: 1.25rem;
  transform: translateZ(30px);
  transition: background-color .4s var(--ease), color .4s var(--ease), transform .4s;
}
.card:hover .card__icon { background: var(--plum); color: var(--gold-light); }
.card__title {
  font-family: var(--font-display);
  font-weight: 500; font-size: var(--fs-lg); line-height: 1.2;
  color: var(--aubergine);
  margin-bottom: var(--sp-2);
  transform: translateZ(20px);
}
.card p { color: var(--muted); font-size: var(--fs-sm); }

/* --------------------------------------------------------------------------
   11. NEDEN BİZ – koyu bant
   -------------------------------------------------------------------------- */
.why {
  position: relative;
  padding-block: calc(var(--section-y) + 40px);
  background: var(--aubergine);
  color: rgba(255,255,255,.85);
}
.why .wave--top path { fill: var(--pearl); }
.why .wave--bottom path { fill: var(--pearl); }
.why .section__title { color: var(--white); }
.why__grid { display: grid; gap: var(--sp-7); }
.why__intro p { margin-bottom: var(--sp-6); max-width: 28rem; }

.why__list { display: grid; gap: var(--sp-4); }
.why__item {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding: var(--sp-5);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: background-color .4s var(--ease), border-color .4s;
}
.why__item:hover { background: rgba(255,255,255,.09); border-color: rgba(234,215,168,.35); }
.why__item i { flex: none; font-size: 1.25rem; color: var(--gold); margin-top: 4px; width: 28px; text-align: center; }
.why__item h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-md); color: var(--white); margin-bottom: 2px; }
.why__item p { font-size: var(--fs-sm); }

/* --------------------------------------------------------------------------
   12. ÜRÜN GALERİLERİ – filtre, zoom, açıklama katmanı
   -------------------------------------------------------------------------- */
.products--gold { background: linear-gradient(180deg, var(--pearl), #F7F1E6); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* telefon: 2'li */
  gap: var(--sp-3);
}

.gallery__btn {
  position: relative; display: block;
  width: 100%;
  aspect-ratio: 3 / 4;                      /* dikey görsel */
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
  cursor: zoom-in;
}
.gallery__btn img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out), filter .6s;
}
.gallery__overlay {
  position: absolute; inset: auto 0 0 0;
  display: grid; gap: 2px; text-align: left;
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  background: linear-gradient(to top, rgba(42,14,54,.88), rgba(42,14,54,0));
  color: var(--white);
  transform: translateY(35%); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .4s var(--ease);
}
.gallery__overlay strong { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-md); line-height: 1.2; }
.gallery__overlay small { font-size: var(--fs-xs); color: var(--gold-light); }

.gallery__btn:hover img, .gallery__btn:focus-visible img { transform: scale(1.08); }
.gallery__btn:hover .gallery__overlay, .gallery__btn:focus-visible .gallery__overlay { transform: none; opacity: 1; }

/* --- Katalog düzeni (Altın Ürünlerimiz): sayfalar 2'li ve büyük ---
   Telefon: tek sütun, ekran genişliğinde. Tablet+: 2'li. Tıklayınca tam ekran + zoom. */
.gallery--pages {
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
.gallery--pages .gallery__btn {
  aspect-ratio: auto;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
}
.gallery--pages .gallery__btn img {
  width: 100%; height: auto;
  object-fit: contain;
}
/* Hover'da kırpan zoom yerine hafif gölge; detay için tıklayınca tam ekran açılır */
.gallery--pages .gallery__btn:hover img,
.gallery--pages .gallery__btn:focus-visible img { transform: none; }
.gallery--pages .gallery__btn:hover { box-shadow: var(--shadow-lg); }

@media (min-width: 768px) {
  .gallery--pages { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
}
@media (min-width: 1440px) {
  .gallery--pages { gap: var(--sp-7); }
}

/* Dokunmatik cihazlarda açıklama hep görünür */
@media (hover: none) {
  .gallery__overlay { transform: none; opacity: 1; }
}

/* Görsel yüklenemezse gösterilen inci yer tutucusu */
img.is-fallback { object-fit: cover; background: var(--mist); }

/* --------------------------------------------------------------------------
   13. LIGHTBOX – tam ekran görüntüleyici + yakınlaştırma
   Görsel ekranın tamamını kullanır; tıklayınca gerçek çözünürlüğüne kadar büyür.
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(20, 6, 26, .96);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox__stage {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  overflow: hidden;
  touch-action: none;            /* dokunma hareketlerini biz yönetiyoruz */
  cursor: zoom-in;
}
.lightbox.is-zoomed .lightbox__stage { cursor: zoom-out; }

.lightbox__img {
  --z: 1; --tx: 0px; --ty: 0px;
  display: block;
  width: auto; height: auto;
  max-width: 100vw;
  max-height: 100vh; max-height: 100dvh;   /* ekranı sonuna kadar kullan */
  object-fit: contain;
  transform: translate3d(var(--tx), var(--ty), 0) scale(var(--z));
  transform-origin: center;
  transition: transform .35s var(--ease-out);
  user-select: none; -webkit-user-select: none;
  /* will-change kullanılmıyor: büyütülünce görselin bulanık çizilmesine yol açar */
}
.lightbox.is-panning .lightbox__img { transition: none; }
.lightbox.is-hoverpan .lightbox__img { transition: transform .12s linear; }

/* Kontroller: yarı saydam, görselin üzerinde */
.lightbox__close, .lightbox__nav, .lightbox__zoom {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  color: var(--white);
  background: rgba(42, 14, 54, .55);
  border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background-color .3s, opacity .3s;
}
.lightbox__close:hover, .lightbox__nav:hover, .lightbox__zoom:hover { background: rgba(115, 43, 140, .85); }
.lightbox__close, .lightbox__nav { position: absolute; z-index: 2; }
.lightbox__close { top: calc(var(--sp-3) + env(safe-area-inset-top, 0px)); right: var(--sp-3); }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 44px; height: 44px; }
.lightbox__nav--prev { left: var(--sp-2); }
.lightbox__nav--next { right: var(--sp-2); }
/* Yakınlaştırılmışken ok tuşları okumayı engellemesin */
.lightbox.is-zoomed .lightbox__nav { opacity: 0; pointer-events: none; }

.lightbox__bar {
  position: absolute; z-index: 2;
  left: 50%; bottom: calc(var(--sp-3) + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 4px 4px 4px var(--sp-4);
  border-radius: 999px;
  background: rgba(42, 14, 54, .7);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-size: var(--fs-sm);
  white-space: nowrap;
}
.lightbox__count { font-variant-numeric: tabular-nums; font-weight: 600; }
.lightbox__hint { display: none; color: rgba(255,255,255,.7); padding-left: var(--sp-3); border-left: 1px solid rgba(255,255,255,.2); }
.lightbox__zoom { width: 40px; height: 40px; }

@media (min-width: 768px) {
  .lightbox__hint { display: inline; }
  .lightbox__nav { width: 52px; height: 52px; }
  .lightbox__nav--prev { left: var(--sp-5); }
  .lightbox__nav--next { right: var(--sp-5); }
  .lightbox__close { top: var(--sp-5); right: var(--sp-5); }
}

/* --------------------------------------------------------------------------
   14. İÇ SAYFA BAŞLIĞI (page hero) + breadcrumb
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--sp-8)) 0 calc(var(--sp-9) + 10px);
  color: var(--white);
  background: var(--grad-hero);
  background-size: 300% 300%;
  animation: gradientShift 18s ease-in-out infinite;
  overflow: hidden;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: var(--sp-4);
  animation: fadeIn .9s var(--ease-out) .1s both;
}
.page-hero__lead {
  max-width: 34rem;
  font-size: var(--fs-md);
  color: rgba(255,255,255,.82);
  animation: fadeIn .9s var(--ease-out) .25s both;
}
.page-hero .wave path { fill: var(--pearl); }

.breadcrumb { margin-bottom: var(--sp-5); font-size: var(--fs-sm); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.breadcrumb li { color: var(--gold-light); }
.breadcrumb li + li::before { content: "/"; margin-right: var(--sp-2); color: rgba(255,255,255,.4); }
.breadcrumb .link-u { color: rgba(255,255,255,.8); font-weight: 400; }

/* İç sayfa incileri: başlığın sağında, küçük ölçekli */
.pearl--a { --size: 70px;  top: 22%; right: -16px; animation-duration: 10s; }
.pearl--b { --size: 26px;  top: 58%; right: 22%; animation-duration: 7s; animation-delay: -2s; }
.pearl--c { --size: 110px; bottom: 4%; right: 6%; animation-duration: 12s; animation-delay: -4s; opacity: .85; display: none; }

/* Ekran okuyucuya özel, görsel olarak gizli metin */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   15. ANASAYFA TANITIM – koleksiyon kapıları
   -------------------------------------------------------------------------- */
.intro__grid { display: grid; gap: var(--sp-5); align-items: end; }
.intro__text p { color: var(--muted); margin-bottom: var(--sp-5); max-width: 32rem; }

.collection {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 200px 200px var(--radius) var(--radius);   /* kemer formu */
  background: var(--mist);
  box-shadow: var(--shadow);
  transition: box-shadow .4s var(--ease), transform .5s var(--ease-out);
}
.collection img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.collection__body {
  position: absolute; inset: auto 0 0 0;
  display: grid; gap: 2px;
  padding: var(--sp-7) var(--sp-5) var(--sp-5);
  background: linear-gradient(to top, rgba(42,14,54,.9), rgba(42,14,54,0));
  color: var(--white);
}
.collection__body strong { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-lg); line-height: 1.2; }
.collection__body strong::after { /* dolan çizgi */
  content: ""; display: block; width: 36px; height: 1px; margin-top: var(--sp-2);
  background: var(--gold); transform-origin: left;
  transition: transform .5s var(--ease);
}
.collection__body small { font-size: var(--fs-sm); color: var(--gold-light); order: 2; }
.collection:hover { box-shadow: var(--shadow-lg); }
.collection:hover img, .collection:focus-visible img { transform: scale(1.06); }
.collection:hover .collection__body strong::after { transform: scaleX(2.5); }

/* --------------------------------------------------------------------------
   15b. ÇAĞRI BANDI
   -------------------------------------------------------------------------- */
.cta__box {
  position: relative; overflow: hidden;
  padding: var(--sp-8) var(--sp-5);
  border-radius: var(--radius-lg);
  background: var(--grad-hero);
  background-size: 200% 200%;
  color: rgba(255,255,255,.85);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta__title {
  position: relative;
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--fs-2xl); line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--sp-4);
  text-wrap: balance;
}
.cta__box p { position: relative; max-width: 32rem; margin: 0 auto var(--sp-6); }
.cta__actions { position: relative; display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }
.pearl--cta1 { --size: 90px; top: -24px; left: -24px; animation-duration: 11s; }
.pearl--cta2 { --size: 44px; bottom: 18px; right: 7%; animation-duration: 8s; animation-delay: -3s; }

/* --------------------------------------------------------------------------
   15c. ULAŞIM BİLGİLERİ (iletişim sayfası)
   -------------------------------------------------------------------------- */
.transit { margin-block: var(--sp-8) var(--sp-6); }
.transit__title { font-size: var(--fs-xl); margin-bottom: var(--sp-5); }
.transit__grid { display: grid; gap: var(--sp-4); }
.transit__item {
  padding: var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.transit__item i { font-size: 1.35rem; color: var(--plum); margin-bottom: var(--sp-3); }
.transit__item h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-md); color: var(--aubergine); margin-bottom: var(--sp-1); }
.transit__item p { font-size: var(--fs-sm); color: var(--muted); }

/* --------------------------------------------------------------------------
   16. SSS – akordeon (grid-template-rows ile yumuşak yükseklik)
   -------------------------------------------------------------------------- */
.faq__grid { display: grid; gap: var(--sp-6); }
.faq__grid .section__lead { margin-bottom: var(--sp-4); }

.acc { border-bottom: 1px solid var(--line); }
.acc:first-child { border-top: 1px solid var(--line); }
.acc__btn {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
  padding: var(--sp-5) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--fs-md); font-weight: 500;
  color: var(--aubergine);
  transition: color .3s;
}
.acc__btn:hover { color: var(--plum); }
.acc__btn i {
  flex: none;
  display: grid; place-items: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--plum);
  font-size: .8rem;
  transition: transform .4s var(--ease), background-color .3s, color .3s;
}
.acc__btn[aria-expanded="true"] i { transform: rotate(45deg); background: var(--plum); color: var(--white); border-color: var(--plum); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.acc__panel > div { overflow: hidden; }
.acc__panel p { padding-bottom: var(--sp-5); color: var(--muted); max-width: 40rem; }
.acc.is-open .acc__panel { grid-template-rows: 1fr; }

/* --------------------------------------------------------------------------
   17. İLETİŞİM – cam panel, animasyonlu etiketli form, harita
   -------------------------------------------------------------------------- */
.contact { position: relative; overflow: hidden; }
.contact::before { /* cam efektinin arkasında görünen yumuşak mor ışık */
  content: ""; position: absolute; width: 520px; height: 520px; left: -200px; top: 20%;
  border-radius: 50%; background: radial-gradient(circle, rgba(115,43,140,.18), transparent 65%);
  pointer-events: none;
}
.contact__grid { position: relative; display: grid; gap: var(--sp-5); margin-bottom: var(--sp-6); }

.glass {
  background: rgba(255,255,255,.6);
  -webkit-backdrop-filter: blur(18px) saturate(150%); backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}
.contact__info { display: grid; gap: var(--sp-2); padding: var(--sp-5); align-content: start; }
.info {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding: var(--sp-4);
  border-radius: var(--radius);
  transition: background-color .3s;
}
.info:hover { background: rgba(115,43,140,.06); }
.info i {
  flex: none; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--plum); color: var(--white);
}
.info span { display: grid; line-height: 1.5; font-size: var(--fs-sm); }
.info strong { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-md); color: var(--aubergine); }
.contact__info .btn { margin-top: var(--sp-3); }

.map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map iframe { display: block; width: 100%; height: 320px; border: 0; filter: saturate(.85); }
/* Tablet+ ekranda harita, bilgi kartıyla aynı yükseklikte yan yana */
.contact__grid .map { min-height: 320px; }

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  padding: calc(var(--sp-9) + 20px) 0 var(--sp-5);
  background: var(--aubergine);
  color: rgba(255,255,255,.72);
  font-size: var(--fs-sm);
}
.footer .wave--top path { fill: var(--pearl); }
.footer__grid { display: grid; gap: var(--sp-7); padding-bottom: var(--sp-7); }
.footer__brand img { width: 170px; margin-bottom: var(--sp-4); }
.footer__brand p { max-width: 20rem; margin-bottom: var(--sp-5); }
.footer__title { font-family: var(--font-display); font-weight: 500; font-size: var(--fs-md); color: var(--white); margin-bottom: var(--sp-4); }
.footer__links { display: grid; gap: var(--sp-2); }
.footer .link-u { color: rgba(255,255,255,.85); font-weight: 400; }
.footer__social { display: flex; gap: var(--sp-2); }
.footer__social a {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); color: var(--white);
  transition: background-color .3s, color .3s, transform .3s, border-color .3s;
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--aubergine); transform: translateY(-3px); }
.footer__bottom { padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.12); font-size: var(--fs-xs); }

/* --------------------------------------------------------------------------
   19. SABİT BUTONLAR (WhatsApp + yukarı çık)
   -------------------------------------------------------------------------- */
.fab { position: fixed; right: var(--sp-4); bottom: var(--sp-4); z-index: 90; display: grid; gap: var(--sp-3); }
.fab__btn {
  position: relative;
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), opacity .35s, visibility .35s, background-color .3s;
}
.fab__btn--wa { background: #25D366; color: #fff; order: 2; }
.fab__btn--wa:hover { transform: scale(1.08); }
.fab__btn--wa::after { /* nabız halkası */
  content: ""; position: absolute; width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid #25D366; animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { from { transform: scale(1); opacity: .7; } to { transform: scale(1.6); opacity: 0; } }
.fab__btn--top {
  background: var(--white); color: var(--plum); font-size: 1rem;
  opacity: 0; visibility: hidden; transform: translateY(12px);
}
.fab__btn--top.is-visible { opacity: 1; visibility: visible; transform: none; }
.fab__btn--top:hover { background: var(--plum); color: var(--white); }

/* --------------------------------------------------------------------------
   20. SCROLL ANİMASYONLARI (Intersection Observer ile .is-visible eklenir)
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal="fade-up"]     { transform: translateY(32px); }
[data-reveal="slide-right"] { transform: translateX(-40px); }
[data-reveal="zoom-in"]     { transform: scale(.94); }
[data-reveal].is-visible    { opacity: 1; transform: none; }
/* Kartlarda tilt transform'u ile çakışmasın diye görünür olduktan sonra kart kendi transform'unu kullanır */
.card[data-reveal].is-visible { transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift)); }
/* Görünme animasyonu bittikten sonra hover geçişleri gecikmesiz ve hızlı çalışsın */
.reveal-done.card { transition: transform .5s var(--ease-out), box-shadow .4s var(--ease), border-color .4s; }
.reveal-done.why__item { transition: background-color .4s var(--ease), border-color .4s; }
/* JS yoksa içerik gizli kalmasın */
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ==========================================================================
   21. TABLET – 768px+
   ========================================================================== */
@media (min-width: 768px) {
  :root {
    --fs-xl: 2.5rem;
    --fs-2xl: 3.25rem;
    --section-y: 6rem;
    --header-h: 84px;
  }
  .container { padding-inline: var(--sp-6); }
  .wave { height: 90px; }

  .hero__scroll { display: block; }
  /* Geniş ekranda inciler sağ tarafta sahneyi kurar */
  .pearl--1 { --size: 120px; top: 16%; right: 8%; }
  .pearl--2 { --size: 48px;  bottom: auto; top: 58%; left: auto; right: 5%; }
  .pearl--3 { --size: 180px; bottom: 12%; right: 20%; }
  .pearl--4 { --size: 36px;  top: 26%; left: auto; right: 38%; }
  .pearl--5 { --size: 22px;  bottom: 22%; left: auto; right: 48%; }
  .pearl--6 { --size: 70px;  top: 10%; left: -10px; }
  .hero__line:nth-child(2) { padding-left: 12vw; }

  .stats { grid-template-columns: repeat(4, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
  .why__list { grid-template-columns: repeat(2, 1fr); }

  .gallery:not(.gallery--pages) { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }   /* tablet ve üstü: 3'lü */


  .contact__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); align-items: stretch; }
  .contact__grid .map iframe { height: 100%; min-height: 420px; }

  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .intro__grid { grid-template-columns: 1fr 1fr; }
  .intro__text { grid-column: 1 / -1; }
  .cta__box { padding: var(--sp-9) var(--sp-8); }
  .transit__grid { grid-template-columns: repeat(3, 1fr); }
  .pearl--a { --size: 110px; right: 10%; top: 26%; }
  .pearl--b { --size: 34px; right: 30%; top: 40%; }
  .pearl--c { display: block; }

  .fab { right: var(--sp-5); bottom: var(--sp-5); }
}

/* ==========================================================================
   22. LAPTOP – 1024px+ (masaüstü menü)
   ========================================================================== */
@media (min-width: 1024px) {
  :root { --fs-2xl: 3.75rem; }

  .burger { display: none; }
  .header__logo { width: 168px; }
  .header.is-scrolled .header__logo { width: 136px; }

  /* Menü yatay satıra dönüşür */
  .nav {
    position: static;
    flex-direction: row; align-items: center; gap: var(--sp-6);
    padding: 0; background: none;
    clip-path: none; visibility: visible;
  }
  .nav__list { display: flex; gap: var(--sp-5); }
  .nav__link {
    position: relative;
    font-family: var(--font-body);
    font-size: var(--fs-sm); font-weight: 500;
    color: rgba(255,255,255,.88);
    opacity: 1; transform: none;
    padding-block: var(--sp-2);
  }
  .nav__link::after { /* animasyonlu alt çizgi */
    content: ""; position: absolute; left: 0; bottom: 2px;
    width: 100%; height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: right;
    transition: transform .4s var(--ease);
  }
  .nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
  .nav__link:hover, .nav__link.is-active { color: var(--white); font-style: normal; }

  .nav__phone {
    padding: .55rem 1.1rem; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35); color: var(--white); font-size: var(--fs-sm);
    transition: background-color .3s, color .3s, border-color .3s;
  }
  .nav__phone:hover { background: var(--white); color: var(--plum); }

  .header.is-scrolled .nav__link { color: var(--ink); }
  .header.is-scrolled .nav__link.is-active, .header.is-scrolled .nav__link:hover { color: var(--plum); }
  .header.is-scrolled .nav__link::after { background: var(--plum); }
  .header.is-scrolled .nav__phone { border-color: var(--plum); color: var(--plum); }
  .header.is-scrolled .nav__phone:hover { background: var(--plum); color: var(--white); }

  .about__grid { grid-template-columns: 5fr 6fr; gap: var(--sp-9); }
  .about__badge { right: -32px; }

  .services__grid { grid-template-columns: repeat(3, 1fr); }

  .why__grid { grid-template-columns: 4fr 7fr; align-items: center; gap: var(--sp-8); }

  .section__head--split { grid-template-columns: 1fr auto; align-items: end; }
  .gallery:not(.gallery--pages) { gap: var(--sp-6); }

  .faq__grid { grid-template-columns: 4fr 7fr; gap: var(--sp-8); }
  .intro__grid { grid-template-columns: 1.1fr 1fr 1fr; gap: var(--sp-6); }
  .intro__text { grid-column: auto; align-self: center; padding-right: var(--sp-5); }
  .collection--gold { position: relative; top: var(--sp-8); }  /* kademeli yerleşim */
  .intro { padding-bottom: calc(var(--section-y) + var(--sp-8)); }

  .contact__info { padding: var(--sp-6); }
}

/* ==========================================================================
   23. GENİŞ EKRAN – 1440px+
   ========================================================================== */
@media (min-width: 1440px) {
  :root {
    --container: 1320px;
    --fs-md: 1.1875rem;
    --fs-2xl: 4.25rem;
    --section-y: 8rem;
  }
  .hero__lead { font-size: 1.25rem; }
  .pearl--3 { --size: 240px; }
  .gallery:not(.gallery--pages) { gap: var(--sp-7); }
  .contact__grid .map iframe { min-height: 480px; }
}

/* ==========================================================================
   24. HAREKET AZALTMA TERCİHİ
   ========================================================================== */
@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;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__thread path { stroke-dashoffset: 0; }
  .fab__btn--wa::after { display: none; }
}