/* ============================================================
   GALATA HUB — Tasarım Sistemi
   Palet: kum/krem zemin, mürekkep, tuğla kırmızısı vurgu,
   petrol yeşili koyu bölümler, pirinç/altın detay
   ============================================================ */

:root {
  --bg: #f6f1e7;
  --bg-soft: #efe7d8;
  --card: #fffdf8;
  --ink: #221c15;
  --ink-soft: #5c5344;
  --brick: #b04a2f;
  --brick-dark: #8f3a24;
  --gold: #c09537;
  --deep: #10333c;
  --deep-2: #0b2830;
  --line: rgba(34, 28, 21, 0.12);
  --shadow: 0 10px 30px rgba(34, 28, 21, 0.10);
  --shadow-lg: 0 24px 60px rgba(34, 28, 21, 0.18);
  --radius: 16px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Tipografi ---------- */
h1, h2, h3, .display { font-family: var(--font-display); line-height: 1.15; }

.section-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brick); margin-bottom: 12px;
}
.section-kicker::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.section-lead { color: var(--ink-soft); max-width: 640px; margin-top: 12px; font-size: 1.02rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  padding: 18px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.on-dark { color: #f7f2e9; }
.site-header.scrolled {
  background: rgba(246, 241, 231, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(34, 28, 21, 0.10);
  color: var(--ink);
  padding: 12px 0;
}

.logo { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-display); }
.logo strong { font-size: 1.45rem; font-weight: 800; letter-spacing: 0.06em; }
.logo span {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.18em; padding: 3px 8px; border-radius: 6px;
  background: var(--brick); color: #fff; transform: translateY(-2px);
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-size: 0.92rem; font-weight: 700; padding: 8px 14px; border-radius: 999px;
  opacity: 0.85; transition: 0.25s;
}
.main-nav a:hover { opacity: 1; background: rgba(176, 74, 47, 0.12); }
.main-nav a.active { background: var(--brick); color: #fff; opacity: 1; }

.nav-toggle { display: none; background: none; border: 0; color: inherit; }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(320px, 80vw);
    background: var(--deep); color: #f7f2e9;
    flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 40px 32px; gap: 10px;
    transform: translateX(100%); transition: transform 0.35s ease;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.15rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #f7f2e9; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 40, 48, 0.55) 0%, rgba(16, 51, 60, 0.35) 45%, rgba(16, 40, 48, 0.88) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 140px 0 90px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.8rem); font-weight: 800; max-width: 15ch;
}
.hero h1 em { font-style: italic; color: #e8c775; }
.hero p { max-width: 54ch; margin-top: 20px; font-size: 1.08rem; opacity: 0.92; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 0;
  font-weight: 800; font-size: 0.95rem; transition: 0.25s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brick); color: #fff; }
.btn-primary:hover { background: var(--brick-dark); transform: translateY(-2px); }
.btn-ghost { background: rgba(247, 242, 233, 0.14); color: #f7f2e9; border: 1px solid rgba(247, 242, 233, 0.45); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(247, 242, 233, 0.26); transform: translateY(-2px); }
.btn-dark { background: var(--deep); color: #f7f2e9; }
.btn-dark:hover { background: var(--deep-2); transform: translateY(-2px); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 64px);
  margin-top: 60px; padding-top: 28px;
  border-top: 1px solid rgba(247, 242, 233, 0.25);
}
.hero-stats b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: #e8c775; }
.hero-stats span { font-size: 0.85rem; opacity: 0.85; }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; opacity: 0.75; animation: floaty 2.4s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translate(-50%, 8px); } }

/* ---------- Bölümler ---------- */
.section { padding: 90px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }

/* Kategori kartları */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 300px; display: flex; align-items: flex-end;
  color: #f7f2e9; box-shadow: var(--shadow); transition: 0.3s;
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16, 51, 60, 0) 30%, rgba(11, 30, 36, 0.92) 100%);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card-body { position: relative; z-index: 2; padding: 24px; }
.cat-card-body .cat-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(247, 242, 233, 0.16); border: 1px solid rgba(247, 242, 233, 0.35);
  margin-bottom: 14px; backdrop-filter: blur(4px);
}
.cat-card-body .cat-icon svg { width: 22px; height: 22px; }
.cat-card-body h3 { font-size: 1.35rem; margin-bottom: 4px; }
.cat-card-body p { font-size: 0.88rem; opacity: 0.85; }

/* Mekân kartları */
.place-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.place-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: 0.3s; display: flex; flex-direction: column;
  border: 1px solid var(--line);
}
.place-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.place-card { position: relative; cursor: pointer; }
/* Tüm kartı tıklanabilir yapan görünmez katman */
.card-stretch { position: absolute; inset: 0; z-index: 1; }
.place-card h3 { transition: color 0.2s; }
.place-card:hover h3 { color: var(--brick); }
/* Aksiyon linkleri ve rozet, stretch katmanının Üstünde tıklanır kalır */
.place-links a.above { position: relative; z-index: 2; }
.place-read {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.03em;
  padding: 6px 12px; border-radius: 999px; color: var(--deep-2);
  background: #e8c775; box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.place-media { position: relative; aspect-ratio: 4 / 2.7; overflow: hidden; background: linear-gradient(135deg, var(--deep), var(--deep-2)); }
.place-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.place-card:hover .place-media img { transform: scale(1.07); }
.place-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; color: #fff; background: var(--brick);
}
.place-tag.muze { background: var(--deep); }
.place-tag.yeme { background: var(--gold); }
.place-tag.gezi { background: #5c7d46; }
.place-tag.konaklama { background: #7b4b94; }
.place-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.place-body h3 { font-size: 1.25rem; }
.place-body p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.place-address { display: flex; gap: 7px; align-items: flex-start; font-size: 0.82rem; color: var(--ink-soft); }
.place-address svg { flex: none; width: 14px; height: 14px; color: var(--brick); margin-top: 3px; }
.place-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.meta-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem; font-weight: 700; color: var(--ink-soft);
  background: var(--bg-soft); padding: 5px 11px; border-radius: 999px;
}
.meta-chip svg { width: 13px; height: 13px; color: var(--brick); }
.place-links { display: flex; gap: 14px; margin-top: 6px; padding-top: 14px; border-top: 1px dashed var(--line); }
.place-links a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 800; color: var(--brick);
}
.place-links a:hover { color: var(--brick-dark); text-decoration: underline; }
.place-links a svg { width: 15px; height: 15px; }

/* Filtre çipleri */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; align-items: center; }
.chip {
  border: 1.5px solid var(--line); background: var(--card); color: var(--ink-soft);
  padding: 9px 18px; border-radius: 999px; font-weight: 800; font-size: 0.88rem; transition: 0.2s;
}
.chip:hover { border-color: var(--brick); color: var(--brick); }
.chip.active { background: var(--brick); border-color: var(--brick); color: #fff; }
.search-box {
  margin-left: auto; display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 18px;
}
.search-box input { border: 0; outline: 0; background: none; font-family: inherit; font-size: 0.92rem; width: 180px; color: var(--ink); }
.search-box svg { width: 16px; height: 16px; color: var(--ink-soft); }
@media (max-width: 640px) { .search-box { margin-left: 0; width: 100%; } .search-box input { width: 100%; } }

/* Koyu bölüm (harita teaser / rota) */
.dark-section { background: var(--deep); color: #f7f2e9; position: relative; overflow: hidden; }
.dark-section .section-kicker { color: var(--gold); }
.dark-section .section-lead { color: rgba(247, 242, 233, 0.75); }

.map-teaser { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .map-teaser { grid-template-columns: 1fr; } }
.map-visual {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(247, 242, 233, 0.18); position: relative;
}
.map-visual img { width: 100%; height: 100%; object-fit: cover; }

/* Rota adımları */
.route-steps { display: flex; flex-direction: column; gap: 0; margin-top: 34px; position: relative; }
.route-step { display: flex; gap: 20px; padding: 16px 0; position: relative; }
.route-step::before {
  content: ""; position: absolute; left: 17px; top: 52px; bottom: -8px;
  width: 2px; background: linear-gradient(var(--gold), transparent);
}
.route-step:last-child::before { display: none; }
.route-num {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: var(--deep-2); font-weight: 800; font-size: 0.95rem;
}
.route-step h4 { font-family: var(--font-display); font-size: 1.12rem; margin-bottom: 2px; }
.route-step p { font-size: 0.88rem; opacity: 0.75; }

/* Etkinlik kartları */
.event-list { display: flex; flex-direction: column; gap: 18px; }
.event-card {
  display: flex; gap: 24px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px; box-shadow: var(--shadow); transition: 0.25s;
}
.event-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.event-date {
  flex: none; width: 78px; text-align: center; padding: 12px 0;
  background: var(--deep); color: #f7f2e9; border-radius: 12px;
}
.event-date b { display: block; font-family: var(--font-display); font-size: 1.7rem; line-height: 1; color: #e8c775; }
.event-date span { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.event-info { flex: 1; }
.event-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.event-info p { font-size: 0.9rem; color: var(--ink-soft); }
.event-badges { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
@media (max-width: 640px) { .event-card { flex-direction: column; align-items: flex-start; } }

/* Bülten */
.newsletter {
  background: linear-gradient(135deg, var(--brick), var(--brick-dark));
  border-radius: 22px; color: #fff; padding: clamp(34px, 5vw, 60px);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 820px) { .newsletter { grid-template-columns: 1fr; } }
.newsletter h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.newsletter p { opacity: 0.9; margin-top: 10px; font-size: 0.98rem; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; border: 0; outline: 0; border-radius: 999px; padding: 15px 22px;
  font-family: inherit; font-size: 0.95rem;
}
.newsletter-form button {
  border: 0; border-radius: 999px; padding: 15px 26px;
  background: var(--deep); color: #fff; font-weight: 800; transition: 0.25s;
}
.newsletter-form button:hover { background: var(--deep-2); }
.newsletter-note { font-size: 0.78rem; opacity: 0.75; margin-top: 12px; }
@media (max-width: 520px) { .newsletter-form { flex-direction: column; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep-2); color: rgba(247, 242, 233, 0.82); margin-top: 90px; }
.footer-skyline { display: block; width: 100%; height: auto; color: var(--deep-2); background: var(--bg); }
.section + .site-footer, .dark-section + .site-footer { margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding: 64px 0 40px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-grid a { display: block; padding: 5px 0; font-size: 0.92rem; opacity: 0.8; transition: 0.2s; }
.footer-grid a:hover { opacity: 1; color: #e8c775; }
.footer-about p { font-size: 0.92rem; margin-top: 14px; opacity: 0.8; max-width: 34ch; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(247, 242, 233, 0.1); border: 1px solid rgba(247, 242, 233, 0.2); transition: 0.25s;
}
.social-row a:hover { background: var(--brick); border-color: var(--brick); }
.social-row svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(247, 242, 233, 0.14);
  padding: 22px 0; font-size: 0.8rem; opacity: 0.65;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ---------- Sayfa başlığı (iç sayfalar) ---------- */
.page-hero {
  background: var(--deep); color: #f7f2e9;
  padding: 170px 0 70px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 85% 0%, rgba(192, 149, 55, 0.22), transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 800; }
.page-hero p { max-width: 60ch; margin-top: 14px; opacity: 0.85; }
.breadcrumb { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; opacity: 0.7; margin-bottom: 18px; }
.breadcrumb a:hover { color: #e8c775; }

/* ---------- Harita sayfası ---------- */
.map-layout {
  display: grid; grid-template-columns: 360px 1fr; gap: 0;
  height: calc(100dvh - 0px); padding-top: 76px;
}
@media (max-width: 900px) {
  .map-layout { grid-template-columns: 1fr; grid-template-rows: auto 1fr; height: auto; }
  .map-sidebar { max-height: 44vh; }
  #map { height: 56vh; }
}
.map-sidebar {
  background: var(--card); border-right: 1px solid var(--line);
  overflow-y: auto; padding: 24px;
}
.map-sidebar h1 { font-size: 1.5rem; margin-bottom: 6px; }
.map-sidebar > p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 18px; }
.map-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.map-filters .chip { padding: 7px 14px; font-size: 0.8rem; }
.route-toggle {
  display: flex; align-items: center; gap: 10px; font-size: 0.86rem; font-weight: 700;
  padding: 12px 14px; background: var(--bg-soft); border-radius: 12px; margin-bottom: 18px;
  cursor: pointer; user-select: none;
}
.route-toggle input { accent-color: var(--brick); width: 17px; height: 17px; }

.route-picker { background: var(--bg-soft); border-radius: 12px; padding: 14px; margin-bottom: 18px; }
.rp-label { display: block; font-size: 0.86rem; font-weight: 800; margin-bottom: 10px; }
.route-hint { font-size: 0.78rem; color: var(--ink-soft); margin-top: 10px; line-height: 1.4; }
.route-hint b { color: var(--brick); }
.pin-num {
  background: var(--brick); color: #fff; font-size: 0.8rem; font-weight: 800;
}
/* Otel pini: nokta yerine yatak simgesi */
.pin-hotel::after { display: none; }
.pin-hotel svg { transform: rotate(45deg); width: 14px; height: 14px; color: #fff; }
.pin-num::after { display: none; }
.pin-num { display: grid; place-items: center; }
/* numaralı pin metni ters dönmesin */
.pin-num > * { transform: rotate(45deg); }
.map-list { display: flex; flex-direction: column; gap: 10px; }
.map-list-item {
  display: flex; gap: 12px; align-items: center; text-align: left; width: 100%;
  background: none; border: 1px solid var(--line); border-radius: 12px; padding: 11px 14px;
  transition: 0.2s; font-family: inherit; color: var(--ink);
}
.map-list-item:hover, .map-list-item.active { border-color: var(--brick); background: rgba(176, 74, 47, 0.06); }
.map-list-item .dot { flex: none; width: 11px; height: 11px; border-radius: 50%; }
.map-list-item b { display: block; font-size: 0.92rem; }
.map-list-item span { font-size: 0.76rem; color: var(--ink-soft); }
#map { width: 100%; height: 100%; background: var(--bg-soft); }

.pin {
  width: 30px; height: 30px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); border: 2.5px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  display: grid; place-items: center;
}
.pin::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #fff; }
.leaflet-popup-content-wrapper { border-radius: 14px; font-family: var(--font-body); }
.leaflet-popup-content { margin: 14px 18px; }
.leaflet-popup-content h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; }
.leaflet-popup-content p { font-size: 0.82rem; color: var(--ink-soft); margin: 0 0 8px; }
.leaflet-popup-content a { color: var(--brick); font-weight: 800; font-size: 0.82rem; }

/* ---------- Makale sayfası ---------- */
.article-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; color: #f7f2e9; overflow: hidden; }
.article-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 40, 48, 0.42) 0%, rgba(11, 30, 36, 0.9) 100%);
}
.article-hero .container { position: relative; z-index: 2; padding-bottom: 56px; padding-top: 160px; }
.article-hero h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); max-width: 22ch; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; font-size: 0.86rem; opacity: 0.85; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta svg { width: 15px; height: 15px; color: var(--gold); }

.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; padding: 70px 0; }
@media (max-width: 940px) { .article-layout { grid-template-columns: 1fr; } }

.article-body { font-size: 1.05rem; }
.article-body p { margin-bottom: 1.4em; color: #3b3428; }
.article-body h2 { font-size: 1.7rem; margin: 1.6em 0 0.6em; }
.article-body blockquote {
  margin: 2em 0; padding: 26px 30px; background: var(--card);
  border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0;
  font-family: var(--font-display); font-size: 1.2rem; font-style: italic; color: var(--ink);
}
.article-body .lead { font-size: 1.18rem; color: var(--ink); font-weight: 500; }

/* Ziyaretçi bilgi kutusu */
.visit-card {
  position: sticky; top: 100px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.visit-card-head { background: var(--deep); color: #f7f2e9; padding: 18px 24px; }
.visit-card-head h3 { font-size: 1.1rem; }
.visit-card-head p { font-size: 0.8rem; opacity: 0.75; }
.visit-rows { padding: 10px 24px 20px; }
.visit-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.visit-row:last-child { border-bottom: 0; }
.visit-row svg { flex: none; width: 20px; height: 20px; color: var(--brick); margin-top: 2px; }
.visit-row b { display: block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.visit-row span { font-size: 0.94rem; }
.visit-card .btn { margin: 0 24px 24px; justify-content: center; display: flex; }

/* İlgili içerik */
.related { padding: 20px 0 90px; }

/* ---------- Rotalar sayfası ---------- */
.book-note {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 14px; padding: 20px 24px; margin-bottom: 44px; box-shadow: var(--shadow);
}
.book-note svg { flex: none; width: 30px; height: 30px; color: var(--brick); margin-top: 2px; }
.book-note b { font-family: var(--font-display); font-size: 1.05rem; }
.book-note p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 3px; }

.route-block { margin-bottom: 56px; }
.route-head-card {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--deep); color: #f7f2e9; border-radius: 16px 16px 0 0;
  padding: 24px 28px;
}
.route-head-card .rh-num {
  font-family: var(--font-display); font-size: 2.4rem; color: #e8c775; line-height: 1;
}
.route-head-card h2 { font-size: 1.5rem; margin-bottom: 4px; }
.route-head-card p { font-size: 0.9rem; opacity: 0.8; max-width: 60ch; }
.route-head-card .rh-meta { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.route-head-card .rh-chip {
  font-size: 0.76rem; font-weight: 800; background: rgba(247,242,233,0.14);
  padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(247,242,233,0.25);
}
.route-itinerary {
  background: var(--card); border: 1px solid var(--line); border-top: 0;
  border-radius: 0 0 16px 16px; padding: 10px 28px 20px; box-shadow: var(--shadow);
}
.itin-stop { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px dashed var(--line); position: relative; }
.itin-stop:last-child { border-bottom: 0; }
.itin-stop::before {
  content: ""; position: absolute; left: 15px; top: 52px; bottom: -10px; width: 2px;
  background: linear-gradient(var(--gold), rgba(192,149,55,0.15)); z-index: 0;
}
.itin-stop:last-child::before { display: none; }
.itin-num {
  flex: none; width: 32px; height: 32px; border-radius: 50%; z-index: 1;
  display: grid; place-items: center; background: var(--brick); color: #fff;
  font-weight: 800; font-size: 0.9rem;
}
.itin-body h4 { font-family: var(--font-display); font-size: 1.12rem; margin-bottom: 3px; }
.itin-body p { font-size: 0.9rem; color: var(--ink-soft); }
.itin-link { transition: color 0.2s; }
.itin-link:hover { color: var(--brick); text-decoration: underline; }
.itin-read {
  display: inline-block; margin-top: 6px; font-size: 0.82rem; font-weight: 800; color: var(--brick);
}
.itin-read:hover { color: var(--brick-dark); text-decoration: underline; }
.route-cta { padding: 4px 0 0; }

/* ---------- Görünürlük animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Görsel yüklenemezse zarif yedek */
.img-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 60%),
              radial-gradient(circle at 70% 20%, rgba(192, 149, 55, 0.35), transparent 55%);
  display: grid; place-items: center; color: rgba(247, 242, 233, 0.5);
  font-family: var(--font-display); font-size: 1.4rem; font-style: italic;
}
