/* =====================================================================
   FORTUNA AGRIS — Premium Dark Design System
   Tek CSS dosyası. Tüm sayfalar bu sözleşmeye uyar.
   Sayfaya özel ufak ayarlar, o sayfanın kendi <style> bloğunda yapılır.
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. Design Tokens                                                    */
/* ------------------------------------------------------------------ */
:root {
  /* Renkler */
  --bg:          #0E1311;
  --bg-2:        #131A17;
  --surface:     #1A211E;
  --surface-2:   #222B27;
  --line:        rgba(200, 162, 75, .18);
  --line-soft:   rgba(236, 234, 227, .08);

  --gold:        #C8A24B;
  --gold-soft:   #DDBE74;
  --green:       #3E6B4E;
  --green-bright:#5A8F6A;

  --text:        #ECEAE3;
  --text-dim:    #A7AFA8;
  --text-dimmer: #767E77;
  --heading:     #ffffff;
  --field-focus: #11201a;

  /* Tipografi */
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Ölçü & ritim */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --radius-sm: 10px;

  /* Geçişler */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: .25s var(--ease);
  --t: .45s var(--ease);

  --shadow: 0 24px 60px -28px rgba(0,0,0,.7);
  --header-h: 84px;
}

/* ================================================================== */
/*  TEMA — Açık (Light). Koyu varsayılan yukarıdaki :root'tadır.       */
/* ================================================================== */
html[data-theme="light"] {
  --bg:          #F5F2E9;
  --bg-2:        #ECE7D9;
  --surface:     #FBF9F2;
  --surface-2:   #F2EEE3;
  --line:        rgba(46,62,52,.16);
  --line-soft:   rgba(46,62,52,.09);
  --gold:        #A07829;
  --gold-soft:   #C29A3F;
  --green:       #3E6B4E;
  --green-bright:#4E7C59;
  --heading:     #1B231E;
  --text:        #2C352E;
  --text-dim:    #5C665D;
  --text-dimmer: #8A938B;
  --field-focus: #FFFFFF;
  --shadow: 0 24px 60px -30px rgba(40,52,44,.28);
}

/* Daima KOYU kalan bölgeler (fotoğraf üstü / koyu yüzeyler) — temadan bağımsız.
   Değişkenler bu kapsayıcılarda koyu değerlere sabitlenir, tüm alt öğeler miras alır. */
.header, .hero, .page-hero, .footer, .lightbox, .video-item, .cookie-bar {
  --bg:          #0E1311;
  --bg-2:        #131A17;
  --surface:     #1A211E;
  --surface-2:   #222B27;
  --line:        rgba(200,162,75,.18);
  --line-soft:   rgba(236,234,227,.08);
  --gold:        #C8A24B;
  --gold-soft:   #DDBE74;
  --heading:     #ffffff;
  --text:        #ECEAE3;
  --text-dim:    #A7AFA8;
  --text-dimmer: #767E77;
}

/* Tema değiştirme düğmesi (header'a JS ile eklenir) */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--text-dim); background: rgba(236,234,227,.02);
  transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.theme-toggle:hover { color: var(--gold-soft); border-color: var(--gold); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .ic-moon { display: none; }
html[data-theme="light"] .theme-toggle .ic-sun { display: none; }
html[data-theme="light"] .theme-toggle .ic-moon { display: block; }

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: #0E1311; }

/* Texture: çok ince yeşil ışık halesi */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(62,107,78,.20), transparent 60%),
    radial-gradient(700px 500px at -5% 100%, rgba(200,162,75,.07), transparent 55%);
}

/* ------------------------------------------------------------------ */
/* 3. Tipografi                                                        */
/* ------------------------------------------------------------------ */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--heading); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p  { color: var(--text-dim); }
strong { color: var(--text); font-weight: 600; }

.serif { font-family: var(--font-head); }
.gold  { color: var(--gold); }
.italic { font-style: italic; }

/* ------------------------------------------------------------------ */
/* 4. Yerleşim yardımcıları                                            */
/* ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative; z-index: 1;
}
.section { padding-block: clamp(72px, 11vw, 140px); position: relative; z-index: 1; }
.section--tight { padding-block: clamp(54px, 7vw, 90px); }
.bg-2 { background: var(--bg-2); }

.grid { display: grid; gap: clamp(20px, 2.5vw, 32px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 64ch; }
.measure-sm { max-width: 52ch; }

/* Eyebrow + başlık bloğu */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-body);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); opacity: .8; }
.center .eyebrow::after { content: ""; width: 30px; height: 1px; background: var(--gold); opacity: .8; }

.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 { margin-top: .5rem; }
.section-head p { margin-top: 1.1rem; }
.center .section-head { margin-inline: auto; }

.hairline { height: 1px; background: var(--line); border: 0; }

/* ------------------------------------------------------------------ */
/* 5. Butonlar                                                         */
/* ------------------------------------------------------------------ */
.btn {
  --by: 15px; --bx: 30px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: var(--by) var(--bx);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  border-radius: 100px;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(3px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #0E1311;
  box-shadow: 0 12px 30px -12px rgba(200,162,75,.5);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(200,162,75,.65); }

.btn-outline {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(236,234,227,.02);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }

.btn-sm { --by: 11px; --bx: 22px; font-size: .76rem; }

/* Metin linki (ok ile) */
.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  color: var(--gold-soft); font-weight: 600; font-size: .86rem;
  letter-spacing: .04em;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ------------------------------------------------------------------ */
/* 6. Header / Navigasyon                                              */
/* ------------------------------------------------------------------ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background var(--t-fast), border-color var(--t-fast), backdrop-filter var(--t-fast);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(14,19,17,.82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(200,162,75,.18), transparent 70%);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-seal-mark { width: 46px; height: 46px; flex: none; display: block; border-radius: 50%; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text b {
  font-family: var(--font-head); font-weight: 600; font-size: 1.28rem;
  color: #fff; letter-spacing: .01em;
}
.logo-text span {
  font-size: .58rem; font-weight: 600; letter-spacing: .42em;
  text-transform: uppercase; color: var(--gold); margin-top: 4px; padding-left: 2px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  position: relative;
  padding: 10px 16px; font-size: .82rem; font-weight: 500;
  letter-spacing: .06em; color: var(--text-dim);
  transition: color var(--t-fast);
}
.nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-fast);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-tools { display: flex; align-items: center; gap: 14px; }

/* Dil geçişi */
.lang-toggle {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 100px; overflow: hidden;
}
.lang-toggle button {
  padding: 7px 12px; font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  color: var(--text-dim); transition: color var(--t-fast), background var(--t-fast);
}
.lang-toggle button.active { background: var(--gold); color: #0E1311; }

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 11px; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------ */
/* 7. Hero Slider                                                      */
/* ------------------------------------------------------------------ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease);
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide-bg {
  position: absolute; inset: 0; z-index: 0;
  scale: 1.1;            /* Ken Burns + parallax çakışmasın diye transform yerine scale özelliği */
}
.slide.is-active .slide-bg { animation: kenburns 7s var(--ease) forwards; }
@keyframes kenburns { from { scale: 1.1; } to { scale: 1.2; } }
.slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(14,19,17,.92) 0%, rgba(14,19,17,.6) 45%, rgba(14,19,17,.25) 100%),
    linear-gradient(0deg, rgba(14,19,17,.85), transparent 45%);
}

.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: var(--header-h) 64px; }
.hero-copy { max-width: 720px; }
.hero-copy .eyebrow { opacity: 0; transform: translateY(18px); }
.hero-copy h1 { margin: 1rem 0 1.2rem; opacity: 0; transform: translateY(24px); }
.hero-copy p { font-size: 1.12rem; max-width: 56ch; opacity: 0; transform: translateY(24px); }
.hero-actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 16px; opacity: 0; transform: translateY(24px); }
.slide.is-active .hero-copy .eyebrow { animation: rise .8s var(--ease) .25s forwards; }
.slide.is-active .hero-copy h1     { animation: rise .9s var(--ease) .4s forwards; }
.slide.is-active .hero-copy p      { animation: rise .9s var(--ease) .55s forwards; }
.slide.is-active .hero-actions     { animation: rise .9s var(--ease) .7s forwards; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* Slider kontrolleri */
.hero-controls {
  position: absolute; z-index: 3; left: var(--gutter); right: var(--gutter); bottom: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.hero-dots { display: flex; align-items: flex-end; gap: clamp(14px, 2.2vw, 30px); }
.hero-navi {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  min-width: clamp(72px, 9vw, 116px); text-align: left;
  opacity: .5; transition: opacity var(--t-fast);
}
.hero-navi:hover { opacity: .85; }
.hero-navi.active { opacity: 1; }
.hero-navi .hn-num { font-family: var(--font-head); font-style: italic; font-size: .85rem; line-height: 1; color: var(--gold-soft); }
.hero-navi .hn-label { font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; line-height: 1; color: #ECEAE3; white-space: nowrap; }
.hero-navi .hn-bar { width: 100%; height: 2px; border-radius: 2px; background: rgba(236,234,227,.22); overflow: hidden; }
.hero-navi .hn-bar i { display: block; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.hero-navi.active .hn-bar i { animation: dotfill var(--slide-dur, 6s) linear forwards; }
.hero:hover .hero-navi.active .hn-bar i { animation-play-state: paused; }
@media (max-width: 560px) {
  .hero-navi .hn-label { display: none; }
  .hero-navi { min-width: 52px; gap: 10px; }
}
@keyframes dotfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-arrows { display: flex; gap: 10px; }
.hero-arrows button {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--text);
  background: rgba(14,19,17,.35); backdrop-filter: blur(4px);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.hero-arrows button:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(14,19,17,.6); }
.hero-arrows svg { width: 18px; height: 18px; }

/* Scroll ipucu */
.hero-scroll {
  position: absolute; z-index: 3; left: 50%; bottom: 22px; transform: translateX(-50%);
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--text-dimmer);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll i { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); }

/* ------------------------------------------------------------------ */
/* 8. Page hero (iç sayfa başlığı)                                     */
/* ------------------------------------------------------------------ */
.page-hero {
  position: relative; padding-top: calc(var(--header-h) + 70px); padding-bottom: 70px;
  overflow: hidden; border-bottom: 1px solid var(--line);
}
.page-hero .ph { position: absolute; inset: 0; z-index: 0; opacity: .35; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,19,17,.45), var(--bg));
}
.page-hero .container { position: relative; z-index: 2; text-shadow: 0 2px 26px rgba(8,11,10,.72); }
.page-hero h1 { margin-top: 1rem; }
.page-hero p { margin-top: 1rem; }

/* Breadcrumb */
.crumbs { font-size: .78rem; letter-spacing: .04em; color: var(--text-dimmer); margin-top: 18px; }
.crumbs a:hover { color: var(--gold-soft); }
.crumbs span { color: var(--gold); }

/* ------------------------------------------------------------------ */
/* 9. Kartlar                                                          */
/* ------------------------------------------------------------------ */
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: clamp(24px, 3vw, 38px);
  transition: transform var(--t), border-color var(--t), background var(--t), box-shadow var(--t);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px; z-index: 2;
  background: linear-gradient(var(--gold), var(--green)); transform: scaleY(0);
  transform-origin: top; transition: transform var(--t);
}
.card::after {
  content: ""; position: absolute; top: 0; right: 0; width: 160px; height: 160px; z-index: 0;
  background: radial-gradient(circle at 100% 0%, rgba(200,162,75,.16), transparent 70%);
  opacity: 0; transition: opacity var(--t); pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); background: var(--surface-2); box-shadow: 0 30px 60px -36px rgba(0,0,0,.6); }
.card:hover::before { transform: scaleY(1); }
.card:hover::after { opacity: 1; }

.card-icon {
  position: relative; z-index: 1;
  width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(200,162,75,.08); border: 1px solid var(--line); margin-bottom: 22px;
  color: var(--gold-soft);
  transition: transform var(--t), border-color var(--t), background var(--t), color var(--t);
}
.card:hover .card-icon { transform: translateY(-3px); border-color: var(--gold); background: rgba(200,162,75,.15); color: var(--gold); }
.card-icon svg { width: 28px; height: 28px; }
.card h3 { position: relative; z-index: 1; margin-bottom: 12px; }
.card p { position: relative; z-index: 1; font-size: .96rem; }

/* Öne çıkan büyük kart (Tarım & Hayvancılık) */
.feature-card {
  display: grid; grid-template-columns: 1.1fr 1fr; min-height: 340px;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft);
  background: var(--surface);
}
.feature-card .fc-media { position: relative; min-height: 260px; }
.feature-card .fc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-card .fc-body { padding: clamp(28px, 3.5vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.feature-card .fc-body .eyebrow { margin-bottom: 14px; }
.feature-card .fc-body h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 14px; }
.feature-card.reverse { grid-template-columns: 1fr 1.1fr; }
.feature-card.reverse .fc-media { order: 2; }

/* Liste işareti */
.ticks { display: grid; gap: 12px; margin-top: 6px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-dim); font-size: .96rem; }
.ticks li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E1311' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat,
    var(--gold);
}

/* ------------------------------------------------------------------ */
/* 10. Görsel placeholder (temsili görsel)                            */
/* ------------------------------------------------------------------ */
.ph {
  position: relative; width: 100%; height: 100%; min-height: 220px; overflow: hidden;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(62,107,78,.45), transparent 55%),
    radial-gradient(120% 120% at 100% 100%, rgba(200,162,75,.20), transparent 55%),
    linear-gradient(135deg, #16201B, #0E1311);
}
.ph::after { /* ince doku */
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(236,234,227,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(236,234,227,.04) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%);
          mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%);
}
.ph-label {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 18px;
  text-align: center; font-size: .68rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--text-dimmer);
}
.ph-ico {
  position: absolute; z-index: 2; inset: 0; display: grid; place-items: center;
  color: rgba(200,162,75,.55);
}
.ph-ico svg { width: clamp(48px, 7vw, 84px); height: auto; }
.ratio-16-9 { aspect-ratio: 16/9; }
.ratio-4-3  { aspect-ratio: 4/3; }
.ratio-1-1  { aspect-ratio: 1/1; }

/* ------------------------------------------------------------------ */
/* 11. İstatistik şeridi                                               */
/* ------------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat { background: var(--bg); padding: clamp(34px, 4.5vw, 56px) 24px; text-align: center; position: relative; transition: background var(--t); }
.stat::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform var(--t);
}
.stat:hover { background: var(--surface); }
.stat:hover::before { transform: scaleX(1); }
.stat-ico {
  display: inline-grid; place-items: center; width: 50px; height: 50px; margin: 0 auto 20px;
  border-radius: 50%; border: 1px solid var(--line); color: var(--gold-soft);
  background: rgba(200,162,75,.06); transition: border-color var(--t), transform var(--t);
}
.stat:hover .stat-ico { border-color: var(--gold); transform: translateY(-3px); }
.stat-ico svg { width: 22px; height: 22px; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(1.85rem, 3.6vw, 2.9rem); color: var(--heading); line-height: 1.05; font-variant-numeric: tabular-nums; white-space: nowrap; }
.stat b .gold { font-style: italic; }
.stat-label { display: block; margin-top: 14px; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); }

/* ------------------------------------------------------------------ */
/* 12. Split / metin+görsel bölümü                                     */
/* ------------------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; position: relative; min-height: 380px; box-shadow: var(--shadow); }
.split-media .ph { min-height: 380px; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-body .eyebrow { margin-bottom: 16px; }
.split-body h2 { margin-bottom: 20px; }

/* Değer / vizyon kutuları */
.vmv { display: grid; gap: 20px; }
.vmv .card h3 { display: flex; align-items: center; gap: 12px; }

/* ------------------------------------------------------------------ */
/* 13. Galeri + Lightbox                                               */
/* ------------------------------------------------------------------ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 16px; }
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  border: 1px solid var(--line-soft);
}
.gallery-item .ph,
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t); }
.gallery-item:hover .ph,
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .g-cap {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; padding: 22px 20px 16px;
  background: linear-gradient(transparent, rgba(14,19,17,.9));
  font-size: .9rem; color: #ECEAE3; opacity: 0; transform: translateY(8px);
  transition: opacity var(--t), transform var(--t);
}
.gallery-item:hover .g-cap { opacity: 1; transform: translateY(0); }
.gallery-item .g-plus {
  position: absolute; z-index: 3; top: 14px; right: 14px; width: 38px; height: 38px;
  border-radius: 50%; background: rgba(14,19,17,.5); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--gold-soft);
  opacity: 0; transition: opacity var(--t); backdrop-filter: blur(4px);
}
.gallery-item:hover .g-plus { opacity: 1; }
.gallery-tall { grid-row: span 2; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(8,11,10,.92); backdrop-filter: blur(8px);
  place-items: center; padding: 5vw;
}
.lightbox.open { display: grid; }
.lightbox-stage { position: relative; width: min(960px, 92vw); }
.lightbox-stage .ph,
.lightbox-stage img { aspect-ratio: 16/9; width: 100%; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); display: block; }
.lightbox-cap { text-align: center; margin-top: 18px; color: var(--text-dim); letter-spacing: .04em; }
.lightbox-close { position: absolute; top: -54px; right: 0; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); color: var(--text); display: grid; place-items: center; }
.lightbox-close:hover { border-color: var(--gold); color: var(--gold-soft); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: rgba(14,19,17,.5); color: var(--text); display: grid; place-items: center; }
.lb-nav:hover { border-color: var(--gold); color: var(--gold-soft); }
.lb-prev { left: -72px; } .lb-next { right: -72px; }

/* ------------------------------------------------------------------ */
/* 14. İletişim                                                        */
/* ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.info-list { display: grid; gap: 8px; margin-top: 8px; }
.info-row { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.info-row:last-child { border-bottom: 0; }
.info-row .i-ico { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(200,162,75,.08); border: 1px solid var(--line); color: var(--gold-soft); }
.info-row .i-ico svg { width: 20px; height: 20px; }
.info-row b { display: block; font-family: var(--font-body); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dimmer); margin-bottom: 4px; }
.info-row a, .info-row p { color: var(--text); font-size: 1rem; }
.info-row a:hover { color: var(--gold-soft); }

/* Form */
.form { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 44px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 9px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; font-family: inherit; font-size: .98rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dimmer); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--field-focus); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .82rem; color: var(--text-dimmer); margin-top: 6px; }
.form-status { margin-top: 16px; font-size: .9rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: var(--green-bright); }
.form-status.err { color: #d98b6a; }

/* Harita */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: clamp(40px, 6vw, 72px); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.3) contrast(1.05) brightness(.85); }

/* ------------------------------------------------------------------ */
/* 15. CTA bandı                                                       */
/* ------------------------------------------------------------------ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); padding: clamp(40px, 6vw, 76px); text-align: center; background: var(--surface); }
.cta-band .ph { position: absolute; inset: 0; opacity: .2; z-index: 0; background: url("../img/hero-activities.jpg") center/cover; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { margin: 0 auto 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ------------------------------------------------------------------ */
/* 16. Footer — Editoryal Marka (daima KOYU; kendi kendine yeten)      */
/* ------------------------------------------------------------------ */
.footer {
  position: relative; z-index: 1; overflow: hidden;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(62,107,78,.10), transparent 55%),
    radial-gradient(120% 160% at 100% 0%, rgba(200,162,75,.07), transparent 55%),
    #0A0E0C;
  border-top: 1px solid var(--line);
  padding-top: clamp(52px, 7vw, 84px);
}
/* Üst kenarda ince altın parıltı hairline */
.footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-soft) 50%, var(--gold) 80%, transparent);
  opacity: .55; pointer-events: none;
}
/* Üstte yumuşak radyal glow (foto yok; yalnız token renkleri) */
.footer-glow {
  position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: min(1100px, 120%); height: 340px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(200,162,75,.14), transparent 70%),
    radial-gradient(42% 100% at 24% 0%, rgba(62,107,78,.16), transparent 72%);
}
.footer > .container { position: relative; z-index: 1; }

/* --- Üst CTA / iletişim şeridi --- */
.footer-cta {
  display: grid; grid-template-columns: 1.25fr .95fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
  padding-bottom: clamp(40px, 5vw, 60px);
  margin-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--line-soft);
}
.footer-cta-text { display: grid; gap: 14px; }
.footer-cta-line {
  font-family: var(--font-head); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 2.3vw, 1.75rem); line-height: 1.35;
  color: var(--heading); max-width: 32ch; margin: 0;
}
.footer-cta-side { display: grid; gap: 12px; align-content: center; }
.footer-contact-card {
  display: flex; align-items: center; gap: 15px;
  padding: 13px 18px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(236,234,227,.02);
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.footer-contact-card:hover {
  border-color: var(--gold); background: rgba(200,162,75,.06); transform: translateY(-2px);
}
.footer-contact-ic {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line); color: var(--gold-soft);
  background: radial-gradient(circle at 30% 25%, rgba(200,162,75,.18), transparent 70%);
  transition: border-color var(--t-fast);
}
.footer-contact-card:hover .footer-contact-ic { border-color: var(--gold); }
.footer-contact-ic svg { width: 18px; height: 18px; }
.footer-contact-meta { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.footer-contact-meta small {
  font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dimmer); margin-bottom: 5px;
}
.footer-contact-meta b {
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  color: var(--heading); letter-spacing: .01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.footer-cta-btn { margin-top: 4px; width: 100%; }

/* --- Ana ızgara: marka + menü blokları --- */
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.35fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 60px);
}

/* SOL — editoryal wordmark */
.footer-wordmark { display: inline-flex; align-items: center; gap: 16px; }
.footer-wordmark .logo-mark {
  width: 50px; height: 50px; flex: none; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(200,162,75,.20), transparent 70%);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.footer-wordmark .logo-mark svg { width: 26px; height: 26px; }
.footer-wordmark:hover .logo-mark { border-color: var(--gold); transform: translateY(-2px); }
.footer-wordmark-text { display: flex; flex-direction: column; line-height: 1; }
.footer-wordmark-text b {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem); color: var(--heading); letter-spacing: .005em;
}
.footer-wordmark-text > span {
  margin-top: 9px; font-family: var(--font-body);
  font-size: .58rem; font-weight: 600; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold);
}
.footer-place {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px; font-size: .82rem; color: var(--text-dimmer);
}
.footer-place svg { width: 15px; height: 15px; flex: none; color: var(--gold-soft); }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--text-dim);
  background: rgba(236,234,227,.015);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.socials a:hover {
  color: var(--gold-soft); border-color: var(--gold);
  background: rgba(200,162,75,.06); transform: translateY(-3px);
}
.socials svg { width: 17px; height: 17px; }

/* Sütun başlıkları + altın çentik */
.footer-col h4 {
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px; position: relative; padding-bottom: 14px;
}
.footer-col h4::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 1px;
  background: var(--gold); opacity: .85;
}
.footer-col a, .footer-col li { color: var(--text-dim); font-size: .92rem; }

/* Menü linkleri — ok-hairline kayma hover'ı */
.footer-links { display: grid; gap: 13px; }
.footer-links a {
  position: relative; display: inline-flex; align-items: center;
  color: var(--text-dim); transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-links a::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 1px;
  background: var(--gold); transform: translateY(-50%); transition: width var(--t-fast);
}
.footer-links a:hover { color: var(--text); padding-left: 20px; }
.footer-links a:hover::before { width: 13px; }

/* Künye — etiket / değer */
.footer-reg { display: grid; gap: 16px; }
.footer-reg li { display: flex; flex-direction: column; gap: 3px; }
.footer-reg-k {
  font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dimmer);
}
.footer-reg-v {
  font-size: .92rem; color: var(--text); letter-spacing: .02em; font-variant-numeric: tabular-nums;
}

/* İletişim — etiket / değer */
.footer-contact-list { display: grid; gap: 16px; }
.footer-contact-list li { display: flex; flex-direction: column; gap: 4px; }
.footer-c-k {
  font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dimmer);
}
.footer-c-v { font-size: .92rem; line-height: 1.55; color: var(--text); max-width: 34ch; }
a.footer-c-v { transition: color var(--t-fast); }
a.footer-c-v:hover { color: var(--gold-soft); }

/* --- Alt şerit --- */
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-block: 26px 30px;
  display: flex; flex-wrap: wrap; gap: 14px 32px;
  justify-content: space-between; align-items: center;
}
.footer-bottom > p { font-size: .8rem; color: var(--text-dimmer); margin: 0; }
.footer-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 22px; flex: 1 1 320px; min-width: 0; }
.footer-meta span, .footer-legal { font-size: .76rem; line-height: 1.55; color: var(--text-dimmer); }

.footer-totop {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-dim); white-space: nowrap; transition: color var(--t-fast);
}
.footer-totop svg { width: 15px; height: 15px; transition: transform var(--t-fast); }
.footer-totop:hover { color: var(--gold-soft); }
.footer-totop:hover svg { transform: translateY(-3px); }

/* ------------------------------------------------------------------ */
/* 16b. Footer — Responsive (section 18'deki eski .footer-* kurallarını
   her breakpoint'te yeniden tanımlayarak override eder)              */
/* ------------------------------------------------------------------ */
@media (max-width: 980px) {
  .footer-cta { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta-side { max-width: 460px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-c-v { max-width: 48ch; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-contact-card { padding: 12px 15px; }
  .footer-contact-meta b { font-size: 1rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-totop { order: -1; }
}

/* ------------------------------------------------------------------ */
/* 17. Scroll-reveal                                                   */
/* ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ------------------------------------------------------------------ */
/* 18. Responsive                                                      */
/* ------------------------------------------------------------------ */
@media (max-width: 980px) {
  .feature-card, .feature-card.reverse { grid-template-columns: 1fr; }
  .feature-card .fc-media, .feature-card.reverse .fc-media { order: 0; min-height: 240px; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(14,19,17,.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--t-fast), opacity var(--t-fast);
  }
  .nav-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 15px 4px; font-size: 1rem; border-bottom: 1px solid var(--line-soft); }
  .nav a::after { display: none; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-tall { grid-row: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .hero-controls { bottom: 26px; }
  .hero-arrows { display: none; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lightbox-close { top: -50px; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-actions .btn { width: auto; }
}

/* Erişilebilirlik: hareketi azalt */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .12s !important; }
  .slide.is-active .slide-bg { animation: none; scale: 1.1; }
  html { scroll-behavior: auto; }
}

/* JS yokken içerik görünür kalsın */
.no-js .reveal { opacity: 1; transform: none; }
.no-js .slide { opacity: 1; visibility: visible; position: relative; }

/* ------------------------------------------------------------------ */
/* 19. Yukarı çık (back-to-top)                                       */
/* ------------------------------------------------------------------ */
.to-top {
  position: fixed; right: clamp(16px, 3vw, 34px); bottom: clamp(16px, 3vw, 34px);
  z-index: 90; width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; color: #0E1311;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 30px -10px rgba(200,162,75,.5);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.9);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast), box-shadow var(--t-fast);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); box-shadow: 0 18px 42px -10px rgba(200,162,75,.65); }
.to-top svg { width: 22px; height: 22px; }

/* ------------------------------------------------------------------ */
/* 20. Parallax (kenar-güvenli; sadece JS .parallax eklediğinde)      */
/* ------------------------------------------------------------------ */
.parallax { will-change: transform; }
.page-hero .ph.parallax, .cta-band .ph.parallax,
.split-media img.parallax, .feature-card .fc-media img.parallax {
  top: -8%; bottom: auto; height: 116%;
}

/* ------------------------------------------------------------------ */
/* 21. Video galerisi (sessiz)                                        */
/* ------------------------------------------------------------------ */
.video-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 28px); }
.video-item {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-soft); background: var(--surface);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.video-item:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 30px 60px -32px rgba(0,0,0,.85); }

.vi-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #0A0E0C; cursor: pointer; }
.vi-media video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--t); }
.video-item:hover .vi-media video { transform: scale(1.05); }

/* Sessiz etiketi */
.vi-tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 100px;
  font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text); background: rgba(10,14,12,.5); border: 1px solid rgba(236,234,227,.16);
  backdrop-filter: blur(6px); pointer-events: none;
}
.vi-tag svg { width: 14px; height: 14px; }

/* Oynat / duraklat butonu (ortada) */
.vi-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center;
  color: #0E1311; background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 12px 30px -8px rgba(200,162,75,.6);
  transition: opacity var(--t), transform var(--t-fast); pointer-events: none;
}
.vi-play svg { width: 24px; height: 24px; margin-left: 2px; }
.vi-play .ic-pause { display: none; margin-left: 0; }
.video-item.is-playing .vi-play { opacity: 0; transform: translate(-50%, -50%) scale(.8); }
.video-item.is-playing:hover .vi-play { opacity: .95; transform: translate(-50%, -50%) scale(1); }
.video-item.is-playing .vi-play .ic-play { display: none; }
.video-item.is-playing .vi-play .ic-pause { display: block; }

/* Gövde: numara + başlık */
.vi-body { display: flex; align-items: center; gap: 14px; padding: 16px 20px; }
.vi-num { font-family: var(--font-head); font-style: italic; font-size: 1.15rem; line-height: 1; color: var(--gold); flex: none; }
.vi-title { font-family: var(--font-body); font-size: .98rem; font-weight: 500; letter-spacing: .01em; color: var(--text); margin: 0; }

@media (max-width: 900px) { .video-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .video-gallery { grid-template-columns: 1fr; } .vi-media { aspect-ratio: 4 / 3; } }

/* ------------------------------------------------------------------ */
/* 22. Çerez bildirimi + footer gizlilik linki                        */
/* ------------------------------------------------------------------ */
.cookie-bar {
  position: fixed; left: clamp(14px, 3vw, 28px); right: clamp(14px, 3vw, 28px); bottom: clamp(14px, 3vw, 28px);
  z-index: 95; max-width: 720px; margin-inline: auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px;
  padding: 18px 22px; border-radius: var(--radius);
  background: rgba(14,19,17,.94); border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: var(--shadow);
  opacity: 0; transform: translateY(18px); transition: opacity var(--t), transform var(--t);
}
.cookie-bar.show { opacity: 1; transform: none; }
.cookie-text { flex: 1 1 300px; font-size: .85rem; line-height: 1.5; color: var(--text-dim); margin: 0; }
.cookie-actions { display: flex; align-items: center; gap: 18px; }
.cookie-more { font-size: .82rem; color: var(--gold-soft); white-space: nowrap; }
.cookie-more:hover { text-decoration: underline; }
.cookie-accept { white-space: nowrap; }
@media (max-width: 520px) { .cookie-actions { width: 100%; justify-content: space-between; } }

.footer-privacy { color: var(--text-dim); transition: color var(--t-fast); }
.footer-privacy:hover { color: var(--gold-soft); }

/* ------------------------------------------------------------------ */
/* 23. Sektör kartları (anasayfa "Diğer Faaliyet Alanları")           */
/* ------------------------------------------------------------------ */
.sector-card {
  display: flex; flex-direction: column; align-items: flex-start;
  min-height: clamp(184px, 22vw, 208px); padding-right: 52px;
}
.sector-card h3 { margin-bottom: 0; }
.sector-num {
  position: absolute; top: clamp(18px, 2.4vw, 26px); right: clamp(18px, 2.4vw, 26px);
  font-family: var(--font-head); font-style: italic; font-size: .95rem; line-height: 1;
  color: var(--text-dimmer); transition: color var(--t);
}
.card:hover .sector-num { color: var(--gold); }
.sector-card .card-icon { transition: transform var(--t), color var(--t), background var(--t), border-color var(--t); }
.sector-card:hover .card-icon { transform: translateY(-3px); border-color: var(--gold); }
.sector-go {
  position: absolute; right: clamp(18px, 2.4vw, 26px); bottom: clamp(18px, 2.4vw, 26px);
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--gold-soft);
  opacity: 0; transform: translateX(-8px); transition: opacity var(--t), transform var(--t), border-color var(--t-fast);
}
.sector-go svg { width: 15px; height: 15px; }
.sector-card:hover .sector-go { opacity: 1; transform: none; }
.sector-card:hover .sector-go { border-color: var(--gold); }

/* ============ Yeni marka logosu (Logo.png) — rozet kartı ============ */
.brand-logo{
  height:64px; width:auto; display:block; flex:none;
  background:#fff; border-radius:13px; padding:6px;
  border:1px solid rgba(200,162,75,.35);
  box-shadow:0 8px 22px -10px rgba(0,0,0,.6);
  transition:transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.logo:hover .brand-logo{ transform:translateY(-1px); border-color:var(--gold); box-shadow:0 12px 26px -10px rgba(0,0,0,.7); }
.footer-brand-logo{
  width:96px; height:96px; display:block; flex:none;
  background:#fff; border-radius:18px; padding:10px;
  border:1px solid rgba(200,162,75,.30);
  box-shadow:0 12px 32px -14px rgba(0,0,0,.65);
  transition:transform var(--t-fast), border-color var(--t-fast);
}
.footer-wordmark:hover .footer-brand-logo{ transform:translateY(-2px); border-color:var(--gold); }
@media (max-width:600px){ .brand-logo{ height:52px; border-radius:11px; padding:5px; } }