/* ─────────────────────────────────────────
   Jill & Rod's Europe Adventure
   Warm Mediterranean palette · Fraunces + Inter
   ───────────────────────────────────────── */

:root {
  color-scheme: light;

  /* Warm Mediterranean palette */
  --paper:        #FBF6EE;   /* page background */
  --paper-2:      #F4ECDD;   /* card surface tint */
  --card:         #FFFFFF;
  --ink:          #221B12;   /* primary text — darker for contrast */
  --ink-2:        #4A3F30;   /* secondary text — darker for contrast */
  --ink-3:        #6F6149;   /* tertiary / labels — darker for contrast */
  --rule:         #E8DCC5;   /* hairline */
  --rule-2:       #D9C8AB;

  --terra:        #B45A2C;   /* primary accent: terracotta */
  --terra-deep:   #8E3F18;
  --terra-soft:   #F5E1D2;

  --olive:        #6E7A3A;   /* sage / olive */
  --olive-deep:   #4D5826;
  --olive-soft:   #E9EAD3;

  --sea:          #2E6E8E;   /* deep adriatic */
  --sea-deep:     #1A4860;
  --sea-soft:     #DCEAEF;

  --sun:          #C58A1A;   /* ochre */
  --sun-soft:     #F5E5BD;

  --plum:         #7A2E2E;   /* alert / urgent */
  --plum-soft:    #F2DCD8;

  /* Type */
  --serif: "Lora", "Source Serif 4", Georgia, serif;
  --sans:  "Inter", "Helvetica Neue", -apple-system, system-ui, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Sizing */
  --radius:   14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(60, 38, 16, 0.06), 0 1px 1px rgba(60, 38, 16, 0.04);
  --shadow:    0 2px 8px rgba(60, 38, 16, 0.07), 0 6px 24px -10px rgba(60, 38, 16, 0.10);
  --shadow-lg: 0 12px 40px -16px rgba(60, 38, 16, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(1200px 600px at 0% -10%, rgba(180, 90, 44, 0.06), transparent 60%),
    radial-gradient(900px 500px at 100% 5%, rgba(110, 122, 58, 0.05), transparent 65%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--sea-deep); text-decoration: none; border-bottom: 1px solid rgba(46, 110, 142, 0.30); transition: border-color .15s, color .15s; }
a:hover { color: var(--terra); border-bottom-color: var(--terra); }

strong { font-weight: 600; color: var(--ink); }

/* Icon system */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.18em;
  flex-shrink: 0;
  stroke-width: 1.5;
}
.icon-lg { width: 1.35em; height: 1.35em; }
.flag { font-size: 1.05em; line-height: 1; }

/* ── HEADER ────────────────────────────── */
.header {
  position: relative;
  color: #FBF6EE;
  overflow: hidden;
  background: #2A2218;
  isolation: isolate;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1612698093158-e07ac200d44e?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center 50%;
  filter: saturate(0.95) brightness(0.85);
  z-index: -2;
}
.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 6, 0.20) 0%, rgba(20, 14, 6, 0.55) 70%, rgba(20, 14, 6, 0.85) 100%),
    linear-gradient(120deg, rgba(180, 90, 44, 0.35) 0%, transparent 55%);
  z-index: -1;
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 28px 44px;
}
.kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: #F5E1D2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  opacity: 0.95;
}
.kicker::before, .kicker::after {
  content: ""; height: 1px; width: 28px; background: rgba(245, 225, 210, 0.6);
}
.header h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  text-wrap: balance;
}
.header h1 .amp { font-style: normal; color: #F5C9A5; font-weight: 400; }
.header h1 .roman { font-style: normal; }
.header .subtitle {
  font-size: 16.5px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(251, 246, 238, 0.85);
  max-width: 620px;
  margin-top: 6px;
}
.header .meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 246, 238, 0.10);
  border: 1px solid rgba(251, 246, 238, 0.22);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #FBF6EE;
  backdrop-filter: blur(6px);
}
.meta-pill .icon { opacity: 0.9; }
.meta-pill .flag { font-size: 1em; }

/* Header decorative stamp */
.header-stamp {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.7);
  border: 1px solid rgba(251, 246, 238, 0.35);
  padding: 8px 12px;
  border-radius: 4px;
  text-align: center;
  line-height: 1.4;
  background: rgba(20, 14, 6, 0.25);
}
.header-stamp .stamp-big { display: block; font-size: 13px; color: #FBF6EE; letter-spacing: 0.22em; margin-top: 2px; }

/* ── TABS ──────────────────────────────── */
.tabs-wrap { background: var(--paper); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 var(--rule), 0 6px 18px -10px rgba(60, 38, 16, 0.15); }
.tabs {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 16px;
}
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 18px 16px;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-2);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.tab-btn .icon { color: var(--terra); opacity: 0.7; transition: opacity .15s; }
.tab-btn:hover { color: var(--ink); }
.tab-btn:hover .icon { opacity: 1; }
.tab-btn.active { color: var(--terra-deep); border-bottom-color: var(--terra); font-weight: 600; }
.tab-btn.active .icon { opacity: 1; }

/* ── PANELS ────────────────────────────── */
.panel { display: none; padding: 36px 24px 80px; max-width: 1100px; margin: 0 auto; }
.panel.active { display: block; }

/* ── COMMON CARDS ──────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--ink);
}
.card-title .icon { color: var(--terra); width: 22px; height: 22px; }

.section-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin: 36px 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--terra);
  margin-bottom: 6px;
}

/* ── OVERVIEW STATS ────────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.stat-card .stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: var(--terra-deep);
  letter-spacing: -0.02em;
}
.stat-card .stat-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

/* ── PROGRESS ──────────────────────────── */
.progress-wrap { margin-bottom: 6px; }
.progress-label { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-2); margin-bottom: 6px; font-weight: 500; }
.progress-label span:last-child { font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 600; }
.progress-bar { height: 8px; background: var(--paper-2); border-radius: 99px; overflow: hidden; box-shadow: inset 0 1px 2px rgba(60, 38, 16, 0.08); }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--olive), #94A256); border-radius: 99px; transition: width 0.5s cubic-bezier(.4,0,.2,1); }

.overall-progress {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.overall-progress h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.overall-progress h3 .icon { color: var(--terra); }

/* ── CHECKLISTS ────────────────────────── */
.checklist-group {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.checklist-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(180deg, var(--paper-2) 0%, transparent 100%);
}
.checklist-group-header:hover { background: linear-gradient(180deg, var(--terra-soft) 0%, transparent 100%); }
.group-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.group-title .icon { color: var(--terra); width: 18px; height: 18px; }
.group-count {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 3px 10px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.group-body { padding: 4px 0; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.12s;
  border-bottom: 1px solid var(--paper-2);
}
.check-item:last-child { border-bottom: none; }
.check-item:hover { background: rgba(180, 90, 44, 0.04); }
.check-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.5px solid var(--rule-2);
  border-radius: 5px;
  background: var(--card);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s;
}
.check-item input[type="checkbox"]:hover { border-color: var(--olive); }
.check-item input[type="checkbox"]:checked {
  background: var(--olive);
  border-color: var(--olive);
}
.check-item input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #FBF6EE;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check-item label {
  font-size: 16.5px;
  cursor: pointer;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.check-item.done label { text-decoration: line-through; color: var(--ink-3); }

.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: 0.1em;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.tag-urgent { background: var(--plum-soft); color: var(--plum); }
.tag-paul { background: var(--sea-soft); color: var(--sea-deep); }
.tag-early { background: var(--sun-soft); color: #6B4A05; }

/* ── DESTINATION CARDS ─────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
  margin-bottom: 18px;
}
.dest-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.dest-cover {
  position: relative;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
}
.dest-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 6, 0) 40%, rgba(20, 14, 6, 0.55) 100%);
}
.dest-cover .flag-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}
.dest-cover .num-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(251, 246, 238, 0.95);
  border: 1px solid rgba(251, 246, 238, 0.6);
  padding: 4px 9px;
  border-radius: 4px;
  z-index: 2;
}
.dest-cover .city-overlay {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 2;
  color: #FBF6EE;
}
.dest-cover .city-overlay .name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.01em;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.dest-cover.bari    { background-image: url("https://unsplash.com/photos/CRM_V42L0bw/download?w=1400"); background-position: center 60%; }
.dest-cover.antibes { background-image: url("https://unsplash.com/photos/FU4su1L98II/download?w=1400"); background-position: center 50%; }
.dest-cover.munich  { background-image: url("https://unsplash.com/photos/fb4Dr-fF8Ts/download?w=1400"); background-position: center 35%; }
.dest-cover.salerno { background-image: url("https://unsplash.com/photos/3TzHmifXX5k/download?w=1400"); background-position: center 55%; }
.dest-cover.siena   { background-image: url("https://unsplash.com/photos/HmHQjAfBBsA/download?w=1400"); background-position: center 55%; }
.dest-cover.venice  { background-image: url("https://images.unsplash.com/photo-1514890547357-a9ee288728e0?auto=format&fit=crop&w=1400&q=80"); background-position: center 50%; }
.dest-cover.dijon   {
  background-image:
    linear-gradient(180deg, rgba(75,30,75,0.0) 0%, rgba(45,15,65,0.55) 100%),
    radial-gradient(circle at 30% 20%, rgba(245,200,140,0.55), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(140,90,160,0.55), transparent 60%),
    linear-gradient(135deg, #5C2E7A 0%, #8E44AD 60%, #C5912B 100%);
}
.dest-cover.bologna {
  background-image:
    linear-gradient(180deg, rgba(80,15,15,0.0) 0%, rgba(50,10,10,0.55) 100%),
    radial-gradient(circle at 25% 25%, rgba(250,200,160,0.55), transparent 55%),
    radial-gradient(circle at 80% 75%, rgba(180,50,40,0.55), transparent 60%),
    linear-gradient(135deg, #8B3A1A 0%, #B83A2A 55%, #C68A4A 100%);
}

.dest-body { padding: 18px 22px 20px; display: flex; flex-direction: column; flex: 1; }
.dest-region {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 14px;
}
.dest-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--paper-2);
}
.dest-row:last-of-type { border-bottom: none; }
.dest-row .label {
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.dest-row .label .icon { color: var(--terra); width: 14px; height: 14px; }
.dest-row .value { font-weight: 500; text-align: right; color: var(--ink); }
.dest-row .value.low { color: var(--olive-deep); }
.dest-row .value.high { color: var(--terra-deep); }

.dest-tip {
  margin-top: 14px;
  background: var(--terra-soft);
  border-left: 3px solid var(--terra);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  font-size: 14.5px;
  color: #5A2810;
  line-height: 1.6;
}
.dest-tip strong { color: var(--terra-deep); }
.dest-tip.blue { background: var(--sea-soft); border-color: var(--sea); color: #173A4D; }
.dest-tip.blue strong { color: var(--sea-deep); }
.dest-tip.olive { background: var(--olive-soft); border-color: var(--olive); color: #2A341A; }
.dest-tip.olive strong { color: var(--olive-deep); }

/* ── ALERTS ────────────────────────────── */
.alert-box {
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 18px;
  display: flex;
  gap: 14px;
  font-size: 16px;
  line-height: 1.65;
  border: 1px solid;
  background: var(--card);
}
.alert-box.red    { background: var(--plum-soft); border-color: #E0B5B0; color: #4D1818; }
.alert-box.gold   { background: var(--sun-soft); border-color: #E2C97A; color: #5A3D00; }
.alert-box.blue   { background: var(--sea-soft); border-color: #B1D0DC; color: #14334A; }
.alert-box.olive  { background: var(--olive-soft); border-color: #C5CDA0; color: #2C381A; }
.alert-box .alert-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert-box .alert-icon .icon { width: 22px; height: 22px; }
.alert-box.red .alert-icon .icon   { color: var(--plum); }
.alert-box.gold .alert-icon .icon  { color: #8C5A00; }
.alert-box.blue .alert-icon .icon  { color: var(--sea-deep); }
.alert-box.olive .alert-icon .icon { color: var(--olive-deep); }
.alert-box strong { color: inherit; }

/* ── VISA CARDS ────────────────────────── */
.visa-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.visa-card-header {
  padding: 18px 24px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}
.visa-card-header .flag { font-size: 1.1em; }
.visa-card-header.italy   { background: linear-gradient(90deg, var(--sea-soft), transparent); }
.visa-card-header.france  { background: linear-gradient(90deg, #EEEAF7, transparent); }
.visa-card-header.germany { background: linear-gradient(90deg, var(--olive-soft), transparent); }
.visa-body { padding: 18px 24px 22px; }
.visa-row { display: flex; gap: 18px; padding: 11px 0; border-bottom: 1px dashed var(--rule); }
.visa-row:last-child { border-bottom: none; }
.visa-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  min-width: 130px;
  flex-shrink: 0;
  padding-top: 4px;
}
.visa-val { font-size: 15.5px; line-height: 1.6; color: var(--ink); flex: 1; }

/* ── BUDGET ────────────────────────────── */
.budget-total {
  background: var(--ink);
  color: #FBF6EE;
  border-radius: var(--radius);
  padding: 36px 28px;
  margin-bottom: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.budget-total::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 30% 100%, rgba(180, 90, 44, 0.30), transparent 65%),
              radial-gradient(500px 250px at 90% 0%, rgba(110, 122, 58, 0.20), transparent 60%);
}
.budget-total > * { position: relative; z-index: 1; }
.budget-total .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.7);
  font-weight: 600;
}
.budget-total .big-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 8px 0;
  color: #FBF6EE;
}
.budget-total .label.foot {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 12px;
  color: rgba(251, 246, 238, 0.6);
}

.budget-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--paper-2);
  font-size: 16px;
}
.budget-row:last-child { border-bottom: none; }
.budget-row .item {
  color: var(--ink);
  font-weight: 500;
  flex: 1;
}
.budget-row .item small {
  display: block;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-3);
  margin-top: 4px;
  line-height: 1.55;
}
.budget-row .amt {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--sea-deep);
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.budget-row .amt small {
  display: block;
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 400;
  margin-top: 2px;
}
.budget-row .amt.high { color: var(--terra-deep); }
.budget-row .amt.low  { color: var(--olive-deep); }
.budget-note {
  font-size: 14.5px;
  color: var(--ink-2);
  background: var(--paper-2);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 14px;
  line-height: 1.55;
}
.budget-note strong { color: var(--ink); }

/* ── TIMELINE ──────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--terra) 0%, var(--olive) 50%, var(--sea) 100%);
  opacity: 0.4;
}
.tl-item { position: relative; margin-bottom: 22px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -28px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--terra);
}
.tl-dot.terra { border-color: var(--terra); background: var(--terra); }
.tl-dot.blue  { border-color: var(--sea); background: var(--sea); }
.tl-dot.olive { border-color: var(--olive); background: var(--olive); }
.tl-dot.gold  { border-color: var(--sun); background: var(--sun); }
.tl-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tl-sub {
  font-size: 15px;
  color: var(--ink-2);
  margin-top: 4px;
  line-height: 1.55;
  max-width: 78ch;
}

/* ── CHIPS ─────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terra-soft);
  color: var(--terra-deep);
  border: 1px solid rgba(180, 90, 44, 0.20);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 500;
  margin: 2px 4px 2px 0;
}
.chip:hover { background: var(--terra); color: #FBF6EE; border-color: var(--terra); }

/* ── WEATHER ───────────────────────────── */
.weather-bar {
  background: linear-gradient(90deg, var(--sea-soft), rgba(220, 234, 239, 0.4));
  border-bottom: 1px solid #C8DEEE;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  min-height: 60px;
}
.w-icon { font-size: 28px; line-height: 1; flex-shrink: 0; }
.w-temp {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: -0.02em;
  line-height: 1;
}
.w-info { flex: 1; min-width: 0; }
.w-desc { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.w-sub { font-size: 12.5px; color: var(--ink-2); margin-top: 2px; }
.w-loading, .w-error { color: var(--ink-3); font-size: 13.5px; font-style: italic; }
.w-time { font-size: 11px; color: var(--ink-3); margin-top: 3px; font-weight: 500; font-family: var(--mono); }

.ow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.ow-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ow-bar { border-radius: 10px; border: 1px solid #BDD3DD; min-height: 56px; padding: 11px 14px; }
.ow-bar .w-icon { font-size: 24px; }
.ow-bar .w-temp { font-size: 22px; }
.ow-bar .w-desc { font-size: 12.5px; }
.ow-bar .w-sub { font-size: 11px; }
.ow-bar .w-time { font-size: 10.5px; }

/* ── EXPLORE / TRIPS ───────────────────── */
.explore-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.explore-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s;
}
.explore-header:hover { background: var(--paper-2); }
.explore-header.bari    { background: linear-gradient(90deg, var(--sea-soft), transparent); }
.explore-header.antibes { background: linear-gradient(90deg, #EEEAF7, transparent); }
.explore-header.munich  { background: linear-gradient(90deg, var(--olive-soft), transparent); }
.explore-header.salerno { background: linear-gradient(90deg, var(--terra-soft), transparent); }
.explore-header.siena   { background: linear-gradient(90deg, #FDF5DC, transparent); }
.explore-header.dijon   { background: linear-gradient(90deg, #F2EAF4, transparent); }
.explore-header.venice  { background: linear-gradient(90deg, #DDF1F1, transparent); }
.explore-header.bologna { background: linear-gradient(90deg, #F5E1DC, transparent); }
.explore-flag { font-size: 26px; line-height: 1; flex-shrink: 0; }
.explore-city {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.explore-sub { font-size: 13.5px; color: var(--ink-2); margin-top: 3px; }
.explore-toggle {
  margin-left: auto;
  font-size: 11.5px;
  color: var(--terra-deep);
  font-weight: 600;
  background: rgba(180, 90, 44, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  flex-shrink: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.explore-body { padding: 20px 24px 22px; }
.trip-section { margin-bottom: 24px; }
.trip-section:last-child { margin-bottom: 0; }
.trip-section-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trip-section-title .icon { color: var(--terra); }
.trip-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--paper-2);
}
.trip-item:last-child { border-bottom: none; }
.trip-left { flex: 1; min-width: 0; }
.trip-name {
  font-family: var(--serif);
  font-size: 17.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.trip-desc {
  font-size: 14.5px;
  color: var(--ink-2);
  margin-top: 5px;
  line-height: 1.6;
  max-width: 65ch;
}
.trip-right { text-align: right; flex-shrink: 0; min-width: 130px; }
.trip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--sea-deep);
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  justify-content: flex-end;
  width: 100%;
}
.trip-badge .icon { width: 13px; height: 13px; }
.trip-cost {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-2);
  margin-bottom: 6px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.trip-link-btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  background: var(--paper);
  color: var(--terra-deep);
  border: 1px solid var(--rule-2);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.15s;
  letter-spacing: 0.04em;
}
.trip-link-btn:hover { background: var(--terra); color: #FBF6EE; border-color: var(--terra); }

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 720px) {
  .header-inner { padding: 40px 20px 32px; }
  .header-stamp { display: none; }
  .panel { padding: 24px 16px 60px; }
  .card { padding: 20px 18px; }
  .visa-row { flex-direction: column; gap: 4px; }
  .visa-label { min-width: 0; }
  .trip-item { flex-direction: column; gap: 8px; }
  .trip-right { min-width: 0; text-align: left; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
  .trip-badge { justify-content: flex-start; width: auto; }
  .budget-row { flex-direction: column; }
  .budget-row .amt { text-align: left; }
  .dest-row { flex-wrap: wrap; }
  .dest-row .value { text-align: left; }
}
