:root {
  color-scheme: light;
  --ink: #132c31;
  --muted: #52666a;
  --paper: #f7faf9;
  --white: #ffffff;
  --line: #cfdbd8;
  --teal: #0c5259;
  --green: #2e765d;
  --amber: #e9ad36;
  --coral: #b85645;
  --shadow: 0 10px 28px rgba(13, 51, 55, 0.12);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: var(--teal); text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.site-header {
  width: 100%;
  min-height: 64px;
  padding: 10px max(20px, calc((100vw - 1160px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #082f36;
  color: var(--white);
}
.site-header > *, .site-header nav, .hero-copy { min-width: 0; }
.site-header a { color: inherit; text-decoration: none; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand::first-letter {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #082f36;
  background: var(--amber);
}
.site-header nav { display: flex; align-items: center; gap: 18px; }
.header-cta, .primary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--amber);
  color: #1d2b2d !important;
  font-weight: 800;
  text-decoration: none;
}
.article-hero {
  position: relative;
  height: clamp(390px, 62vh, 540px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #173e43;
}
.article-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: rgba(4, 32, 37, 0.62); }
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 48px 24px 52px;
  color: var(--white);
}
.hero-copy .eyebrow, .section-label {
  margin: 0 0 8px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-copy h1 { max-width: 860px; margin: 0; overflow-wrap: anywhere; font-size: 3.1rem; line-height: 1.06; letter-spacing: 0; }
.hero-copy > p:last-child { max-width: 720px; margin: 18px 0 0; font-size: 1.15rem; }
.breadcrumbs {
  width: min(100% - 40px, 1100px);
  margin: 18px auto 0;
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}
.article-shell { width: min(100% - 40px, 960px); margin: 0 auto; padding: 34px 0 80px; }
.article-shell > section { padding: 34px 0; border-bottom: 1px solid var(--line); }
.article-shell h2 { margin: 0 0 16px; font-size: 1.75rem; line-height: 1.2; letter-spacing: 0; }
.article-shell h3 { margin: 0 0 4px; font-size: 1rem; letter-spacing: 0; }
.article-shell p { margin: 0 0 14px; }
.answer-band { border-top: 4px solid var(--green); }
.answer-band > p:last-child { max-width: 820px; font-size: 1.12rem; }
.trip-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0 !important;
  border: 1px solid var(--line);
  border-left: 5px solid var(--amber);
  border-radius: 6px;
  background: var(--white);
}
.trip-summary > div { min-width: 0; padding: 18px; border-right: 1px solid var(--line); }
.trip-summary > div:last-child { border-right: 0; }
.trip-summary span, .trip-summary strong, .trip-summary small { display: block; overflow-wrap: anywhere; }
.trip-summary span { color: var(--muted); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
.trip-summary strong { margin-top: 4px; font-size: 1.05rem; }
.trip-summary small { margin-top: 4px; color: var(--muted); line-height: 1.4; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; background: var(--white); }
table { width: 100%; min-width: 680px; border-collapse: collapse; }
th, td { padding: 14px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
thead th { background: #e9f3f1; color: #174a4e; font-size: 0.85rem; }
tbody th { width: 22%; color: var(--teal); }
tr:last-child th, tr:last-child td { border-bottom: 0; }
.timeline { display: grid; gap: 14px; }
.timeline-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 4px solid #8bb7ac;
  border-radius: 6px;
  background: var(--white);
}
.timeline-item > .day-label { color: var(--coral); font-size: 0.8rem; font-weight: 900; text-transform: uppercase; }
.day-content { min-width: 0; }
.day-content h3 { font-size: 1.12rem; }
.day-intro { margin: 0; color: var(--muted); }
.day-meta { display: flex; flex-wrap: wrap; gap: 7px 18px; margin: 12px 0; color: #31585d; font-size: 0.8rem; font-weight: 800; }
.day-meta span { position: relative; overflow-wrap: anywhere; }
.day-meta span:not(:last-child)::after { content: ""; position: absolute; top: 0.3em; right: -10px; width: 1px; height: 1em; background: var(--line); }
.day-details { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 22px; margin: 14px 0; padding: 14px 0 0 20px; border-top: 1px solid var(--line); }
.day-details li { padding-left: 2px; color: var(--ink); font-size: 0.9rem; }
.day-decision { margin: 14px 0 0 !important; padding: 11px 14px; border-left: 3px solid var(--amber); background: #fff8e8; color: #42575a; font-size: 0.88rem; }
.day-decision strong { display: block; margin-bottom: 2px; color: #7c4d00; font-size: 0.75rem; text-transform: uppercase; }
.inline-booking-link { display: inline-block; margin-top: 14px; font-weight: 800; }
.booking-section .section-heading { max-width: 760px; }
.booking-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.booking-option { display: flex; min-width: 0; flex-direction: column; padding: 20px; border: 1px solid var(--line); border-top: 4px solid var(--teal); border-radius: 6px; background: var(--white); }
.booking-option .booking-badge { margin: 0 0 8px; color: var(--coral); font-size: 0.75rem; font-weight: 900; text-transform: uppercase; }
.booking-option h3 { font-size: 1.08rem; }
.booking-option > p:not(.booking-badge) { color: var(--muted); font-size: 0.9rem; }
.booking-option dl { display: grid; gap: 12px; margin: 8px 0 20px; }
.booking-option dl div { padding-top: 10px; border-top: 1px solid var(--line); }
.booking-option dt { color: var(--teal); font-size: 0.75rem; font-weight: 900; text-transform: uppercase; }
.booking-option dd { margin: 3px 0 0; color: var(--muted); font-size: 0.86rem; }
.booking-actions { display: grid; gap: 8px; margin-top: auto; }
.booking-actions a { display: flex; min-height: 42px; align-items: center; justify-content: center; padding: 9px 12px; border-radius: 4px; background: var(--teal); color: var(--white); font-size: 0.86rem; font-weight: 800; text-align: center; text-decoration: none; }
.booking-actions a:hover { background: #083f45; }
.booking-disclosure { margin: 14px 0 0 !important; color: var(--muted); font-size: 0.78rem; }
.booking-order { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.booking-order li { min-width: 0; padding: 18px 20px 18px 0; border-bottom: 1px solid var(--line); }
.booking-order li:nth-child(odd) { padding-right: 28px; border-right: 1px solid var(--line); }
.booking-order li:nth-child(even) { padding-left: 28px; }
.booking-order strong, .booking-order span { display: block; overflow-wrap: anywhere; }
.booking-order strong { color: var(--teal); }
.booking-order span { margin-top: 5px; color: var(--muted); font-size: 0.9rem; }
.avoid-band { border-left: 4px solid var(--coral); padding-left: 22px !important; }
.avoid-band ul, .sources ul { margin: 0; padding-left: 20px; }
.planner-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 32px 0;
  padding: 28px !important;
  border: 1px solid #a8c9c1 !important;
  border-left: 5px solid var(--green) !important;
  border-radius: 6px;
  background: #edf7f3;
}
.planner-cta h2 { margin-bottom: 8px; }
.primary-button { min-width: 190px; }
.faq-list { display: grid; gap: 10px; }
details { border: 1px solid var(--line); border-radius: 6px; background: var(--white); }
summary { cursor: pointer; padding: 16px 18px; font-weight: 800; }
details p { padding: 0 18px 18px; color: var(--muted); }
.sources p { color: var(--muted); font-size: 0.92rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.related-grid a {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}
.related-grid strong, .related-grid span { display: block; overflow-wrap: anywhere; }
.related-grid span { margin-top: 7px; color: var(--muted); font-size: 0.88rem; }
.about-shell { max-width: 820px; }
footer {
  padding: 34px max(20px, calc((100vw - 1100px) / 2));
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 32px;
  background: #082f36;
  color: #dbe9e7;
  font-size: 0.8rem;
}
footer a { color: #ffe2a3; }
footer p { margin: 6px 0; }
.footer-notes { max-width: 720px; }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  .brand strong { display: none; }
  .site-header nav { gap: 12px; font-size: 0.85rem; }
  .language-link { display: none; }
  .header-cta { min-height: 40px; padding: 8px 11px; }
  .article-hero { height: 450px; }
  .hero-copy { padding: 34px 20px 38px; }
  .hero-copy h1 { font-size: 2.25rem; }
  .hero-copy > p:last-child { font-size: 1rem; }
  .article-shell { width: min(100% - 28px, 960px); }
  .trip-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trip-summary > div:nth-child(2) { border-right: 0; }
  .trip-summary > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .timeline-item { grid-template-columns: 72px 1fr; gap: 10px; }
  .day-details { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-order { grid-template-columns: 1fr; }
  .booking-order li, .booking-order li:nth-child(odd), .booking-order li:nth-child(even) { padding: 16px 0; border-right: 0; }
  .planner-cta { grid-template-columns: 1fr; }
  .primary-button { width: 100%; }
  .related-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .site-header { min-height: 58px; padding: 8px 14px; gap: 8px; }
  .site-header nav { gap: 8px; }
  .site-header nav > a:not(.header-cta) { display: none; }
  .header-cta { min-height: 38px; padding: 7px 10px; white-space: nowrap; font-size: 0.78rem; }
  .article-hero { height: 430px; }
  .hero-copy { max-width: 100%; padding: 28px 16px 32px; }
  .hero-copy h1 { max-width: 100%; font-size: 1.95rem; line-height: 1.18; }
  .hero-copy > p:last-child { max-width: 100%; font-size: 0.94rem; }
  .trip-summary { grid-template-columns: 1fr; }
  .trip-summary > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trip-summary > div:last-child { border-bottom: 0; }
  .timeline-item { grid-template-columns: 1fr; padding: 18px; }
  .timeline-item > .day-label { margin-bottom: -4px; }
  .day-meta { display: grid; gap: 4px; }
  .day-meta span::after { display: none; }
  .table-scroll { overflow: visible; border: 0; background: transparent; }
  .decision-table, .decision-table tbody, .decision-table tr, .decision-table th, .decision-table td { display: block; width: 100%; min-width: 0; }
  .decision-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .decision-table tbody { display: grid; gap: 10px; }
  .decision-table tr { overflow: hidden; border: 1px solid var(--line); border-top: 3px solid var(--teal); border-radius: 6px; background: var(--white); }
  .decision-table tbody th { padding: 14px 16px 10px; border-bottom: 0; color: var(--ink); font-size: 1rem; }
  .decision-table tbody td { padding: 10px 16px 14px; border-bottom: 1px solid var(--line); overflow-wrap: anywhere; }
  .decision-table tbody td:last-child { border-bottom: 0; }
  .decision-table tbody td::before { content: attr(data-label); display: block; margin-bottom: 3px; color: var(--teal); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
