/* ===== Değişik Yollarda — Editorial / Light / Minimal ===== */
:root {
  --bg:        #ffffff;   /* beyaz */
  --bg-2:      #f5f4f1;   /* çok hafif kâğıt tonu (bölüm ayrımı için) */
  --surface:   #ffffff;
  --line:      #eae7e0;   /* ince çizgi */
  --line-2:    #ddd8ce;
  --ink:       #1a1712;   /* neredeyse siyah, sıcak */
  --ink-soft:  #3a352d;
  --muted:     #756d60;   /* okunur gri (4.5:1+) */
  --faint:     #9a9284;
  --accent:    #c8451f;   /* rafine terracotta */
  --accent-2:  #a5371a;
  --accent-wash:#f7ede4;
  --radius:    14px;
  --max:       1180px;
  --measure:   68ch;
  --serif:     'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:      'Inter', system-ui, -apple-system, sans-serif;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* ===== Buttons ===== */
.btn {
  --pad: 13px 24px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: var(--pad);
  border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: .2px;
  cursor: pointer; border: 1px solid transparent;
  transition: background .2s var(--ease), color .2s, border-color .2s, box-shadow .2s, transform .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm { --pad: 9px 17px; font-size: .85rem; background: var(--ink); color: #fff; }
.btn--sm:hover { background: var(--accent); }
.btn--yt { background: var(--accent); color: #fff; }
.btn--yt:hover { background: var(--accent-2); box-shadow: 0 8px 24px -12px rgba(200,69,31,.6); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--bg-2); border-color: var(--ink); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 6px 22px -16px rgba(26,23,18,.45); }
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 22px;
  padding: 18px 28px;
}
.nav__logo { font-family: var(--serif); font-weight: 600; letter-spacing: .2px; display: flex; align-items: center; gap: 9px; font-size: 1.22rem; }
.nav__mark { color: var(--accent); font-size: .7em; }
.nav__links { margin-left: auto; display: flex; gap: 30px; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: .93rem; position: relative; transition: color .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1.5px; background: var(--accent); transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__toggle { display: none; background: none; border: none; color: var(--ink); font-size: 1.5rem; cursor: pointer; line-height: 1; }

/* ===== Slider (1920x700) ===== */
.slider { position: relative; width: 100%; aspect-ratio: 1920 / 700; overflow: hidden; background: var(--bg-2); }
.slider__track { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s var(--ease); }
.slide.is-active { opacity: 1; visibility: visible; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,23,18,.55), rgba(26,23,18,.12) 55%, transparent); }
.slide__cap { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; max-width: var(--max); margin: 0 auto; padding: 0 8%; color: #fff; }
.slide__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.8rem, 4vw, 3.6rem); line-height: 1.05; letter-spacing: -.01em; max-width: 60%; text-shadow: 0 2px 24px rgba(0,0,0,.45); }
.slide__sub { font-size: clamp(1rem, 1.6vw, 1.3rem); margin-top: 14px; max-width: 48%; color: rgba(255,255,255,.94); text-shadow: 0 1px 12px rgba(0,0,0,.45); }
.slide__btn { align-self: flex-start; margin-top: 26px; display: inline-flex; padding: 13px 28px; border-radius: 100px; background: var(--accent); color: #fff; font-weight: 600; font-size: .98rem; transition: background .2s, transform .2s var(--ease); }
.slide__btn:hover { background: var(--accent-2); transform: translateY(-2px); }
.slider__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.85); color: var(--ink); border: none; font-size: 1.8rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .2s; }
.slider__nav:hover { background: #fff; }
.slider__nav--prev { left: 20px; }
.slider__nav--next { right: 20px; }
.slider__dots { position: absolute; left: 0; right: 0; bottom: 20px; z-index: 3; display: flex; gap: 10px; justify-content: center; }
.slider__dot { width: 11px; height: 11px; border-radius: 50%; cursor: pointer; background: rgba(255,255,255,.5); border: none; padding: 0; transition: background .2s, transform .2s var(--ease); }
.slider__dot.is-active { background: #fff; transform: scale(1.25); }
@media (max-width: 760px) {
  .slider { aspect-ratio: 4 / 5; max-height: 80vh; }
  .slide__title, .slide__sub { max-width: 100%; }
  .slider__nav { width: 40px; height: 40px; font-size: 1.5rem; }
  .slider__nav--prev { left: 10px; }
  .slider__nav--next { right: 10px; }
}

/* ===== Intro / Merhaba ===== */
.intro { position: relative; text-align: center; padding: 84px 28px 46px; overflow: hidden; }
.intro__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(72% 62% at 50% 0%, var(--accent-wash), transparent 66%); }
.intro__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(26,23,18,.045) 1px, transparent 0);
  background-size: 26px 26px;
  mask-image: radial-gradient(60% 72% at 50% 18%, #000 6%, transparent 70%);
}
.intro__inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.intro__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 4.6vw, 3.3rem); line-height: 1.12; letter-spacing: -.02em;
  margin-top: 10px; color: var(--ink);
}
.intro__lead { color: var(--muted); font-size: clamp(1.02rem, 1.8vw, 1.18rem); line-height: 1.7; margin: 22px auto 0; max-width: 60ch; }
.intro__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* ===== Rotalar (Gezdiğim Yerler) ===== */
.routes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.route { position: relative; display: block; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.route img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.route:hover img { transform: scale(1.06); }
.route__ov { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(26,23,18,.78), rgba(26,23,18,.15) 58%, rgba(26,23,18,.05)); }
.route__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 22px; color: #fff; text-align: left; display: flex; flex-direction: column; gap: 3px; }
.route__cap b { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; line-height: 1.1; }
.route__cap small { font-size: .86rem; color: rgba(255,255,255,.86); }

/* ===== Ana sayfa: son yazılar ===== */
.home-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 30px; }

/* ===== Abone CTA bandı ===== */
.cta-band { background: var(--accent); color: #fff; }
.cta-band__inner { max-width: var(--max); margin: 0 auto; padding: 76px 28px; text-align: center; }
.cta-band__eyebrow { text-transform: uppercase; letter-spacing: 2.5px; font-size: .74rem; font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 12px; }
.cta-band__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.08; letter-spacing: -.01em; }
.cta-band__sub { margin: 14px auto 0; font-size: 1.08rem; line-height: 1.6; color: rgba(255,255,255,.92); max-width: 54ch; }
.cta-band__btn { margin-top: 32px; background: #fff; color: var(--accent); }
.cta-band__btn:hover { background: var(--ink); color: #fff; box-shadow: 0 14px 30px -16px rgba(0,0,0,.5); }

/* ===== Stats ===== */
.stats {
  max-width: 760px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative; z-index: 3;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats__item { text-align: center; padding: 32px 16px; }
.stats__item + .stats__item { border-left: 1px solid var(--line); }
.stats__num {
  display: block; font-family: var(--serif); font-size: 2.7rem; line-height: 1; font-weight: 500;
  color: var(--ink);
}
.stats__num::after { content: attr(data-suffix); color: var(--accent); }
.stats__label { color: var(--muted); font-size: .82rem; letter-spacing: .3px; margin-top: 8px; }

/* ===== Sections ===== */
.section { max-width: var(--max); margin: 0 auto; padding: 96px 28px; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.section__eyebrow {
  text-transform: uppercase; letter-spacing: 2.5px; font-size: .74rem; font-weight: 700;
  color: var(--accent); margin-bottom: 14px;
}
.section__title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 500; letter-spacing: -.01em; line-height: 1.1; }
.section__desc { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.section__foot { text-align: center; margin-top: 50px; }

/* ===== Videos ===== */
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 26px; }
.video {
  background: transparent; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: transform .3s var(--ease);
}
.video:hover { transform: translateY(-4px); }
.video__thumb { position: relative; aspect-ratio: 16/9; background: var(--bg-2); overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.video__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.video:hover .video__thumb img { transform: scale(1.05); }
.video__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(0deg, rgba(26,23,18,.28), rgba(26,23,18,0) 55%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.video:hover .video__play { opacity: 1; }
.video__play svg { width: 54px; height: 54px; filter: drop-shadow(0 6px 16px rgba(0,0,0,.35)); }
.video__body { padding: 16px 4px 4px; }
.video__title { font-size: 1.02rem; font-weight: 600; line-height: 1.35; color: var(--ink); }
.video__tag { display: inline-block; margin-top: 11px; font-size: .7rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.video iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; border-radius: var(--radius); }

/* ===== Öne çıkan büyük video ===== */
.vfeatured { margin-bottom: 26px; }
.vfeat { cursor: pointer; display: block; }
.vfeat__thumb { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.vfeat__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.vfeat:hover .vfeat__thumb img { transform: scale(1.03); }
.vfeat__thumb .video__play { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(0deg, rgba(26,23,18,.34), rgba(26,23,18,0) 55%); opacity: 1; }
.vfeat__thumb .video__play svg { width: 74px; height: 74px; filter: drop-shadow(0 8px 20px rgba(0,0,0,.4)); transition: transform .25s var(--ease); }
.vfeat:hover .vfeat__thumb .video__play svg { transform: scale(1.08); }
.vfeat__thumb.is-playing .video__play { display: none; }
.vfeat__thumb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vfeat__badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; }
.vfeat__body { padding: 16px 4px 0; }
.vfeat__title { font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.7rem); font-weight: 600; line-height: 1.25; margin-top: 8px; letter-spacing: -.01em; }

/* ===== Video filtre sekmeleri ===== */
.vfilter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
.vfilter__tab { padding: 8px 18px; border: 1px solid var(--line-2); border-radius: 100px; background: transparent; color: var(--muted); font-family: var(--sans); font-size: .9rem; font-weight: 600; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.vfilter__tab:hover { border-color: var(--ink); color: var(--ink); }
.vfilter__tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ===== Mağaza vitrini ===== */
.steaser__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.steaser { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; }
.steaser:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 18px 34px -24px rgba(26,23,18,.4); }
.steaser__ph { aspect-ratio: 1 / 1; background: var(--bg-2); overflow: hidden; }
.steaser__ph img { width: 100%; height: 100%; object-fit: cover; }
.steaser__b { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 5px; }
.steaser__c { font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.steaser__n { font-size: .98rem; font-weight: 600; line-height: 1.3; color: var(--ink); }
.steaser__p { font-family: var(--serif); font-size: 1.24rem; color: var(--accent); margin-top: 2px; }

/* ===== İnteraktif harita ===== */
.worldmap { display: grid; grid-template-columns: 1.55fr 1fr; gap: 30px; align-items: stretch; }
.worldmap__map { background: linear-gradient(180deg, var(--bg-2), #fff); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; display: flex; align-items: center; }
.wmap { width: 100%; height: auto; display: block; }
.wmap__land path { fill: #e9e4d9; stroke: #ddd6c8; stroke-width: 1; stroke-linejoin: round; }
.wpin__dot { fill: #b6ad9d; transition: r .2s var(--ease); }
.wpin--content .wpin__dot { fill: var(--accent); stroke: #fff; stroke-width: 1.5; }
.wpin--home .wpin__dot { fill: var(--ink); stroke: #fff; stroke-width: 1.5; }
.wpin__halo { fill: var(--accent); opacity: .3; transform-origin: center; animation: wpulse 2.4s ease-out infinite; }
.wpin--home .wpin__halo { fill: var(--ink); }
@keyframes wpulse { 0% { transform: scale(.5); opacity: .45; } 70% { opacity: 0; } 100% { transform: scale(2); opacity: 0; } }
.wpin__lbl { fill: var(--ink); font-family: var(--sans); font-size: 15px; font-weight: 700; paint-order: stroke; stroke: #fff; stroke-width: 3px; pointer-events: none; }
.wpin--content:hover .wpin__dot { r: 8.5; }
.wpin.is-sel .wpin__dot { fill: var(--accent-2); r: 8.5; }

.worldmap__panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; min-height: 260px; }
.mp-intro { text-align: center; padding: 20px 6px; }
.mp-intro__ico { color: var(--accent); display: inline-flex; }
.mp-intro h3 { font-family: var(--serif); font-size: 1.3rem; margin-top: 10px; }
.mp-intro p { color: var(--muted); font-size: .96rem; margin-top: 8px; line-height: 1.55; }
.mp-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.mp-chip { padding: 7px 15px; border: 1px solid var(--line-2); border-radius: 100px; background: transparent; color: var(--ink); font-family: var(--sans); font-weight: 600; font-size: .86rem; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.mp-chip:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.mp-back { background: none; border: none; color: var(--muted); font-family: var(--sans); font-weight: 600; font-size: .86rem; cursor: pointer; padding: 0; margin-bottom: 14px; }
.mp-back:hover { color: var(--accent); }
.mp-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.mp-head h3 { font-family: var(--serif); font-size: 1.5rem; }
.mp-meta { color: var(--accent); font-size: .8rem; font-weight: 600; }
.mp-lbl { text-transform: uppercase; letter-spacing: 1.2px; font-size: .7rem; font-weight: 700; color: var(--faint); margin: 16px 0 8px; }
.mp-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mp-list a { display: flex; align-items: flex-start; gap: 9px; padding: 9px 8px; border-radius: 9px; color: var(--ink-soft); font-size: .92rem; line-height: 1.35; transition: background .2s, color .2s; }
.mp-list a:hover { background: var(--accent-wash); color: var(--ink); }
.mp-list a svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.mp-empty-txt { color: var(--muted); font-size: .95rem; margin-top: 14px; }

/* ===== E-bülten (Yol Arkadaşı) ===== */
.nl { background: var(--accent-wash); border: 1px solid #eeddce; border-radius: 18px; padding: 44px 40px; max-width: 900px; margin: 0 auto; text-align: center; }
.nl__title { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1.12; margin-top: 4px; }
.nl__sub { color: var(--muted); font-size: 1.04rem; line-height: 1.6; margin: 14px auto 0; max-width: 52ch; }
.nl__form { display: flex; gap: 10px; justify-content: center; margin: 26px auto 0; max-width: 480px; }
.nl__form input { flex: 1; min-width: 0; padding: 14px 18px; border: 1px solid var(--line-2); border-radius: 100px; font-family: var(--sans); font-size: 1rem; background: #fff; color: var(--ink); }
.nl__form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,69,31,.14); }
.nl__form .btn { flex-shrink: 0; }
.nl__msg { margin-top: 14px; font-size: .92rem; font-weight: 600; min-height: 1.2em; }
.nl__msg.ok { color: #1c7a4a; }
.nl__msg.err { color: var(--accent-2); }

/* ===== Sıradaki Durak (oylama + yakıt deposu) ===== */
.nextstop__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.ns-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.ns-loading { color: var(--muted); }
.ns-poll__lead { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 16px; }
.ns-vote { display: block; width: 100%; text-align: left; padding: 14px 18px; margin-bottom: 10px; border: 1px solid var(--line-2); border-radius: 12px; background: transparent; color: var(--ink); font-family: var(--sans); font-weight: 600; font-size: 1rem; cursor: pointer; transition: background .2s, border-color .2s, transform .15s var(--ease); }
.ns-vote:hover { border-color: var(--accent); background: var(--accent-wash); transform: translateX(3px); }
.ns-vote:disabled { opacity: .55; cursor: default; }
.ns-opt { margin-bottom: 14px; }
.ns-opt__top { display: flex; justify-content: space-between; font-weight: 600; font-size: .95rem; margin-bottom: 6px; }
.ns-opt__top b { color: var(--accent); }
.ns-poll__thanks { color: var(--muted); font-size: .88rem; margin-top: 10px; }
.ns-bar { height: 12px; background: var(--bg-2); border-radius: 100px; overflow: hidden; }
.ns-bar__fill { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 100px; transition: width .7s var(--ease); }
.ns-fuel__title { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.ns-fuel__note { color: var(--muted); font-size: .95rem; line-height: 1.55; margin: 8px 0 18px; }
.ns-fuel .ns-bar { height: 16px; }
.ns-bar__meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 10px; font-size: .9rem; color: var(--muted); }
.ns-bar__meta b { color: var(--accent); font-family: var(--serif); font-size: 1.1rem; }
.ns-iban { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ns-iban code { font-family: ui-monospace, monospace; background: var(--bg-2); padding: 4px 10px; border-radius: 6px; color: var(--ink); font-size: .92em; }
.ns-iban small { width: 100%; color: var(--faint); }

/* ===== Zaman tüneli ===== */
.timeline { list-style: none; max-width: 760px; margin: 0 auto; position: relative; padding-left: 6px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl { position: relative; padding: 0 0 34px 40px; }
.tl:last-child { padding-bottom: 0; }
.tl__dot { position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--accent); z-index: 1; }
.tl__dot--next { border-color: var(--ink); animation: tlpulse 2s ease-out infinite; }
@keyframes tlpulse { 0% { box-shadow: 0 0 0 0 rgba(26,23,18,.35); } 70% { box-shadow: 0 0 0 10px rgba(26,23,18,0); } 100% { box-shadow: 0 0 0 0 rgba(26,23,18,0); } }
.tl__k { text-transform: uppercase; letter-spacing: 1.5px; font-size: .7rem; font-weight: 700; color: var(--accent); }
.tl__c h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; margin: 4px 0 6px; letter-spacing: -.01em; }
.tl__c p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; }
.tl__c a { color: var(--accent); font-weight: 600; }

/* ===== CTA band koyu varyant ===== */
.cta-band--dark { background: var(--ink); }
.cta-band--dark .cta-band__eyebrow { color: rgba(255,255,255,.55); }
.cta-band--dark .cta-band__btn { background: var(--accent); color: #fff; }
.cta-band--dark .cta-band__btn:hover { background: #fff; color: var(--ink); }

/* ===== About ===== */
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.about__text .section__title { text-align: left; }
.about__text p { color: var(--ink-soft); margin-top: 18px; font-size: 1.08rem; max-width: 52ch; }
.about__text .btn { margin-top: 28px; }
.about__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ac { background: var(--surface); padding: 28px 24px; transition: background .25s var(--ease); }
.ac:hover { background: var(--accent-wash); }
.ac__ico { color: var(--accent); display: block; margin-bottom: 14px; }
.ac__ico svg { width: 26px; height: 26px; }
.ac h3 { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; }
.ac p { color: var(--muted); font-size: .93rem; margin-top: 7px; }

/* ===== Contact ===== */
.contact { text-align: center; }
.contact__desc { color: var(--muted); max-width: 44ch; margin: 14px auto 0; font-size: 1.05rem; }
.socials { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.social {
  display: flex; flex-direction: column; align-items: center; gap: 11px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 36px; min-width: 132px; color: var(--muted);
  transition: border-color .25s var(--ease), color .25s, transform .25s var(--ease), box-shadow .25s;
}
.social:hover { transform: translateY(-4px); border-color: var(--accent); color: var(--ink); box-shadow: 0 16px 30px -22px rgba(26,23,18,.4); }
.social svg { color: var(--accent); }
.social span { font-weight: 600; font-size: .9rem; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); }
.footer__inner { max-width: var(--max); margin: 0 auto; padding: 40px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__logo { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: 1.1rem; }
.footer p { color: var(--muted); font-size: .86rem; }

/* ===== Blog listesi ===== */
.blog-hero {
  padding: 70px 28px 20px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(70% 60% at 50% 0%, var(--accent-wash), transparent 70%);
}
.blog-hero__inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.blog-hero__title { font-family: var(--serif); font-size: clamp(2.6rem, 7vw, 4.4rem); line-height: 1.02; font-weight: 500; letter-spacing: -.02em; margin-top: 8px; }
.blog-hero__sub { color: var(--muted); margin-top: 14px; font-size: 1.12rem; }

.posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 40px; }
.posts__empty { text-align: center; color: var(--muted); padding: 40px 0; }
.post-card {
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease);
}
.post-card:hover { transform: translateY(-4px); }
.post-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); border-radius: var(--radius); border: 1px solid var(--line); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__body { padding: 20px 2px 0; display: flex; flex-direction: column; gap: 10px; }
.post-card__date { color: var(--accent); font-size: .76rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.post-card__title { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; line-height: 1.2; letter-spacing: -.01em; }
.post-card__excerpt { color: var(--muted); font-size: .98rem; line-height: 1.6; }
.post-card__more { color: var(--ink); font-weight: 600; font-size: .9rem; margin-top: 2px; display: inline-flex; align-items: center; gap: 6px; }
.post-card:hover .post-card__more { color: var(--accent); }

/* ===== Tekil yazı ===== */
.article { padding: 60px 28px 40px; }
.article__inner { max-width: 720px; margin: 0 auto; }
.article__back { color: var(--muted); font-weight: 500; font-size: .92rem; display: inline-block; margin-bottom: 30px; transition: color .2s; }
.article__back:hover { color: var(--accent); }
.article__date { color: var(--accent); font-size: .82rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; }
.article__title { font-family: var(--serif); font-size: clamp(2.1rem, 5vw, 3.2rem); font-weight: 500; line-height: 1.1; letter-spacing: -.02em; margin: 12px 0 30px; }
.article__video { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: 44px; }
.article__video iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.article__content { font-family: var(--serif); font-size: 1.24rem; line-height: 1.75; color: var(--ink-soft); }
.article__content > p:first-of-type::first-letter {
  float: left; font-size: 3.4em; line-height: .82; font-weight: 600;
  padding: 6px 12px 0 0; color: var(--accent);
}
.article__content h2 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; margin: 46px 0 16px; color: var(--ink); line-height: 1.2; letter-spacing: -.01em; }
.article__content h3 { font-family: var(--serif); font-size: 1.34rem; font-weight: 600; margin: 32px 0 10px; color: var(--ink); }
.article__content p { margin-bottom: 22px; }
.article__content ul, .article__content ol { margin: 0 0 22px 24px; }
.article__content li { margin-bottom: 10px; }
.article__content blockquote { border-left: 3px solid var(--accent); padding: 4px 22px; margin: 28px 0; color: var(--muted); font-style: italic; }
.article__content code { font-family: ui-monospace, monospace; background: var(--bg-2); padding: 2px 7px; border-radius: 6px; font-size: .82em; }
.article__content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article__content img { max-width: 100%; border-radius: 12px; margin: 22px 0; display: block; }
.article__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 48px; padding-top: 34px; border-top: 1px solid var(--line); }
.article__missing { text-align: center; padding: 60px 0; }
.article__missing h1 { font-family: var(--serif); font-size: 2rem; margin-bottom: 12px; }
.article__missing p { color: var(--muted); margin-bottom: 24px; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__inner { padding: 14px 20px; gap: 14px; }
  .nav__links { position: fixed; inset: 62px 0 auto 0; flex-direction: column; gap: 0; background: rgba(255,255,255,.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); box-shadow: 0 12px 30px -20px rgba(26,23,18,.35); padding: 6px 0; transform: translateY(-140%); transition: transform .35s var(--ease); }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 15px 24px; font-size: 1rem; }
  .nav__links a::after { display: none; }
  .nav__toggle { display: block; margin-left: auto; }
  .nav .btn--sm { display: none; }
  .videos { grid-template-columns: 1fr 1fr; }
  .routes__grid { grid-template-columns: 1fr 1fr; }
  .home-posts { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .steaser__grid { grid-template-columns: 1fr 1fr; }
  .nextstop__grid { grid-template-columns: 1fr; }
  .worldmap { grid-template-columns: 1fr; gap: 20px; }
  .worldmap__panel { min-height: 0; }
  .about__grid { grid-template-columns: 1fr; gap: 38px; }
  .section { padding: 80px 24px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .intro { padding: 58px 20px 34px; }
  .stats { grid-template-columns: 1fr; }
  .stats__item + .stats__item { border-left: none; border-top: 1px solid var(--line); }
  .stats__item { padding: 24px 16px; }
  .videos { grid-template-columns: 1fr; }
  .routes__grid { grid-template-columns: 1fr; gap: 18px; }
  .route { aspect-ratio: 16 / 10; }
  .home-posts { grid-template-columns: 1fr; gap: 36px; }
  .posts { grid-template-columns: 1fr; gap: 40px; }
  .about__cards { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 20px; }
  .section__head { margin-bottom: 40px; }
  .cta-band__inner { padding: 58px 22px; }
  .nl { padding: 32px 22px; }
  .nl__form { flex-direction: column; }
  .nl__form input, .nl__form .btn { width: 100%; }
  .nl__form .btn { justify-content: center; }
  .wpin__lbl { display: none; }
  .footer__inner { flex-direction: column; text-align: center; gap: 10px; padding: 34px 20px; }
  .article { padding: 40px 20px 30px; }
  .article__content { font-size: 1.12rem; }
  .article__content > p:first-of-type::first-letter { font-size: 3em; }
  .blog-hero { padding: 54px 20px 12px; }
}
@media (max-width: 400px) {
  .nav__logo { font-size: 1.06rem; }
  .about__cards { grid-template-columns: 1fr; }
  .btn { --pad: 12px 20px; font-size: .9rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}
