/* ============================================================
   EVJF Sara · Albanie · Septembre 2026
   style.css
   ============================================================ */

/* ── Reset & Variables ────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sand:       #F0E9D8;
  --sand-light: #FAF7F0;
  --blue:       #18375F;
  --blue-mid:   #2A5A9F;
  --blue-pale:  #D6E4F4;
  --terra:      #C4531E;
  --terra-light:#F5DDD2;
  --dark:       #141414;
  --muted:      #7A7060;
  --white:      #FDFCF8;
  --line:       rgba(24,55,95,0.12);
  --green:      #1a6635;
  --green-light:#ddf0e4;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sand-light);
  color: var(--dark);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
}

/* ── Progress bar ─────────────────────────────────────────── */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--terra);
  z-index: 1000;
  width: 0%;
  transition: width 0.08s linear;
}

/* ── Navigation ───────────────────────────────────────────── */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,240,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  padding: 10px 16px;
}

.nav-btn {
  padding: 8px 22px;
  border-radius: 40px;
  border: 1px solid transparent;
  background: transparent;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-btn:hover {
  color: var(--blue);
  border-color: var(--line);
}

.nav-btn.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.print-btn {
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 8px;
  white-space: nowrap;
}

.print-btn:hover {
  color: var(--blue);
  border-color: var(--blue);
}

/* ── Sections ─────────────────────────────────────────────── */
.page-section {
  display: block;
}

.page-section.hidden {
  display: none;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero-beach.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.22;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,55,95,0.97) 0%, rgba(24,55,95,0.45) 55%, rgba(24,55,95,0.12) 100%);
}

.hero-badge {
  position: relative;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 22px;
}

.hero-title {
  position: relative;
  font-family: 'Fraunces', serif;
  font-size: clamp(80px, 17vw, 200px);
  font-weight: 200;
  color: var(--white);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.28);
  display: block;
  font-size: 0.5em;
  margin-top: 8px;
}

.hero-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 52px;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 200;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.hero-countdown {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.hero-countdown strong {
  color: var(--terra);
  font-size: 15px;
  letter-spacing: 0;
}

.hero-countdown.arrived {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-pill {
  padding: 7px 17px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 40px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── Maps ─────────────────────────────────────────────────── */
.maps-section {
  background: var(--sand);
  padding: 80px 48px;
}

.maps-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.sec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  text-align: center;
  margin-bottom: 10px;
}

.sec-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 200;
  color: var(--blue);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 44px;
}

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.map-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.map-card-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--line);
}

.map-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 3px;
}

.map-card-title {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--blue);
}

.map-europe, .map-local {
  height: 310px;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.leaflet-popup-content {
  margin: 10px 14px;
  font-size: 12px;
}

.popup-title {
  font-weight: 700;
  color: var(--blue);
  font-size: 13px;
  margin-bottom: 2px;
}

.popup-sub {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

/* ── Itinerary header ─────────────────────────────────────── */
.itin-header {
  background: var(--blue);
  padding: 72px 48px 0;
  position: relative;
  overflow: hidden;
}

.itin-header-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/gogo-hotel.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.itin-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,55,95,0.88);
}

.itin-header-inner {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
}

.itin-sec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}

.itin-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 200;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.itin-title em {
  font-style: italic;
  color: rgba(255,255,255,0.35);
}

.day-tabs {
  display: flex;
  gap: 0;
  border-bottom: none;
}

.day-tab {
  padding: 14px 28px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.38);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.day-tab:hover {
  color: rgba(255,255,255,0.7);
}

.day-tab.active {
  color: white;
  border-bottom-color: var(--terra);
}

.day-body {
  display: none;
}

.day-body.active {
  display: block;
}

/* ── Day band ─────────────────────────────────────────────── */
.day-band {
  background: var(--sand);
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
}

.day-band-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 26px 0 18px;
}

.day-band-date {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 200;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.day-band-desc {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Timeline ─────────────────────────────────────────────── */
.timeline {
  max-width: 1020px;
  margin: 0 auto;
  padding: 64px 48px 80px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 5%, var(--line) 95%, transparent);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tl-item.vis {
  opacity: 1;
  transform: none;
}

.tl-dot-col {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--blue-mid);
  background: var(--sand-light);
  flex-shrink: 0;
  transition: all 0.25s;
}

.tl-item:hover .tl-dot {
  background: var(--terra);
  border-color: var(--terra);
  transform: scale(1.5);
}

.tl-left {
  grid-column: 1;
  padding-right: 36px;
  text-align: right;
}

.tl-right {
  grid-column: 3;
  padding-left: 36px;
}

.tl-empty {
  opacity: 0;
  pointer-events: none;
}

.tl-time {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 8px;
}

.tl-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 6px;
}

.tl-title {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.tl-body {
  font-size: 13.5px;
  line-height: 1.8;
  color: #5A5040;
}

.tl-quip {
  display: block;
  margin-top: 10px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  border-left: 2px solid var(--terra-light);
  padding-left: 10px;
}

.tl-left .tl-quip {
  border-left: none;
  border-right: 2px solid var(--terra-light);
  padding-left: 0;
  padding-right: 10px;
}

.tl-photo {
  width: 100%;
  height: 168px;
  border-radius: 10px;
  object-fit: cover;
  margin-top: 14px;
  display: block;
  filter: saturate(0.9);
  transition: filter 0.3s;
}

.tl-item:hover .tl-photo {
  filter: saturate(1.08);
}

.tl-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tl-left .tl-tags {
  justify-content: flex-end;
}

.tl-tag {
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-incl {
  background: var(--green-light);
  color: var(--green);
}

.tag-resa {
  background: var(--terra-light);
  color: var(--terra);
}

.tl-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 10px;
  margin-right: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--blue-pale);
  padding-bottom: 1px;
  transition: all 0.2s;
}

.tl-link:hover {
  color: var(--terra);
  border-color: var(--terra);
}

.tl-link::after {
  content: '↗';
  font-size: 9px;
  margin-left: 2px;
}

/* ── Infos utiles ─────────────────────────────────────────── */
.infos-page {
  background: var(--sand-light);
  padding: 80px 48px;
}

.infos-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.info-alert {
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s;
}

.info-alert.vis {
  opacity: 1;
  transform: none;
}

.info-alert.orange {
  background: var(--terra-light);
  border: 1px solid rgba(196,83,30,0.2);
}

.info-alert.orange .info-alert-text {
  color: #7a2a0a;
}

.info-alert.yellow {
  background: #FEF9E7;
  border: 1px solid rgba(200,160,0,0.2);
}

.info-alert.yellow .info-alert-text {
  color: #7a5500;
}

.info-alert-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.info-alert-text {
  font-size: 13px;
  line-height: 1.65;
}

.info-alert-text strong {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 22px;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.5s;
}

.info-card.vis {
  opacity: 1;
  transform: none;
}

.info-card-icon {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}

.info-card-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.5;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-item-text strong {
  display: block;
  font-weight: 600;
  color: var(--blue);
  font-size: 13px;
}

.info-item-text span {
  color: var(--muted);
  font-size: 12px;
}

/* ── Checklist ────────────────────────────────────────────── */
.checklist-reset {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  white-space: nowrap;
  transition: color 0.2s;
  flex-shrink: 0;
}

.checklist-reset:hover {
  color: var(--terra);
}

.checklist-item {
  cursor: pointer;
  transition: opacity 0.3s;
}

.checklist-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(24,55,95,0.25);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s;
  position: relative;
}

.checklist-item input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green);
}

.checklist-item input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: 700;
}

.checklist-item.checked .info-item-text strong,
.checklist-item.checked .info-item-text span {
  text-decoration: line-through;
  opacity: 0.4;
}

.checklist-item.checked .info-item-icon {
  opacity: 0.35;
}

/* ── Budget ───────────────────────────────────────────────── */
.budget-page {
  background: var(--blue);
  padding: 80px 48px;
}

.budget-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.budget-sec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  text-align: center;
  margin-bottom: 10px;
}

.budget-sec-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 200;
  color: white;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}

.budget-cat {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.5s;
}

.budget-cat.vis {
  opacity: 1;
  transform: none;
}

.budget-cat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.budget-cat-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.budget-headers {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  margin-bottom: 4px;
}

.budget-headers span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  text-align: right;
}

.budget-headers span:first-child {
  text-align: left;
}

.budget-line {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  gap: 12px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.budget-line:last-child {
  border-bottom: none;
}

.budget-line-name {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}

.budget-line-name .bl-detail {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.32);
  margin-top: 4px;
  line-height: 1.5;
}

.budget-line-name .bl-links {
  display: block;
  margin-top: 6px;
}

.budget-line-name a {
  color: rgba(196,83,30,0.85);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 10px;
}

.budget-line-name a:hover {
  color: var(--terra);
}

.budget-line-name a::after {
  content: ' ↗';
}

.budget-line-group {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  text-align: right;
}

.budget-line-pp {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-align: right;
}

.budget-line.highlight .budget-line-name {
  color: rgba(255,255,255,0.92);
}

.budget-line.optional .budget-line-name,
.budget-line.optional .budget-line-group,
.budget-line.optional .budget-line-pp {
  color: rgba(255,255,255,0.28);
}

.budget-total {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.6s 0.2s;
}

.budget-total.vis {
  opacity: 1;
}

.bt-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 8px;
}

.bt-amount {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 200;
  letter-spacing: -0.03em;
  line-height: 1;
}

.bt-amount.wh {
  color: white;
}

.bt-amount.tr {
  color: var(--terra);
}

.bt-note {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  margin-top: 6px;
  line-height: 1.5;
}

.bt-right {
  text-align: right;
}

.vols-note {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  opacity: 0;
  transition: opacity 0.5s 0.4s;
}

.vols-note.vis {
  opacity: 1;
}

.vols-note strong {
  color: rgba(255,255,255,0.7);
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 56px 48px;
  text-align: center;
}

.footer-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 200;
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

.footer-sub {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.16);
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 720px) {
  .hero,
  .maps-section,
  .infos-page,
  .budget-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .maps-grid {
    grid-template-columns: 1fr;
  }

  .itin-header {
    padding: 56px 20px 0;
  }

  .day-band {
    padding-left: 20px;
    padding-right: 20px;
  }

  .timeline {
    padding: 48px 20px 64px;
  }

  .timeline::before {
    left: 18px;
  }

  .tl-item {
    grid-template-columns: 36px 1fr;
  }

  .tl-dot-col {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
    padding-left: 12px;
  }

  .tl-left, .tl-right {
    grid-column: 2;
    grid-row: 1;
    padding: 0 0 0 16px;
    text-align: left;
  }

  .tl-empty {
    display: none;
  }

  .tl-left .tl-tags {
    justify-content: flex-start;
  }

  .tl-left .tl-quip {
    border-left: 2px solid var(--terra-light);
    border-right: none;
    padding-left: 10px;
    padding-right: 0;
  }

  .day-tabs {
    overflow-x: auto;
  }

  .budget-headers span:nth-child(2) {
    display: none;
  }

  .budget-line {
    grid-template-columns: 1fr 80px;
  }

  .budget-line-group {
    display: none;
  }

  .budget-total {
    grid-template-columns: 1fr;
  }

  .bt-right {
    text-align: left;
  }

  .bt-amount {
    font-size: 40px;
  }

  .print-btn {
    display: none;
  }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  #progress,
  #main-nav,
  .print-btn,
  .day-tabs,
  .tl-link,
  footer {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 12px;
  }

  /* Show all sections when printing */
  .page-section,
  .page-section.hidden {
    display: block !important;
  }

  /* Show all day bodies */
  .day-body {
    display: block !important;
  }

  /* Reveal all animated elements */
  .tl-item,
  .info-card,
  .info-alert,
  .budget-cat {
    opacity: 1 !important;
    transform: none !important;
  }

  .budget-total,
  .vols-note {
    opacity: 1 !important;
  }

  /* Hide maps (Leaflet doesn't print well) */
  .maps-section {
    display: none !important;
  }

  /* Hero compact */
  .hero {
    min-height: auto;
    padding: 40px 48px;
    page-break-after: always;
  }

  .hero-bg, .hero-overlay {
    display: none;
  }

  .hero-title {
    color: var(--blue);
    font-size: 60px;
  }

  .hero-title em {
    color: var(--muted);
  }

  .hero-badge, .hero-sub, .hero-countdown {
    color: var(--muted);
  }

  .hero-pill {
    border-color: var(--line);
    color: var(--muted);
  }

  /* Section breaks */
  .itin-header {
    page-break-before: always;
  }

  .infos-page {
    page-break-before: always;
  }

  .budget-page {
    page-break-before: always;
    background: white !important;
  }

  /* Budget on white bg */
  .budget-sec-title,
  .budget-cat-label,
  .budget-sec-label {
    color: var(--blue) !important;
  }

  .budget-line-name {
    color: var(--dark) !important;
  }

  .budget-line-group,
  .budget-line-pp {
    color: var(--dark) !important;
  }

  .budget-headers span {
    color: var(--muted) !important;
  }

  .budget-cat-label::after {
    background: var(--line) !important;
  }

  .budget-total {
    background: var(--sand) !important;
    border-color: var(--line) !important;
  }

  .bt-amount.wh {
    color: var(--blue) !important;
  }

  .bt-amount.tr {
    color: var(--terra) !important;
  }

  .bt-label, .bt-note {
    color: var(--muted) !important;
  }

  .vols-note {
    border-color: var(--line) !important;
    color: var(--muted) !important;
    background: var(--sand-light) !important;
  }

  .vols-note strong {
    color: var(--dark) !important;
  }

  /* Itin header on white */
  .itin-header {
    background: var(--blue-pale) !important;
  }

  .itin-header-bg,
  .itin-header-overlay {
    display: none;
  }

  .itin-title {
    color: var(--blue) !important;
  }

  .itin-title em {
    color: var(--muted) !important;
  }

  /* Timeline */
  .timeline::before {
    background: var(--line) !important;
  }

  .tl-photos {
    display: none;
  }

  /* Checklist reset hidden */
  .checklist-reset {
    display: none;
  }
}
