/* ==========================================================================
   İZFURNEX — İzmir Mobilya Fuarı
   main.css — Temel tasarım sistemi
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Marka renkleri — katalog paletinden */
  --navy-900: #0b1f3a;
  --navy-800: #10294b;
  --navy-700: #14355f;
  --navy-600: #1a4478;
  --blue-600: #1f5fa9;
  --blue-500: #2f7ac9;
  --blue-400: #4f9ae0;
  --blue-100: #dceafa;
  --blue-050: #f0f6fd;

  --gold-500: #c9962f;
  --gold-400: #e0b355;

  --ink-900: #12161d;
  --ink-700: #333b47;
  --ink-500: #5c6675;
  --ink-400: #7e8797;
  --ink-300: #aeb5c0;
  --ink-200: #d9dde3;
  --ink-100: #eceef2;
  --ink-050: #f6f7f9;
  --white: #ffffff;

  --ok-500: #1f9d63;
  --err-500: #cf3b30;

  /* Tipografi */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-display: "Barlow Condensed", "Inter", Impact, sans-serif;

  /* Ölçek */
  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.89rem);
  --step-0: clamp(0.95rem, 0.92rem + 0.16vw, 1.03rem);
  --step-1: clamp(1.1rem, 1.04rem + 0.3vw, 1.28rem);
  --step-2: clamp(1.32rem, 1.2rem + 0.58vw, 1.68rem);
  --step-3: clamp(1.6rem, 1.36rem + 1.15vw, 2.3rem);
  --step-4: clamp(1.95rem, 1.5rem + 2.2vw, 3.2rem);
  --step-5: clamp(2.4rem, 1.6rem + 3.9vw, 4.6rem);

  /* Ritim */
  --gutter: clamp(1.15rem, 0.9rem + 1.2vw, 2rem);
  --section-y: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
  --wrap: 1240px;
  --wrap-narrow: 860px;

  /* Yüzey */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.06),
    0 2px 8px rgba(11, 31, 58, 0.05);
  --shadow: 0 4px 12px rgba(11, 31, 58, 0.08),
    0 16px 40px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 8px 24px rgba(11, 31, 58, 0.12),
    0 32px 72px rgba(11, 31, 58, 0.14);

  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy-900);
  letter-spacing: -0.005em;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

a {
  color: var(--blue-600);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}

a:hover {
  color: var(--navy-700);
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

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

::selection {
  background: var(--navy-800);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   3. Yerleşim yardımcıları
   -------------------------------------------------------------------------- */
.wrap {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - (var(--gutter) * 2), var(--wrap-narrow));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.section--tight {
  padding-block: calc(var(--section-y) * 0.62);
}

.section--tint {
  background: var(--ink-050);
}

.section--blue-tint {
  background: var(--blue-050);
}

.section--navy {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: #fff;
}

.grid {
  display: grid;
  gap: clamp(1rem, 0.7rem + 1.4vw, 2rem);
}

/* Sütun sayıları açıkça sınırlandırıldı — otomatik sarma satırları
   dengesiz bırakabiliyor (ör. 6 kartın 4+2 olarak bölünmesi).
   minmax(0,1fr) şart: sade "1fr" izgara hücresine min-content taban
   verdiği için geniş tablolar mobilde sayfayı yatayda taşırıyor. */
.grid--2,
.grid--3,
.grid--4 {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 560px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 780px) {
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stack > * + * {
  margin-top: 1rem;
}

.text-center {
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -140%);
  z-index: 999;
  background: var(--navy-900);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: translate(-50%, 0);
  color: #fff;
}

/* --------------------------------------------------------------------------
   4. Tipografik bileşenler
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 0.9rem;
}

.section--navy .eyebrow {
  color: var(--blue-400);
}

.section-title {
  font-size: var(--step-4);
  text-transform: uppercase;
}

.section-title--md {
  font-size: var(--step-3);
  text-transform: uppercase;
}

.lede {
  font-size: var(--step-1);
  color: var(--ink-500);
  line-height: 1.6;
  max-width: 62ch;
}

.section--navy .lede {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.4rem);
}

.section-head--center {
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head--center .lede {
  margin-inline: auto;
}

.prose > * + * {
  margin-top: 1.15rem;
}

.prose h2 {
  font-size: var(--step-3);
  margin-top: 2.4rem;
  text-transform: uppercase;
}

.prose h3 {
  font-size: var(--step-2);
  margin-top: 1.9rem;
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
}

.prose li + li {
  margin-top: 0.45rem;
}

.prose strong {
  color: var(--navy-800);
}

/* Onay işaretli liste */
.check-list {
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 2.1rem;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--blue-100)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f5fa9' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 0.85rem no-repeat;
}

.section--navy .check-list li::before {
  background-color: rgba(79, 154, 224, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234f9ae0' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   5. Butonlar
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--step-0);
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  border: 1.5px solid transparent;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex: none;
}

.btn--primary {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
  box-shadow: 0 4px 14px rgba(31, 95, 169, 0.28);
}

.btn--primary:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: #fff;
  box-shadow: 0 8px 22px rgba(20, 53, 95, 0.34);
}

.btn--gold {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 4px 14px rgba(201, 150, 47, 0.3);
}

.btn--gold:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
}

.btn--outline {
  border-color: var(--ink-200);
  color: var(--navy-800);
  background: #fff;
}

.btn--outline:hover {
  border-color: var(--navy-700);
  background: var(--navy-800);
  color: #fff;
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.btn--ghost-light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy-900);
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: var(--step--1);
}

.btn--lg {
  padding: 1.05rem 2.2rem;
  font-size: var(--step-1);
}

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn-row--center {
  justify-content: center;
}

/* Metin bağlantısı — ok işaretli */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--blue-600);
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   6. Üst bar + header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  /* Sarmayı kapalı tutuyoruz — mobilde satırların iç içe geçmesini önler.
     Dar ekranda ikincil bilgiler aşağıda gizleniyor. */
  flex-wrap: nowrap;
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-width: 0;
}

.topbar__meta > * {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobilde yalnızca tarih + dil kalır */
@media (max-width: 860px) {
  .topbar__meta [data-tb="venue"] {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar {
    font-size: 0.72rem;
  }
  .topbar__meta [data-tb="phone"] {
    display: none;
  }
  .topbar__actions .social-mini {
    display: none;
  }
}

.topbar__meta span,
.topbar__meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: rgba(255, 255, 255, 0.72);
}

.topbar__meta a:hover {
  color: #fff;
}

.topbar__meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  flex: none;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 30px;
  padding: 0.18rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.62);
}

/* Dokunmatik cihazlarda daha rahat hedef */
@media (max-width: 1023px) {
  .lang-switch a {
    min-height: 34px;
    min-width: 42px;
    font-size: 0.76rem;
  }
}

.lang-switch a[aria-current="true"] {
  background: var(--blue-600);
  color: #fff;
}

.lang-switch a:hover {
  color: #fff;
}

.social-mini {
  display: flex;
  gap: 0.5rem;
}

.social-mini a {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.social-mini a:hover {
  background: var(--blue-600);
  color: #fff;
}

.social-mini svg {
  width: 13px;
  height: 13px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ink-100);
  transition: box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}

.header.is-stuck {
  box-shadow: 0 4px 24px rgba(11, 31, 58, 0.09);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: none;
  /* Logonun optik hizası: görselin üst/alt boşluğunu dengeler */
  line-height: 0;
}

.brand img {
  height: 30px;
  width: auto;
}

@media (max-width: 1023px) {
  :root {
    --header-h: 64px;
  }
  .brand img {
    height: 26px;
  }
  /* Hamburger sağ kenara tam otursun */
  .header__inner {
    gap: 1rem;
  }
  .burger {
    margin-right: -10px;
  }
}

.brand__sub {
  display: none;
  padding-left: 0.8rem;
  border-left: 1px solid var(--ink-200);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
  line-height: 1.35;
}

@media (min-width: 1100px) {
  .brand__sub {
    display: block;
  }
}

/* Navigasyon */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.72rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-700);
  white-space: nowrap;
}

.nav__link:hover,
.nav__item:focus-within > .nav__link {
  color: var(--navy-900);
  background: var(--ink-050);
}

.nav__link[aria-current="page"] {
  color: var(--blue-600);
}

.nav__item {
  position: relative;
}

.nav__caret {
  width: 10px;
  height: 10px;
  opacity: 0.55;
  transition: transform 0.2s var(--ease);
}

.nav__item:hover .nav__caret {
  transform: rotate(180deg);
}

.nav__sub {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 236px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease),
    visibility 0.18s;
}

.nav__item:hover > .nav__sub,
.nav__item:focus-within > .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__sub a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--ink-700);
}

.nav__sub a:hover {
  background: var(--blue-050);
  color: var(--navy-800);
}

.header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav,
  .header__cta {
    display: block;
  }
}

/* Mobil menü butonu — sade üç çizgi */
.burger {
  position: relative;
  /* Not: grid kullanılırsa satırlar 44px'e yayılıp çizgi arası açılıyor */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--navy-900);
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s var(--ease);
}

.burger:active {
  color: var(--blue-600);
}

.burger span {
  display: block;
  width: 19px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.32s var(--ease), opacity 0.16s var(--ease);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}

/* Mobil çekmece */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}

.drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 42, 0.5);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  backdrop-filter: blur(6px) saturate(120%);
  opacity: 0;
  transition: opacity 0.36s var(--ease);
}

.drawer.is-open .drawer__scrim {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(84vw, 328px);
  height: 100%;
  background: linear-gradient(175deg, #0d2545 0%, #081831 62%, #060f22 100%);
  color: #fff;
  box-shadow: -24px 0 60px rgba(3, 10, 22, 0.45);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.32, 0.72, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: env(safe-area-inset-bottom);
  will-change: transform;
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__panel:focus,
.drawer__panel:focus-visible {
  outline: none;
}

/* Panel içeriği kademeli belirir */
.drawer__nav > li,
.drawer__meta,
.drawer__foot > * {
  opacity: 0;
  transform: translateX(16px);
}

.drawer.is-open .drawer__nav > li,
.drawer.is-open .drawer__meta,
.drawer.is-open .drawer__foot > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
}

.drawer.is-open .drawer__meta { transition-delay: 0.32s; }

.drawer.is-open .drawer__nav > li:nth-child(1) { transition-delay: 0.09s; }
.drawer.is-open .drawer__nav > li:nth-child(2) { transition-delay: 0.14s; }
.drawer.is-open .drawer__nav > li:nth-child(3) { transition-delay: 0.19s; }
.drawer.is-open .drawer__nav > li:nth-child(4) { transition-delay: 0.24s; }
.drawer.is-open .drawer__nav > li:nth-child(5) { transition-delay: 0.29s; }
.drawer.is-open .drawer__nav > li:nth-child(6) { transition-delay: 0.34s; }
.drawer.is-open .drawer__foot > *:nth-child(1) { transition-delay: 0.36s; }
.drawer.is-open .drawer__foot > *:nth-child(2) { transition-delay: 0.41s; }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.75rem 1.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  position: sticky;
  top: 0;
  background: rgba(9, 25, 49, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.drawer__brand {
  display: flex;
  align-items: center;
  min-height: 40px;
}

.drawer__head img {
  height: 21px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.drawer__close {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  margin-right: -4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.15rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.drawer__close:hover,
.drawer__close:active {
  background: #fff;
  border-color: #fff;
  color: var(--navy-900);
}

/* Not: reset'teki ul[class] kuralını yenmek için .drawer ön eki şart */
.drawer ul.drawer__nav {
  padding: 0.35rem 1.9rem 0.9rem;
  flex: none;
}

.drawer__nav > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.drawer__nav > li > a,
.drawer__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 48px;
  width: 100%;
  padding: 0.62rem 0.15rem 0.62rem 0.45rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.005em;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.18s var(--ease);
}

.drawer__nav > li > a:active,
.drawer__toggle:active {
  color: var(--gold-400);
}

/* Aktif sayfa göstergesi */
.drawer__nav > li > a[aria-current="page"] {
  color: var(--gold-400);
}

.drawer__nav > li > a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: -0.55rem;
  top: 50%;
  width: 2px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 2px;
  background: var(--gold-400);
}

.drawer__toggle svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
  color: rgba(255, 255, 255, 0.38);
  transition: transform 0.3s var(--ease), color 0.2s var(--ease);
  flex: none;
}

.drawer__toggle[aria-expanded="true"] {
  color: var(--gold-400);
}

.drawer__toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
  color: var(--gold-400);
}

.drawer__sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s var(--ease);
}

.drawer__toggle[aria-expanded="true"] + .drawer__sub {
  grid-template-rows: 1fr;
}

.drawer__sub > div {
  overflow: hidden;
  padding-left: 0.15rem;
}

.drawer__sub a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0.4rem 0 0.4rem 0.85rem;
  font-weight: 500;
  font-size: 0.855rem;
  color: rgba(255, 255, 255, 0.58);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.drawer__sub a:last-child {
  margin-bottom: 0.45rem;
}

.drawer__sub a:hover,
.drawer__sub a:active {
  color: #fff;
  border-left-color: var(--gold-400);
}

.drawer__sub a[aria-current="page"] {
  color: var(--gold-400);
  font-weight: 600;
  border-left-color: var(--gold-400);
}

/* Çekmece alt bilgi bloğu — boş alanı doldurur */
.drawer__meta {
  margin-top: auto;
  padding: 1rem 1.9rem 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.3rem;
}

.drawer__meta-fair {
  display: grid;
  gap: 0.28rem;
  margin-bottom: 0.4rem;
}

.drawer__meta-fair span,
.drawer__meta-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.79rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.55);
}

.drawer__meta-fair span:first-child {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-400);
}

.drawer__meta svg {
  width: 14px;
  height: 14px;
  flex: none;
  color: rgba(255, 255, 255, 0.32);
}

.drawer__meta-fair span:first-child svg {
  color: var(--gold-400);
}

.drawer__meta-link {
  min-height: 30px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.18s var(--ease);
}

.drawer__meta-link:hover,
.drawer__meta-link:active {
  color: var(--gold-400);
}

.drawer__meta-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.55rem;
}

.lang-switch--drawer a {
  min-width: 34px;
  min-height: 28px;
}

.drawer__ig {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease);
}

.drawer__ig svg {
  width: 15px;
  height: 15px;
  color: inherit;
}

.drawer__ig:hover,
.drawer__ig:active {
  background: #fff;
  border-color: #fff;
  color: var(--navy-900);
}

.drawer__foot {
  padding: 0.9rem 1.9rem calc(1.2rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  display: grid;
  gap: 0.55rem;
}

/* Koyu zeminde çekmece butonları */
.drawer__foot .btn {
  min-height: 46px;
  font-size: 0.88rem;
}

.drawer__foot .btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.drawer__foot .btn--outline:hover,
.drawer__foot .btn--outline:active {
  background: #fff;
  border-color: #fff;
  color: var(--navy-900);
}

@media (prefers-reduced-motion: reduce) {
  .drawer__panel,
  .drawer__scrim,
  .drawer__sub,
  .burger span {
    transition-duration: 0.01ms !important;
  }
  .drawer__nav > li,
  .drawer__meta,
  .drawer__foot > * {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 84vh, 860px);
  padding-block: clamp(3.5rem, 2rem + 8vw, 7rem);
  overflow: hidden;
  background: var(--navy-900);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg picture,
.hero__bg img,
.hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arka plan videosu yalnızca oynamaya başlayınca görünür olur;
   yüklenene kadar poster görseli yerinde durur. */
.hero__bg-video {
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

.hero__bg-video.is-playing {
  opacity: 1;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      108deg,
      rgba(8, 23, 44, 0.94) 0%,
      rgba(11, 31, 58, 0.86) 42%,
      rgba(16, 41, 75, 0.62) 74%,
      rgba(20, 53, 95, 0.5) 100%
    ),
    radial-gradient(
      120% 90% at 88% 12%,
      rgba(47, 122, 201, 0.34) 0%,
      transparent 60%
    );
}

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

.hero__grid {
  display: grid;
  gap: clamp(2.2rem, 1.4rem + 3vw, 4rem);
  align-items: center;
}

@media (min-width: 992px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem 0.4rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero__badge b {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.hero__title {
  font-size: var(--step-5);
  color: #fff;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -0.012em;
}

.hero__title span {
  display: block;
  color: var(--blue-400);
}

.hero__sub {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.6rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.hero__meta-item svg {
  width: 20px;
  height: 20px;
  color: var(--blue-400);
  flex: none;
  margin-top: 0.25rem;
}

.hero__meta-item dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.15rem;
}

.hero__meta-item dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.hero .btn-row {
  margin-top: 2.2rem;
}

/* Geri sayım kartı */
.countdown-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: clamp(1.4rem, 1rem + 1.5vw, 2.2rem);
  box-shadow: var(--shadow-lg);
}

.countdown-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-400);
  text-align: center;
  margin-bottom: 1.3rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.countdown__cell {
  text-align: center;
  padding: 0.85rem 0.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.countdown__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__unit {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.countdown-card__foot {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.countdown-card__foot p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.9rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-direction: column;
}

@media (min-width: 992px) {
  .hero__scroll {
    display: flex;
  }
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 34px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: scrollHint 2.2s var(--ease) infinite;
}

@keyframes scrollHint {
  0%,
  100% {
    opacity: 0.25;
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* Sayfa başlığı (iç sayfalar) */
.pagehead {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3rem, 2rem + 5vw, 5.5rem);
  background: var(--navy-900);
  overflow: hidden;
}

.pagehead__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.pagehead__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagehead__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      100deg,
      rgba(8, 23, 44, 0.95) 0%,
      rgba(11, 31, 58, 0.88) 50%,
      rgba(20, 53, 95, 0.7) 100%
    );
}

.pagehead h1 {
  font-size: var(--step-4);
  color: #fff;
  text-transform: uppercase;
  max-width: 20ch;
}

.pagehead p {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--step-1);
  max-width: 60ch;
}

/* Breadcrumb */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.45);
}

.crumbs a {
  color: rgba(255, 255, 255, 0.62);
}

.crumbs a:hover {
  color: #fff;
}

.crumbs li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.crumbs li + li::before {
  content: "/";
  opacity: 0.4;
}

/* --------------------------------------------------------------------------
   8. İstatistik şeridi
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink-100);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats--float {
  margin-top: calc(var(--section-y) * -0.55);
  position: relative;
  z-index: 3;
  background: var(--ink-100);
  box-shadow: var(--shadow);
}

.stat {
  background: #fff;
  padding: clamp(1.4rem, 1rem + 1.6vw, 2.3rem) 1.1rem;
  text-align: center;
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat__num sup {
  font-size: 0.45em;
  color: var(--blue-500);
  top: -0.7em;
}

.stat__label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
}

.stat__note {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.74rem;
  color: var(--ink-300);
}

/* Koyu zemin varyantı */
.stats--dark,
.stats--dark .stat {
  background: transparent;
  border: 0;
}

.stats--dark {
  border: 1px solid rgba(255, 255, 255, 0.14);
  gap: 0;
}

.stats--dark .stat {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.stats--dark .stat__num {
  color: #fff;
}

.stats--dark .stat__label {
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   9. Kartlar
   -------------------------------------------------------------------------- */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue-100);
}

.card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--ink-100);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__body {
  padding: clamp(1.2rem, 1rem + 0.8vw, 1.8rem);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.7rem;
}

.card__title {
  font-size: var(--step-2);
  text-transform: uppercase;
}

.card__text {
  color: var(--ink-500);
  font-size: 0.95rem;
  flex: 1;
}

.card__foot {
  margin-top: auto;
  padding-top: 0.35rem;
}

/* İkonlu özellik kartı */
.feature {
  padding: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue-100);
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-050);
  color: var(--blue-600);
  margin-bottom: 1.1rem;
}

.feature__icon svg {
  width: 25px;
  height: 25px;
}

.feature h3 {
  font-size: var(--step-2);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.feature p {
  color: var(--ink-500);
  font-size: 0.94rem;
}

.section--navy .feature {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.section--navy .feature:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.section--navy .feature p {
  color: rgba(255, 255, 255, 0.68);
}

.section--navy .feature__icon {
  background: rgba(79, 154, 224, 0.16);
  color: var(--blue-400);
}

/* Numaralı liste kartı */
.numbered {
  counter-reset: n;
  display: grid;
  gap: 1.1rem;
}

.numbered li {
  counter-increment: n;
  position: relative;
  padding-left: 3.6rem;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
}

.numbered li::before {
  content: counter(n, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--blue-600);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

/* Bilgi kutusu */
.callout {
  padding: clamp(1.3rem, 1rem + 1vw, 2rem);
  border-radius: var(--radius);
  background: var(--blue-050);
  border-left: 4px solid var(--blue-500);
}

.callout h3 {
  font-size: var(--step-2);
  margin-bottom: 0.5rem;
}

.callout--gold {
  background: #fdf7e9;
  border-left-color: var(--gold-500);
}

/* --------------------------------------------------------------------------
   10. Medya + metin blokları
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 1.4rem + 3vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split--reverse > *:first-child {
    order: 2;
  }
  .split--wide-left {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split__media--tall img {
  aspect-ratio: 3 / 4;
}

/* Kolaj */
.collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.collage > *:first-child {
  grid-row: span 2;
}

.collage > *:first-child img {
  aspect-ratio: 3 / 4;
}

.collage > *:not(:first-child) img {
  aspect-ratio: 4 / 3;
}

/* Video bloğu */
.video-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.video-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-block__poster {
  position: absolute;
  inset: 0;
  cursor: pointer;
  border: 0;
  padding: 0;
  width: 100%;
  display: grid;
  place-items: center;
}

.video-block__poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-block__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 31, 58, 0.28),
    rgba(11, 31, 58, 0.55)
  );
}

.video-block__play {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(64px, 8vw, 92px);
  height: clamp(64px, 8vw, 92px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy-900);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}

.video-block__poster:hover .video-block__play {
  transform: scale(1.08);
  background: #fff;
}

.video-block__play svg {
  width: 34%;
  height: 34%;
  margin-left: 8%;
}

.video-block__poster.is-hidden {
  display: none;
}

/* --------------------------------------------------------------------------
   11. Ürün grupları
   -------------------------------------------------------------------------- */
/* 10 ürün grubu — 2 / 3 / 5 sütunda daima tam satır oluşturur */
.pgroups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink-100);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 620px) {
  .pgroups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .pgroups {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.pgroup {
  background: #fff;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: background-color 0.24s var(--ease);
}

.pgroup:hover {
  background: var(--blue-050);
}

.pgroup__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 0.9rem;
  color: var(--blue-600);
}

.pgroup__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.4;
}

.pgroup h3 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.3;
}

.pgroup span {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.76rem;
  color: var(--ink-400);
}

/* --------------------------------------------------------------------------
   12. Ülkeler
   -------------------------------------------------------------------------- */
.country-group + .country-group {
  margin-top: clamp(2.4rem, 1.8rem + 2vw, 3.6rem);
}

.country-group__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--step-2);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.country-group__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ink-100);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr));
  gap: 1rem;
}

.country {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.country:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.country img {
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  background: var(--ink-050);
}

.country span {
  display: block;
  padding: 0.65rem 0.5rem;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy-800);
}

/* Basit ülke etiketi listesi */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.36rem 0.85rem;
  border-radius: 999px;
  background: var(--ink-050);
  border: 1px solid var(--ink-100);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-700);
}

.section--navy .tag {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   13. Galeri
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.2rem;
}

.gallery-filters button {
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--ink-200);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ink-500);
  background: #fff;
  transition: all 0.2s var(--ease);
}

.gallery-filters button:hover {
  border-color: var(--blue-400);
  color: var(--blue-600);
}

.gallery-filters button[aria-pressed="true"] {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 0.9rem;
}

.gallery__item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-100);
  aspect-ratio: 3 / 2;
  cursor: zoom-in;
  border: 0;
  padding: 0;
  width: 100%;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(11, 31, 58, 0.6) 100%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item.is-hidden {
  display: none;
}

.gallery__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.9rem 1rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.gallery__item:hover .gallery__cap {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: rgba(6, 16, 31, 0.94);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), visibility 0.28s;
  padding: clamp(1rem, 4vw, 3rem);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__figure {
  max-width: min(1300px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  object-fit: contain;
  border-radius: var(--radius);
  margin-inline: auto;
}

.lightbox__cap {
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  transition: background-color 0.2s var(--ease);
}

.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox__btn svg {
  width: 20px;
  height: 20px;
}

.lightbox__close {
  top: 1.2rem;
  right: 1.2rem;
}

.lightbox__prev {
  left: clamp(0.5rem, 2vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: clamp(0.5rem, 2vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
}

/* --------------------------------------------------------------------------
   14. Destekleyenler
   -------------------------------------------------------------------------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 165px), 1fr));
  gap: 1px;
  background: var(--ink-100);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  overflow: hidden;
}

.logo-grid__cell {
  background: #fff;
  display: grid;
  place-items: center;
  padding: 1.6rem 1.2rem;
  min-height: 120px;
}

.logo-grid__cell img {
  max-height: 62px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.28s var(--ease), opacity 0.28s var(--ease);
}

.logo-grid__cell:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.supporters-strip {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 1rem + 1.5vw, 2.4rem);
}

.supporters-strip img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   15. Tablolar (fuar raporu)
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.table {
  min-width: 520px;
  font-size: 0.92rem;
}

.table th,
.table td {
  padding: 0.82rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--ink-100);
}

.table thead th {
  background: var(--ink-050);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-500);
  white-space: nowrap;
  position: sticky;
  top: 0;
}

.table tbody tr:last-child td {
  border-bottom: 0;
}

.table tbody tr:hover {
  background: var(--blue-050);
}

.table td.num,
.table th.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.table tfoot td {
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  border-bottom: 0;
}

/* Yatay bar grafiği */
.barchart {
  display: grid;
  gap: 0.9rem;
}

.bar {
  display: grid;
  grid-template-columns: minmax(90px, 130px) 1fr auto;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.88rem;
}

.bar__label {
  font-weight: 600;
  color: var(--navy-800);
}

.bar__track {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: var(--ink-100);
  overflow: hidden;
}

/* display:block şart — <span> olarak işaretlendiği için
   satır içi kalırsa genişlik/yükseklik uygulanmaz. */
.bar__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  width: 0;
  transition: width 1.1s var(--ease);
}

.section--navy .bar__track {
  background: rgba(255, 255, 255, 0.14);
}

.section--navy .bar__label {
  color: rgba(255, 255, 255, 0.86);
}

.section--navy .bar__val {
  color: rgba(255, 255, 255, 0.6);
}

.section--navy .ratio__head b {
  color: #fff;
}

.bar__val {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--ink-500);
  min-width: 4.5ch;
  text-align: right;
}

/* Günlük ziyaret sütun grafiği */
.daychart {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: end;
  gap: clamp(0.5rem, 1.5vw, 1.2rem);
  height: 260px;
  padding: 1.5rem 0 0;
}

.daychart__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  height: 100%;
  justify-content: flex-end;
}

.daychart__bar {
  width: 100%;
  max-width: 62px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--blue-500), var(--navy-700));
  height: 0;
  transition: height 1s var(--ease);
  position: relative;
}

.daychart__bar span {
  position: absolute;
  top: -1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-800);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.daychart__label {
  font-size: 0.74rem;
  color: var(--ink-400);
  text-align: center;
  line-height: 1.3;
}

.daychart__label b {
  display: block;
  color: var(--navy-800);
  font-size: 0.82rem;
}

/* Koyu zeminde okunabilirlik */
.section--navy .daychart__bar {
  background: linear-gradient(180deg, var(--blue-400), var(--blue-600));
}

.section--navy .daychart__bar span {
  color: #fff;
}

.section--navy .daychart__label {
  color: rgba(255, 255, 255, 0.5);
}

.section--navy .daychart__label b {
  color: #fff;
}

/* Donut / oran gösterimi */
.ratio {
  display: grid;
  gap: 1.4rem;
}

.ratio__row {
  display: grid;
  gap: 0.4rem;
}

.ratio__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
}

.ratio__head b {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-800);
}

/* --------------------------------------------------------------------------
   16. Zaman çizelgesi / program
   -------------------------------------------------------------------------- */
.timeline {
  display: grid;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--ink-100);
}

.timeline li {
  position: relative;
  padding: 0 0 1.8rem 2.6rem;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.42em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue-500);
  z-index: 1;
}

.timeline__date {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-800);
  text-transform: uppercase;
}

.timeline__text {
  color: var(--ink-500);
  font-size: 0.93rem;
}

/* Saat tablosu */
.hours {
  display: grid;
  gap: 1px;
  background: var(--ink-100);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #fff;
  padding: 0.95rem 1.2rem;
  font-size: 0.92rem;
}

.hours__row b {
  color: var(--navy-800);
}

.hours__row span {
  color: var(--ink-500);
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   17. Akordeon (SSS)
   -------------------------------------------------------------------------- */
.accordion {
  display: grid;
  gap: 0.7rem;
}

.acc {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.acc:has([aria-expanded="true"]) {
  border-color: var(--blue-100);
  box-shadow: var(--shadow-sm);
}

.acc__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.35rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-800);
}

.acc__btn:hover {
  background: var(--ink-050);
}

.acc__btn svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--blue-600);
  transition: transform 0.26s var(--ease);
}

.acc__btn[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}

.acc__btn[aria-expanded="true"] + .acc__panel {
  grid-template-rows: 1fr;
}

.acc__panel > div {
  overflow: hidden;
}

.acc__panel p {
  padding: 0 1.35rem 1.3rem;
  color: var(--ink-500);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   18. Formlar
   -------------------------------------------------------------------------- */
.form {
  display: grid;
  gap: 1.15rem;
}

.form-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 640px) {
  .form-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
}

.field label .req {
  color: var(--err-500);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.95rem;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.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='%235c6675' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 15px;
  padding-right: 2.5rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(47, 122, 201, 0.14);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--err-500);
}

.field__err {
  font-size: 0.8rem;
  color: var(--err-500);
  display: none;
}

.field input[aria-invalid="true"] ~ .field__err,
.field textarea[aria-invalid="true"] ~ .field__err,
.field select[aria-invalid="true"] ~ .field__err {
  display: block;
}

.field__hint {
  font-size: 0.8rem;
  color: var(--ink-400);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--ink-500);
  cursor: pointer;
}

.checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  flex: none;
  accent-color: var(--blue-600);
}

.form__note {
  font-size: 0.82rem;
  color: var(--ink-400);
}

.form-panel {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.1rem + 2vw, 2.8rem);
  box-shadow: var(--shadow-sm);
}

.alert {
  padding: 0.95rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.alert.is-visible {
  display: block;
}

.alert--ok {
  background: #e8f6ef;
  color: #146c45;
  border: 1px solid #b8e3cf;
}

.alert--err {
  background: #fdecea;
  color: #9b2c23;
  border: 1px solid #f5c6c1;
}

/* --------------------------------------------------------------------------
   19. İletişim
   -------------------------------------------------------------------------- */
.contact-list {
  display: grid;
  gap: 1.4rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-050);
  color: var(--blue-600);
  flex: none;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item dt {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 0.2rem;
}

.contact-item dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.45;
}

.contact-item dd a {
  color: var(--navy-800);
}

.contact-item dd a:hover {
  color: var(--blue-600);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  aspect-ratio: 16 / 10;
  background: var(--ink-050);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --------------------------------------------------------------------------
   20. CTA şeridi
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-900);
  padding-block: clamp(3rem, 2rem + 4vw, 5rem);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      70% 120% at 12% 0%,
      rgba(47, 122, 201, 0.3) 0%,
      transparent 62%
    ),
    radial-gradient(
      60% 110% at 92% 100%,
      rgba(201, 150, 47, 0.16) 0%,
      transparent 60%
    );
}

.cta-band__inner {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

@media (min-width: 900px) {
  .cta-band__inner {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }
}

.cta-band h2 {
  font-size: var(--step-3);
  color: #fff;
  text-transform: uppercase;
}

.cta-band p {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 58ch;
}

/* --------------------------------------------------------------------------
   21. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #08172c;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer__top {
  padding-block: clamp(2.8rem, 2rem + 3vw, 4.4rem);
  display: grid;
  gap: 2.4rem;
}

@media (min-width: 860px) {
  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.6rem;
  }
}

.footer__brand img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 1.1rem;
}

.footer__brand p {
  max-width: 34ch;
  line-height: 1.7;
}

.footer h3 {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.15rem;
}

.footer__links {
  display: grid;
  gap: 0.62rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  /* Mobilde rahat dokunma yüksekliği */
  padding-block: 0.22rem;
}

.footer__links a:hover {
  color: #fff;
}

.footer__contact {
  display: grid;
  gap: 0.9rem;
}

.footer__contact div {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  line-height: 1.55;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  color: var(--blue-400);
  flex: none;
  margin-top: 0.24rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.72);
}

.footer__contact a:hover {
  color: #fff;
}

.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.footer__social a:hover {
  background: var(--blue-600);
  color: #fff;
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-block: 1.5rem;
  font-size: 0.8rem;
}

/* Üç eşit sütun: sol telif — orta KVKK — sağ tasarım kredisi.
   Dar ekranda tek sütuna iner ve tamamı ortalanır. */
.footer__legal-inner {
  display: grid;
  gap: 0.7rem;
  text-align: center;
  justify-items: center;
}

@media (min-width: 800px) {
  .footer__legal-inner {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.8rem 1.6rem;
  }
  .footer__legal-inner > :first-child {
    justify-self: start;
    text-align: left;
  }
  .footer__legal-inner > .footer__credit {
    justify-self: end;
    text-align: right;
  }
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.6);
}

.footer__legal a:hover {
  color: #fff;
}

.footer__kvkk a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.footer__tobb {
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 1rem;
  margin-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.02em;
  text-align: center;
}

/* --------------------------------------------------------------------------
   22. Yardımcılar
   -------------------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.26s var(--ease), transform 0.26s var(--ease),
    visibility 0.26s, background-color 0.2s var(--ease);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--blue-600);
}

.to-top svg {
  width: 18px;
  height: 18px;
}

/* Çerez bildirimi — geniş ekranda ince alt şerit, mobilde kart */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: #fff;
  border-top: 1px solid var(--ink-100);
  box-shadow: 0 -6px 28px rgba(11, 31, 58, 0.12);
  padding: 1.1rem clamp(1.15rem, 4vw, 2.5rem);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem 1.6rem;
  text-align: center;
}

.cookie.is-visible {
  transform: translateY(0);
}

.cookie h4 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
  flex: none;
}

.cookie p {
  font-size: 0.85rem;
  color: var(--ink-500);
  max-width: 62ch;
  margin: 0;
}

.cookie__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  flex: none;
}

@media (min-width: 900px) {
  .cookie {
    flex-wrap: nowrap;
    text-align: left;
    padding-block: 0.95rem;
  }
  /* Sağ alttaki "yukarı çık" butonuyla çakışmayı önle */
  .cookie.is-visible ~ .to-top {
    bottom: calc(clamp(1rem, 2.5vw, 2rem) + 74px);
  }
}

/* --------------------------------------------------------------------------
   Modal (bilgilendirme kutusu)
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
  background: rgba(8, 23, 44, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), visibility 0.28s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__box {
  width: min(100%, 480px);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.5rem);
  text-align: center;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s var(--ease);
}

.modal.is-open .modal__box {
  transform: none;
}

.modal__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--blue-050);
  color: var(--blue-600);
}

.modal__icon svg {
  width: 28px;
  height: 28px;
}

.modal__box h2 {
  font-size: var(--step-3);
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.modal__box p {
  color: var(--ink-500);
  font-size: 0.96rem;
}

.modal__box p + p {
  margin-top: 0.7rem;
}

/* .modal__box p kuralını özgüllükte geçmesi için .modal__box ile
   birlikte yazıldı — aksi hâlde metin gri kalıyor. */
.modal__box .modal__date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.3rem 0 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.modal__date svg {
  width: 17px;
  height: 17px;
  color: var(--blue-400);
}

.modal__actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.modal__close {
  position: absolute;
  top: clamp(1rem, 3vw, 1.6rem);
  right: clamp(1rem, 3vw, 1.6rem);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: background-color 0.2s var(--ease);
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.26);
}

.modal__close svg {
  width: 18px;
  height: 18px;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.32s;
}
[data-reveal-delay="5"] {
  transition-delay: 0.4s;
}

body.no-scroll {
  overflow: hidden;
}

/* Mobil çekmece açıkken kaydırmayı konumu koruyarak kilitle */
body.drawer-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   23. Mobil ince ayarlar
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  /* Hero: viewport yüksekliğine sabitlemek yerine içeriğe göre büyüsün */
  .hero {
    min-height: 0;
    padding-block: clamp(2.8rem, 2rem + 6vw, 4.5rem);
  }

  .hero__title {
    font-size: clamp(2.9rem, 2rem + 12vw, 4rem);
  }

  .hero__badge {
    font-size: 0.7rem;
  }

  /* Tarih/yer/saat üçlüsü tek sütun — yan yana sıkışmasın */
  .hero__meta {
    gap: 1.1rem;
    margin-top: 1.5rem;
    padding-top: 1.4rem;
  }

  .hero__meta-item {
    width: 100%;
  }

  .hero .btn-row,
  .btn-row--stack-mobile {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .btn-row .btn {
    width: 100%;
  }

  /* Geri sayım hücreleri dar ekranda taşmasın */
  .countdown {
    gap: 0.4rem;
  }

  .countdown__cell {
    padding: 0.7rem 0.2rem;
  }

  .countdown__unit {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  /* Kaydırılabilir tabloya ipucu ver */
  .table-wrap {
    position: relative;
  }

  .table-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 28px;
    pointer-events: none;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.92)
    );
    border-radius: 0 var(--radius) var(--radius) 0;
  }

  /* Sayfa başlığı ve bölüm başlıkları */
  .pagehead h1 {
    max-width: none;
  }

  .section-head {
    margin-bottom: 1.9rem;
  }

  /* Zaman çizelgesi ve grafik yüksekliği */
  .daychart {
    height: 210px;
  }

  .daychart__label {
    font-size: 0.66rem;
  }

  .bar {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "label val"
      "track track";
    gap: 0.35rem 0.8rem;
  }

  .bar__label {
    grid-area: label;
  }

  .bar__val {
    grid-area: val;
  }

  .bar__track {
    grid-area: track;
  }

  /* Alt bilgi sütunları arası nefes payı */
  .footer__top {
    gap: 2rem;
  }

  /* Dokunma hedefi: bağlantılar en az ~44px yüksekliğe ulaşsın */
  .brand {
    min-height: 44px;
  }

  .footer__links a {
    padding-block: 0.55rem;
  }

  .footer__legal a {
    display: inline-block;
    padding-block: 0.5rem;
  }

  .footer__contact a {
    padding-block: 0.3rem;
  }

  /* Çerez şeridi mobilde daha kompakt */
  .cookie {
    padding: 1rem 1.15rem 1.15rem;
    gap: 0.6rem;
  }

  .cookie p {
    font-size: 0.8rem;
  }

  .cookie .btn {
    flex: 1;
  }

  /* Lightbox okları alt köşelere */
  .lightbox__prev,
  .lightbox__next {
    top: auto;
    bottom: 1rem;
    transform: none;
  }

  .lightbox__figure img {
    max-height: calc(100vh - 12rem);
  }
}

/* Çok dar ekranlar */
@media (max-width: 380px) {
  .countdown__num {
    font-size: 1.5rem;
  }

  .hero__badge b {
    font-size: 0.66rem;
  }

  .gallery-filters button {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }
}

/* --------------------------------------------------------------------------
   24. Yazdırma
   -------------------------------------------------------------------------- */
@media print {
  .header,
  .topbar,
  .footer,
  .to-top,
  .cookie,
  .drawer,
  .cta-band,
  .hero__scroll {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 11pt;
  }

  .section {
    padding-block: 1rem;
    break-inside: avoid;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }
}
