@import url('../fonts/fonts.css');

/* =====================================================================
   ERVARLAR SAUNA — Tasarım sistemi
   Koyu antrasit zemin · doğal meşe vurgusu · mimari tipografi
   ===================================================================== */

/* ---------------------------------------------------------------
   1. Tokenlar
   --------------------------------------------------------------- */
:root {
  /* Zemin */
  --ink:        #0B0B0B;
  --ink-2:      #111111;
  --ink-3:      #161514;
  --ink-soft:   #1D1B18;

  /* Açık yüzeyler */
  --cream:      #F6F5F2;
  --cream-2:    #EDEAE3;
  --paper:      #FFFFFF;

  /* Metin */
  --on-dark:        #F6F5F2;
  --on-dark-muted:  #A6A199;
  --on-light:       #14120F;
  --on-light-muted: #6A645B;

  /* Ahşap / vurgu */
  --oak:        #C8A06A;
  --oak-deep:   #A47D45;
  --oak-glow:   rgba(200, 160, 106, 0.14);
  --copper:     #B4653E;

  /* Marka (logo) */
  --brand-green: #00904A;
  --brand-blue:  #0189E0;

  /* Çizgiler */
  --line-dark:  rgba(246, 245, 242, 0.13);
  --line-dark-2:rgba(246, 245, 242, 0.07);
  --line-light: rgba(20, 18, 15, 0.12);

  /* Ölçü */
  --header-h:     86px;
  --header-h-sm:  66px;
  --wrap:         1280px;
  --gutter:       clamp(20px, 5vw, 48px);
  --section-y:    clamp(64px, 8.5vw, 122px);
  --radius:       3px;
  --radius-lg:    6px;

  /* Tipografi */
  --font-head: 'Manrope', ui-sans-serif, system-ui, 'Segoe UI', sans-serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, 'Segoe UI', sans-serif;

  --shadow-card: 0 18px 46px -24px rgba(0, 0, 0, 0.75);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------------------------------------------------------------
   2. Sıfırlama ve temel
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Uzun e-posta/URL gibi bölünemeyen metinlerin dar ekranda taşmasını önler */
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Yatay taşma kilidi.
   "clip" tercih edilir: "hidden" gibi kaydırma bağlamı oluşturmadığı için
   sticky header'ı bozmaz. Desteklemeyen tarayıcılarda hidden'a düşer. */
html, body { max-width: 100%; }
body { overflow-x: hidden; }
@supports (overflow: clip) {
  body { overflow-x: clip; }
}

/* Mobil menü açıkken gövde kaydırması kilitlenir.
   Konum JS tarafından korunur; iOS'ta sayfanın başa atlamasını önler. */
body.is-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

img, picture, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }

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

::selection { background: var(--oak); color: #14120F; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.018em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------
   3. Yerleşim
   --------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 900px; }

.section { padding-block: var(--section-y); position: relative; }
.section--light { background: var(--cream); color: var(--on-light); }
.section--paper { background: var(--paper); color: var(--on-light); }
.section--dark  { background: var(--ink); }
.section--dark-2{ background: var(--ink-2); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.section--light  a:not(.btn) { color: var(--oak-deep); }
.section--paper  a:not(.btn) { color: var(--oak-deep); }

/* Bölüm başlığı bloğu */
.sec-head { max-width: 720px; margin-bottom: clamp(34px, 4.4vw, 60px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--wide { max-width: 860px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--oak);
  opacity: 0.85;
}
.sec-head--center .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--oak);
  opacity: 0.85;
}

.sec-title {
  font-size: clamp(1.72rem, 3.5vw, 2.85rem);
  margin-bottom: 0.45em;
}
.sec-lead {
  font-size: clamp(1rem, 1.15vw, 1.075rem);
  color: var(--on-dark-muted);
  margin: 0;
}
.section--light .sec-lead,
.section--paper .sec-lead { color: var(--on-light-muted); }

/* ---------------------------------------------------------------
   4. Butonlar
   --------------------------------------------------------------- */
.btn {
  --btn-bg: var(--oak);
  --btn-fg: #14120F;
  --btn-bd: var(--oak);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  min-height: 50px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { --btn-bg: var(--oak-deep); --btn-bd: var(--oak-deep); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--on-dark);
  --btn-bd: rgba(246, 245, 242, 0.34);
}
.btn--ghost:hover { --btn-bg: rgba(246, 245, 242, 0.09); --btn-bd: var(--on-dark); }

.btn--dark {
  --btn-bg: var(--ink);
  --btn-fg: var(--on-dark);
  --btn-bd: var(--ink);
}
.btn--dark:hover { --btn-bg: #24211c; --btn-bd: #24211c; }

.btn--outline-dark {
  --btn-bg: transparent;
  --btn-fg: var(--on-light);
  --btn-bd: rgba(20, 18, 15, 0.28);
}
.btn--outline-dark:hover { --btn-bg: var(--ink); --btn-fg: var(--on-dark); --btn-bd: var(--ink); }

.btn--sm { padding: 11px 20px; min-height: 42px; font-size: 0.79rem; }
.btn--block { width: 100%; }
.btn .ico { width: 17px; height: 17px; flex: none; }

/* Metin bağlantısı */
.linkline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oak);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(200, 160, 106, 0.35);
  transition: border-color 0.25s var(--ease), gap 0.25s var(--ease);
}
.linkline:hover { border-color: var(--oak); gap: 14px; }
.linkline .ico { width: 15px; height: 15px; }

/* ---------------------------------------------------------------
   5. Üst bilgi çubuğu + Header
   --------------------------------------------------------------- */
.topbar {
  background: #060606;
  border-bottom: 1px solid var(--line-dark-2);
  font-size: 0.795rem;
  color: var(--on-dark-muted);
  position: relative;
  z-index: 60;
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
  padding-block: 6px;
}
.topbar__list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item .ico { width: 14px; height: 14px; color: var(--oak); flex: none; }
.topbar a:hover { color: var(--on-dark); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.32s var(--ease), border-color 0.32s var(--ease),
              backdrop-filter 0.32s var(--ease);
}
.site-header--solid,
.site-header.is-stuck {
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-dark);
}
.site-header--solid { background: var(--ink); }
.site-header--solid.is-stuck { background: rgba(11, 11, 11, 0.94); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: 164px; height: 51px; }

.nav__menu { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }

.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 15px;
  font-family: var(--font-head);
  font-size: 0.845rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: rgba(246, 245, 242, 0.86);
  border-radius: var(--radius);
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}
.nav__link:hover, .nav__item:focus-within > .nav__link { color: var(--on-dark); }

.nav__link::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 6px;
  height: 1px;
  background: var(--oak);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__item:hover > .nav__link::after,
.nav__item.is-open > .nav__link::after,
.nav__link.is-current::after { transform: scaleX(1); }
.nav__link.is-current { color: var(--on-dark); }

.nav__caret { width: 11px; height: 11px; opacity: 0.65; transition: transform 0.28s var(--ease); }
.nav__item:hover .nav__caret, .nav__item.is-open .nav__caret { transform: rotate(180deg); }

.nav__actions { display: flex; align-items: center; gap: 12px; flex: none; }

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 10px 4px;
}
.nav__phone .ico { width: 16px; height: 16px; color: var(--oak); }
.nav__phone:hover { color: var(--oak); }

/* Açılır menü — Kurumsal */
.dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 246px;
  background: #0E0E0E;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 28px 60px -26px rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transform: translateY(9px);
  transition: opacity 0.24s var(--ease), transform 0.24s var(--ease), visibility 0.24s;
  list-style: none;
  margin: 0;
}
.nav__item:hover > .dropdown,
.nav__item.is-open > .dropdown,
.nav__item:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: rgba(246, 245, 242, 0.82);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.dropdown a:hover, .dropdown a.is-current { background: rgba(200, 160, 106, 0.11); color: var(--oak); }

/* Mega menü — Ürünlerimiz */
.mega {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translate(-50%, 9px);
  width: min(1080px, calc(100vw - 48px));
  background: #0E0E0E;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 74px -30px rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.26s var(--ease), transform 0.26s var(--ease), visibility 0.26s;
  overflow: hidden;
}
.nav__item:hover > .mega,
.nav__item.is-open > .mega,
.nav__item:focus-within > .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.mega__grid { display: grid; grid-template-columns: 1fr 1fr 300px; }
.mega__col { padding: 22px; }
.mega__col + .mega__col { border-left: 1px solid var(--line-dark-2); }

.mega__list { list-style: none; margin: 0; padding: 0; }
.mega__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: rgba(246, 245, 242, 0.82);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.mega__link:hover, .mega__link.is-current { background: rgba(200, 160, 106, 0.1); color: var(--oak); }
.mega__link .dot {
  width: 5px; height: 5px; flex: none; border-radius: 50%;
  background: var(--oak); opacity: 0.5;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.mega__link:hover .dot { opacity: 1; transform: scale(1.5); }

.mega__promo {
  background: var(--ink-3);
  border-left: 1px solid var(--line-dark-2);
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mega__promo-img { position: relative; aspect-ratio: 300 / 180; overflow: hidden; }
.mega__promo-img img { width: 100%; height: 100%; object-fit: cover; }
.mega__promo-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0) 30%, rgba(11,11,11,0.85) 100%);
}
.mega__promo-body { padding: 18px 22px 22px; }
.mega__promo-body h4 { font-size: 1rem; margin-bottom: 8px; }
.mega__promo-body p { font-size: 0.845rem; color: var(--on-dark-muted); margin-bottom: 14px; line-height: 1.6; }

/* Hamburger */
.burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}
.burger span {
  display: block; width: 19px; height: 1.5px; background: var(--on-dark);
  position: relative; transition: background 0.2s var(--ease);
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 1.5px; background: var(--on-dark);
  transition: transform 0.28s var(--ease), top 0.28s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after { top: 0; transform: rotate(-45deg); }

/* ---------------------------------------------------------------
   6. Mobil offcanvas menü
   --------------------------------------------------------------- */
.mnav-backdrop {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.mnav-backdrop.is-open { opacity: 1; visibility: visible; }

.mnav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 96;
  width: min(400px, 88vw);
  background: #0A0A0A;
  border-left: 1px solid var(--line-dark);
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  display: flex; flex-direction: column;
  overscroll-behavior: contain;
}
.mnav.is-open { transform: translateX(0); }

.mnav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-dark);
  flex: none;
}
.mnav__head img { width: 138px; height: 43px; }
.mnav__close {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line-dark); border-radius: var(--radius);
}
.mnav__close .ico { width: 18px; height: 18px; }

.mnav__body { flex: 1; overflow-y: auto; padding: 10px 0 24px; -webkit-overflow-scrolling: touch; }

.mnav__list { list-style: none; margin: 0; padding: 0; }
.mnav__row {
  display: flex; align-items: stretch;
  border-bottom: 1px solid var(--line-dark-2);
}
.mnav__link {
  flex: 1;
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.045em; text-transform: uppercase;
  display: flex; align-items: center;
}
.mnav__link.is-current { color: var(--oak); }
.mnav__toggle {
  width: 56px; flex: none;
  display: grid; place-items: center;
  border-left: 1px solid var(--line-dark-2);
  color: var(--on-dark-muted);
}
.mnav__toggle .ico { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.mnav__toggle[aria-expanded="true"] .ico { transform: rotate(180deg); color: var(--oak); }

/* Alt menü paneli — yükseklik JS ile atanır (tüm tarayıcılarda çalışır) */
.mnav__sub {
  list-style: none; margin: 0; padding: 0;
  background: #050505;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s var(--ease);
}
.mnav__sub > div { min-height: 0; }
/* JavaScript devre dışıysa alt menüler yine de görünür kalır */
.no-js .mnav__sub { max-height: none; }
.mnav__sub a {
  display: block;
  padding: 13px 20px 13px 34px;
  font-size: 0.895rem;
  color: rgba(246, 245, 242, 0.76);
  border-bottom: 1px solid rgba(246, 245, 242, 0.04);
}
.mnav__sub a:hover, .mnav__sub a.is-current { color: var(--oak); }

.mnav__foot { padding: 20px; border-top: 1px solid var(--line-dark); display: grid; gap: 10px; flex: none; }
.mnav__foot .btn { width: 100%; }
.mnav__contact { display: grid; gap: 8px; font-size: 0.86rem; color: var(--on-dark-muted); margin-top: 6px; }
.mnav__contact a { display: inline-flex; align-items: center; gap: 9px; }
.mnav__contact .ico { width: 14px; height: 14px; color: var(--oak); flex: none; }

/* ---------------------------------------------------------------
   7. Hero slider
   --------------------------------------------------------------- */
.hero {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  height: clamp(560px, 82vh, 860px);
  overflow: hidden;
  background: var(--ink);
}
.hero__track { position: absolute; inset: 0; }

.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.05s var(--ease), visibility 1.05s;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }

.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media picture, .hero__media img { width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center; transform: scale(1.045); }
.hero__slide.is-active .hero__media img {
  animation: kenburns 9s var(--ease) forwards;
}
@keyframes kenburns {
  from { transform: scale(1.045); }
  to   { transform: scale(1.11); }
}

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.74) 0%, rgba(6, 6, 6, 0.18) 34%, rgba(6, 6, 6, 0.28) 60%, rgba(6, 6, 6, 0.86) 100%),
    linear-gradient(96deg, rgba(6, 6, 6, 0.66) 0%, rgba(6, 6, 6, 0.14) 58%, rgba(6, 6, 6, 0) 100%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(72px, 10vh, 120px);
  padding-top: var(--header-h);
}
.hero__content { max-width: 720px; }

.hero__pre {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 18px;
}
.hero__pre::before { content: ""; width: 34px; height: 1px; background: var(--oak); }

.hero__title {
  font-size: clamp(2.25rem, 6.2vw, 4.5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.032em;
  margin-bottom: 0.32em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.42);
}
.hero__desc {
  font-size: clamp(1rem, 1.55vw, 1.19rem);
  color: rgba(246, 245, 242, 0.9);
  max-width: 56ch;
  margin-bottom: 30px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}
.hero__btns { display: flex; flex-wrap: wrap; gap: 13px; }

/* Slider animasyon giriş */
.hero__slide.is-active .hero__pre,
.hero__slide.is-active .hero__title,
.hero__slide.is-active .hero__desc,
.hero__slide.is-active .hero__btns {
  animation: heroUp 0.85s var(--ease) both;
}
.hero__slide.is-active .hero__title { animation-delay: 0.09s; }
.hero__slide.is-active .hero__desc  { animation-delay: 0.17s; }
.hero__slide.is-active .hero__btns  { animation-delay: 0.25s; }
@keyframes heroUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* Kontroller */
.hero__nav {
  position: absolute;
  left: 0; right: 0; bottom: clamp(26px, 3.4vh, 40px);
  z-index: 4;
}
.hero__nav-in {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.hero__dots { display: flex; align-items: center; gap: 10px; }
.hero__dot {
  width: 34px; height: 3px;
  background: rgba(246, 245, 242, 0.28);
  border-radius: 2px;
  position: relative; overflow: hidden;
  transition: background 0.3s var(--ease);
}
.hero__dot::after {
  content: ""; position: absolute; inset: 0; width: 0;
  background: var(--oak);
}
.hero__dot.is-active::after { width: 100%; transition: width 6.4s linear; }
.hero__dot:hover { background: rgba(246, 245, 242, 0.5); }

.hero__arrows { display: flex; gap: 8px; }
.hero__arrow {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid rgba(246, 245, 242, 0.26);
  border-radius: var(--radius);
  color: var(--on-dark);
  transition: background 0.24s var(--ease), border-color 0.24s var(--ease);
}
.hero__arrow:hover { background: var(--oak); border-color: var(--oak); color: #14120F; }
.hero__arrow .ico { width: 18px; height: 18px; }

/* Hero altı hızlı bilgi şeridi */
.hero-strip { background: var(--ink-2); border-block: 1px solid var(--line-dark-2); }
.hero-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-strip__item {
  padding: 26px 24px;
  display: flex; align-items: flex-start; gap: 14px;
}
.hero-strip__item + .hero-strip__item { border-left: 1px solid var(--line-dark-2); }
.hero-strip__item .ico { width: 22px; height: 22px; color: var(--oak); flex: none; margin-top: 3px; }
.hero-strip__item h3 {
  font-size: 0.94rem; margin: 0 0 3px; letter-spacing: 0.01em;
}
.hero-strip__item p { font-size: 0.83rem; color: var(--on-dark-muted); margin: 0; line-height: 1.55; }

/* ---------------------------------------------------------------
   8. İç sayfa başlığı
   --------------------------------------------------------------- */
.page-hero {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  padding-top: calc(var(--header-h) + clamp(56px, 8vw, 104px));
  padding-bottom: clamp(48px, 7vw, 88px);
  background: var(--ink-2);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,6,0.86) 0%, rgba(6,6,6,0.7) 45%, rgba(11,11,11,0.94) 100%);
}
.page-hero__in { position: relative; z-index: 2; }
.page-hero__title {
  font-size: clamp(1.95rem, 4.6vw, 3.35rem);
  margin-bottom: 0.3em;
}
.page-hero__sub {
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  color: rgba(246, 245, 242, 0.8);
  max-width: 62ch;
  margin: 0;
}

/* Breadcrumb */
.crumbs { margin-bottom: 22px; }
.crumbs ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
  font-size: 0.8rem; color: var(--on-dark-muted);
}
.crumbs li { display: inline-flex; align-items: center; gap: 8px; }
.crumbs li + li::before { content: "/"; opacity: 0.4; }
.crumbs a:hover { color: var(--oak); }
.crumbs [aria-current] { color: var(--oak); }

/* ---------------------------------------------------------------
   9. Bizi tanıyın
   --------------------------------------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.about-media { position: relative; }
.about-media__main {
  position: relative;
  aspect-ratio: 4 / 3.1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.about-media__main img { width: 100%; height: 100%; object-fit: cover; }
.about-media__badge {
  position: absolute;
  right: -14px; bottom: -18px;
  background: var(--ink);
  color: var(--on-dark);
  padding: 20px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 160, 106, 0.34);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.about-media__badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--oak);
  line-height: 1;
}
.about-media__badge span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-top: 7px;
}
.about-body p { font-size: 1.015rem; }
.about-body .lead {
  font-size: clamp(1.04rem, 1.4vw, 1.16rem);
  color: var(--on-light);
  font-weight: 500;
}
.about-points {
  list-style: none; margin: 26px 0 30px; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 22px;
}
.about-points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.93rem; color: var(--on-light-muted);
}
.about-points .ico { width: 17px; height: 17px; color: var(--oak-deep); flex: none; margin-top: 4px; }

/* ---------------------------------------------------------------
   10. Ürün kartları
   --------------------------------------------------------------- */
/* minmax 260px: 1280px kapsayıcıda tam 4 sütun verir (8 kart = 2 tam satır),
   dar ekranlarda kendiliğinden 3 → 2 → 1 sütuna iner. */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

/* Ana sayfa öne çıkanlar: tam 4 kart, tek satır.
   Ara genişliklerde 3+1 gibi dengesiz satır oluşmasın diye
   sütun sayısı 4 → 2 → 1 olarak iner (bkz. responsive.css). */
.prod-grid--featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pcard {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--ink-3);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.pcard:hover { border-color: rgba(200, 160, 106, 0.42); transform: translateY(-4px); }

.pcard__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-2); }
.pcard__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0) 45%, rgba(11,11,11,0.72) 100%);
}
.pcard__tag {
  position: absolute; z-index: 2; left: 16px; top: 16px;
  background: rgba(11, 11, 11, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(200, 160, 106, 0.3);
  color: var(--oak);
  font-family: var(--font-head);
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 2px;
}
.pcard__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.pcard__title { font-size: 1.14rem; margin-bottom: 10px; }
.pcard__title a::after { content: ""; position: absolute; inset: 0; }
.pcard__desc {
  font-size: 0.895rem;
  color: var(--on-dark-muted);
  line-height: 1.64;
  margin-bottom: 18px;
  flex: 1;
}
.pcard__more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--oak);
}
.pcard__more .ico { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.pcard:hover .pcard__more .ico { transform: translateX(4px); }

/* Açık zeminde ürün kartı */
.section--light .pcard,
.section--paper .pcard { background: var(--paper); border-color: var(--line-light); }
.section--light .pcard__title,
.section--paper .pcard__title { color: var(--on-light); }
.section--light .pcard__desc,
.section--paper .pcard__desc { color: var(--on-light-muted); }
.section--light .pcard:hover,
.section--paper .pcard:hover { border-color: rgba(164, 125, 69, 0.5); }

/* ---------------------------------------------------------------
   11. Öne çıkan tanıtım bloğu (sauna & spa)
   --------------------------------------------------------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-3);
}
.feature--flip .feature__media { order: 2; }
.feature__media { position: relative; min-height: 380px; }
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__body { padding: clamp(30px, 4vw, 60px); display: flex; flex-direction: column; justify-content: center; }
.feature__body .sec-title { font-size: clamp(1.5rem, 2.6vw, 2.15rem); }
.feature__list {
  list-style: none; margin: 22px 0 30px; padding: 0;
  display: grid; gap: 11px;
}
.feature__list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 0.93rem; color: var(--on-dark-muted);
}
.feature__list .ico { width: 16px; height: 16px; color: var(--oak); flex: none; margin-top: 4px; }

/* ---------------------------------------------------------------
   12. Neden Ervarlar
   --------------------------------------------------------------- */
/* Kart ızgarası — ayırıcı çizgiler kapsayıcı arka planıyla değil, kartların
   kendi 1px gölge halkasıyla çizilir. Böylece kart sayısı sütun sayısına
   bölünmediğinde ortaya çıkan boş hücreler hiçbir renk göstermez. */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.why-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.why-card {
  background: var(--cream);
  box-shadow: 0 0 0 1px var(--line-light);
  padding: clamp(26px, 3vw, 38px);
  transition: background 0.3s var(--ease);
}
.why-card:hover { background: var(--paper); }

/* Koyu bölümlerde aynı ızgara */
.section--dark .why-grid,
.section--dark-2 .why-grid { border-color: var(--line-dark-2); }
.section--dark .why-card,
.section--dark-2 .why-card {
  background: var(--ink-3);
  box-shadow: 0 0 0 1px var(--line-dark-2);
}
.section--dark .why-card:hover,
.section--dark-2 .why-card:hover { background: var(--ink-soft); }
.section--dark .why-card h3,
.section--dark-2 .why-card h3 { color: var(--on-dark); }
.section--dark .why-card p,
.section--dark-2 .why-card p { color: var(--on-dark-muted); }
.section--dark .why-card__ico,
.section--dark-2 .why-card__ico { color: var(--oak); border-color: rgba(200, 160, 106, 0.3); }

/* Kullanım alanları ızgarası (ürün detay) — öğe sayısı değişkendir */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.usage-item {
  background: var(--ink-3);
  box-shadow: 0 0 0 1px var(--line-dark-2);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.usage-item .ico { width: 16px; height: 16px; color: var(--oak); flex: none; margin-top: 4px; }
.usage-item p { margin: 0; font-size: 0.94rem; color: var(--on-dark); line-height: 1.6; }
.why-card__ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid rgba(164, 125, 69, 0.35);
  border-radius: var(--radius);
  color: var(--oak-deep);
  margin-bottom: 20px;
}
.why-card__ico .ico { width: 21px; height: 21px; }
.why-card h3 { font-size: 1.06rem; margin-bottom: 9px; }
.why-card p { font-size: 0.9rem; color: var(--on-light-muted); margin: 0; line-height: 1.66; }

/* ---------------------------------------------------------------
   13. Proje süreci (timeline)
   --------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 27px;
  height: 1px;
  background: var(--line-dark);
}
.step { position: relative; padding: 0 18px 0 0; }
.step__num {
  position: relative; z-index: 2;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--ink);
  border: 1px solid rgba(200, 160, 106, 0.4);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 800;
  color: var(--oak);
  margin-bottom: 20px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.step:hover .step__num { background: var(--oak); color: #14120F; }
.step h3 { font-size: 0.99rem; margin-bottom: 8px; }
.step p { font-size: 0.86rem; color: var(--on-dark-muted); margin: 0; line-height: 1.6; }

/* ---------------------------------------------------------------
   14. Uygulama blokları / galeri
   --------------------------------------------------------------- */
.app-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: clamp(10px, 1.2vw, 16px);
}
.app-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-3);
  display: block;
}
.app-tile--big { grid-column: span 2; grid-row: span 2; }
.app-tile--wide { grid-column: span 2; }

.app-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.85s var(--ease);
}
.app-tile:hover img { transform: scale(1.07); }
.app-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.05) 30%, rgba(11,11,11,0.82) 100%);
  transition: background 0.4s var(--ease);
}
.app-tile:hover::after { background: linear-gradient(180deg, rgba(11,11,11,0.2) 10%, rgba(11,11,11,0.9) 100%); }

.app-tile__body {
  position: absolute; z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: clamp(18px, 2vw, 28px);
}
.app-tile__cat {
  font-family: var(--font-head);
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.17em; text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 8px;
  display: block;
}
.app-tile__title {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  margin-bottom: 0;
  line-height: 1.25;
}
.app-tile--big .app-tile__title { font-size: clamp(1.25rem, 2.1vw, 1.75rem); }
.app-tile__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(246, 245, 242, 0.85);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.app-tile:hover .app-tile__cta { opacity: 1; transform: none; }
.app-tile__cta .ico { width: 14px; height: 14px; }

/* Filtreler */
.filters {
  display: flex; flex-wrap: wrap; gap: 9px;
  margin-bottom: clamp(26px, 3vw, 40px);
}
.filter-btn {
  padding: 9px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 40px;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--on-dark-muted);
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { color: var(--on-dark); border-color: rgba(246,245,242,0.3); }
.filter-btn.is-active { background: var(--oak); border-color: var(--oak); color: #14120F; }

/* Masonry benzeri galeri */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-3);
  border: 1px solid var(--line-dark-2);
}
.gal-item.is-hidden { display: none; }
.gal-item__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.gal-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gal-item:hover .gal-item__media img { transform: scale(1.06); }
.gal-item__body { padding: 18px 20px 20px; }
.gal-item__cat {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--oak);
  font-family: var(--font-head);
  display: block; margin-bottom: 7px;
}
.gal-item__title { font-size: 1.03rem; margin-bottom: 6px; }
.gal-item__meta { font-size: 0.82rem; color: var(--on-dark-muted); margin: 0; }
.gal-item__link::after { content: ""; position: absolute; inset: 0; z-index: 3; }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 5, 5, 0.96);
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lb.is-open { display: flex; }
.lb__img {
  max-width: min(1200px, 94vw);
  max-height: 84vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}
.lb__cap {
  position: absolute; left: 0; right: 0; bottom: 22px;
  text-align: center; font-size: 0.88rem;
  color: var(--on-dark-muted);
  padding-inline: 20px;
}
.lb__btn {
  position: absolute;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border: 1px solid rgba(246, 245, 242, 0.22);
  border-radius: var(--radius);
  color: var(--on-dark);
  background: rgba(11, 11, 11, 0.5);
  transition: background 0.24s var(--ease);
}
.lb__btn:hover { background: var(--oak); color: #14120F; border-color: var(--oak); }
.lb__btn .ico { width: 20px; height: 20px; }
.lb__close { top: 20px; right: 20px; }
.lb__prev { left: clamp(10px, 2vw, 28px); top: 50%; transform: translateY(-50%); }
.lb__next { right: clamp(10px, 2vw, 28px); top: 50%; transform: translateY(-50%); }

/* ---------------------------------------------------------------
   15. Referanslar
   --------------------------------------------------------------- */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1px;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ref-card {
  background: var(--paper);
  box-shadow: 0 0 0 1px var(--line-light);
  padding: 24px 26px;
  display: flex; align-items: flex-start; gap: 15px;
  transition: background 0.28s var(--ease);
}
.ref-card:hover { background: var(--cream); }
.ref-card__ico {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border: 1px solid rgba(164, 125, 69, 0.32);
  border-radius: var(--radius);
  color: var(--oak-deep);
}
.ref-card__ico .ico { width: 17px; height: 17px; }
.ref-card__name {
  font-family: var(--font-head);
  font-size: 0.96rem; font-weight: 700;
  line-height: 1.35;
  margin: 0 0 6px;
  color: var(--on-light);
}
.ref-card__place {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.83rem; color: var(--on-light-muted); margin: 0;
}
.ref-card__place .ico { width: 13px; height: 13px; color: var(--oak-deep); flex: none; }
.ref-card__tag {
  display: inline-block; margin-top: 9px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--oak-deep);
  border: 1px solid rgba(164, 125, 69, 0.3);
  border-radius: 30px;
  padding: 3px 10px;
}

/* Koyu zeminde referans */
.section--dark .ref-grid, .section--dark-2 .ref-grid {
  background: transparent; border-color: var(--line-dark-2);
}
.section--dark .ref-card, .section--dark-2 .ref-card {
  background: var(--ink-3);
  box-shadow: 0 0 0 1px var(--line-dark-2);
}
.section--dark .ref-card:hover, .section--dark-2 .ref-card:hover { background: var(--ink-soft); }
.section--dark .ref-card__name, .section--dark-2 .ref-card__name { color: var(--on-dark); }
.section--dark .ref-card__place, .section--dark-2 .ref-card__place { color: var(--on-dark-muted); }
.section--dark .ref-card__ico, .section--dark-2 .ref-card__ico { color: var(--oak); border-color: rgba(200,160,106,0.3); }
.section--dark .ref-card__tag, .section--dark-2 .ref-card__tag { color: var(--oak); border-color: rgba(200,160,106,0.28); }
.section--dark .ref-card__place .ico, .section--dark-2 .ref-card__place .ico { color: var(--oak); }

/* ---------------------------------------------------------------
   16. Büyük CTA
   --------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 10vw, 138px);
  background: var(--ink-2);
}
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,6,0.82) 0%, rgba(6,6,6,0.7) 50%, rgba(6,6,6,0.9) 100%);
}
.cta-band__in { position: relative; z-index: 2; text-align: center; max-width: 780px; margin-inline: auto; }
.cta-band__title {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  margin-bottom: 0.4em;
}
.cta-band__desc {
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  color: rgba(246, 245, 242, 0.86);
  margin-bottom: 10px;
}
.cta-band__sub {
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 30px;
}
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }

/* İnce CTA şeridi */
.cta-strip {
  background: var(--oak);
  color: #14120F;
}
.cta-strip__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; padding-block: clamp(28px, 3.2vw, 44px);
  flex-wrap: wrap;
}
.cta-strip__text h2 { font-size: clamp(1.25rem, 2.2vw, 1.75rem); margin-bottom: 6px; color: #14120F; }
.cta-strip__text p { margin: 0; font-size: 0.95rem; color: rgba(20, 18, 15, 0.78); }
.cta-strip .btn { --btn-bg: #14120F; --btn-fg: #F6F5F2; --btn-bd: #14120F; }
.cta-strip .btn:hover { --btn-bg: #000; --btn-bd: #000; }

/* ---------------------------------------------------------------
   17. İçerik tipografisi (kurumsal / ürün metinleri)
   --------------------------------------------------------------- */
.rte { font-size: 1.005rem; line-height: 1.78; }
.rte > *:first-child { margin-top: 0; }
.rte h2 {
  font-size: clamp(1.28rem, 2.1vw, 1.62rem);
  margin: 2em 0 0.65em;
  padding-top: 0.9em;
  border-top: 1px solid var(--line-dark-2);
}
.rte h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 1.4em; }
.rte h3 { font-size: clamp(1.1rem, 1.6vw, 1.24rem); margin: 1.6em 0 0.55em; }
.rte h4 { font-size: 1.03rem; margin: 1.4em 0 0.5em; }
.rte p { color: var(--on-dark-muted); }
.rte .lead {
  font-size: clamp(1.06rem, 1.5vw, 1.18rem);
  color: var(--on-dark);
  line-height: 1.68;
  font-weight: 450;
}
.rte ul, .rte ol { margin: 0 0 1.3em; padding-left: 1.1em; color: var(--on-dark-muted); }
.rte li { margin-bottom: 0.5em; }
.rte ul { list-style: none; padding-left: 0; }
.rte ul li { position: relative; padding-left: 24px; }
.rte ul li::before {
  content: ""; position: absolute; left: 2px; top: 0.72em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--oak); opacity: 0.75;
}
.rte a { color: var(--oak); border-bottom: 1px solid rgba(200,160,106,0.35); }
.rte a:hover { border-color: var(--oak); }
.rte blockquote {
  margin: 1.6em 0;
  padding: 20px 26px;
  border-left: 2px solid var(--oak);
  background: var(--ink-3);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--on-dark);
  font-size: 1.03rem;
}
.rte img { border-radius: var(--radius-lg); margin: 1.5em 0; }
.rte table {
  width: 100%; border-collapse: collapse; margin: 1.5em 0;
  font-size: 0.92rem;
}
.rte th, .rte td { padding: 12px 14px; border: 1px solid var(--line-dark-2); text-align: left; }
.rte th { background: var(--ink-3); font-family: var(--font-head); font-weight: 700; }
.rte td { color: var(--on-dark-muted); }

.section--light .rte p, .section--paper .rte p,
.section--light .rte ul, .section--light .rte ol { color: var(--on-light-muted); }
.section--light .rte .lead, .section--paper .rte .lead { color: var(--on-light); }
.section--light .rte h2 { border-top-color: var(--line-light); }
.section--light .rte a, .section--paper .rte a { color: var(--oak-deep); }
.section--light .rte blockquote { background: var(--paper); color: var(--on-light); }

/* ---------------------------------------------------------------
   18. Misyon / Vizyon / Kalite kartları
   --------------------------------------------------------------- */
.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 26px); }
.mv-card {
  background: var(--ink-3);
  border: 1px solid var(--line-dark-2);
  border-top: 2px solid var(--oak);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 46px);
}
.mv-card__ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border: 1px solid rgba(200, 160, 106, 0.34);
  border-radius: var(--radius);
  color: var(--oak); margin-bottom: 22px;
}
.mv-card__ico .ico { width: 23px; height: 23px; }
.mv-card h2 { font-size: clamp(1.3rem, 2.1vw, 1.62rem); margin-bottom: 14px; }
.mv-card p { color: var(--on-dark-muted); margin: 0; line-height: 1.75; }

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  counter-reset: qc;
}
.q-card {
  position: relative;
  background: var(--ink-3);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius-lg);
  padding: 28px 28px 30px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.q-card:hover { border-color: rgba(200, 160, 106, 0.4); transform: translateY(-3px); }
.q-card__num {
  counter-increment: qc;
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--oak);
  display: inline-block;
  margin-bottom: 14px;
}
.q-card__num::before { content: counter(qc, decimal-leading-zero); }
.q-card h3 { font-size: 1.04rem; margin-bottom: 9px; }
.q-card p { font-size: 0.905rem; color: var(--on-dark-muted); margin: 0; line-height: 1.68; }

/* ---------------------------------------------------------------
   19. Ürün detay yerleşimi
   --------------------------------------------------------------- */
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.detail-aside { position: sticky; top: calc(var(--header-h) + 22px); display: grid; gap: 18px; }

.aside-card {
  background: var(--ink-3);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.aside-card--accent { border-top: 2px solid var(--oak); }
.aside-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line-dark-2);
}
.aside-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.aside-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--on-dark-muted); line-height: 1.55;
}
.aside-list .ico { width: 15px; height: 15px; color: var(--oak); flex: none; margin-top: 4px; }

.aside-contact { display: grid; gap: 12px; margin-top: 4px; }
.aside-contact a {
  display: flex; align-items: center; gap: 11px;
  font-size: 0.93rem; color: var(--on-dark);
  padding: 11px 13px;
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.aside-contact a:hover { border-color: rgba(200,160,106,0.4); background: rgba(200,160,106,0.06); }
.aside-contact .ico { width: 16px; height: 16px; color: var(--oak); flex: none; }

.detail-note {
  margin-top: 30px;
  padding: 22px 24px;
  background: rgba(200, 160, 106, 0.07);
  border: 1px solid rgba(200, 160, 106, 0.22);
  border-radius: var(--radius-lg);
  display: flex; gap: 14px; align-items: flex-start;
}
.detail-note .ico { width: 20px; height: 20px; color: var(--oak); flex: none; margin-top: 3px; }
.detail-note p { margin: 0; font-size: 0.93rem; color: rgba(246,245,242,0.86); line-height: 1.66; }

/* Süreç adımları (ürün detay) */
.mini-steps { display: grid; gap: 1px; background: transparent; border: 1px solid var(--line-dark-2); border-radius: var(--radius-lg); overflow: hidden; margin: 26px 0 0; }
.mini-step { background: var(--ink-3); box-shadow: 0 0 0 1px var(--line-dark-2); padding: 18px 22px; display: flex; align-items: center; gap: 16px; }
.mini-step__n {
  font-family: var(--font-head); font-weight: 800; font-size: 0.8rem;
  color: var(--oak); width: 30px; flex: none;
}
.mini-step p { margin: 0; font-size: 0.93rem; color: var(--on-dark-muted); }

/* Detay galeri */
.detail-gal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.detail-gal a {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line-dark-2);
}
.detail-gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.detail-gal a:hover img { transform: scale(1.07); }

/* ---------------------------------------------------------------
   20. Formlar
   --------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-head);
  font-size: 0.79rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--on-dark-muted);
}
.field .req { color: var(--oak); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="password"],
.field input[type="file"],
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--on-dark);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease);
  min-height: 52px;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.65; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A6A199' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 17px;
  padding-right: 44px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--oak);
  background: var(--ink-3);
}
.field input::placeholder, .field textarea::placeholder { color: #6c675f; }
.field input[type="file"] { padding: 11px 14px; font-size: 0.88rem; }
.field input[type="file"]::file-selector-button {
  margin-right: 14px; padding: 8px 14px;
  background: var(--ink-soft); color: var(--on-dark);
  border: 1px solid var(--line-dark); border-radius: 2px;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
  cursor: pointer;
}
.field .hint { font-size: 0.79rem; color: #85807a; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #C4553F; }
.field .err { font-size: 0.8rem; color: #E08B77; }

.check {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.875rem; color: var(--on-dark-muted); line-height: 1.6;
  cursor: pointer;
}
.check input[type="checkbox"] {
  appearance: none;
  width: 20px; height: 20px; flex: none; margin-top: 1px;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  background: var(--ink-2);
  display: grid; place-items: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  cursor: pointer;
}
.check input[type="checkbox"]::after {
  content: ""; width: 10px; height: 6px;
  border-left: 2px solid #14120F; border-bottom: 2px solid #14120F;
  transform: rotate(-45deg) scale(0); transition: transform 0.18s var(--ease);
  margin-top: -2px;
}
.check input[type="checkbox"]:checked { background: var(--oak); border-color: var(--oak); }
.check input[type="checkbox"]:checked::after { transform: rotate(-45deg) scale(1); }

/* Bal küpü alanı (spam koruması) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* Uyarı kutuları */
.alert {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid;
  margin-bottom: 24px;
  font-size: 0.93rem;
  line-height: 1.6;
}
.alert .ico { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.alert--success { background: rgba(0, 144, 74, 0.1); border-color: rgba(0, 144, 74, 0.4); color: #7ED7A6; }
.alert--error { background: rgba(196, 85, 63, 0.1); border-color: rgba(196, 85, 63, 0.4); color: #E9A38E; }
.alert--info { background: rgba(1, 137, 224, 0.09); border-color: rgba(1, 137, 224, 0.32); color: #86C6F2; }

/* İletişim yerleşimi */
.contact-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: clamp(28px, 3.6vw, 56px);
  align-items: start;
}
.info-block { display: grid; gap: 14px; }
.info-item {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 20px 22px;
  background: var(--ink-3);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius-lg);
  transition: border-color 0.28s var(--ease);
}
.info-item:hover { border-color: rgba(200, 160, 106, 0.36); }
.info-item__ico {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border: 1px solid rgba(200, 160, 106, 0.3);
  border-radius: var(--radius);
  color: var(--oak);
}
.info-item__ico .ico { width: 19px; height: 19px; }
.info-item h3 {
  font-size: 0.79rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark-muted); margin-bottom: 8px;
}
.info-item p, .info-item a { margin: 0; font-size: 0.98rem; color: var(--on-dark); line-height: 1.6; display: block; }
.info-item a:hover { color: var(--oak); }

.map-wrap {
  position: relative;
  aspect-ratio: 16 / 8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark-2);
  background: var(--ink-3);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-ph {
  position: absolute; inset: 0;
  display: grid; place-items: center; gap: 14px;
  align-content: center;
  text-align: center; padding: 20px;
  cursor: pointer;
}
.map-ph .ico { width: 30px; height: 30px; color: var(--oak); }
.map-ph span { font-size: 0.9rem; color: var(--on-dark-muted); }

.form-card {
  background: var(--ink-3);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.2vw, 42px);
}

/* ---------------------------------------------------------------
   21. Footer
   --------------------------------------------------------------- */
.site-footer { background: #070707; border-top: 1px solid var(--line-dark-2); }

.footer-top { padding-block: clamp(52px, 6vw, 84px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr) 1.35fr;
  gap: clamp(28px, 3vw, 48px);
}
.footer-brand img { width: 176px; height: 55px; margin-bottom: 22px; }
.footer-brand p { font-size: 0.9rem; color: var(--on-dark-muted); line-height: 1.72; margin-bottom: 20px; }

.footer-col h3 {
  font-size: 0.79rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-dark-2);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a {
  font-size: 0.895rem; color: var(--on-dark-muted);
  transition: color 0.22s var(--ease), padding-left 0.22s var(--ease);
  display: inline-block;
}
.footer-col a:hover { color: var(--oak); padding-left: 4px; }

.footer-contact { display: grid; gap: 14px; }
.footer-contact__item { display: flex; gap: 12px; align-items: flex-start; font-size: 0.895rem; color: var(--on-dark-muted); }
.footer-contact__item .ico { width: 15px; height: 15px; color: var(--oak); flex: none; margin-top: 4px; }
.footer-contact__item a:hover { color: var(--oak); }
.footer-phones { display: grid; gap: 4px; }

.footer-social { display: flex; gap: 9px; margin-top: 6px; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--on-dark-muted);
  transition: all 0.24s var(--ease);
}
.footer-social a:hover { border-color: var(--oak); color: var(--oak); }
.footer-social .ico { width: 17px; height: 17px; }

.footer-legal {
  border-top: 1px solid var(--line-dark-2);
  padding-block: 22px;
  font-size: 0.815rem;
  color: #767068;
  line-height: 1.7;
}
.footer-legal__in { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-legal p { margin: 0; max-width: 74ch; }
.footer-legal strong { color: var(--on-dark-muted); font-weight: 500; }

/* ---------------------------------------------------------------
   22. Yüzen aksiyonlar
   --------------------------------------------------------------- */
.fab-wa {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 80;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.26s var(--ease);
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa .ico { width: 27px; height: 27px; }

.to-top {
  position: fixed;
  right: 20px; bottom: 84px;
  z-index: 79;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(11, 11, 11, 0.85);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--on-dark);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--oak); border-color: var(--oak); color: #14120F; }
.to-top .ico { width: 18px; height: 18px; }

/* Mobil alt bar */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 85;
  background: rgba(9, 9, 9, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-dark);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-bar__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.mobile-bar__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; padding: 11px 6px 10px;
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--on-dark-muted);
  min-height: 58px;
}
.mobile-bar__item + .mobile-bar__item { border-left: 1px solid var(--line-dark-2); }
.mobile-bar__item .ico { width: 19px; height: 19px; color: var(--oak); }
.mobile-bar__item--accent { background: var(--oak); color: #14120F; }
.mobile-bar__item--accent .ico { color: #14120F; }

/* ---------------------------------------------------------------
   23. Sayfalama / çeşitli
   --------------------------------------------------------------- */
.pagination { display: flex; justify-content: center; gap: 7px; margin-top: clamp(34px, 4vw, 52px); flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 44px; height: 44px;
  display: grid; place-items: center;
  padding-inline: 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 600;
  color: var(--on-dark-muted);
  transition: all 0.22s var(--ease);
}
.pagination a:hover { border-color: var(--oak); color: var(--oak); }
.pagination .is-current { background: var(--oak); border-color: var(--oak); color: #14120F; }

.empty-state {
  text-align: center;
  padding: clamp(46px, 6vw, 78px) 20px;
  border: 1px dashed var(--line-dark);
  border-radius: var(--radius-lg);
  color: var(--on-dark-muted);
}
.empty-state .ico { width: 34px; height: 34px; color: var(--oak); margin: 0 auto 16px; opacity: 0.7; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--on-dark); }
.empty-state p { margin: 0 auto; max-width: 46ch; font-size: 0.93rem; }

/* 404 */
.err-page {
  min-height: 74vh;
  display: grid; place-items: center;
  text-align: center;
  padding-block: clamp(60px, 9vw, 120px);
}
.err-code {
  font-family: var(--font-head);
  font-size: clamp(4.5rem, 15vw, 10rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(200, 160, 106, 0.22);
  letter-spacing: -0.04em;
  margin-bottom: 0.1em;
}

/* ---------------------------------------------------------------
   24. Kaydırma animasyonu
   --------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__slide.is-active .hero__media img { animation: none; }
}

/* Yardımcılar */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px;
  z-index: 999;
  background: var(--oak); color: #14120F;
  padding: 11px 18px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  transition: top 0.22s var(--ease);
}
.skip-link:focus { top: 12px; }

.text-oak { color: var(--oak); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.stack-cta { margin-top: clamp(30px, 3.6vw, 46px); display: flex; gap: 13px; flex-wrap: wrap; }
.stack-cta--center { justify-content: center; }

/* ---------------------------------------------------------------
   25. Video galerisi
   --------------------------------------------------------------- */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.vid-card {
  display: flex;
  flex-direction: column;
  background: var(--ink-3);
  border: 1px solid var(--line-dark-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.32s var(--ease), transform 0.32s var(--ease);
}
.vid-card:hover { border-color: rgba(200, 160, 106, 0.42); transform: translateY(-4px); }
.vid-card.is-hidden { display: none; }

/* Kapak — tıklanabilir vitrin (iframe yalnızca tıklamada yüklenir) */
.vid-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-2);
  cursor: pointer;
  border-radius: 0;
}
.vid-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.75s var(--ease), opacity 0.3s var(--ease);
}
.vid-card:hover .vid-card__media img { transform: scale(1.05); opacity: 0.85; }
.vid-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.05) 40%, rgba(11,11,11,0.6) 100%);
  pointer-events: none;
}

.vid-card__noimg {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(200, 160, 106, 0.5);
}
.vid-card__noimg .ico { width: 46px; height: 46px; }

.vid-card__play {
  position: absolute; z-index: 2;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 66px; height: 66px;
  display: grid; place-items: center;
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(246, 245, 242, 0.28);
  border-radius: 50%;
  color: var(--on-dark);
  transition: background 0.28s var(--ease), transform 0.28s var(--ease),
              border-color 0.28s var(--ease), color 0.28s var(--ease);
}
.vid-card__play svg { width: 24px; height: 24px; margin-left: 3px; }
.vid-card__media:hover .vid-card__play,
.vid-card__media:focus-visible .vid-card__play {
  background: var(--oak);
  border-color: var(--oak);
  color: #14120F;
  transform: translate(-50%, -50%) scale(1.08);
}

.vid-card__time {
  position: absolute; z-index: 2;
  right: 12px; bottom: 12px;
  background: rgba(11, 11, 11, 0.82);
  color: var(--on-dark);
  font-family: var(--font-head);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 9px;
  border-radius: 3px;
}

.vid-card__body { padding: 20px 22px 24px; }
.vid-card__cat {
  display: block;
  font-family: var(--font-head);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 9px;
}
.vid-card__title { font-size: 1.08rem; margin-bottom: 8px; line-height: 1.32; }
.vid-card__desc {
  font-size: 0.89rem; color: var(--on-dark-muted);
  line-height: 1.62; margin: 0;
}

/* Oynatıcı katmanı */
.vplayer {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(5, 5, 5, 0.96);
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.vplayer.is-open { display: flex; }

.vplayer__stage { width: min(1180px, 100%); }

.vplayer__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(246, 245, 242, 0.12);
}
.vplayer__frame iframe,
.vplayer__frame video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}

.vplayer__title {
  margin: 16px 0 0;
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.98rem; font-weight: 600;
  color: rgba(246, 245, 242, 0.86);
}

.vplayer__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border: 1px solid rgba(246, 245, 242, 0.22);
  border-radius: var(--radius);
  background: rgba(11, 11, 11, 0.5);
  color: var(--on-dark);
  transition: background 0.24s var(--ease), border-color 0.24s var(--ease), color 0.24s var(--ease);
}
.vplayer__close:hover { background: var(--oak); border-color: var(--oak); color: #14120F; }
.vplayer__close .ico { width: 20px; height: 20px; }

/* Ana sayfa video şeridi */
.vid-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
