/* ============================================
   TÜRKIYE 15-DAY GUIDE · MODERN DESIGN SYSTEM
   ============================================ */

:root {
  /* Brand · deep Bosphorus night → sunset warmth */
  --bg: #f6f1e9;          /* cream sand */
  --bg-tint: #efe7d8;     /* tinted sand */
  --bg-deep: #0b1d2a;     /* deep navy/bosphorus */
  --ink: #15212c;         /* main text */
  --ink-soft: #4a5a68;    /* secondary */
  --ink-mute: #7a8794;    /* muted */
  --line: #e3d9c7;        /* hairlines */
  --line-strong: #cdbfa8;

  /* Logo palette · tulip red + Bosphorus teal */
  --tulip: #d6334e;       /* tulip red from logo */
  --tulip-deep: #a32034;
  --tulip-bg: #fbdde2;
  --logo-teal: #14a39c;   /* logo background teal */
  --logo-teal-deep: #0e7670;

  /* Accent palette */
  --teal: #0f7e7b;
  --teal-deep: #074645;
  --teal-bg: #d6efed;
  --gold: #c2832a;
  --gold-bg: #fbeed1;
  --terracotta: #c9532e;
  --terracotta-bg: #fadbcd;
  --green: #2e8b4f;
  --green-bg: #d6efde;
  --orange: #d57a2b;
  --orange-bg: #fbe2c8;
  --purple: #6b4caf;
  --purple-bg: #e6dffb;
  --red: #c1342f;
  --red-bg: #fbd9d6;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(11,29,42,.05), 0 2px 6px rgba(11,29,42,.04);
  --shadow: 0 4px 16px rgba(11,29,42,.06), 0 12px 40px rgba(11,29,42,.07);
  --shadow-lg: 0 20px 60px rgba(11,29,42,.18);

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--teal-deep); text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .75; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============================================ TOP NAV */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(246,241,233,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.topbar.scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 30px rgba(11,29,42,.06); }
.topbar-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); flex-shrink: 0; }
.brand:hover { opacity: 1; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  background: var(--logo-teal);
  box-shadow: 0 6px 16px rgba(20,163,156,.28);
}
img.brand-mark { padding: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-family: var(--serif); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }

.nav {
  margin-left: auto;
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.nav a {
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
  transition: all .2s ease;
  letter-spacing: -0.005em;
}
.nav a:hover { background: rgba(11,29,42,.06); color: var(--ink); opacity: 1; }
.nav a.active { background: var(--ink); color: var(--bg); }
.nav-emergency { color: var(--red) !important; font-weight: 600 !important; }
.nav-emergency.active { background: var(--red) !important; color: #fff !important; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.6);
  border-radius: 12px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 70px; left: 12px; right: 12px;
    background: rgba(246,241,233,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
  }
  .nav a { padding: 12px 16px; font-size: 15px; }
  body.nav-open .nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
}

/* ============================================ HERO */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 130px 0 80px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 25% 0%, #1d4753 0%, transparent 55%),
    radial-gradient(ellipse at 90% 30%, #c9532e33 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, #c2832a44 0%, transparent 60%),
    linear-gradient(180deg, #0b1d2a 0%, #102b3a 60%, #163a4d 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.06) 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,.05) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px, 110px 110px, 130px 130px;
  opacity: .8;
  mix-blend-mode: screen;
}
.hero-grad {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 0%, transparent 70%, var(--bg) 100%);
}

.hero-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0c98a;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(54px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.hero-line { display: block; }
.hero-sub {
  background: linear-gradient(120deg, #f0c98a 0%, #d57a2b 60%, #c9532e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
  font-size: 0.78em;
}
.hero-lede {
  max-width: 720px;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin-bottom: 40px;
}
.hero-lede b { color: #fff; font-weight: 600; }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
.stat .stat-num { font-family: var(--serif); font-size: 44px; font-weight: 600; line-height: 1; color: #fff; }
.stat .stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,.55); margin-top: 6px; }

.hero-cities { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.city-pill {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 10px 18px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.city-pill b { color: #f0c98a; font-weight: 700; margin-right: 6px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); opacity: 1; }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 6px 18px rgba(11,29,42,.25);
}
.btn-primary:hover { background: var(--teal-deep); box-shadow: 0 10px 28px rgba(7,70,69,.35); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); }
.section .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.section .btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-full { width: 100%; }

.btn-call {
  background: var(--logo-teal);
  color: #fff;
  box-shadow: 0 6px 18px rgba(20,163,156,.32);
}
.btn-call:hover { background: var(--logo-teal-deep); }

.btn-dir {
  background: var(--tulip);
  color: #fff;
  box-shadow: 0 6px 18px rgba(214,51,78,.30);
}
.btn-dir:hover { background: var(--tulip-deep); }

.btn-emergency-call {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(193,52,47,.32);
}
.btn-emergency-call:hover { background: #a02824; }

.btn-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

/* ============================================ SECTIONS */
.section { padding: 100px 0; position: relative; }
.section-tinted { background: var(--bg-tint); }
.section-emergency { background: linear-gradient(180deg, #fff8f7 0%, var(--bg-tint) 100%); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.kicker-red { color: var(--red); }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
}
.lede { font-size: clamp(15px, 1.4vw, 17.5px); line-height: 1.65; color: var(--ink-soft); }
.subsection-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 48px 0 20px;
}

.legend-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  margin: 0 4px 0 8px;
  vertical-align: middle;
}
.legend-dot.green { background: var(--green); }
.legend-dot.orange { background: var(--orange); }

/* ============================================ KEY CARDS */
.grid-key {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 56px;
}
.key-card {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.key-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.key-card b { font-weight: 600; font-size: 13.5px; display: block; margin-bottom: 4px; letter-spacing: 0.02em; text-transform: uppercase; }
.key-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.key-green .key-dot { background: var(--green); }
.key-orange .key-dot { background: var(--orange); }
.key-gold .key-dot { background: var(--gold); }
.key-teal .key-dot { background: var(--teal); }
.key-purple .key-dot { background: var(--purple); }
.key-red .key-dot { background: var(--red); }

/* ============================================ CHECKLIST */
.checklist {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  max-width: 920px;
  margin: 0 auto;
}
.checklist-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.check-icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--green-bg);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}
.checklist h3 { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: -0.015em; }
.checklist-list { margin: 0; padding-left: 24px; counter-reset: c; list-style: none; }
.checklist-list li {
  counter-increment: c;
  position: relative;
  padding: 14px 0 14px 44px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.checklist-list li:first-child { border-top: none; }
.checklist-list li::before {
  content: counter(c);
  position: absolute; left: 0; top: 15px;
  width: 28px; height: 28px;
  background: var(--bg-tint);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  font-family: var(--serif);
}

/* ============================================ ITINERARY · DAY CARDS */
.days { display: flex; flex-direction: column; gap: 16px; }
.day-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}
.day-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.day-head {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fdfaf3);
}
.day-num {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  flex-shrink: 0;
  line-height: 1;
}
.day-num span { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; opacity: .65; margin-bottom: 4px; }
.day-num b { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: -0.02em; }
.day-meta { flex: 1; min-width: 0; }
.day-base { font-size: 12.5px; color: var(--terracotta); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-bottom: 4px; }
.day-title { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; letter-spacing: -0.015em; margin: 0; color: var(--ink); }

.tag {
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.tag-green { background: var(--green-bg); color: #1c5a32; }
.tag-orange { background: var(--orange-bg); color: #8b4a14; }
.tag-gold { background: var(--gold-bg); color: #7c5310; }
.tag-purple { background: var(--purple-bg); color: #3d2879; }
.tag-red { background: var(--red-bg); color: #7a1a17; }

.day-body { padding: 24px 28px; }
.day-plan { font-size: 15.5px; color: var(--ink); line-height: 1.6; margin: 0 0 20px; }
.day-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 8px;
}
.day-meta-grid > div { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; padding: 14px; background: var(--bg); border-radius: 10px; }
.day-meta-grid > div.warn { background: var(--red-bg); color: #7a1a17; }
.m-label { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.day-meta-grid > div.warn .m-label { color: var(--red); }

@media (max-width: 640px) {
  .day-head { padding: 18px 18px; gap: 14px; flex-wrap: wrap; }
  .day-num { width: 52px; height: 52px; }
  .day-body { padding: 18px; }
}

/* ----- Day detail blocks: Flight / Hotel / Sites / Dining / Tour / Walks ----- */
.day-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.detail-block {
  background: var(--bg);
  border-radius: 14px;
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 10px;
}
.detail-block-wide { grid-column: span 2; }
.detail-block-head {
  display: flex; align-items: center; gap: 10px;
}
.detail-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.detail-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.detail-block-sites .detail-icon { background: var(--teal-bg); }
.detail-block-hotel .detail-icon { background: var(--gold-bg); }
.detail-block-dining .detail-icon { background: var(--terracotta-bg); }
.detail-block-walks .detail-icon { background: var(--green-bg); }
.detail-block-tour .detail-icon { background: var(--purple-bg); }
.detail-block-flight .detail-icon { background: var(--purple-bg); }
.detail-block-transport .detail-icon { background: var(--orange-bg); }

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-list li {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.45;
}
.detail-list li b { font-weight: 600; }
.detail-list li small {
  display: block;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.detail-list li .warn-inline { font-size: 12px; }

.chip-row {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px;
}
.chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition: transform .15s ease, opacity .2s ease;
}
.chip-btn:hover { transform: translateY(-1px); opacity: 1; }
.chip-dir { background: var(--tulip); color: #fff; }
.chip-dir:hover { background: var(--tulip-deep); }
.chip-call { background: var(--logo-teal); color: #fff; }
.chip-link { background: var(--ink); color: var(--bg); }
.chip-link:hover { background: var(--teal-deep); }

@media (max-width: 720px) {
  .detail-block-wide { grid-column: span 1; }
}

/* ============================================ FLIGHTS */
.flights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.flight-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.flight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--terracotta));
}
.flight-card-return::before { background: linear-gradient(90deg, var(--terracotta), var(--gold)); }
.flight-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-bg);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.flight-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 18px; line-height: 1.25; }
.flight-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.flight-route > div:first-child { text-align: left; }
.flight-route > div:last-child { text-align: right; }
.flight-route span { display: block; font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: -0.02em; }
.flight-route small { display: block; font-size: 11px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
.flight-line { font-size: 12px; color: var(--terracotta); font-weight: 600; text-align: center; }
.flight-detail { font-size: 14px; color: var(--ink-soft); margin: 0 0 4px; line-height: 1.5; }

.rental-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-bottom: 30px; }
.rental-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.rental-logo {
  font-family: var(--serif);
  font-size: 32px; font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--ink), var(--teal-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.rental-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 12px; }

.callout {
  padding: 22px 26px;
  border-radius: var(--radius);
  border-left: 4px solid;
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 16px;
}
.callout-purple { background: var(--purple-bg); border-color: var(--purple); color: #3d2879; }
.callout-gold { background: var(--gold-bg); border-color: var(--gold); color: #7c5310; }

/* ============================================ CITY BLOCKS */
.city-block { margin-bottom: 56px; }
.city-block:last-child { margin-bottom: 0; }
.city-block-head { margin-bottom: 22px; }
.city-block-head h3 {
  font-family: var(--serif);
  font-size: 34px; font-weight: 600;
  letter-spacing: -0.02em; margin: 0;
  color: var(--ink);
  display: inline-block;
  position: relative;
}
.city-block-head h3::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  border-radius: 3px;
  margin-top: 8px;
}
.city-block-head p { font-size: 14.5px; color: var(--ink-mute); margin: 12px 0 0; max-width: 720px; }

/* ============================================ HOTEL CARDS */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px;
}
.hotel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease;
}
.hotel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hotel-card::before {
  content: ''; position: absolute; left: 24px; right: 24px; top: 0; height: 3px;
  border-radius: 0 0 3px 3px;
}
.hotel-walk::before { background: var(--green); }
.hotel-transfer::before { background: var(--orange); }
.hotel-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-sm);
}
.hotel-tag {
  position: absolute; top: -12px; right: 18px;
  background: var(--gold);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 14px rgba(194,131,42,.35);
}
.hotel-card header h4 { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: -0.015em; margin: 8px 0 4px; line-height: 1.2; }
.hotel-area { font-size: 12px; color: var(--terracotta); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.hotel-card > p { font-size: 14px; color: var(--ink-soft); margin: 14px 0 16px; line-height: 1.55; flex: 1; }
.hotel-meta { list-style: none; margin: 0 0 14px; padding: 0; border-top: 1px solid var(--line); }
.hotel-meta li { padding: 8px 0; font-size: 12.5px; color: var(--ink-soft); border-bottom: 1px dashed var(--line); line-height: 1.45; }
.hotel-meta li:last-child { border-bottom: none; }
.hotel-meta b { color: var(--ink); font-weight: 600; }

/* ============================================ SITES */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.site-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .2s ease, box-shadow .25s ease;
}
.site-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.site-head { margin-bottom: 12px; }
.site-city {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  background: var(--teal-bg);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.site-head h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: -0.015em; margin: 0; line-height: 1.2; color: var(--ink); }
.site-row { font-size: 13.5px; color: var(--ink-soft); padding: 7px 0; border-top: 1px dashed var(--line); line-height: 1.5; }
.site-row:first-of-type { border-top: 1px solid var(--line); padding-top: 12px; margin-top: 4px; }
.site-row b { color: var(--ink); font-weight: 600; margin-right: 4px; }
.warn-inline { color: var(--red); font-weight: 700; }
.site-warn { border-left: 4px solid var(--red); }
.site-closed { background: var(--red-bg); border-color: var(--red); }
.site-closed h3 { color: #7a1a17; }
.site-highlight { background: linear-gradient(180deg, #fff, var(--gold-bg)); border-color: var(--gold); }

/* ============================================ DINING */
.dining-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.dining-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .2s ease, box-shadow .25s ease;
}
.dining-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.dining-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.dining-head h4 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin: 0; letter-spacing: -0.015em; line-height: 1.2; }
.price { font-family: var(--serif); font-weight: 600; color: var(--gold); font-size: 16px; letter-spacing: 0.02em; }
.dining-known { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 12px; line-height: 1.45; }
.dining-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 12.5px; color: var(--ink-soft); margin-bottom: 12px; }
.badge-reserve { background: var(--terracotta); color: #fff; padding: 4px 10px; font-size: 11px; font-weight: 700; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.08em; }
.badge-soft { background: var(--gold-bg); color: var(--gold); padding: 4px 10px; font-size: 11px; font-weight: 700; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.08em; }
.dining-note { font-size: 13px; color: var(--ink-mute); margin: 0; font-style: italic; }
.dining-featured { border-color: var(--gold); background: linear-gradient(180deg, #fff, var(--gold-bg) 200%); }

/* ============================================ TOURS */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 18px;
}
.tour-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.tour-featured { border-color: var(--gold); background: linear-gradient(180deg, var(--gold-bg) 0%, #fff 30%); }
.tour-tag { display: inline-block; font-size: 11px; font-weight: 700; color: var(--terracotta); background: var(--terracotta-bg); padding: 5px 12px; border-radius: 999px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.tour-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 16px; line-height: 1.2; }
.tour-list { list-style: none; padding: 0; margin: 0 0 14px; }
.tour-list li { font-size: 13.5px; color: var(--ink-soft); padding: 7px 0; border-top: 1px dashed var(--line); line-height: 1.5; }
.tour-list li:first-child { border-top: 1px solid var(--line); padding-top: 12px; }
.tour-list b { color: var(--ink); font-weight: 600; }
.tour-rule {
  background: var(--gold-bg);
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  border-radius: 0 10px 10px 0;
  font-size: 12.5px;
  color: #7c5310;
  line-height: 1.55;
  margin-bottom: 4px;
}

/* ============================================ WALKING ROUTES */
.walk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.walk-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .15s ease;
}
.walk-card:hover { transform: translateY(-2px); }
.walk-mode {
  align-self: flex-start;
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 4px 10px; border-radius: 999px;
}
.walk-yes .walk-mode { background: var(--green-bg); color: #1c5a32; }
.walk-no .walk-mode { background: var(--orange-bg); color: #8b4a14; }
.walk-maybe .walk-mode { background: var(--gold-bg); color: #7c5310; }
.walk-card h4 { font-family: var(--serif); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin: 0; line-height: 1.25; }
.walk-dist { font-size: 13px; color: var(--ink-mute); margin: 0 0 6px; }

/* ============================================ APPS */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.apps-grid-tight { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.app-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
}
.app-card h4 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.01em; }
.app-desc { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 10px; line-height: 1.5; }
.app-meta { list-style: none; padding: 0; margin: 0 0 10px; }
.app-meta li { font-size: 12.5px; color: var(--ink-mute); padding: 4px 0; border-top: 1px dashed var(--line); }
.app-meta li:first-child { border-top: 1px solid var(--line); }
.app-meta b { color: var(--ink); }
.app-featured { border-color: var(--gold); background: linear-gradient(180deg, var(--gold-bg) 0%, #fff 40%); }
.app-tag { position: absolute; top: -10px; right: 14px; background: var(--gold); color: #fff; font-size: 10.5px; font-weight: 700; padding: 5px 10px; border-radius: 999px; letter-spacing: 0.05em; }
.app-mini { padding: 16px; }
.app-mini h4 { font-size: 17px; }
.app-mini .app-desc { font-size: 13px; margin: 0; }

/* ============================================ SAFETY */
.safety-block { margin-bottom: 44px; }
.safety-block:last-child { margin-bottom: 0; }
.safety-block > h3 {
  font-family: var(--serif);
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--ink);
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.safety-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.safety-card h4 { font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: -0.005em; margin: 0 0 6px; color: var(--ink); }
.safety-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* ============================================ EMERGENCY */
.emergency-banner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, var(--red) 0%, #8b1d1a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 48px;
  box-shadow: 0 20px 60px rgba(193,52,47,.3);
  transition: transform .2s ease;
}
.emergency-banner:hover { transform: scale(1.01); opacity: 1; }
.emergency-banner-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; opacity: .9; }
.emergency-banner-num { font-family: var(--serif); font-size: clamp(80px, 12vw, 140px); font-weight: 700; line-height: 0.9; letter-spacing: -0.04em; }
.emergency-banner-cta { font-size: 15px; font-weight: 600; opacity: .9; text-align: right; }
@media (max-width: 720px) {
  .emergency-banner { grid-template-columns: 1fr; text-align: center; padding: 28px; gap: 8px; }
  .emergency-banner-cta { text-align: center; }
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-red { border-color: var(--red); background: var(--red-bg); }
.contact-card h4 { font-family: var(--sans); font-size: 14.5px; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.contact-detail { font-size: 13px; color: var(--ink-soft); margin: 0 0 12px; line-height: 1.5; }
.contact-city { display: inline-block; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--teal); background: var(--teal-bg); padding: 3px 10px; border-radius: 999px; margin-bottom: 8px; }
.contact-fill { background: var(--bg-tint); border-style: dashed; }
.fill-line { font-family: monospace; color: var(--ink-mute); letter-spacing: 1px; font-size: 14px; }

/* ============================================ SOURCES */
.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.source-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.source-group h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--terracotta);
  letter-spacing: -0.01em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.source-group ul { list-style: none; padding: 0; margin: 0; }
.source-group li { padding: 6px 0; font-size: 13.5px; line-height: 1.5; }
.source-group a { color: var(--teal-deep); font-weight: 500; }
.source-group a::before { content: '↗'; margin-right: 6px; color: var(--ink-mute); font-weight: 400; }

/* ============================================ FAB */
.fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow);
  z-index: 50;
  transition: transform .2s ease, background .2s ease;
}
.fab:hover { transform: translateY(-3px); background: var(--terracotta); opacity: 1; }

/* ============================================ FOOTER */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; align-items: flex-start; gap: 16px; }
.footer-title { font-family: var(--serif); color: #fff; font-size: 20px; font-weight: 600; margin-bottom: 4px; letter-spacing: -0.01em; }
.footer-sub { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; max-width: 320px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-cols > div { display: flex; flex-direction: column; gap: 6px; }
.footer-cols b { font-family: var(--sans); color: #f0c98a; font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 6px; font-weight: 700; }
.footer-cols a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-cols a:hover { color: #fff; opacity: 1; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 24px; text-align: center; font-size: 12px; color: rgba(255,255,255,.4); }

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .checklist { padding: 28px 22px; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-stats { gap: 24px; }
  .stat .stat-num { font-size: 36px; }
  .fab { bottom: 18px; right: 18px; width: 46px; height: 46px; }
}

/* ============================================ PRINT */
@media print {
  .topbar, .nav, .fab, .hero-cta, .btn-row { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 24px 0; page-break-inside: avoid; }
  .day-card, .hotel-card, .site-card, .dining-card, .tour-card, .walk-card, .contact-card, .source-group { box-shadow: none; border-color: #ccc; page-break-inside: avoid; }
  a { color: #000; text-decoration: underline; }
}
