/* ==========================================================================
   Komfort Tekstil — Kurumsal
   Stil: Exaggerated Minimalism (oversized tipografi, yüksek kontrast, bol boşluk)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Renk — beyaz / kırık beyaz / gri / siyah + hafif altın */
  --white:      #FFFFFF;
  --off-white:  #F7F5F2;
  --gray-100:   #EDEBE8;
  --gray-200:   #DFDCD7;
  --gray-300:   #C9C5BF;
  --gray-500:   #6B6862;  /* beyaz üstünde 5.55:1 — AA ✓ */
  --gray-700:   #3A3835;
  --black:      #0B0B0B;  /* beyaz üstünde 19.68:1 */
  --black-soft: #141312;

  /* Altın: koyu zeminde metin (8.75:1 ✓), açık zeminde YALNIZCA çizgi/aksan.
     Beyaz üstünde 2.25:1 olduğu için açık zeminde metin olarak kullanılmaz. */
  --gold:       #C8A96A;
  --gold-dim:   rgba(200, 169, 106, 0.32);
  --gold-faint: rgba(200, 169, 106, 0.14);

  /* Tipografi */
  --font-serif:  'Playfair Display', 'Times New Roman', Georgia, serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-script: 'Italianno', 'Brush Script MT', cursive;

  /* Boşluk — spacious ölçek (density 2/10) */
  --space-2xs: 8px;
  --space-xs:  16px;
  --space-sm:  24px;
  --space-md:  40px;
  --space-lg:  64px;
  --space-xl:  96px;
  --space-2xl: 140px;
  --space-3xl: 200px;

  --container: 1320px;
  --radius:    2px;
  --radius-lg: 4px;

  /* Hareket */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:  200ms;
  --dur-mid:   400ms;
  --dur-slow:  900ms;

  --nav-h: 88px;

  --z-base: 1;
  --z-media: 2;
  --z-content: 10;
  --z-nav: 100;
  --z-loader: 1000;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-locked { overflow: hidden; }

/* [hidden] tarayıcı stilinde düşük öncelikli ([hidden]{display:none}) olduğu için
   .login{display:grid} gibi sınıf kuralları onu eziyor ve gizlenmesi gereken
   bölümler ekranda kalıyor. Bu kural özniteliğe son sözü geri veriyor. */
[hidden] { display: none !important; }

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

::selection { background: var(--gold); color: var(--black); }

/* ---------- Erişilebilirlik ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius);
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-sm);
  z-index: calc(var(--z-loader) + 1);
  padding: 14px 24px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: var(--space-sm); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

/* ---------- Ortak tipografi ---------- */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--gray-500);
  margin-bottom: var(--space-sm);
}
.eyebrow--light { color: var(--gray-300); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: var(--space-md);
}
.section-title em { color: var(--gray-500); }
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold); } /* koyu zemin — 8.75:1 ✓ */

.lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 62ch;
  margin-bottom: var(--space-sm);
}

.body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 62ch;
}

/* ---------- Butonlar ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 18px 44px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: color var(--dur-mid) var(--ease-soft),
              border-color var(--dur-mid) var(--ease-soft);
}
.btn span { position: relative; z-index: 2; }

/* Hover dolgusu: transform ile — width/height animasyonu yok (CLS/jank önlenir) */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--dur-mid) var(--ease-out);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleY(1); }

.btn--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
}
.btn--light::before { background: var(--white); }
.btn--light:hover, .btn--light:focus-visible { color: var(--black); border-color: var(--white); }

.btn--outline {
  color: var(--white);
  border-color: var(--gold-dim);
  letter-spacing: 0.32em;
  padding-inline: 56px;
}
.btn--outline::before { background: var(--gold); }
.btn--outline:hover, .btn--outline:focus-visible { color: var(--black); border-color: var(--gold); }

.btn--dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}
.btn--dark::before { background: var(--gold); }
.btn--dark:hover, .btn--dark:focus-visible { color: var(--black); border-color: var(--gold); }

/* ==========================================================================
   LOADER
   ========================================================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity 800ms var(--ease-out), visibility 800ms;
}
.loader.is-done { opacity: 0; visibility: hidden; }

.loader__inner { text-align: center; padding-inline: var(--space-sm); }

.loader__mark {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-md);
}
.loader__serif {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
}
.loader__script {
  font-family: var(--font-script);
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  line-height: 0.8;
  color: var(--gold);
}

.loader__bar {
  position: relative;
  width: min(220px, 60vw);
  height: 1px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}
.loader__fill {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease-soft);
}

/* ==========================================================================
   NAVBAR — şeffaf → beyaz
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-mid) var(--ease-soft),
              border-color var(--dur-mid) var(--ease-soft),
              height var(--dur-mid) var(--ease-soft),
              box-shadow var(--dur-mid) var(--ease-soft);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* Logo */
.nav__logo { display: flex; align-items: baseline; gap: 8px; padding-block: 6px; }
.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--white);
  transition: color var(--dur-mid) var(--ease-soft);
}
.nav__logo-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.34em;
  color: var(--gold);
  transition: color var(--dur-mid) var(--ease-soft);
}

/* Menü */
.nav__list { display: flex; align-items: center; gap: var(--space-sm); }

@media (min-width: 1180px) {
  .nav__list { gap: var(--space-md); }
}
.nav__link {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap; /* "Ana Sayfa" / "Otelin Yıldızları" iki satıra bölünmesin */
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--dur-mid) var(--ease-soft);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-mid) var(--ease-out);
}
.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__link:hover { color: var(--white); }

/* Scroll sonrası beyaz hâli */
.nav.is-scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom-color: var(--gray-100);
  box-shadow: 0 1px 24px rgba(11, 11, 11, 0.04);
}
.nav.is-scrolled .nav__logo-main { color: var(--black); }
.nav.is-scrolled .nav__link { color: var(--gray-500); }
.nav.is-scrolled .nav__link:hover,
.nav.is-scrolled .nav__link.is-active { color: var(--black); }
.nav.is-scrolled .nav__toggle-line { background: var(--black); }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-right: -12px;
  position: relative;
  align-items: center;
  justify-content: center;
}
.nav__toggle-line {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 1px;
  margin-left: -11px;
  background: var(--white);
  transition: transform var(--dur-mid) var(--ease-out),
              opacity var(--dur-fast) var(--ease-soft),
              background var(--dur-mid) var(--ease-soft);
}
.nav__toggle-line:nth-child(1) { transform: translateY(-4px); }
.nav__toggle-line:nth-child(2) { transform: translateY(4px); }
.nav.is-open .nav__toggle-line:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav.is-open .nav__toggle-line:nth-child(2) { transform: translateY(0) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__media { position: absolute; inset: 0; z-index: var(--z-media); overflow: hidden; }
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.06);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.3) 38%, rgba(11,11,11,0.72) 100%),
    rgba(11, 11, 11, 0.14);
}

.hero__content {
  position: relative;
  z-index: var(--z-content);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + var(--space-lg)) var(--space-sm) var(--space-md);
  max-width: 1100px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  color: var(--gold);          /* koyu zemin — 8.75:1 ✓ */
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-sm);
  text-wrap: balance;
}

.hero__slogan {
  font-size: clamp(1rem, 1.7vw, 1.3125rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 46ch;
  margin: 0 auto var(--space-lg);
  text-wrap: pretty;
}

/* İnce çizgilerle ayrılmış istatistikler — kart yok */
.stats {
  position: relative;
  z-index: var(--z-content);
  width: 100%;
  max-width: var(--container);
  padding: 0 var(--space-sm) var(--space-lg);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: var(--space-md) var(--space-xs);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
.stat:first-child { border-left: 0; }

.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums; /* sayarken genişlik oynamasın */
}
.stat__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

/* Hero → sonraki bölüm yumuşak geçiş */
.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22vh;
  z-index: calc(var(--z-content) - 1);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,11,0) 0%, rgba(11,11,11,0.75) 60%, var(--black) 100%);
}

/* ==========================================================================
   OTELİN YILDIZLARI — intro
   ========================================================================== */
.stars {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
}
.stars__media { position: absolute; inset: 0; z-index: var(--z-media); overflow: hidden; }
.stars__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale(1.08);
}
.stars__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--black) 0%, rgba(11,11,11,0.42) 26%, rgba(11,11,11,0.5) 74%, var(--black) 100%),
    rgba(11, 11, 11, 0.2);
}

.stars__content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  padding: var(--space-2xl) var(--space-sm);
}

.stars__title { margin-bottom: var(--space-lg); }

.stars__serif {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.14em;
  text-indent: 0.14em; /* letter-spacing'in sağda bıraktığı boşluğu dengeler */
  color: var(--white);
}
.stars__script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(5rem, 19vw, 16rem);
  font-weight: 400;
  line-height: 0.82;
  color: var(--gold);
  margin-top: -0.06em;
  padding-bottom: 0.12em; /* imza fontunun alt kuyrukları kırpılmasın */
}

/* ==========================================================================
   ÜRÜN BÖLÜMLERİ
   ========================================================================== */
.products { background: var(--black); }

.product {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  touch-action: pan-y; /* dikey scroll korunur, yatay swipe JS ile ele alınır */
}

.product__media { position: absolute; inset: 0; z-index: var(--z-media); overflow: hidden; }

/* Sinematik crossfade — sadece opacity + transform */
.product__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  will-change: opacity, transform;
  transition: opacity 1600ms var(--ease-soft), transform 7000ms linear;
}
.product__img.is-active {
  opacity: 1;
  transform: scale(1.12); /* yavaş Ken Burns zoom */
}

.product__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,11,0.62) 0%, rgba(11,11,11,0.28) 40%, rgba(11,11,11,0.68) 100%),
    rgba(11, 11, 11, 0.12);
}

.product__content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  pointer-events: none; /* oklar tıklanabilir kalsın */
}

.product__serif {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 4.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  color: var(--white);
}
.product__script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(4.5rem, 17vw, 14rem);
  font-weight: 400;
  line-height: 0.82;
  color: var(--gold);
  margin-top: -0.04em;
  padding-bottom: 0.12em;
}

/* Altın çerçeveli yuvarlak bilgi rozeti */
.badge {
  position: absolute;
  top: calc(var(--nav-h) + var(--space-sm));
  right: var(--space-md);
  z-index: var(--z-content);
  width: 132px;
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.28);
  backdrop-filter: blur(8px);
  text-align: center;
}
.badge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold-faint);
  border-radius: 50%;
  pointer-events: none;
}
.badge__row {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
}
.badge__row b {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gold); /* koyu zemin ✓ */
  font-variant-numeric: tabular-nums;
}
.badge__rule { width: 28px; height: 1px; background: var(--gold-dim); }

/* Oklar — 44px+ dokunma alanı */
.product__arrow {
  position: absolute;
  top: 50%;
  z-index: calc(var(--z-content) + 1);
  width: 56px;
  height: 56px;
  margin-top: -28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(11, 11, 11, 0.2);
  backdrop-filter: blur(6px);
  color: var(--white);
  opacity: 0.75;
  transition: opacity var(--dur-mid) var(--ease-soft),
              background var(--dur-mid) var(--ease-soft),
              border-color var(--dur-mid) var(--ease-soft),
              transform var(--dur-mid) var(--ease-out);
}
.product__arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.product__arrow:hover, .product__arrow:focus-visible {
  opacity: 1;
  background: rgba(200, 169, 106, 0.9);
  border-color: var(--gold);
  color: var(--black);
}
.product__arrow:active { transform: scale(0.94); }
.product__arrow--prev { left: var(--space-sm); }
.product__arrow--next { right: var(--space-sm); }

/* Noktalar */
.product__dots {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-content);
  display: flex;
  gap: 4px;
}
.product__dot {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  position: relative;
}
.product__dot::after {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  transition: background var(--dur-mid) var(--ease-soft);
}
.product__dot.is-active::after { background: var(--gold); }
.product__dot:hover::after { background: rgba(255, 255, 255, 0.7); }

/* ==========================================================================
   HAKKIMIZDA
   ========================================================================== */
.about {
  background: var(--off-white);
  padding-block: var(--space-3xl);
}
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about__values {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--gray-200);
}
.value { padding-left: var(--space-sm); border-left: 1px solid var(--gold-dim); }
.value__num {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.value__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}
.value__desc { font-size: 0.9375rem; color: var(--gray-500); }

.about__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(11, 11, 11, 0.07);
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   ÜRETİM
   ========================================================================== */
.process {
  background: var(--black);
  color: var(--white);
  padding-block: var(--space-3xl);
}
.process__head { max-width: 60ch; margin-bottom: var(--space-2xl); }

.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.step {
  padding: var(--space-md) var(--space-sm);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.step:first-child { border-left: 0; padding-left: 0; }
.step__num {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.step__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-2xs);
}
.step__desc { font-size: 0.9375rem; line-height: 1.75; color: rgba(255, 255, 255, 0.62); }

/* ==========================================================================
   İLETİŞİM
   ========================================================================== */
.contact {
  background: var(--white);
  padding-block: var(--space-3xl);
}
.contact__inner { max-width: 720px; }
.contact__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}
.contact__phone {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--black);
  border-bottom: 1px solid var(--gold-dim);
  padding-top: 6px;
  padding-bottom: 4px;
  transition: border-color var(--dur-mid) var(--ease-soft);
}
.contact__phone:hover { border-color: var(--gold); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--black-soft);
  color: rgba(255, 255, 255, 0.62);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-md);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-block: 6px;
  margin-bottom: calc(var(--space-sm) - 6px);
}
.footer__logo-main {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--white);
}
.footer__logo-sub { font-size: 10px; letter-spacing: 0.34em; color: var(--gold); }

.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.8;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.55);
}

.footer__title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.footer__list { display: grid; }
.footer__list a {
  position: relative;
  display: inline-block;
  /* 19px metin + 2×13px dolgu ≈ 45px dokunma yüksekliği (WCAG 2.5.5) */
  padding-block: 13px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--dur-mid) var(--ease-soft);
}
.footer__list a:hover { color: var(--gold); } /* koyu zemin ✓ */

.footer__list--contact li { display: grid; gap: 2px; }
.footer__list--contact a { padding-block: 10px; }
.footer__label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.34);
}
.footer__list--contact address { font-size: 0.9375rem; line-height: 1.7; color: rgba(255, 255, 255, 0.62); }

.footer__bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer__bottom p { font-size: 0.8125rem; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.42); }

/* ==========================================================================
   REVEAL — JS yoksa içerik yine görünür (progressive enhancement)
   ========================================================================== */
.js .reveal { opacity: 0; transform: translateY(28px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --nav-h: 72px; }

  .about__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about__media { aspect-ratio: 16 / 10; order: -1; }

  .process__list { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(3) { border-left: 0; padding-left: 0; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }

  .badge { width: 112px; height: 112px; right: var(--space-sm); }
  .badge__row b { font-size: 19px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .footer__brand { grid-column: 1 / -1; }
}

/* 767px: iPad dikey (768px) tablet düzenini korusun — max-width kapsayıcıdır */
@media (max-width: 767px) {
  :root {
    --space-2xl: 96px;
    --space-3xl: 120px;
  }

  /* Mobil menü — tam ekran overlay */
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: grid;
    place-items: center;
    background: rgba(11, 11, 11, 0.97);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur-mid) var(--ease-soft), visibility var(--dur-mid);
  }
  .nav.is-open .nav__menu { opacity: 1; visibility: visible; }

  .nav__list {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  .nav__link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
  }
  .nav.is-scrolled .nav__link { color: rgba(255, 255, 255, 0.9); }
  .nav.is-scrolled .nav__link.is-active { color: var(--white); }
  .nav.is-open .nav__toggle-line { background: var(--white); }

  /* Hero */
  .hero__content { padding-top: calc(var(--nav-h) + var(--space-md)); }
  .hero__slogan { margin-bottom: var(--space-md); }

  /* İstatistikler — 2×2, ince çizgi ızgara */
  .stats { padding-bottom: var(--space-md); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: var(--space-sm) var(--space-2xs); }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }

  /* Ürün — mobilde oklar gizli, swipe + noktalar aktif */
  .product__arrow { display: none; }
  .product__content { padding-inline: var(--space-sm); }

  .badge {
    top: auto;
    bottom: calc(var(--space-md) + 56px);
    right: var(--space-sm);
    width: 92px;
    height: 92px;
    gap: 5px;
  }
  .badge__row { font-size: 9px; letter-spacing: 0.14em; }
  .badge__row b { font-size: 16px; }
  .badge__rule { width: 20px; }

  .process__list { grid-template-columns: 1fr; }
  .step { border-left: 0; padding-left: 0; padding-block: var(--space-sm); }
  .step:not(:last-child) { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }

  .contact__actions { gap: var(--space-sm); }
  .btn { width: 100%; }
  .contact__phone { width: 100%; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* 2×2 ızgara 320px'e kadar korunur — tek sütuna düşmek hero'yu 100vh dışına taşırıyordu */
@media (max-width: 400px) {
  .stat { padding: var(--space-xs) 4px; }
  .stat__label { font-size: 10px; letter-spacing: 0.12em; }
}

/* Yatay (landscape) — kısa ekranlarda tam ekran bölümler nefes alsın */
@media (max-height: 560px) and (orientation: landscape) {
  .hero, .stars, .product { min-height: 640px; }
  .stats { position: relative; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal { opacity: 1 !important; transform: none !important; }

  .hero__img, .stars__img { transform: none; }
  .product__img { transform: none; transition: opacity 0.01ms; }
  .product__img.is-active { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .loader, .product__arrow, .product__dots, .hero__fade { display: none !important; }
  body { color: #000; background: #fff; }
  .hero, .stars, .product { min-height: auto; }
}
