:root {
  --navy: #062f50;
  --navy-deep: #03243d;
  --blue: #087da8;
  --aqua: #10a8b3;
  --sky: #e7f7fb;
  --orange: #ef6a3a;
  --orange-dark: #d85124;
  --yellow: #f5b83b;
  --ink: #173342;
  --muted: #5a6e78;
  --line: #d8e3e7;
  --soft: #f2f8fa;
  --white: #fff;
  --max: 1200px;
  --shadow: 0 18px 55px rgba(3, 36, 61, .13);
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(6, 47, 80, .1);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 5px 20px rgba(3, 36, 61, .05);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  line-height: 1.2;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50% 50% 50% 10%;
  font-family: Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: .92rem;
  letter-spacing: .1em;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .75rem;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 32px);
  font-size: .82rem;
  font-weight: 700;
}

.global-nav a { text-decoration: none; }
.global-nav > a:not(.header-cta):hover { color: var(--blue); }

.header-cta {
  padding: 10px 18px;
  color: var(--white);
  background: var(--orange);
  border-radius: 6px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, .92fr);
  min-height: 760px;
  color: var(--white);
  background: var(--navy);
}

.hero-media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 68%, var(--navy) 100%), linear-gradient(0deg, rgba(3, 36, 61, .32), transparent 45%);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
}

.photo-label {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: clamp(24px, 3vw, 56px);
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .08em;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(36px, 4vw, 74px);
}

.kicker,
.section-tag {
  margin: 0 0 15px;
  color: var(--aqua);
  font-family: Georgia, serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3vw, 3.35rem);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.27;
}

.hero h1 span { display: block; white-space: nowrap; }
.hero h1 em { color: #64d5cf; font-style: normal; }

.hero-lead {
  max-width: 650px;
  margin: 25px 0 0;
  color: #d8e8ec;
  font-size: 1rem;
  line-height: 1.95;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.hero-chips li {
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #e6f1f3;
  font-size: .75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.4;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--orange); box-shadow: 0 8px 22px rgba(239, 106, 58, .2); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { color: var(--blue); border-color: #9bc7d2; background: var(--white); }
.btn-outline:hover { color: var(--navy); border-color: var(--blue); background: var(--sky); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.44); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-light { color: var(--navy); background: var(--white); }
.btn-search { width: 100%; color: var(--white); background: var(--orange); }
.btn.full { width: 100%; margin-top: auto; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.quick-book {
  width: min(100%, 520px);
  margin-top: 28px;
  padding: 22px 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(3, 36, 61, .2);
}

.quick-book-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--navy);
}

.quick-book-head p { margin: 0; color: var(--navy); font-size: 1.1rem; font-weight: 800; }
.quick-book-head span { color: var(--muted); font-size: .75rem; }

.route-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin: 15px 0 18px;
}

.route-summary div { display: grid; grid-template-columns: 42px 1fr; gap: 8px; }
.route-summary dt { color: var(--blue); font-size: .75rem; font-weight: 700; }
.route-summary dd { margin: 0; font-size: .8rem; font-weight: 700; }
.quick-sub { display: block; margin-top: 12px; color: var(--blue); text-align: center; font-size: .78rem; font-weight: 700; text-underline-offset: 4px; }

.section-wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(88px, 9vw, 132px) 24px;
}

.section-intro { margin-bottom: 50px; }
.section-intro.compact { max-width: 790px; }
.section-intro.split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 70px; align-items: end; }
.section-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.9vw, 3.4rem);
  font-weight: 600;
  line-height: 1.4;
  text-wrap: balance;
}

.section-intro > p,
.section-intro.split > p { margin: 23px 0 0; color: var(--muted); }
.section-intro.split > p { margin: 0; font-size: .92rem; }

.answer { padding-top: clamp(88px, 9vw, 132px); }

.fit-grid { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 16px; }

.fit-card {
  min-height: 330px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.fit-card.good { border-top: 5px solid var(--aqua); }
.fit-card.caution { border-top: 5px solid var(--yellow); }
.fit-card.verdict { color: var(--white); border-color: var(--navy); background: var(--navy); }
.fit-icon { display: grid; width: 42px; height: 42px; margin: 0 0 24px; place-items: center; color: var(--blue); background: var(--sky); border-radius: 50%; font-family: Georgia, serif; font-weight: 800; }
.caution .fit-icon { color: #8f6110; background: #fff2ce; }
.verdict .fit-icon { width: 60px; color: var(--white); background: var(--orange); }
.fit-card h3 { margin: 0 0 19px; color: var(--navy); font-size: 1.15rem; }
.verdict h3 { color: var(--white); }
.fit-card ul { margin: 0; padding-left: 1.2em; color: var(--muted); font-size: .88rem; }
.fit-card li + li { margin-top: 7px; }
.fit-card > p:not(.fit-icon) { margin: 0; color: #c7dae0; font-size: .88rem; }
.fit-card > p strong { display: block; margin-bottom: 13px; color: #72d8d2; font-family: var(--serif); font-size: 1.7rem; }

.length-choice {
  display: grid;
  grid-template-columns: .8fr repeat(3, 1fr);
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.length-choice > div { min-height: 125px; padding: 22px; border-left: 1px solid var(--line); }
.length-choice .length-title { display: flex; flex-direction: column; justify-content: center; border-left: 0; background: var(--soft); }
.length-title strong { color: var(--navy); }
.length-title span { color: var(--muted); font-size: .75rem; }
.length-choice b { color: var(--blue); font-family: Georgia, serif; font-size: 1.8rem; }
.length-choice p { margin: 4px 0 0; color: var(--muted); font-size: .78rem; }
.length-choice .selected { color: var(--white); background: var(--blue); }
.length-choice .selected b,
.length-choice .selected p { color: var(--white); }

.experience-strip { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 620px; background: var(--navy); }
.experience-strip figure { position: relative; margin: 0; overflow: hidden; }
.experience-strip figure:first-child { grid-column: span 2; grid-row: span 2; }
.experience-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.experience-strip figure:nth-child(4) img { object-position: center 33%; }
.experience-strip figure:hover img { transform: scale(1.025); }
.experience-strip figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 60px 24px 22px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(3, 36, 61, .88));
  font-family: var(--serif);
  font-size: 1.12rem;
}
.experience-strip figcaption span { display: block; margin-bottom: 3px; color: #77ddd6; font-family: Georgia, serif; font-size: .75rem; letter-spacing: .14em; }
.route-line {
  display: grid;
  grid-template-columns: .72fr .44fr 1.25fr .44fr 1.25fr .44fr .72fr;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-line li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  padding: 20px 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-right: 0;
}

.route-line li:last-child { border-right: 1px solid var(--line); }
.route-line .route-flight { border: 0; }
.route-line .route-base { color: var(--white); border: 0; background: var(--blue); }
.route-line .naha-base { background: var(--navy); }
.route-day { margin-bottom: 8px; color: var(--blue); font-family: Georgia, serif; font-size: .75rem; font-weight: 700; }
.route-base .route-day { color: #9ee8e3; }
.route-line strong { color: var(--navy); font-size: 1rem; }
.route-base strong { color: var(--white); font-size: 1.25rem; }
.route-line small { margin-top: 6px; color: var(--muted); font-size: .75rem; line-height: 1.55; }
.route-base small { color: #d3e7eb; }
.route-flight span { color: var(--orange); font-size: 1.5rem; }
.route-flight small { color: var(--muted); }

.route-reasons { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 42px; border-top: 1px solid var(--line); }
.route-reasons article { padding: 28px 28px 0 0; }
.route-reasons article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.route-reasons span { color: var(--aqua); font-family: Georgia, serif; font-size: .8rem; font-weight: 700; }
.route-reasons h3 { margin: 8px 0; color: var(--navy); font-size: 1rem; }
.route-reasons p { margin: 0; color: var(--muted); font-size: .82rem; }

.dark {
  position: relative;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--navy-deep);
}

.section-intro.inverse h2 { color: var(--white); }
.section-intro.inverse > p { color: #bad0d8; }

.booking-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.method-card { display: flex; flex-direction: column; min-height: 410px; padding: 37px; border-radius: 10px; }
.method-card.package { background: #0b5174; }
.method-card.separate { color: var(--ink); background: var(--white); }
.method-label { align-self: flex-start; margin: 0 0 23px; padding: 4px 10px; color: var(--navy); background: #8ce3dc; border-radius: 4px; font-size: .75rem; font-weight: 800; }
.separate .method-label { color: var(--white); background: var(--orange); }
.method-card h3 { margin: 0 0 13px; font-family: var(--serif); font-size: 1.65rem; }
.method-card > p:not(.method-label) { margin: 0; color: #c8dce2; font-size: .86rem; }
.method-card.separate > p:not(.method-label) { color: var(--muted); }
.method-card ul { margin: 20px 0 30px; padding-left: 1.2em; font-size: .82rem; }

.book-list { margin-top: 54px; border-top: 1px solid rgba(255,255,255,.18); }
.book-list article { display: grid; grid-template-columns: 55px minmax(0, 1fr) auto; gap: 25px; align-items: center; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.book-step { display: grid; width: 39px; height: 39px; place-items: center; color: var(--navy); background: #73d7d2; border-radius: 50%; font-family: Georgia, serif; font-weight: 700; }
.book-type { margin: 0 0 2px; color: #72d8d2; font-family: Georgia, serif; font-size: .75rem; letter-spacing: .12em; }
.book-list h3 { margin: 0 0 3px; font-size: 1rem; }
.book-list article div > p:last-child { margin: 0; color: #afc7ce; font-size: .8rem; }
.book-list article > a { color: var(--white); font-size: .8rem; font-weight: 700; text-decoration: none; }
.book-list article > a:hover { color: #72d8d2; }

.legend { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.legend p { flex-basis: 100%; margin: 7px 0 0; color: var(--muted); font-size: .75rem; }
.need,
.check,
.free { display: inline-flex; align-items: center; justify-content: center; padding: 4px 9px; border-radius: 999px; font-size: .75rem; font-weight: 700; white-space: nowrap; }
.need { color: #9b3112; background: #ffe0d4; }
.check { color: #7b5410; background: #fff0c8; }
.free { color: #13625f; background: #d9f3ef; }

.day-jump { display: grid; grid-template-columns: repeat(9, 1fr); margin-bottom: 35px; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.day-jump a { display: flex; min-width: 0; flex-direction: column; align-items: center; padding: 13px 5px 10px; text-decoration: none; border-right: 1px solid var(--line); }
.day-jump a:last-child { border-right: 0; }
.day-jump a:hover { background: var(--sky); }
.day-jump b { color: var(--blue); font-family: Georgia, serif; font-size: 1.12rem; }
.day-jump span { color: var(--muted); font-size: .75rem; white-space: nowrap; }

.day-list { display: grid; gap: 26px; }
.day { overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--white); box-shadow: 0 8px 30px rgba(3,36,61,.05); }
.day > header { display: grid; grid-template-columns: 135px minmax(0, 1fr) auto; gap: 24px; align-items: center; min-height: 92px; padding: 18px 26px; border-bottom: 1px solid var(--line); background: var(--soft); }
.day > header p { margin: 0; color: var(--blue); font-family: Georgia, serif; font-size: .78rem; font-weight: 700; letter-spacing: .08em; }
.day > header time { display: block; margin-top: 3px; color: var(--muted); font-family: var(--sans); font-size: .75rem; letter-spacing: 0; }
.day > header h3 { margin: 0; color: var(--navy); font-family: var(--serif); font-size: 1.4rem; font-weight: 600; }
.day.emphasis { border: 2px solid var(--orange); }
.day.emphasis > header { color: var(--white); border: 0; background: var(--navy); }
.day.emphasis > header h3 { color: var(--white); }
.day.emphasis > header p { color: #75ddd6; }

.day-body { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(290px, .8fr); gap: 35px; padding: 28px; }
.day-body.single { grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); }
.time-line { margin: 0; padding: 0; list-style: none; }
.time-line li { position: relative; display: grid; grid-template-columns: 82px 1fr; gap: 20px; padding: 0 0 22px; }
.time-line li:not(:last-child)::before { content: ""; position: absolute; top: 27px; bottom: 0; left: 77px; width: 1px; background: var(--line); }
.time-line li::after { content: ""; position: absolute; top: 8px; left: 73px; width: 9px; height: 9px; background: var(--aqua); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px var(--aqua); }
.time-line time { color: var(--blue); font-family: Georgia, serif; font-size: .78rem; font-weight: 700; }
.time-line strong { display: block; color: var(--navy); font-size: .92rem; }
.time-line p { margin: 3px 0 0; color: var(--muted); font-size: .8rem; }

.day-photo { position: relative; min-height: 290px; margin: 0; overflow: hidden; border-radius: 7px; }
.day-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.day-photo figcaption { position: absolute; inset: auto 0 0; padding: 35px 14px 10px; color: var(--white); background: linear-gradient(transparent, rgba(3,36,61,.8)); font-size: .75rem; }
.photo-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.photo-stack .day-photo { min-height: 315px; }
.photo-stack.quad .day-photo { min-height: 150px; }
.photo-stack.tri .day-photo { min-height: 150px; }
.photo-stack.tri .day-photo:first-child { grid-column: 1 / -1; min-height: 185px; }
.day-side { display: grid; gap: 10px; }
.day-side .day-photo { min-height: 235px; }
.day-side .data-card { min-height: 175px; }
.day-photo.portrait img { object-position: center 42%; }
.day-note { display: flex; align-items: center; gap: 14px 24px; margin: 0 28px 26px; padding: 14px 18px; border-left: 4px solid var(--aqua); background: var(--sky); font-size: .78rem; }
.day-note b { color: var(--navy); }
.day-note p { flex: 1; margin: 0; color: var(--muted); }
.day-note a { color: var(--blue); font-weight: 700; white-space: nowrap; }
.day-note.fare { border-left-color: var(--orange); background: #fff5f0; }

.pro-tip,
.data-card { align-self: stretch; padding: 25px; border-radius: 7px; background: var(--sky); }
.pro-tip b { color: var(--navy); }
.pro-tip p { margin: 9px 0 0; color: var(--muted); font-size: .8rem; }
.pro-tip a { display: inline-block; margin-top: 14px; color: var(--blue); font-size: .78rem; font-weight: 700; }
.data-card { display: flex; flex-direction: column; justify-content: center; color: var(--white); background: var(--blue); }
.data-card p { margin: 0; color: #b8e9e9; font-size: .78rem; }
.data-card strong { margin-top: 5px; font-family: Georgia, serif; font-size: 1.8rem; }
.data-card span { color: #d2e9ed; font-size: .75rem; }
.data-card a { margin-top: 17px; color: var(--white); font-size: .78rem; font-weight: 700; }

.warning { display: grid; grid-template-columns: 260px 1fr; gap: 30px; margin: 0 28px 26px; padding: 21px 24px; border-left: 5px solid var(--orange); background: #fff4ef; }
.warning b { color: #9b3112; }
.warning p { margin: 0; color: var(--muted); font-size: .8rem; }
.day > footer { display: flex; gap: 10px; align-items: center; min-height: 54px; padding: 12px 28px; border-top: 1px solid var(--line); color: var(--muted); background: #fbfdfe; font-size: .78rem; }
.day > footer a { margin-left: auto; color: var(--blue); font-weight: 700; }
.day > footer.multi-link { justify-content: flex-end; gap: 22px; }
.day > footer.multi-link a { margin-left: 0; }

.soft { max-width: none; padding-right: max(24px, calc((100vw - var(--max)) / 2)); padding-left: max(24px, calc((100vw - var(--max)) / 2)); background: var(--soft); }

.hotel-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.hotel-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 12px 32px rgba(3, 36, 61, .07); }
.hotel-card-media { position: relative; height: 220px; margin: 0; overflow: hidden; background: #d9e9ee; }
.hotel-card-media::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(3, 36, 61, .82)); }
.hotel-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.hotel-card:nth-child(2) .hotel-card-media img { object-position: center 61%; }
.hotel-card:nth-child(3) .hotel-card-media img { object-position: center 48%; }
.hotel-card:hover .hotel-card-media img { transform: scale(1.025); }
.hotel-card-media figcaption { position: absolute; z-index: 1; inset: auto 20px 15px; color: var(--white); font-family: Georgia, serif; font-size: .72rem; font-weight: 700; letter-spacing: .13em; }
.hotel-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.hotel-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.hotel-card-meta span { color: var(--muted); font-size: .75rem; }
.hotel-card-meta strong { color: var(--blue); font-family: Georgia, serif; font-size: 1.35rem; }
.hotel-card h3 { min-height: 3.15em; margin: 13px 0 8px; color: var(--navy); font-size: 1.02rem; line-height: 1.55; }
.hotel-card-body > p { margin: 0; color: var(--muted); font-size: .8rem; }
.hotel-card-body .hotel-card-key { margin-bottom: 12px; color: var(--navy); font-weight: 800; }
.hotel-card-btn { display: inline-flex; justify-content: center; width: 100%; margin-top: auto; padding: 11px 13px; color: var(--white); background: var(--blue); border-radius: 6px; text-decoration: none; font-size: .78rem; font-weight: 700; }
.hotel-card-btn:hover { background: var(--navy); }

.hotel-verdict { display: grid; grid-template-columns: auto 1fr auto auto; gap: 22px; align-items: center; margin-top: 25px; padding: 24px; border: 1px solid #b9d7df; border-radius: 9px; background: var(--white); }
.hotel-verdict b { color: var(--navy); }
.hotel-verdict p { margin: 0; color: var(--muted); font-size: .8rem; }
.hotel-verdict a { color: var(--blue); font-size: .75rem; font-weight: 700; white-space: nowrap; }

.cost-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.cost-grid article { display: flex; flex-direction: column; min-height: 250px; padding: 25px; border: 1px solid var(--line); border-top: 4px solid var(--aqua); border-radius: 8px; }
.cost-grid p { margin: 0; color: var(--navy); font-size: .86rem; font-weight: 700; }
.cost-grid strong { margin: 18px 0 5px; color: var(--blue); font-family: Georgia, serif; font-size: 2rem; line-height: 1.2; }
.cost-grid strong small { margin-left: 3px; font-family: var(--sans); font-size: .75rem; }
.cost-grid span { color: var(--muted); font-size: .75rem; }
.cost-grid a { margin-top: auto; color: var(--blue); font-size: .75rem; font-weight: 700; }

.total-formula { margin-top: 27px; padding: 28px; color: var(--white); background: var(--navy); border-radius: 9px; }
.total-formula > div { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.total-formula > div p { flex-basis: 100%; margin: 0 0 7px; color: #8bded9; font-size: .75rem; font-weight: 700; }
.total-formula strong { padding: 8px 12px; border: 1px solid rgba(255,255,255,.27); border-radius: 5px; font-size: .85rem; }
.total-formula > div span { color: #82dcd6; }
.total-formula > p { margin: 18px 0 0; color: #bad0d8; font-size: .78rem; }

.practical-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: solid rgba(255,255,255,.18); border-width: 1px 0 1px 1px; }
.practical-grid article { min-height: 300px; padding: 29px; border-right: 1px solid rgba(255,255,255,.18); }
.practical-grid span { color: #70d8d2; font-family: Georgia, serif; font-weight: 700; }
.practical-grid h3 { margin: 70px 0 12px; font-family: var(--serif); font-size: 1.25rem; }
.practical-grid p { margin: 0; color: #b8ccd2; font-size: .8rem; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 5px; color: var(--navy); cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); font-size: 1.25rem; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 880px; margin: -5px 0 24px; padding: 0 50px 0 5px; color: var(--muted); font-size: .88rem; }

.final-cta { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; padding: 75px max(24px, calc((100vw - var(--max)) / 2)); color: var(--white); background: linear-gradient(110deg, var(--blue), var(--navy)); }
.final-cta p { margin: 0 0 9px; color: #95e6e1; font-size: .82rem; font-weight: 700; }
.final-cta h2 { margin: 0; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 600; line-height: 1.5; }
.final-actions { display: flex; flex-direction: column; gap: 10px; }

.site-footer { padding: 55px max(24px, calc((100vw - var(--max)) / 2)) 35px; color: #60727b; background: #edf4f6; font-size: .75rem; }
.footer-main { display: flex; justify-content: space-between; gap: 40px; }
.footer-main p { margin: 0; }
.footer-brand { margin-bottom: 5px !important; color: var(--navy); font-family: Georgia, serif; font-size: .9rem; font-weight: 700; letter-spacing: .12em; }
.footer-main nav { display: flex; gap: 25px; }
.footer-main a { color: var(--navy); text-decoration: none; font-weight: 700; }
.policy { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; margin-top: 35px; padding-top: 25px; border-top: 1px solid #cbdadd; }
.policy p { margin: 0; }
.copyright { margin: 30px 0 0; }

.mobile-book { display: none; }

@media (max-width: 1040px) {
  .global-nav a:nth-child(1),
  .global-nav a:nth-child(3),
  .global-nav a:nth-child(4) { display: none; }
  .hero { grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr); }
  .fit-grid { grid-template-columns: 1fr 1fr; }
  .fit-card.verdict { grid-column: 1 / -1; min-height: 240px; }
  .cost-grid { grid-template-columns: 1fr 1fr; }
  .hotel-verdict { grid-template-columns: auto 1fr; }
  .hotel-verdict a { grid-column: 2; }
  .practical-grid { grid-template-columns: 1fr 1fr; }
  .practical-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 76px; }
  .site-header { min-height: 66px; padding-inline: 18px; }
  .brand small { display: none; }
  .global-nav > a:not(.header-cta) { display: none; }
  .hero { display: flex; min-height: auto; flex-direction: column; padding-bottom: 0; background: var(--navy); }
  .hero-media { min-height: 320px; order: 1; }
  .hero-media::after { background: linear-gradient(0deg, var(--navy) 0%, rgba(6,47,80,.1) 48%); }
  .photo-label { bottom: 24px; left: 20px; }
  .hero-copy { order: 2; margin-top: -22px; padding: 0 24px 34px; position: relative; z-index: 2; }
  .hero h1 { font-size: clamp(2.05rem, 7.2vw, 3rem); }
  .quick-book { width: 100%; margin: 26px 0 0; }
  .answer { padding-top: 88px; }
  .section-intro.split { grid-template-columns: 1fr; gap: 23px; }
  .length-choice { grid-template-columns: 1fr; }
  .length-choice > div { min-height: auto; border-top: 1px solid var(--line); border-left: 0; }
  .length-choice .length-title { border-top: 0; }
  .experience-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 220px 220px; height: 720px; }
  .experience-strip figure:first-child { grid-column: 1 / -1; grid-row: auto; }
  .route-line { grid-template-columns: 1fr; }
  .route-line li { min-height: 105px; border-width: 0 1px 1px !important; }
  .route-line li:first-child { border-top-width: 1px !important; }
  .route-line .route-flight { min-height: 70px; border: 0 !important; }
  .route-reasons { grid-template-columns: 1fr; }
  .route-reasons article { padding: 25px 0; }
  .route-reasons article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .booking-methods { grid-template-columns: 1fr; }
  .book-list article { grid-template-columns: 45px 1fr; }
  .book-list article > a { grid-column: 2; }
  .day-jump { grid-template-columns: repeat(5, 1fr); }
  .day-jump a { border-bottom: 1px solid var(--line); }
  .day > header { grid-template-columns: 105px 1fr; }
  .day > header > span { grid-column: 2; justify-self: start; }
  .day-body,
  .day-body.single { grid-template-columns: 1fr; }
  .photo-stack { min-height: 300px; }
  .warning { grid-template-columns: 1fr; gap: 8px; }
  .hotel-card-grid { grid-template-columns: 1fr; }
  .hotel-card { display: grid; grid-template-columns: minmax(220px, .85fr) minmax(0, 1.15fr); }
  .hotel-card-media { height: 100%; min-height: 320px; }
  .final-cta { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 600px) {
  body { padding-bottom: 65px; }
  .site-header { min-height: 60px; padding: 8px 14px; }
  .brand { gap: 8px; }
  .brand-mark { width: 34px; height: 34px; font-size: 1rem; }
  .brand strong { font-size: .8rem; }
  .header-cta { padding: 8px 10px; font-size: .76rem; }
  .hero-media { width: 100%; height: 68vw; min-height: 245px; max-height: 290px; }
  .photo-label { bottom: 16px; left: 16px; padding: 5px 8px; }
  .hero-copy { margin-top: -16px; padding: 0 18px 27px; }
  .kicker { margin-bottom: 10px; font-size: .68rem; line-height: 1.5; }
  .hero h1 { font-size: clamp(1.72rem, 8vw, 2rem); line-height: 1.36; }
  .hero-lead { margin-top: 17px; font-size: 1rem; line-height: 1.78; }
  .hero-chips { gap: 6px; margin-top: 15px; }
  .hero-chips li { padding: 4px 9px; font-size: .7rem; }
  .quick-book { width: 100%; margin: 23px 0 0; padding: 18px; }
  .quick-book-head { align-items: baseline; flex-direction: row; gap: 12px; padding-bottom: 11px; }
  .quick-book-head p { font-size: 1rem; }
  .quick-book-head span { font-size: .7rem; white-space: nowrap; }
  .route-summary { grid-template-columns: 1fr 1fr; gap: 7px 12px; margin: 12px 0 14px; }
  .route-summary div { grid-template-columns: 34px 1fr; gap: 5px; }
  .route-summary dt { font-size: .7rem; }
  .route-summary dd { font-size: .74rem; line-height: 1.5; }
  .quick-book .btn-search { min-height: 46px; padding: 10px 12px; font-size: .8rem; }
  .quick-sub { margin-top: 8px; font-size: .72rem; }
  .section-wrap { padding: 64px 18px; }
  .dark,
  .soft { padding-right: 18px; padding-left: 18px; }
  .section-intro { margin-bottom: 30px; }
  .section-intro h2 { font-size: 1.72rem; line-height: 1.45; }
  .section-intro > p,
  .section-intro.split > p { margin-top: 16px; line-height: 1.72; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card.verdict { grid-column: auto; }
  .fit-card { min-height: auto; padding: 23px; }
  .fit-icon { margin-bottom: 15px; }
  .fit-card h3 { margin-bottom: 12px; }
  .length-choice { grid-template-columns: 1fr 1fr; }
  .length-choice .length-title { grid-column: 1 / -1; }
  .length-choice > div { padding: 16px; }
  .experience-strip { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 230px 190px 190px; height: 610px; }
  .experience-strip figure { height: auto; }
  .experience-strip figure:nth-child(2) { height: auto; }
  .experience-strip figcaption { padding: 48px 14px 13px; font-size: .9rem; }
  .booking-methods .method-card { min-height: 390px; padding: 29px 23px; }
  .day-jump { grid-template-columns: repeat(3, 1fr); }
  .day > header { grid-template-columns: 1fr; gap: 7px; padding: 20px; }
  .day > header > span { grid-column: auto; }
  .day > header h3 { font-size: 1.2rem; }
  .day-body { padding: 24px 20px; }
  .time-line li { grid-template-columns: 65px 1fr; gap: 16px; }
  .time-line li:not(:last-child)::before { left: 60px; }
  .time-line li::after { left: 56px; }
  .photo-stack { grid-template-columns: 1fr; }
  .photo-stack .day-photo { min-height: 260px; }
  .photo-stack.quad { grid-template-columns: 1fr 1fr; }
  .photo-stack.quad .day-photo { min-height: 175px; }
  .photo-stack.tri .day-photo:first-child { grid-column: auto; min-height: 260px; }
  .day-note { align-items: flex-start; flex-direction: column; gap: 5px; margin-inline: 20px; }
  .day-note a { white-space: normal; }
  .warning { margin-inline: 20px; }
  .day > footer { align-items: flex-start; flex-direction: column; padding: 14px 20px; }
  .day > footer a { margin-left: 0; }
  .day > footer.multi-link { align-items: flex-start; }
  .hotel-card { display: flex; }
  .hotel-card-media { height: 200px; min-height: 0; }
  .hotel-card h3 { min-height: 0; }
  .hotel-card-body { padding: 21px; }
  .hotel-verdict { grid-template-columns: 1fr; }
  .hotel-verdict a { grid-column: auto; }
  .cost-grid { grid-template-columns: 1fr; }
  .cost-grid article { min-height: 220px; }
  .total-formula > div { align-items: stretch; flex-direction: column; }
  .total-formula > div span { text-align: center; }
  .practical-grid { grid-template-columns: 1fr; }
  .practical-grid article { min-height: 240px; border-bottom: 1px solid rgba(255,255,255,.18); }
  .practical-grid h3 { margin-top: 43px; }
  .faq-list details p { padding-right: 5px; }
  .final-cta { padding: 62px 20px; }
  .final-cta h2 br { display: none; }
  .footer-main { flex-direction: column; }
  .footer-main nav { flex-wrap: wrap; gap: 15px 22px; }
  .policy { grid-template-columns: 1fr; gap: 18px; }
  .mobile-book {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: .65fr .65fr 1.4fr;
    min-height: 64px;
    padding: 7px;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.97);
    box-shadow: 0 -5px 22px rgba(3,36,61,.12);
  }
  .mobile-book a { display: grid; place-items: center; color: var(--navy); text-decoration: none; font-size: .75rem; font-weight: 700; }
  .mobile-book .mobile-main { color: var(--white); background: var(--orange); border-radius: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Trip picker and article pages */
.trip-picker { padding-top: 105px; padding-bottom: 105px; background: #f7fbfc; }
.trip-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.trip-option { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--white); box-shadow: 0 12px 34px rgba(3,36,61,.07); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.trip-option:hover { transform: translateY(-4px); border-color: #9ecbd5; box-shadow: var(--shadow); }
.trip-option.featured { border: 2px solid var(--orange); box-shadow: 0 16px 42px rgba(3,36,61,.12); }
.trip-option-media { position: relative; height: 235px; margin: 0; overflow: hidden; background: #d9e9ee; }
.trip-option-media::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(3,36,61,.72)); }
.trip-option-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.trip-option:hover .trip-option-media img { transform: scale(1.035); }
.trip-option-media figcaption { position: absolute; z-index: 1; right: 17px; bottom: 15px; padding: 5px 10px; color: var(--white); border: 1px solid rgba(255,255,255,.55); border-radius: 999px; font-size: .75rem; font-weight: 700; }
.featured .trip-option-media figcaption { border-color: var(--orange); background: var(--orange); }
.trip-option-body { display: flex; flex: 1; flex-direction: column; padding: 27px 26px 25px; }
.trip-eyebrow { margin: 0 0 7px; color: var(--blue); font-family: Georgia, serif; font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.trip-option h3 { margin: 0 0 12px; color: var(--navy); font-family: var(--serif); font-size: 1.45rem; font-weight: 600; line-height: 1.45; }
.trip-description { margin: 0 0 20px; color: var(--muted); font-size: .9rem; line-height: 1.75; }
.trip-facts { display: grid; grid-template-columns: 1fr 1fr; margin: 0 0 17px; overflow: hidden; border: solid var(--line); border-width: 1px 0; }
.trip-facts div { min-width: 0; padding: 11px 9px 11px 0; }
.trip-facts div + div { padding-left: 14px; border-left: 1px solid var(--line); }
.trip-facts dt { color: var(--muted); font-size: .72rem; }
.trip-facts dd { margin: 2px 0 0; color: var(--navy); font-size: .82rem; font-weight: 800; line-height: 1.5; }
.trip-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 25px; padding: 0; list-style: none; }
.trip-highlights li { padding: 4px 9px; color: #255a66; background: var(--sky); border-radius: 999px; font-size: .72rem; font-weight: 700; }
.trip-actions { display: grid; gap: 10px; margin-top: auto; }
.trip-actions .btn { width: 100%; }
.trip-book-link { display: flex; min-height: 38px; align-items: center; justify-content: center; color: var(--blue); text-align: center; text-underline-offset: 4px; font-size: .78rem; font-weight: 700; }
.trip-tools { display: grid; grid-template-columns: minmax(210px, .65fr) minmax(0, 1.35fr); gap: 30px; align-items: center; margin-top: 22px; padding: 22px 25px; border: 1px solid #b9d7df; border-radius: 10px; background: var(--white); }
.trip-tools > div { display: flex; flex-direction: column; }
.trip-tools strong { color: var(--navy); }
.trip-tools span { color: var(--muted); font-size: .75rem; }
.trip-tools nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.trip-tools a { padding: 7px 11px; color: var(--blue); border: 1px solid #b9d7df; border-radius: 999px; text-decoration: none; font-size: .78rem; font-weight: 700; }
.trip-tools a:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }

.article-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 28px 0 0; }
.article-gallery.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-gallery figure { position: relative; min-height: 245px; margin: 0; overflow: hidden; border-radius: 8px; background: var(--soft); }
.article-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-gallery figcaption { position: absolute; inset: auto 0 0; padding: 38px 14px 11px; color: var(--white); background: linear-gradient(transparent, rgba(3,36,61,.86)); font-size: .75rem; }
.article-gallery .portrait img { object-position: center 44%; }
.photo-edit-note { margin-top: 10px !important; color: var(--muted); font-size: .72rem; text-align: right; }

.subpage .site-header { position: relative; }
.breadcrumbs { max-width: var(--max); margin: 0 auto; padding: 18px 24px; color: var(--muted); font-size: .75rem; }
.breadcrumbs a { color: var(--blue); text-underline-offset: 3px; }
.article-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); min-height: 530px; color: var(--white); background: var(--navy); }
.article-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 62px clamp(34px, 4vw, 72px) 62px max(34px, calc((100vw - var(--max)) / 2)); }
.article-hero .kicker { color: #77ddd7; }
.article-hero h1 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(2.35rem, 3.2vw, 3.5rem); font-weight: 600; line-height: 1.3; text-wrap: balance; }
.article-hero-lead { max-width: 700px; margin: 23px 0 0; color: #c8dde4; font-size: 1rem; line-height: 1.9; }
.article-hero-media { position: relative; min-height: 530px; overflow: hidden; }
.article-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 0%, transparent 25%), linear-gradient(0deg, rgba(3,36,61,.3), transparent 50%); }
.article-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero-media figcaption { position: absolute; z-index: 2; right: 20px; bottom: 18px; padding: 6px 10px; border: 1px solid rgba(255,255,255,.55); font-size: .72rem; }
.article-hero.no-image { display: block; min-height: auto; }
.article-hero.no-image .article-hero-copy { min-height: 420px; max-width: var(--max); margin: 0 auto; padding-inline: 24px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.article-meta span { padding: 6px 10px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: #d8e8ec; font-size: .75rem; }

.article-shell { display: grid; max-width: var(--max); grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; margin: 0 auto; padding: 85px 24px 110px; }
.article-main { min-width: 0; }
.article-main > section { margin-top: 75px; }
.article-main > section:first-child { margin-top: 0; }
.article-main h2 { margin: 0 0 25px; color: var(--navy); font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.6rem); font-weight: 600; line-height: 1.45; }
.article-main h3 { margin: 35px 0 12px; color: var(--navy); font-size: 1.15rem; }
.article-main p { margin: 0 0 18px; }
.article-main ul, .article-main ol { padding-left: 1.3em; }
.article-main li + li { margin-top: 9px; }
.article-main a { color: var(--blue); text-underline-offset: 3px; }
.lead-answer { padding: 28px 30px; border: 1px solid #afd4dc; border-left: 6px solid var(--aqua); border-radius: 8px; background: var(--sky); }
.lead-answer b { display: block; margin-bottom: 7px; color: var(--navy); font-size: 1.05rem; }
.lead-answer p { margin: 0; color: #3e616e; }
.summary-metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin: 30px 0 0; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.summary-metrics div { min-height: 115px; padding: 20px; border-right: 1px solid var(--line); }
.summary-metrics div:last-child { border-right: 0; }
.summary-metrics small { display: block; color: var(--muted); font-size: .72rem; }
.summary-metrics strong { display: block; margin-top: 10px; color: var(--blue); font-family: Georgia, var(--sans); font-size: 1.25rem; line-height: 1.35; }

.route-cards { display: grid; gap: 12px; margin-top: 25px; padding: 0; list-style: none; }
.route-card { display: grid; grid-template-columns: 92px 1fr auto; gap: 22px; align-items: center; padding: 23px 25px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.route-card time, .route-card .route-number { color: var(--blue); font-family: Georgia, serif; font-size: .85rem; font-weight: 700; }
.route-card strong { display: block; color: var(--navy); font-size: 1rem; }
.route-card p { margin: 4px 0 0; color: var(--muted); font-size: .82rem; }
.route-card > span:last-child { padding: 6px 9px; color: #255a66; background: var(--sky); border-radius: 999px; font-size: .72rem; white-space: nowrap; }
.route-card.caution { border-color: #f0b49e; background: #fff8f5; }
.route-card.caution > span:last-child { color: #953b1c; background: #ffe6dc; }

.compare-table { width: 100%; margin-top: 22px; border-collapse: separate; border-spacing: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; font-size: .86rem; }
.compare-table th, .compare-table td { padding: 16px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table th:last-child, .compare-table td:last-child { border-right: 0; }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: 0; }
.compare-table thead th { color: var(--navy); background: #e9f2f4; }
.compare-table tbody th { width: 27%; color: var(--navy); background: #f8fbfc; }
.compare-table td { color: var(--muted); }

.decision-box { margin-top: 28px; padding: 28px; color: var(--white); border-radius: 9px; background: linear-gradient(120deg, var(--blue), var(--navy)); }
.decision-box p { margin: 0 0 17px; color: #d1e5e9; }
.decision-box h3 { margin: 0 0 10px; color: var(--white); font-family: var(--serif); font-size: 1.5rem; }
.decision-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.decision-actions .btn { min-width: 210px; }
.note-box { margin-top: 25px; padding: 23px 25px; border-left: 5px solid var(--orange); color: #6b4a3d; background: #fff5f0; }
.note-box strong { color: #8c3216; }
.note-box p { margin: 6px 0 0; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 !important; list-style: none; }
.check-list li { position: relative; margin: 0 !important; padding: 15px 17px 15px 45px; border: 1px solid var(--line); border-radius: 7px; }
.check-list li::before { content: "✓"; position: absolute; top: 14px; left: 17px; color: var(--aqua); font-weight: 800; }

.article-sidebar { min-width: 0; }
.sticky-card { position: sticky; top: 25px; padding: 24px; border: 1px solid var(--line); border-top: 5px solid var(--orange); border-radius: 9px; background: var(--white); box-shadow: 0 12px 38px rgba(3,36,61,.08); }
.sticky-card > p:first-child { margin: 0; color: var(--blue); font-family: Georgia, serif; font-size: .72rem; font-weight: 700; letter-spacing: .11em; }
.sticky-card h2, .sticky-card h3 { margin: 9px 0 12px; color: var(--navy); font-family: var(--serif); font-size: 1.3rem; }
.sticky-card > p { color: var(--muted); font-size: .8rem; }
.sticky-card .btn { width: 100%; margin-top: 8px; }
.sticky-links { margin: 22px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; }
.sticky-links li + li { margin-top: 10px; }
.sticky-links a { color: var(--navy); font-size: .78rem; font-weight: 700; text-decoration: none; }
.sticky-links a:hover { color: var(--blue); }

.related { padding: 80px max(24px, calc((100vw - var(--max)) / 2)); background: var(--soft); }
.related h2 { margin: 0 0 28px; color: var(--navy); font-family: var(--serif); font-size: 2rem; font-weight: 600; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card { display: flex; min-height: 190px; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); text-decoration: none; }
.related-card small { color: var(--blue); font-family: Georgia, serif; letter-spacing: .08em; }
.related-card strong { margin-top: auto; color: var(--navy); font-family: var(--serif); font-size: 1.2rem; }
.related-card span { margin-top: 8px; color: var(--blue); font-size: .78rem; font-weight: 700; }

.budget-form { display: grid; gap: 12px; margin-top: 30px; }
.budget-row { display: grid; grid-template-columns: minmax(180px, 1fr) 150px 90px; gap: 12px; align-items: center; padding: 17px 19px; border: 1px solid var(--line); border-radius: 8px; }
.budget-row label { color: var(--navy); font-weight: 700; }
.budget-row label small { display: block; color: var(--muted); font-weight: 400; }
.budget-row input { width: 100%; min-height: 44px; padding: 8px 10px; border: 1px solid #aebfc5; border-radius: 5px; font: inherit; text-align: right; }
.budget-row span { color: var(--muted); font-size: .8rem; }
.budget-results { margin-top: 24px; padding: 28px; color: var(--white); border-radius: 9px; background: var(--navy); }
.budget-results dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 0; }
.budget-results dl div { padding: 15px; border: 1px solid rgba(255,255,255,.17); border-radius: 6px; }
.budget-results dt { color: #a9cbd3; font-size: .75rem; }
.budget-results dd { margin: 5px 0 0; font-family: Georgia, var(--sans); font-size: 1.2rem; }
.budget-total { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.22); }
.budget-total p { margin: 0; color: #b8d1d7; }
.budget-total strong { display: block; color: #75e0d9; font-family: Georgia, var(--sans); font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.2; }
.budget-total span { color: #d5e5e9; }
.budget-help { margin-top: 16px; color: var(--muted); font-size: .78rem; }

.legal-shell { max-width: 920px; margin: 0 auto; padding: 75px 24px 110px; }
.legal-shell h1 { margin: 0 0 16px; color: var(--navy); font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.7rem); font-weight: 600; }
.legal-shell .legal-lead { margin-bottom: 45px; color: var(--muted); }
.legal-shell section { margin-top: 48px; }
.legal-shell h2 { margin: 0 0 14px; color: var(--navy); font-family: var(--serif); font-size: 1.55rem; font-weight: 600; }
.legal-shell h3 { margin: 25px 0 10px; color: var(--navy); }
.legal-shell p, .legal-shell li { color: #48616c; }
.legal-shell a { color: var(--blue); }
.updated { display: inline-block; padding: 5px 9px; color: var(--blue); background: var(--sky); border-radius: 4px; font-size: .75rem; }

@media (max-width: 1040px) {
  .trip-grid { grid-template-columns: 1fr 1fr; }
  .trip-option.featured { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); }
  .trip-option.featured .trip-option-media { height: 100%; min-height: 440px; }
  .article-shell { grid-template-columns: minmax(0, 1fr) 270px; gap: 34px; }
  .summary-metrics { grid-template-columns: 1fr 1fr; }
  .summary-metrics div:nth-child(2) { border-right: 0; }
  .summary-metrics div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .trip-grid { grid-template-columns: 1fr; }
  .trip-option.featured { display: flex; grid-column: auto; }
  .trip-option.featured .trip-option-media,
  .trip-option-media { height: 260px; min-height: 0; }
  .trip-tools { grid-template-columns: 1fr; gap: 15px; }
  .trip-tools nav { justify-content: flex-start; }
  .article-hero { display: flex; flex-direction: column-reverse; }
  .article-hero-media { min-height: 390px; }
  .article-hero-media::after { background: linear-gradient(0deg, var(--navy), transparent 35%); }
  .article-hero-copy { padding: 44px 24px 52px; }
  .article-shell { grid-template-columns: 1fr; padding-top: 60px; }
  .article-sidebar { order: -1; }
  .sticky-card { position: static; }
  .sticky-links { display: none; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero + .trip-picker { padding-top: 74px; }
  .trip-picker { padding: 60px 18px; }
  .trip-grid { grid-template-columns: 1fr; gap: 14px; }
  .trip-option.featured { display: flex; grid-column: auto; }
  .trip-option.featured .trip-option-media,
  .trip-option-media { height: 215px; min-height: 0; }
  .trip-option-body { padding: 23px 21px 22px; }
  .trip-option h3 { font-size: 1.3rem; }
  .trip-description { font-size: .88rem; }
  .trip-tools { grid-template-columns: 1fr; gap: 15px; padding: 20px; }
  .trip-tools nav { justify-content: flex-start; }
  .trip-tools a { padding: 7px 10px; }
  .breadcrumbs { padding-inline: 18px; }
  .article-hero-media { min-height: 255px; }
  .article-hero-copy { padding: 34px 20px 42px; }
  .article-hero h1 { font-size: clamp(1.85rem, 8vw, 2.15rem); line-height: 1.38; }
  .article-hero-lead { margin-top: 17px; line-height: 1.75; }
  .article-shell { padding: 50px 18px 80px; }
  .article-main > section { margin-top: 58px; }
  .lead-answer { padding: 23px 21px; }
  .summary-metrics { grid-template-columns: 1fr; }
  .summary-metrics div { min-height: 95px; border-right: 0; border-bottom: 1px solid var(--line); }
  .summary-metrics div:last-child { border-bottom: 0; }
  .route-card { grid-template-columns: 62px 1fr; gap: 14px; padding: 18px; }
  .route-card > span:last-child { grid-column: 2; justify-self: start; }
  .compare-table { display: block; overflow-x: auto; white-space: normal; }
  .check-list { grid-template-columns: 1fr; }
  .article-gallery,
  .article-gallery.three { grid-template-columns: 1fr 1fr; }
  .article-gallery figure { min-height: 190px; }
  .article-gallery.three figure:first-child { grid-column: 1 / -1; min-height: 240px; }
  .decision-actions { flex-direction: column; }
  .decision-actions .btn { width: 100%; }
  .related { padding: 62px 18px; }
  .related-grid { grid-template-columns: 1fr; }
  .budget-row { grid-template-columns: 1fr 120px 70px; }
  .budget-row label { grid-column: 1 / -1; }
  .budget-results dl { grid-template-columns: 1fr; }
  .budget-total { align-items: flex-start; flex-direction: column; }
  .legal-shell { padding-inline: 18px; }
}

@media print {
  .site-header, .article-sidebar, .related, .site-footer, .mobile-book, .decision-actions, [data-print] { display: none !important; }
  body { padding: 0; color: #111; background: #fff; }
  .article-hero { min-height: auto; color: #111; background: #fff; }
  .article-hero-copy { min-height: auto !important; padding: 20px 0; }
  .article-hero h1, .article-hero .kicker { color: #111; }
  .article-hero-lead, .article-meta span { color: #333; }
  .article-hero-media { display: none; }
  .article-shell { display: block; max-width: none; padding: 10px 0; }
  .article-main > section { break-inside: avoid; margin-top: 35px; }
  a { color: #111 !important; text-decoration: none !important; }
}
