:root {
  --paper: #f6f1e7;
  --ink: #1d2635;
  --muted: #66788f;
  --line: rgba(255,255,255,0.12);
  --blue: #a5761f;
  --gold: #a5761f;
  --panel: rgba(255,253,248,0.72);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(184, 74, 55, 0.08), transparent 30%),
    linear-gradient(180deg, #fffdf8, var(--paper));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 42px);
  min-height: 132px;
  padding: 30px clamp(28px, 5vw, 72px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background: rgba(246,241,231, 0.9);
  backdrop-filter: blur(16px);
}

.brand { display: flex; align-items: center; gap: 20px; min-width: 0; }
.brand-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  flex: 0 0 auto;
  box-shadow: 0 8px 26px rgba(0,0,0,0.45);
}
.brand-text { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.brand-title { font-size: clamp(28px, 2vw, 34px); font-weight: 830; white-space: nowrap; }
nav { display: flex; gap: 12px; color: #4a5a75; font-size: clamp(15px, 1.05vw, 17px); }
nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
      padding: 0 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  background: rgba(255,253,248,0.72);
  font-weight: 780;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(0,0,0,0.45), 0 8px 20px rgba(0,0,0,0.45);
}
nav a:hover {
  border-color: rgba(165,118,31, 0.32);
  background: rgba(165,118,31, 0.09);
  color: var(--blue);
}
nav a[aria-current="page"] {
  border-color: rgba(165,118,31, 0.26);
  background: rgba(165,118,31, 0.14);
  color: var(--blue);
}

main {
  width: min(1260px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 0 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.plans-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  margin-bottom: 28px;
}

.plans-hero h1,
.plan-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.96;
  font-weight: 850;
}

.plans-hero p,
.plan-hero p {
  max-width: 760px;
  color: #4a5a75;
  font-size: 17px;
  line-height: 1.72;
}

.hero-panel {
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}
.hero-panel b { display: block; font-size: 48px; line-height: 1; }
.hero-panel span { display: block; margin-top: 4px; color: #4a5a75; font-weight: 780; }
.hero-panel small { display: block; margin-top: 20px; color: var(--muted); line-height: 1.55; }

.control-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr 1fr;
  gap: 14px;
  margin: 0 0 18px;
}
.control-card {
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: rgba(255,253,248,0.78);
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
}
.control-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.16;
}
.control-card p {
  margin: 0;
  color: #66788f;
  line-height: 1.55;
}
.countdown {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0 14px;
}
.countdown b {
  font-size: 58px;
  line-height: 0.9;
}
.countdown span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.control-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 800;
}
.todo-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.todo-card li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.todo-card li:first-child { border-top: 0; }
.todo-card li b {
  color: var(--blue);
  font-size: 13px;
}
.todo-card li span {
  color: #4a5a75;
  font-size: 14px;
  line-height: 1.55;
}
.upcoming-card div {
  display: grid;
  gap: 8px;
}
.upcoming-card a {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.upcoming-card a:first-child { border-top: 0; }
.upcoming-card b { font-size: 15px; }
.upcoming-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.section-title-row h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.04;
}
.travel-calendar {
  margin: 24px 0 24px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: rgba(255,253,248,0.74);
  box-shadow: 0 16px 42px rgba(0,0,0,0.45);
}
.calendar-year-switch {
  display: flex;
  gap: 8px;
}
.calendar-year-switch button,
.calendar-arrow {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: rgba(255,253,248,0.84);
  color: #4a5a75;
  font: inherit;
  font-size: 14px;
  font-weight: 820;
  cursor: pointer;
}
.calendar-year-switch button:hover,
.calendar-arrow:hover:not(:disabled) {
  border-color: rgba(165,118,31, 0.4);
  color: var(--blue);
}
.calendar-year-switch button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}
.calendar-toolbar {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.calendar-toolbar strong {
  font-size: 20px;
  text-align: center;
}
.calendar-arrow {
  width: 44px;
  padding: 0;
  font-size: 20px;
}
.calendar-arrow:disabled {
  cursor: default;
  opacity: 0.3;
}
.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  background: rgba(255,253,248,0.76);
  color: #4a5a75;
  font-size: 12px;
  font-weight: 820;
}
.legend-item i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--legend-color);
}
.legend-south-america { --legend-color: #b84a37; }
.legend-canada { --legend-color: #a5761f; }
.legend-europe { --legend-color: #2f7b57; }
.legend-asia { --legend-color: #b45f3a; }
.calendar-months {
  display: grid;
  gap: 18px;
}
.calendar-month {
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: rgba(255,253,248,0.8);
}
.calendar-month h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.calendar-weekdays span {
  padding: 9px 8px;
  border-right: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: var(--muted);
  font-size: 12px;
  font-weight: 840;
  text-align: center;
}
.calendar-weekdays span:last-child { border-right: 0; }
.calendar-day {
  min-height: 126px;
  padding: 9px;
  border-right: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  background: rgba(255,253,248,0.5);
}
.calendar-day:nth-child(7n) { border-right: 0; }
.calendar-day-outside {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.05);
}
.calendar-day time {
  display: block;
  margin-bottom: 8px;
  color: #4a5a75;
  font-size: 13px;
  font-weight: 850;
}
.calendar-day-outside time { color: rgba(255,255,255,0.05); }
.calendar-event {
  display: grid;
  gap: 2px;
  margin-top: 6px;
  padding: 8px;
  border: 1px solid color-mix(in srgb, var(--event-color) 28%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--event-color) 11%, white);
}
.calendar-event:hover,
.calendar-event:focus-visible {
  border-color: var(--event-color);
  transform: translateY(-1px);
}
.calendar-event span {
  color: var(--event-color);
  font-size: 11px;
  font-weight: 860;
}
.calendar-event b {
  color: #1d2735;
  font-size: 12px;
  line-height: 1.35;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.plan-card {
  min-height: 268px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,253,248,0.92), rgba(255,253,248,0.68));
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
}
.plan-card::before {
  content: "";
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}
.plan-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}
.status {
  color: var(--accent);
}
.plan-card h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.14;
}
.plan-card p {
  margin: 0;
  color: #66788f;
  line-height: 1.65;
}
.route-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.route-pills span,
.quick-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(165,118,31, 0.09);
  color: #a5761f;
  font-size: 12px;
  font-weight: 780;
}

.timeline-panel {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: rgba(255,253,248,0.72);
}
.timeline-panel ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.timeline-panel li {
  display: grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.timeline-panel li:first-child { border-top: 0; }
.timeline-panel b { color: #4a5a75; font-size: 13px; }
.timeline-panel a { font-weight: 820; }
.timeline-panel span { color: var(--muted); font-size: 13px; }

.plan-page {
  width: min(1320px, calc(100% - 36px));
}
.plan-hero {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: #66788f;
  font-size: 14px;
  font-weight: 760;
}
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.quick-facts span {
  background: color-mix(in srgb, var(--accent) 13%, white);
  color: #4a5a75;
}
.doc-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 16px;
  padding: 0 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, rgba(0,0,0,0.1));
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: #4a5a75;
  font-size: 14px;
  font-weight: 820;
}
.doc-link:hover {
  border-color: color-mix(in srgb, var(--accent) 54%, rgba(0,0,0,0.1));
  transform: translateY(-1px);
}

.route-map-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 28px 0 32px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: rgba(255,253,248,0.72);
  box-shadow: 0 16px 42px rgba(0,0,0,0.45);
}
.route-map-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: start;
  padding: 2px 4px 0;
}
.route-map-copy h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
}
.route-map-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.route-map-copy ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.route-map-copy li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: center;
  color: #4a5a75;
  font-size: 13px;
  line-height: 1.35;
}
.route-map-copy li span,
.route-marker {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 850;
}
.route-map-copy li span {
  width: 28px;
  height: 28px;
  font-size: 12px;
}
.plan-map {
  min-height: 560px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #fffdf8;
}
.plan-illustration {
  margin: -12px 0 32px;
}
.plan-illustration-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: rgba(255,253,248,0.78);
  box-shadow: 0 16px 42px rgba(0,0,0,0.45);
}
.plan-illustration-card img {
  display: block;
  width: 100%;
  height: auto;
}
.plan-illustration figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-align: center;
}
.route-marker {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px;
  place-items: center;
  min-width: 54px;
  max-width: 168px;
  min-height: 28px;
  padding: 4px 8px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: rgba(255,253,248,0.94);
  color: #1d2635;
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  font-weight: 850;
}
.route-marker-number {
  font-size: 10px;
  color: var(--accent);
  line-height: 1;
}
.route-marker-code {
  max-width: 132px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
}
.maplibregl-popup-content {
  border-radius: 8px;
  padding: 8px 10px;
  color: #1d2635;
  font: 13px/1.35 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.maplibregl-ctrl-attrib {
  font-size: 10px;
}

.plan-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  margin-top: 30px;
}

.route-panel {
  position: sticky;
  top: 84px;
  padding: 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: rgba(255,253,248,0.76);
}
.route-rail {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.route-rail li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  position: relative;
}
.route-rail li + li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: -14px;
  width: 2px;
  height: 14px;
  background: rgba(255,255,255,0.05);
}
.route-rail span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 13px;
  font-weight: 850;
}
.route-rail b { font-size: 14px; }

.plan-content {
  min-width: 0;
  padding-bottom: 40px;
}
.plan-content > h2:first-child {
  display: none;
}
.plan-content h2 {
  margin: 38px 0 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 30px;
  line-height: 1.2;
}
.plan-content h3 {
  margin: 28px 0 10px;
  font-size: 22px;
  line-height: 1.28;
}
.plan-content h4,
.plan-content h5 {
  margin: 22px 0 8px;
  font-size: 18px;
}
.plan-content p,
.plan-content li {
  color: #283342;
  font-size: 17px;
  line-height: 1.82;
}
.plan-content p { margin: 10px 0; }
.plan-content ul {
  margin: 12px 0 18px;
  padding-left: 20px;
}
.plan-content li + li { margin-top: 4px; }
.plan-content strong { font-weight: 820; }
.plan-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.plan-content blockquote {
  margin: 18px 0;
  padding: 12px 16px;
  border-left: 4px solid var(--accent);
  background: rgba(255,253,248,0.66);
  color: #4a5a75;
}
.plan-content hr {
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 28px 0;
}
.itinerary-summary {
  margin: 28px 0 24px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: rgba(255,253,248,0.78);
  box-shadow: 0 16px 42px rgba(0,0,0,0.45);
}
.itinerary-title-row {
  margin-bottom: 12px;
}
.itinerary-title-row h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
}
.itinerary-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: rgba(255,253,248,0.86);
}
.itinerary-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}
.itinerary-table-has-work {
  min-width: 1060px;
}
.itinerary-table th,
.itinerary-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.55;
}
.itinerary-table th {
  background: rgba(255,255,255,0.05);
  color: #4a5a75;
  font-weight: 850;
}
.itinerary-table td:nth-child(1) {
  width: 150px;
  font-weight: 760;
  white-space: nowrap;
}
.itinerary-table td:nth-child(2) {
  width: 74px;
  white-space: nowrap;
}
.itinerary-table td:nth-child(3) {
  width: 210px;
  font-weight: 760;
}
.itinerary-table td:nth-child(5) {
  width: 170px;
}
.itinerary-table-has-work td:nth-child(3) {
  width: 112px;
  font-weight: 760;
  white-space: nowrap;
  color: #a5761f;
}
.itinerary-table-has-work td:nth-child(4) {
  width: 210px;
  font-weight: 760;
}
.itinerary-table-has-work td:nth-child(6) {
  width: 170px;
}
.itinerary-table td:last-child,
.itinerary-table th:last-child {
  border-right: 0;
}
.itinerary-table tr:last-child td {
  border-bottom: 0;
}
.itinerary-doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}
.itinerary-doc-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 9%, white);
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  line-height: 1.25;
  text-decoration: none;
}
.itinerary-doc-link::before {
  content: "↗";
  margin-right: 5px;
  font-size: 11px;
}
.itinerary-doc-link:hover,
.itinerary-doc-link:focus-visible {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, white);
  text-decoration: underline;
}
.table-wrap {
  width: 100%;
  overflow: auto;
  margin: 18px 0 28px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  background: rgba(255,253,248,0.78);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
th, td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  border-right: 1px solid rgba(0,0,0,0.1);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.55;
}
th {
  background: rgba(255,255,255,0.05);
  color: #4a5a75;
  font-weight: 820;
}
td:last-child,
th:last-child { border-right: 0; }
tr:last-child td { border-bottom: 0; }
code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(255,255,255,0.05);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}

@media (max-width: 920px) {
  .site-header { flex-direction: column; align-items: flex-start; min-height: auto; padding: 18px; }
  .brand { gap: 12px; }
  .brand-avatar { width: 48px; height: 48px; }
  .brand-title { font-size: 24px; }
  .brand-text { flex-direction: column; align-items: flex-start; gap: 2px; }
  nav { width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; gap: 8px; font-size: 16px; }
  nav a { min-height: 44px; padding: 0 14px; border-radius: 10px; }
  .plans-hero,
  .plan-layout,
  .timeline-panel li,
  .control-grid {
    grid-template-columns: 1fr;
  }
  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .calendar-legend {
    justify-content: flex-start;
  }
  .route-map-copy {
    grid-template-columns: 1fr;
  }
  .plan-illustration {
    margin-top: -8px;
  }
  .route-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  main,
  .plan-page {
    width: min(100% - 24px, 1320px);
  }
  .plans-hero h1,
  .plan-hero h1 {
    font-size: clamp(38px, 14vw, 60px);
  }
  .plan-page-morocco-tunisia-2027 .plan-hero h1 {
    font-size: clamp(38px, 12.8vw, 52px);
  }
  .travel-calendar {
    padding: 12px;
  }
  .calendar-month {
    overflow-x: auto;
  }
  .calendar-weekdays,
  .calendar-days {
    min-width: 680px;
  }
  .calendar-day {
    min-height: 118px;
    padding: 8px;
  }
  .itinerary-summary {
    padding: 12px;
  }
  .itinerary-table {
    min-width: 820px;
  }
  .itinerary-table th,
  .itinerary-table td {
    padding: 12px 13px;
    font-size: 14px;
  }
  .plan-card { min-height: 240px; }
  .plan-map { min-height: 420px; }
  .plan-content p,
  .plan-content li { font-size: 16px; }
}

/* ===== dark aviation theme: brand + header overrides ===== */
.brand-mark { color: #a5761f; font-size: 20px; line-height: 1; text-shadow:none; }
.brand-name { font-weight: 800; letter-spacing: .22em; font-size: 15px; white-space: nowrap; color: #1d2635; }
.site-header, header.site-header {
  min-height: 0 !important;
  padding: 14px clamp(18px, 4vw, 56px) !important;
  gap: 14px !important;
  background: rgba(246,241,231,.82) !important;
  border-bottom: 1px solid rgba(0,0,0,.07) !important;
}
.site-header .brand, header .brand { gap: 12px !important; }
.site-header nav, header nav { gap: 4px !important; }
.site-header nav a, header nav a {
  min-height: 0 !important;
  padding: 9px 15px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #66788f !important;
  font-weight: 600 !important;
}
.site-header nav a:hover, header nav a:hover { color: #7a5a12 !important; background: rgba(165,118,31,.1) !important; }
.site-header nav a[aria-current="page"], header nav a[aria-current="page"] {
  border-color: rgba(165,118,31,.4) !important;
  background: rgba(165,118,31,.12) !important;
  color: #7a5a12 !important;
}
