/* ============================================================
   DIGITARIUS — "Gece Atlası" teması
   Antika yıldız atlası: parşömen, çivit mürekkebi, gece mavisi, altın.
   Sayfa parşömen gündüzle açılır, hizmetlerde geceye dalar,
   iletişimde alacakaranlığa, footer'da tekrar geceye iner.
   ============================================================ */

:root {
  /* Renk paleti — gündüz (parşömen) katmanı */
  --page-bg:   #F3E6D5;   /* çay lekesi parşömen — sayfa zemini */
  --bg:        #F3E6D5;
  --surface:   #EEDCC5;   /* koyulaşmış parşömen */
  --surface-2: #F9F0E1;   /* aydınlık kâğıt (kart yüzeyi) */
  --line:      rgba(38, 36, 70, 0.20);
  --line-soft: rgba(38, 36, 70, 0.11);

  --accent:    #7E4F17;   /* bronz mürekkep — eyebrow / küçük vurgular */
  --accent-2:  #8C3B54;   /* şarap / kökboya */
  --accent-3:  #8A5E1C;   /* koyu altın — parşömende okunur */

  --text:      #26243C;   /* çivit mürekkebi */
  --text-mut:  #55516F;
  --text-dim:  #625C7E;

  /* Gece katmanı (preloader, fx, footer) — gece mavisi, atlas klasiği */
  --night:     #0F1B33;
  --night-2:   #1C2C52;
  --gold:      #D9A84E;   /* gece üstünde altın */
  --gold-2:    #E7C078;

  --grad: linear-gradient(120deg, var(--accent-2) 0%, var(--accent-3) 100%);

  /* Tipografi rolleri */
  --font-display: "Bodoni Moda", "Didot", Georgia, serif;  /* büyük editöryel başlıklar — gravür havası */
  --font-head: "Petrona", Georgia, serif;                  /* sistem başlıkları / UI */
  --font-body: "Alegreya Sans", system-ui, sans-serif;
  --font-mono: "Xanh Mono", monospace;

  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --pad-section: clamp(72px, 11vw, 150px);
}

/* ============================================================
   PRELOADER — arc reveal
   ============================================================ */
.preloader { display: none; }
.js .preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(120% 120% at 50% 30%, #2B3F6E 0%, #18264A 55%, #0F1B33 100%);
}
/* Marka anı: logo derinlikten ekrana yaklaşır, perde kalkar. */
.preloader__scene {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  padding: 0 24px;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
/* Çıkışta yaklaşma hareketi devam eder — logo perdenin içinden geçiyormuş hissi */
.preloader__scene.is-leaving { opacity: 0; transform: scale(1.12); }

.preloader__logo {
  width: min(420px, 74vw); height: auto;
  opacity: 0; transform: scale(0.55);
  filter: blur(6px);
  animation: plLogoIn 1s var(--ease) .15s forwards;
  will-change: transform, opacity, filter;
}
@keyframes plLogoIn {
  0%   { opacity: 0; transform: scale(0.55); filter: blur(6px); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
.preloader__curtain {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
}
.preloader__fill { fill: var(--page-bg); }
.preloader__edge {
  stroke: var(--gold);
  stroke-width: 0.5;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 6px rgba(217, 168, 78, 0.8));
}
.preloader.is-done {
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
body.is-loading { overflow: hidden; }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
  overflow-x: clip;
}

/* Kâğıt dokusu — inline SVG grain, ağ isteği yok.
   soft-light + gri gürültü: parşömene doku verir, koyu radyal
   gradyanlardaki bantlaşmayı (pikselleşme) dither ederek kırar. */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 2000;
  pointer-events: none;
  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='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/%3E%3C/svg%3E");
  opacity: 0.22; mix-blend-mode: soft-light;
}

/* Sayfa geneli yıldız tozu — içeriğin ve bölüm zeminlerinin arkasında */
.page-stars {
  position: fixed; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  pointer-events: none;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
a, button { touch-action: manipulation; }

::selection { background: var(--accent); color: var(--bg); }

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--accent); color: var(--bg);
  padding: 10px 16px; border-radius: var(--r-md);
  font-weight: 700; z-index: 1000; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

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

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

/* ---------- Tipografi yardımcıları ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: "✦"; font-size: 0.9em; line-height: 1;
  color: var(--accent); opacity: .85;
}

.section { padding-block: var(--pad-section); position: relative; }

.section__head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 72px); }

/* Menüden bölüme atlanınca başlık sabit nav'ın altında kalmasın */
[id] { scroll-margin-top: 92px; }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-top: 20px;
}
.section__title em { font-style: italic; color: var(--accent-2); }
.section__lead {
  color: var(--text-mut);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 52ch;
  margin-top: 22px;
}

/* ---------- Butonlar ---------- */
.btn {
  --b-pad-y: 15px; --b-pad-x: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: var(--b-pad-y) var(--b-pad-x);
  font-family: var(--font-head);
  font-weight: 600; font-size: 1.02rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s var(--ease),
              border-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn--solid {
  background: var(--grad);
  color: #F9F1E4;
  box-shadow: 0 8px 30px rgba(140, 59, 84, 0.28);
}
.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(162, 112, 43, 0.38);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--accent-2);
  background: rgba(140, 59, 84, 0.07);
  transform: translateY(-2px);
}
.btn--block { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(243, 230, 213, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  max-width: var(--container); margin-inline: auto;
  padding: 18px clamp(20px, 5vw, 40px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo-img { height: 64px; width: auto; display: block; }
.footer__logo-img { height: 56px; width: auto; display: block; }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 0.95rem; color: var(--text-mut);
  position: relative; padding: 4px 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.is-current { color: var(--text); }
.nav__links a.is-current::after { transform: scaleX(1); }

.nav__cta { --b-pad-y: 11px; --b-pad-x: 22px; }

/* Mobil menü CTA'sı — yalnızca açık mobil menüde görünür */
.nav__menu-cta { display: none; }
.nav__links a.nav__menu-cta { color: #F9F1E4; }
.nav__links a.nav__menu-cta::after { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 0;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  --par: 0; /* JS scroll'da günceller — çıkış paralaksı */
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
  transform: translateY(calc(var(--par) * 0.14px));
}

/* Eskimiş kâğıt vinyeti + tepeden süzülen şafak ışığı */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(120% 85% at 50% 38%, transparent 55%, rgba(126, 94, 58, 0.16) 100%),
    linear-gradient(180deg, rgba(233, 208, 168, 0.5) 0%, rgba(243, 230, 213, 0) 32%);
}

/* Usturlap — başlığın arkasında ağır ağır dönen kadran */
.hero__rings {
  position: absolute; left: 50%; top: 50%;
  width: min(96vmin, 880px); height: min(96vmin, 880px);
  transform: translate(-50%, calc(-50% + var(--par) * 0.32px));
  color: #8F5B1E; opacity: .68;
  z-index: 0; pointer-events: none;
}
.hero__rings-a, .hero__rings-b { transform-origin: 400px 400px; }
.hero__rings-a { animation: ringSpin 110s linear infinite; }
.hero__rings-b { animation: ringSpin 170s linear infinite reverse; }
@keyframes ringSpin { to { transform: rotate(360deg); } }

/* Suluboya lekeleri — parşömene sızmış altın ve şarap */
.hero__glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .34; z-index: 0;
  pointer-events: none;
}
.hero__glow--1 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #E0B25D 0%, transparent 70%);
  top: -120px; left: -80px;
  animation: float1 16s var(--ease) infinite alternate;
}
.hero__glow--2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #C4708C 0%, transparent 70%);
  bottom: -160px; right: -120px;
  animation: float2 20s var(--ease) infinite alternate;
}
@keyframes float1 { to { transform: translate(60px, 40px) scale(1.1); } }
@keyframes float2 { to { transform: translate(-50px, -30px) scale(1.15); } }

.hero__content {
  position: relative; z-index: 2; max-width: 900px;
  transform: translateY(calc(var(--par) * 0.22px));
  opacity: calc(1 - var(--par) * 0.0011);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7.4vw, 5.4rem);
  line-height: 1.06;
  letter-spacing: -0.005em;
  margin: 24px 0;
}
.hero__title em { font-style: italic; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.hero__title .line {
  display: block; overflow: hidden;
  /* descender'lara (ş, y) alan aç; ritmi negatif margin ile koru */
  padding-bottom: 0.14em; margin-bottom: -0.14em;
}
.hero__title .line__inner {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1.1s var(--ease) forwards;
}
.hero__title .line:nth-child(1) .line__inner { animation-delay: .2s; }
.hero__title .line:nth-child(2) .line__inner { animation-delay: .38s; }
.hero__title .line:nth-child(3) .line__inner { animation-delay: .56s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero__sub {
  color: var(--text-mut);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 56ch; margin: 0 auto;
}
.hero__actions { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid var(--line);
  border-radius: 14px; z-index: 2;
  display: flex; justify-content: center;
}
/* görünür boyutu küçük tutup dokunma alanını 44px'in üstüne çıkar */
.hero__scroll::before { content: ""; position: absolute; inset: -12px; }
.hero__scroll span {
  width: 4px; height: 8px; border-radius: 2px; margin-top: 8px;
  background: var(--accent-2);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ============================================================
   HİZMETLER — full-screen scroll FX (FullScreenScrollFX vanilla portu)
   ============================================================ */
/* Gece dalışı: bu bölümün token'ları yerelde geceye döner —
   içerideki eyebrow, alıntı vurguları ve progress otomatik uyum sağlar. */
.fx {
  position: relative;
  --fx-text: #F4EBDC;
  --text-mut: #C7C9DA;
  --accent: var(--gold);
  --accent-2: var(--gold);
  --grad: linear-gradient(120deg, var(--gold-2) 0%, var(--gold) 100%);
}
.fx-track-outer { position: relative; height: 250vh; }   /* pin 100vh + ~50vh/adım × 3 */
.fx-stage {
  position: sticky; top: 0; height: 100vh; height: 100dvh; width: 100%;
  overflow: hidden; background: var(--night);
}
/* Gün ↔ gece dikişi: solmalar sahnenin içinde değil, bölümün giriş/çıkış
   sınırında yaşar (track kenarına konumlu, sayfayla birlikte kayar) —
   sahne temiz kalır, geçiş yalnızca eşikte görünür. Alpha yerine gerçek
   alacakaranlık durakları: parşömen → bal → gül kili → arduvaz → gece.
   Böylece açık rengin koyu üstünde griye düşmesi (çamur bölgesi) oluşmaz. */
.fx-track-outer::before,
.fx-track-outer::after {
  content: ""; position: absolute; left: 0; right: 0; z-index: 3;
  height: 28vh; pointer-events: none;
}
.fx-track-outer::before {
  top: -1px;
  background: linear-gradient(to bottom,
    var(--page-bg) 0%,
    #E9D2AE 26%,
    #C79A85 50%,
    #4E5578 76%,
    rgba(15, 27, 51, 0) 100%);
}
.fx-track-outer::after {
  bottom: -1px;
  background: linear-gradient(to top,
    var(--page-bg) 0%,
    #E9D2AE 26%,
    #C79A85 50%,
    #4E5578 76%,
    rgba(15, 27, 51, 0) 100%);
}

/* Arka planlar — çapraz geçiş (gece mavisinin üç tonu) */
.fx-bgs { position: absolute; inset: 0; z-index: 0; }
.fx-bg {
  position: absolute; inset: 0; opacity: 0; transform: scale(1.06);
  transition: opacity .9s var(--ease), transform 1.3s var(--ease);
}
.fx-bg.is-active { opacity: 1; transform: scale(1); }
.fx-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 95% at 50% 50%, transparent 0%, rgba(7, 12, 24, 0.5) 100%);
}
.fx-bg--0 { background: radial-gradient(85% 85% at 22% 25%, #2E4373 0%, #17253F 52%, #0F1B33 100%); }
.fx-bg--1 { background: radial-gradient(85% 85% at 80% 28%, #3A4E85 0%, #1C2C52 50%, #0F1B33 100%); }
.fx-bg--2 { background: radial-gradient(95% 95% at 50% 82%, #27395F 0%, #12203C 52%, #0F1B33 100%); }

/* Gece sahnesi yıldız tozu — arka planların üstünde, içeriğin altında */
.fx-stars {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Izgara */
.fx-grid {
  position: relative; z-index: 2; height: 100%;
  display: grid; grid-template-rows: auto 1fr auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* Üst başlık */
.fx-head { text-align: center; padding-top: clamp(86px, 13vh, 140px); }
.fx-head .eyebrow { justify-content: center; }
.fx-head__line {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 4vw, 2.8rem); color: var(--fx-text);
  margin-top: 8px;
}

/* İçerik: sol liste / merkez başlık / sağ liste */
.fx-content {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center; height: 100%;
}
.fx-side { height: 54vh; overflow: hidden; display: grid; align-content: center; }
.fx-side--left { justify-items: start; }
.fx-side--right { justify-items: end; }
.fx-side__track { will-change: transform; transition: transform .8s var(--ease); display: grid; gap: 8px; }

.fx-label {
  font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: 0.18em; font-size: clamp(0.78rem, 1.3vw, 0.95rem);
  color: var(--fx-text); opacity: 0.55;
  background: none; border: 0; cursor: pointer; padding: 12px 0;
  position: relative; transition: opacity .4s var(--ease), transform .45s var(--ease);
}
.fx-label:hover { opacity: 0.85; }
.fx-side--left .fx-label { text-align: left; }
.fx-side--right .fx-label { text-align: right; }
.fx-label.is-active { opacity: 1; }
.fx-side--left .fx-label.is-active { transform: translateX(16px); }
.fx-side--right .fx-label.is-active { transform: translateX(-16px); }
.fx-label.is-active::before {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-2);
}
.fx-side--left .fx-label.is-active::before { left: -16px; }
.fx-side--right .fx-label.is-active::before { right: -16px; }
.fx-label:focus-visible { opacity: 1; outline: 2px solid var(--accent-2); outline-offset: 4px; }

/* Merkez başlık — kelime maskeli */
.fx-center { position: relative; display: grid; place-items: center; height: 54vh; }
.fx-featured {
  position: absolute; inset: 0; display: grid; place-items: center; align-content: center;
  text-align: center; pointer-events: none;
}
.fx-featured__title {
  margin: 0; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 9vw, 7rem); line-height: 1.0;
  color: var(--fx-text); letter-spacing: -0.01em;
}
.fx-word-mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.16em; }
.fx-word {
  display: inline-block;
  transform: translateY(120%); opacity: 0;
  transition: transform .8s var(--ease), opacity .55s var(--ease);
}
.fx-featured__sub {
  margin-top: 20px; font-family: var(--font-body); color: var(--text-mut);
  font-size: clamp(0.98rem, 1.6vw, 1.2rem); max-width: 44ch; opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease) .15s, transform .6s var(--ease) .15s;
}
.fx-featured__sub em {
  font-style: normal; color: transparent;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
}
.fx-featured.is-active .fx-word {
  transform: translateY(0); opacity: 1;
  transition-delay: calc(var(--i, 0) * 70ms);
}
.fx-featured.is-active .fx-featured__sub { opacity: 1; transform: none; }
.fx-featured.is-past .fx-word { transform: translateY(-120%); opacity: 0; }

/* Alt: ilerleme */
.fx-foot { padding-bottom: clamp(28px, 5vh, 48px); display: flex; justify-content: center; }
.fx-progress { width: min(240px, 60vw); }
.fx-progress__nums {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--fx-text);
  margin-bottom: 8px; letter-spacing: 0.1em;
}
.fx-progress__bar { height: 2px; background: rgba(246, 234, 223, 0.24); position: relative; }
.fx-progress__fill {
  position: absolute; inset: 0 auto 0 0; width: 0%; height: 100%;
  background: var(--grad); transition: width .5s var(--ease);
}

/* Küçük ekran: tek sütun, liste kaydırması kapalı */
@media (max-width: 880px) {
  .fx-content { grid-template-columns: 1fr; row-gap: 2.4vh; align-content: center; }
  .fx-side { height: auto; }
  .fx-side--left, .fx-side--right { justify-items: center; }
  .fx-side--left .fx-label, .fx-side--right .fx-label { text-align: center; }
  .fx-side--left .fx-label.is-active, .fx-side--right .fx-label.is-active { transform: none; }
  .fx-side--left .fx-label.is-active::before, .fx-side--right .fx-label.is-active::before { display: none; }
  .fx-side__track { transform: none !important; gap: 10px; }
  .fx-center { height: auto; min-height: 42vh; }
}

/* ============================================================
   SEO & GEO — iki çağ, iki panel
   ============================================================ */
.seo__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ============================================================
   DİJİTAL REKLAM
   ============================================================ */
/* Sağdan taşan eko bölüm içinde kırpılmalı; yoksa mobil tarayıcı
   sayfayı 580px sanıp uzaklaştırıyor ve hamburger menü ekran dışında kalıyor */
.ads { overflow-x: clip; }

/* Hero'daki kadran halkası sayfada devam eder — sağ kenardan taşan eko */
.ads::before {
  content: ""; position: absolute; z-index: -1;
  top: 30px; right: -190px;
  width: 620px; height: 620px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%238F5B1E'%3E%3Ccircle cx='400' cy='400' r='388' stroke-width='14' stroke-dasharray='1.5 49.3' opacity='.28'/%3E%3Ccircle cx='400' cy='400' r='330' stroke-width='1' stroke-dasharray='7 12' opacity='.42'/%3E%3Ccircle cx='400' cy='400' r='248' stroke-width='.8' opacity='.36'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  opacity: .6; pointer-events: none;
}

.ads__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.ad-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 36px);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
/* imleci izleyen ışık — JS .glow-card üzerinden --mx/--my set eder */
.ad-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(162, 112, 43, 0.14), transparent 65%);
  opacity: 0; transition: opacity .35s var(--ease);
  pointer-events: none;
}
.ad-card:hover { transform: translateY(-4px); border-color: rgba(140, 59, 84, 0.45); }
.ad-card:hover::before { opacity: 1; }
.ad-card__tag {
  font-family: var(--font-mono); font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent-2);
}
.ad-card__name {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem); letter-spacing: -0.01em;
  margin-top: 12px;
}
.ad-card__p { color: var(--text-mut); font-size: 0.96rem; margin-top: 12px; max-width: 44ch; }

.ads__cta { margin-top: clamp(34px, 5vw, 52px); }
.ads__cta a {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--accent-2); padding: 10px 0;
  transition: color .3s var(--ease);
}
.ads__cta a:hover { color: var(--accent-3); }
.ads__cta-arrow { transition: transform .35s var(--ease); }
.ads__cta a:hover .ads__cta-arrow { transform: translateX(6px); }

/* ============================================================
   HAKKIMIZDA
   ============================================================ */
/* Yay takımyıldızı — hikayenin anlatıldığı bölümde kâğıda işlenmiş */
.about::before {
  content: ""; position: absolute; z-index: -1;
  top: clamp(24px, 6vw, 70px); right: 5%;
  width: min(400px, 46vw); height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cpath d='M66 185L134 155M134 155L118 254M134 155L212 110M212 110L274 155M274 155L342 116M342 116L362 161M362 161L326 212M326 212L274 155M326 212L118 254' fill='none' stroke='%238F5B1E' stroke-width='1' opacity='.5'/%3E%3Cg fill='%23A2702B'%3E%3Ccircle cx='66' cy='185' r='3.2'/%3E%3Ccircle cx='134' cy='155' r='2'/%3E%3Ccircle cx='118' cy='254' r='3.2'/%3E%3Ccircle cx='212' cy='110' r='2'/%3E%3Ccircle cx='274' cy='155' r='2'/%3E%3Ccircle cx='342' cy='116' r='3.2'/%3E%3Ccircle cx='362' cy='161' r='2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  opacity: .65; pointer-events: none;
}

.about__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
}
.about__text .section__title em { color: var(--accent-2); font-style: italic; }
.about__p { color: var(--text-mut); margin-top: 20px; max-width: 54ch; }
.about__p strong { color: var(--text); font-weight: 700; }

.about__quote {
  margin-top: 32px; padding: 24px 28px; max-width: 56ch;
  border-left: 2px solid var(--accent-2);
  background: linear-gradient(160deg, var(--surface-2), transparent);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.about__quote p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.5;
  color: var(--text);
}
.about__quote cite {
  display: block; margin-top: 14px;
  font-family: var(--font-mono); font-style: normal;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim);
}

.about__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.stat {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.stat__num {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.4rem, 5.4vw, 3.4rem);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; line-height: 1;
}
.stat__label { color: var(--text-mut); font-size: 0.92rem; margin-top: 10px; display: block; }

/* ============================================================
   İLETİŞİM
   ============================================================ */
/* Alacakaranlık: parşömen ısınır, mum ışığı gibi altın bir leke süzülür */
.contact {
  overflow: hidden;
  background: linear-gradient(180deg, var(--page-bg) 0%, #EDD6BC 55%, #E7CBAE 100%);
}
.contact__glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, #D9A84E 0%, transparent 70%);
  filter: blur(110px); opacity: .3;
  top: 10%; left: -10%; pointer-events: none;
}
.contact__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.contact__info { margin-top: 36px; display: grid; gap: 16px; }
.contact__info li { color: var(--text); }
.contact__k {
  display: block;
  font-family: var(--font-mono); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-dim); margin-bottom: 4px;
}

.form {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 42px);
}
.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 0.9rem; font-weight: 500;
  color: var(--text-mut); margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(255, 252, 244, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: var(--text); font: inherit; font-size: 1rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(143, 91, 30, 0.18);
}
.field.is-invalid input, .field.is-invalid textarea { border-color: #B4324B; }
.field__error {
  display: block; color: #B4324B; font-size: 0.82rem;
  margin-top: 6px; min-height: 1em;
}
.form__success {
  margin-top: 18px; color: var(--accent-2);
  font-weight: 500; text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* Seyir gecede biter — footer tekrar gece katmanına iner */
.footer {
  background: linear-gradient(180deg, var(--night-2) 0%, var(--night) 100%);
  padding-block: 44px;
  --text: #F4EBDC;
  --text-mut: #BFC5DA;
  --text-dim: #939CBD;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer__links { display: flex; gap: 8px 16px; flex-wrap: wrap; }
.footer__links a {
  color: var(--text-mut); font-size: 0.92rem;
  padding: 10px 5px;
  transition: color .25s var(--ease);
}
.footer__links a:hover { color: var(--text); }
.footer__copy { color: var(--text-dim); font-size: 0.85rem; width: 100%; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* .js scope'u kasıtlı: JS yüklenemezse içerik gizli kalmasın.
   Ağır tempo + hafif blur: sayfa "acele etmiyor" hissi. */
.js [data-reveal] {
  opacity: 0; transform: translateY(34px);
  filter: blur(5px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.14s);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; filter: none; }

/* ============================================================
   İMLEÇ EŞLİKÇİSİ — altın nokta (yalnızca fine pointer, JS ekler)
   ============================================================ */
.cursor-dot {
  position: fixed; left: 0; top: 0; z-index: 3000;
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(162, 112, 43, 0.85);
  box-shadow: 0 0 10px rgba(217, 168, 78, 0.35);
  pointer-events: none; opacity: 0;
  transition: opacity .35s var(--ease), width .35s var(--ease),
              height .35s var(--ease), background .35s var(--ease),
              border-color .35s var(--ease);
  border: 1px solid transparent;
  will-change: transform;
}
.cursor-dot.is-on { opacity: 1; }
.cursor-dot.is-active {
  width: 34px; height: 34px;
  background: rgba(162, 112, 43, 0.12);
  border-color: rgba(162, 112, 43, 0.55);
  box-shadow: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__logo-img { height: 52px; }

  .nav.is-open .nav__links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(246, 237, 224, 0.97);
    backdrop-filter: blur(16px);
    padding: 24px clamp(20px, 5vw, 40px) 32px;
    gap: 4px; border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav__links a { padding: 12px 0; font-size: 1.1rem; }
  .nav.is-open .nav__links .nav__menu-cta {
    display: inline-flex; align-self: flex-start;
    margin-top: 18px; padding: 13px 28px; font-size: 1rem;
  }

  .ads__grid { grid-template-columns: 1fr; }
  .seo__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .about__stats { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .nav__logo-img { height: 46px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; filter: none; }
  .hero__title .line__inner { transform: none; }
  .cursor-dot { display: none; }
  .hero { --par: 0 !important; }
}
