/* ============================================
   SRBIJA TRAVEL AI - Main Stylesheet
   Aesthetic: Warm editorial / map-inspired
   ============================================ */

:root {
  --c-bg: #faf8f4;
  --c-surface: #ffffff;
  --c-surface2: #f2ede5;
  --c-primary: #d94f1e;
  --c-primary-dark: #b33c14;
  --c-accent: #f0a500;
  --c-accent2: #2d6a4f;
  --c-text: #1a2744;
  --c-text2: #5c4f42;
  --c-text3: #9b8e82;
  --c-border: #e0d6cc;
  --c-error: #c0392b;
  --c-success: #27ae60;
  --c-warning: #f39c12;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(26,21,18,.07);
  --shadow-md: 0 8px 32px rgba(26,21,18,.12);
  --shadow-lg: 0 20px 60px rgba(26,21,18,.18);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(217,79,30,.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(240,165,0,.04) 0%, transparent 50%);
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--c-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  color: var(--c-text2);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-link:hover { background: var(--c-surface2); color: var(--c-text); }
.nav-btn {
  padding: 8px 18px;
  background: var(--c-primary);
  color: #fff !important;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  transition: background var(--transition);
  font-family: var(--font-display);
}
.nav-btn:hover { background: var(--c-primary-dark); }
.nav-admin { color: var(--c-accent) !important; }
.nav-logout { color: var(--c-error) !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

@media(max-width:768px) {
  .nav-toggle { display: block; margin-left: auto; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-link, .nav-btn { width: 100%; text-align: center; }
}

/* ---- LAYOUT ---- */
.main-wrap { min-height: calc(100vh - 64px); overflow-x: hidden; width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ---- FLASH ---- */
.flash {
  margin: 16px 24px;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: .95rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.flash-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
}
/* Hero klasican (centiran) */
.hero:not(.hero-split) {
  padding: 80px 24px 64px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-text2);
  margin-bottom: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-text);
  margin-bottom: 20px;
}
.hero:not(.hero-split) h1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 span { color: var(--c-primary); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--c-text2);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero:not(.hero-split) .hero-sub {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero:not(.hero-split) .hero-actions { justify-content: center; }

/* Hero Split - levo tekst, desno kolaž */
.hero-split {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 80px;
  text-align: left;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-text3);
}

/* Travel pattern */
.travel-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.travel-pattern svg {
  width: 100%;
  height: 100%;
}
.hero-split > *:not(.travel-pattern) { position: relative; z-index: 1; }

/* Collage */
.hero-collage {
  position: relative;
  height: 440px;
}
.collage-main {
  position: absolute;
  top: 0; left: 0;
  width: 64%;
  height: 74%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,39,68,.18);
}
.collage-main img { width:100%;height:100%;object-fit:cover; }
.collage-secondary {
  position: absolute;
  right: 0; bottom: 0;
  width: 50%;
  height: 70%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.collage-sm {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(26,39,68,.14);
}
.collage-sm img { width:100%;height:100%;object-fit:cover; }
.collage-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(26,39,68,.1);
  z-index: 2;
}
.collage-badge-1 { bottom: 24px; left: -16px; }
.collage-badge-2 { top: 16px; right: -16px; }
.collage-badge-icon { font-size: 1.2rem; flex-shrink: 0; }
.collage-badge-title { font-weight: 700; font-size: .82rem; color: var(--c-text); }
.collage-badge-sub { font-size: .72rem; color: var(--c-text3); margin-top: 1px; }
@media(max-width:900px) {
  .hero-split {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 56px 24px 60px;
    gap: 0;
  }
  .hero-collage { display: none; }
  .hero-split .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(217,79,30,.3);
}
.btn-primary:hover { background: var(--c-primary-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(217,79,30,.4); }
.btn-secondary { background: var(--c-surface2); color: var(--c-text); border: 1px solid var(--c-border); }
.btn-secondary:hover { background: var(--c-border); }
.btn-outline { background: transparent; color: var(--c-primary); border: 2px solid var(--c-primary); }
.btn-outline:hover { background: var(--c-primary); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: .88rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ---- CARDS ---- */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }
.card-header { margin-bottom: 20px; }
.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--c-text);
}

/* ---- FORMS ---- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--c-text2);
  margin-bottom: 7px;
  letter-spacing: .01em;
}
.form-label .req { color: var(--c-primary); }
.form-control {
  width: 100%;
  padding: 11px 16px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--c-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(217,79,30,.12);
}
select.form-control { cursor: pointer; }
.form-hint { font-size: .82rem; color: var(--c-text3); margin-top: 5px; }
.form-error { font-size: .82rem; color: var(--c-error); margin-top: 5px; }

/* ---- OPTION CARDS (for style picker) ---- */
.option-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.option-card {
  position: relative;
  cursor: pointer;
}
.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.option-card label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 10px;
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 600;
  font-size: .88rem;
  color: var(--c-text2);
  text-align: center;
  background: var(--c-surface);
}
.option-card label:hover { border-color: var(--c-primary); background: rgba(217,79,30,.04); }
.option-card input:checked + label {
  border-color: var(--c-primary);
  background: rgba(217,79,30,.08);
  color: var(--c-primary);
}
.option-card label span { font-size: 1.6rem; }

/* ---- PLANNER FORM ---- */
.planner-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.planner-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.planner-sub { color: var(--c-text2); margin-bottom: 40px; font-size: .95rem; }
.planner-step {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.step-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--c-text);
}

/* ---- RESULT ---- */
.result-wrap { max-width: 900px; margin: 0 auto; padding: 40px 24px 80px; }
.result-header { margin-bottom: 32px; }
.result-header h1 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; }
.itinerary-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  margin-bottom: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.itinerary-header {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  padding: 28px 32px;
}
.itinerary-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.itinerary-body { padding: 32px; }
.itinerary-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text2);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .8rem;
  margin: 24px 0 10px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}
.itinerary-body h3:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.itinerary-text {
  white-space: pre-wrap;
  font-size: .95rem;
  line-height: 1.75;
  color: var(--c-text);
}
.result-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* ---- AUTH PAGES ---- */
.auth-wrap {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.auth-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.auth-sub { color: var(--c-text2); font-size: .92rem; margin-bottom: 32px; }
.auth-divider { text-align: center; color: var(--c-text3); font-size: .85rem; margin: 20px 0; }
.auth-link { color: var(--c-primary); font-weight: 600; text-decoration: none; }
.auth-link:hover { text-decoration: underline; }

/* ---- CONSENT CHECKBOXES ---- */
.consent-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .88rem;
  color: var(--c-text2);
  line-height: 1.5;
}
.consent-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--c-primary);
  cursor: pointer;
}
.consent-box a { color: var(--c-primary); }

/* ---- DASHBOARD ---- */
.dash-wrap { max-width: 1000px; margin: 0 auto; padding: 40px 24px; }
.dash-header { margin-bottom: 32px; display:flex; align-items:flex-start; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.dash-greeting {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.dash-sub { color: var(--c-text2); margin-top: 4px; }
.plan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.plan-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-primary); }
.plan-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.plan-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.plan-card-meta { font-size: .82rem; color: var(--c-text3); }
.plan-new {
  border: 2px dashed var(--c-border);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  text-align: center;
  gap: 8px;
  color: var(--c-text3);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  text-decoration: none;
  border-radius: var(--r-lg);
  transition: all var(--transition);
}
.plan-new:hover { border-color: var(--c-primary); color: var(--c-primary); background: rgba(217,79,30,.04); }
.plan-new-icon { font-size: 2rem; }

/* ---- BADGE / TAGS ---- */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.badge-free { background: var(--c-surface2); color: var(--c-text3); }
.badge-basic { background: #fff3cd; color: #856404; }
.badge-pro { background: #d1ecf1; color: #0c5460; }
.badge-pending { background: #fff3cd; color: #856404; }
.badge-active { background: #d4edda; color: #155724; }
.badge-suspended { background: #f8d7da; color: #721c24; }

/* ---- ADMIN ---- */
.admin-wrap { max-width: 1100px; margin: 0 auto; padding: 40px 24px; }
.admin-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 24px; }
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--c-border); }
table { width: 100%; border-collapse: collapse; background: var(--c-surface); }
thead { background: var(--c-surface2); }
th, td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--c-border); font-size: .9rem; }
th { font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--c-text2); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(0,0,0,.015); }
.admin-nav { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }

/* ---- LOADING ---- */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--c-border);
  border-top-color: var(--c-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.generating-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250,248,244,.92);
  backdrop-filter: blur(8px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
.generating-overlay.active { display: flex; }
.generating-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.generating-sub { color: var(--c-text2); }

/* ---- FEATURES ---- */
.features { padding: 64px 24px; }
.features-grid { 
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card {
  padding: 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
}
.feature-icon { font-size: 2rem; margin-bottom: 12px; }
.feature-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.feature-desc { color: var(--c-text2); font-size: .9rem; line-height: 1.6; }
.section-label {
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

/* ---- PRICING ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.pricing-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: center;
}
.pricing-card.featured {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(217,79,30,.08), var(--shadow-md);
}
.pricing-plan { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-text3); margin-bottom: 12px; }
.pricing-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--c-text); line-height: 1; }
.pricing-price sup { font-size: 1rem; vertical-align: super; }
.pricing-period { color: var(--c-text3); font-size: .85rem; margin: 6px 0 20px; }
.pricing-features { list-style: none; margin-bottom: 24px; text-align: left; }
.pricing-features li { padding: 7px 0; font-size: .9rem; border-bottom: 1px solid var(--c-border); color: var(--c-text2); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓ '; color: var(--c-success); font-weight: 700; }

/* ---- FOOTER ---- */
.footer { background: var(--c-text); color: #ccc; padding: 56px 24px 24px; margin-top: 80px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: #fff; display: block; margin-bottom: 10px; }
.footer-brand p { font-size: .88rem; line-height: 1.6; color: #999; }
.footer-links h4 { font-family: var(--font-display); font-size: .85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-links a { display: block; color: #999; text-decoration: none; font-size: .88rem; margin-bottom: 8px; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; font-size: .82rem; color: #666; }
@media(max-width:768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- PRIVACY / TERMS ---- */
.prose-wrap { max-width: 720px; margin: 60px auto; padding: 0 24px 80px; }
.prose-wrap h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 8px; }
.prose-meta { color: var(--c-text3); font-size: .88rem; margin-bottom: 40px; }
.prose-wrap h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin: 36px 0 12px; color: var(--c-text); }
.prose-wrap p, .prose-wrap li { color: var(--c-text2); line-height: 1.8; margin-bottom: 12px; font-size: .95rem; }
.prose-wrap ul { padding-left: 20px; }
.prose-wrap a { color: var(--c-primary); }

/* ---- MISC ---- */
.divider { border: none; border-top: 1px solid var(--c-border); margin: 24px 0; }
.text-center { text-align: center; }
.text-muted { color: var(--c-text3); font-size: .88rem; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px) { .grid-2 { grid-template-columns: 1fr; } }

.stats-bar {
  display: flex;
  gap: 32px;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 20px 32px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.stat-item { flex: 1; min-width: 120px; }
.stat-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--c-text); }
.stat-label { font-size: .8rem; color: var(--c-text3); margin-top: 2px; }

.itinerary-formatted { 
  font-size: .95rem; 
  line-height: 1.8; 
  color: var(--c-text);
  white-space: pre-wrap;
}
.itinerary-formatted strong { color: var(--c-text); }
