:root {
  --ink: #102d3a;
  --ink-soft: #355564;
  --paper: #fffdf7;
  --paper-warm: #f8f1e4;
  --paper-blue: #e9f4f4;
  --sea: #176b83;
  --sea-dark: #12384a;
  --sky: #8cc6d7;
  --coral: #db5d3e;
  --coral-dark: #a63f2a;
  --gold: #e6ae45;
  --green: #4f745d;
  --line: rgba(16, 45, 58, 0.13);
  --shadow-sm: 0 12px 32px rgba(27, 57, 66, 0.09);
  --shadow-md: 0 24px 60px rgba(27, 57, 66, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --content-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 6%, rgba(230, 174, 69, 0.12), transparent 26rem),
    linear-gradient(180deg, #fffdf8 0%, #f8f2e8 50%, #fffdf8 100%);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic",
    "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(16, 45, 58, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 45, 58, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--coral-dark) !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 8px 13px;
  border-radius: 8px;
  background: var(--paper);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 10px max(22px, calc((100vw - var(--content-width)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(18, 56, 74, 0.94);
  box-shadow: 0 8px 24px rgba(12, 38, 49, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--sea-dark);
  background: var(--paper);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand strong {
  font-size: 13px;
  letter-spacing: 0.13em;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.brand .site-version {
  width: max-content;
  margin: 3px 0 0;
  padding: 1px 5px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  line-height: 1.35;
  vertical-align: 1px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.desktop-nav a {
  padding: 7px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.private-badge {
  justify-self: end;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.publish-lock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(9, 40, 53, 0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.publish-lock:hover {
  background: var(--sea-dark);
}

.publish-lock button {
  padding: 9px 14px;
  border: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  width: min(100% - 32px, 1380px);
  min-height: min(72vh, 720px);
  margin: 20px auto 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--sea-dark);
  box-shadow: var(--shadow-md);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 31, 42, 0.88) 0%, rgba(7, 31, 42, 0.64) 34%, transparent 68%),
    linear-gradient(0deg, rgba(7, 31, 42, 0.52), transparent 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(650px, 70%);
  min-height: min(72vh, 720px);
  padding: clamp(42px, 7vw, 92px);
}

.eyebrow,
.section-kicker,
.status-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: #f6c45e;
}

.hero h1 {
  max-width: 620px;
  margin: 14px 0 12px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-wrap: balance;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.18);
}

.hero-date {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 650;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.hero-status span,
.hero-map-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 32, 43, 0.42);
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.hero-map-link {
  border-color: rgba(246, 196, 94, 0.64);
  color: #183847;
  background: #f6c45e;
  text-decoration: none;
}

.hero-map-link:hover,
.hero-map-link:focus-visible {
  color: var(--sea-dark);
  background: #fff3cf;
}

.route-ribbon {
  display: flex;
  width: min(100% - 40px, var(--content-width));
  margin: -20px auto 0;
  padding: 18px 24px;
  position: relative;
  z-index: 3;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow-sm);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  backdrop-filter: blur(18px);
}

.route-ribbon::-webkit-scrollbar {
  display: none;
}

.route-ribbon span {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
}

.route-ribbon b {
  color: var(--coral);
  font-size: 12px;
}

.route-ribbon-link {
  flex: 0 0 auto;
  min-height: 40px;
  margin-left: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--sea-dark);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

.route-ribbon-link:hover,
.route-ribbon-link:focus-visible {
  color: var(--sea-dark);
  background: #f6c45e;
}

.status-band {
  display: grid;
  width: min(100% - 40px, var(--content-width));
  margin: 34px auto 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.status-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: var(--shadow-sm);
}

.status-card-hot {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #d35234, #a63f2a);
}

.status-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--sea-dark);
  background: var(--paper-blue);
  font-size: 19px;
  font-weight: 850;
}

.status-card-hot .status-icon {
  color: #8e331f;
  background: #fff3d9;
}

.status-kicker {
  color: var(--coral);
  font-size: 9px;
}

.status-card-hot .status-kicker {
  color: #ffd98b;
}

.status-card h2 {
  margin: 3px 0 7px;
  font-size: 18px;
  line-height: 1.35;
}

.status-card p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.status-card-hot p:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.status-card-guide {
  grid-column: 1 / -1;
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 217, 133, 0.22), transparent 30%),
    linear-gradient(135deg, #174f60, #103440);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.status-card-guide:hover,
.status-card-guide:focus-visible {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.status-card-guide .status-icon {
  color: #6f421d;
  background: #ffe1a2;
}

.status-card-guide .status-kicker {
  color: #ffd985;
}

.status-card-guide p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.section-shell {
  width: min(100% - 40px, var(--content-width));
  margin-inline: auto;
}

.itinerary-section,
.checklist-section {
  padding-top: 108px;
  padding-bottom: 20px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--coral);
}

.section-heading h2,
.weather-copy h2,
.source-inner h2 {
  margin: 7px 0 9px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.section-heading p:last-child,
.weather-copy > p,
.source-note {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.day-switcher {
  display: flex;
  max-width: 100%;
  gap: 6px;
  overflow-x: auto;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

.day-switcher::-webkit-scrollbar {
  display: none;
}

.day-switcher button {
  flex: 0 0 auto;
  padding: 7px 13px;
  border: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.day-switcher button[aria-selected="true"] {
  color: #fff;
  background: var(--sea-dark);
  box-shadow: 0 5px 14px rgba(18, 56, 74, 0.2);
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.day-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.day-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.day-card:first-child,
.day-card:nth-child(4) {
  grid-column: span 2;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
}

.day-card:first-child .day-visual,
.day-card:nth-child(4) .day-visual {
  height: 100%;
  min-height: 380px;
}

.day-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--paper-blue);
}

.day-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.day-card:hover .day-visual img {
  transform: scale(1.018);
}

.day-number {
  position: absolute;
  top: 17px;
  left: 17px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  color: #fff;
  background: rgba(12, 48, 63, 0.74);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  backdrop-filter: blur(10px);
}

.day-number strong {
  display: block;
  font-size: 21px;
}

.day-guide-panel {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.day-guide-label {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  background: rgba(12, 48, 63, 0.82);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  font-size: 11px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.day-guide-label > span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 7px;
  color: var(--sea-dark);
  background: #fff;
  font-size: 13px;
}

.day-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.day-guide-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: var(--sea-dark);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.day-guide-actions a:hover,
.day-guide-actions a:focus-visible {
  background: #ffe7aa;
  transform: translateY(-1px);
}

.day-body {
  padding: clamp(22px, 3vw, 34px);
}

.day-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.day-date {
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.day-body h3 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.32;
}

.weather-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.weather-chip {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  min-width: 150px;
  padding: 9px 11px;
  border: 1px solid rgba(23, 107, 131, 0.14);
  border-radius: 13px;
  background: var(--paper-blue);
}

.weather-symbol {
  grid-row: span 2;
  font-size: 21px;
  line-height: 1;
}

.weather-chip strong {
  font-size: 11px;
  line-height: 1.3;
}

.weather-chip span:last-child {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.3;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 10px;
  min-height: 42px;
  padding: 8px 0 8px 17px;
  border-left: 1px solid rgba(23, 107, 131, 0.3);
}

.timeline li::before {
  position: absolute;
  top: 15px;
  left: -5px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 0 1px var(--sea);
  content: "";
}

.timeline li:last-child {
  border-left-color: transparent;
}

.timeline time {
  color: var(--ink-soft);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
}

.timeline span {
  min-width: 0;
  font-size: 14px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.timeline .timeline-highlight span {
  width: fit-content;
  padding: 1px 6px;
  border-radius: 5px;
  background: rgba(230, 174, 69, 0.2);
}

.timeline .timeline-flight::before {
  background: var(--coral);
  box-shadow: 0 0 0 1px var(--coral);
}

.day-notes {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.day-note {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink-soft);
  background: rgba(79, 116, 93, 0.08);
  font-size: 12px;
}

.day-note span:last-child,
.stay-link-copy {
  min-width: 0;
  overflow-wrap: anywhere;
}

.day-note-warning {
  background: rgba(219, 93, 62, 0.08);
}

.stay-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 18px 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}

.stay-icon {
  flex: 0 0 auto;
  padding-top: 10px;
}

.stay-link {
  display: flex;
  min-width: 0;
  min-height: 56px;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -8px -10px -8px 0;
  padding: 8px 10px;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.stay-link:hover,
.stay-link:focus-visible {
  color: var(--sea-dark);
  background: var(--paper-blue);
}

.stay-link:focus-visible {
  outline: 3px solid rgba(23, 107, 131, 0.28);
  outline-offset: 2px;
}

.stay-link-copy,
.stay-address {
  display: block;
}

.stay-address {
  margin-top: 3px;
}

.stay-link-cta {
  display: inline-flex;
  min-height: 32px;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--sea-dark);
  background: rgba(23, 107, 131, 0.1);
  font-size: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.stay-line strong {
  color: var(--ink);
}

.event-section {
  padding-top: 92px;
  padding-bottom: 0;
}

.event-section .section-heading {
  align-items: center;
}

.event-checked {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(23, 107, 131, 0.18);
  border-radius: 999px;
  color: var(--sea-dark);
  background: var(--paper-blue);
  font-size: 11px;
  font-weight: 800;
}

.event-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: 820px;
}

.event-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: 23px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow-sm);
}

.event-card::before {
  position: absolute;
  top: -34px;
  right: -30px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: rgba(140, 198, 215, 0.14);
  content: "";
}

.event-card-featured {
  border-color: rgba(230, 174, 69, 0.42);
  background: linear-gradient(160deg, #fffdf7, #fff8df);
}

.event-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 850;
}

.event-status {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.event-status-live {
  color: #28583d;
  background: #def0e3;
}

.event-place {
  margin: 17px 0 5px;
  color: var(--coral-dark);
  font-size: 11px;
  font-weight: 800;
}

.event-card h3 {
  margin: 0 0 10px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  line-height: 1.35;
}

.event-card > p:not(.event-place, .event-family-note) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.event-family-note {
  margin: 16px 0;
  padding: 13px 14px;
  border-left: 3px solid var(--gold);
  border-radius: 0 11px 11px 0;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-soft);
  font-size: 13px;
}

.event-family-note strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 11px;
}

.event-card > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  color: var(--sea);
  font-size: 12px;
  font-weight: 850;
}

.event-card > a:hover,
.event-card > a:focus-visible {
  color: var(--coral-dark);
}

.event-caution {
  margin: 15px 2px 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.weather-section {
  margin-top: 110px;
  padding: 76px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(140, 198, 215, 0.28), transparent 24rem),
    linear-gradient(130deg, #0f3446, #176b83);
}

.weather-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: 60px;
  align-items: center;
}

.section-kicker-light {
  color: #f6c45e;
}

.weather-copy h2 {
  color: #fff;
}

.weather-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.weather-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.button-light {
  color: var(--sea-dark);
  background: #fff;
}

.button-quiet {
  border-color: var(--line);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.56);
}

.weather-updated {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.weather-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

.weather-region-card {
  min-height: 244px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.weather-region-card h3 {
  margin: 2px 0 18px;
  font-size: 16px;
}

.weather-region-card > span {
  color: #f6c45e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.weather-days {
  display: grid;
  gap: 8px;
}

.weather-day {
  display: grid;
  grid-template-columns: 32px 24px 1fr;
  gap: 5px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.weather-day:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.weather-day b {
  font-size: 12px;
}

.weather-day small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
}

.illustration-section {
  margin-top: 110px;
  padding: 84px 0 92px;
  background: var(--paper-blue);
}

.illustration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

.illustration-grid figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--sea-dark);
  box-shadow: var(--shadow-sm);
}

.illustration-grid figure > a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.illustration-grid figure > a:focus-visible {
  outline: 3px solid #f1b543;
  outline-offset: -5px;
}

.illustration-grid img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.illustration-grid figure:hover img {
  transform: scale(1.025);
}

.illustration-grid figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 14px;
  color: #fff;
  background: rgba(8, 35, 47, 0.68);
  backdrop-filter: blur(12px);
}

.illustration-grid figcaption strong,
.illustration-grid figcaption span {
  display: block;
}

.illustration-grid figcaption strong {
  font-size: 17px;
}

.illustration-grid figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.illustration-grid figcaption .guide-card-cta {
  margin-top: 9px;
  color: #ffe09a;
  font-size: 10px;
  font-weight: 850;
}

.checklist-progress {
  height: 9px;
  margin: -10px 0 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 45, 58, 0.09);
}

.checklist-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sea), var(--green));
  transition: width 250ms ease;
}

.checklist-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.checklist-group {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 247, 0.84);
  box-shadow: var(--shadow-sm);
}

.checklist-group h3 {
  margin: 0 0 13px;
  font-size: 16px;
}

.checklist-list {
  display: grid;
  gap: 9px;
}

.checklist-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: 12px;
  line-height: 1.55;
}

.checklist-item span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.checklist-item:last-child {
  border-bottom: 0;
}

.checklist-item input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--sea);
}

.checklist-item:has(input:checked) span {
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(16, 45, 58, 0.3);
}

.source-section {
  margin-top: 100px;
  padding: 48px 0 110px;
  color: #fff;
  background: var(--sea-dark);
}

.source-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 20px 50px;
  align-items: center;
}

.source-inner h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: 30px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.source-links a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
}

.source-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.source-note {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.mobile-nav {
  display: none;
}

.noscript {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  color: #fff;
  background: #8b2e20;
  text-align: center;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: calc(86px + env(safe-area-inset-top));
  }

  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-top: max(10px, env(safe-area-inset-top));
    padding-right: max(22px, env(safe-area-inset-right));
    padding-left: max(22px, env(safe-area-inset-left));
  }

  .desktop-nav {
    display: none;
  }

  .brand {
    min-height: 44px;
  }

  .private-badge {
    grid-column: 2;
  }

  .hero {
    width: auto;
    min-height: 650px;
    margin-right: max(16px, env(safe-area-inset-right));
    margin-left: max(16px, env(safe-area-inset-left));
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(7, 31, 42, 0.88) 0%, rgba(7, 31, 42, 0.55) 56%, rgba(7, 31, 42, 0.08) 100%);
  }

  .hero-content {
    justify-content: flex-end;
    width: 100%;
    min-height: 650px;
  }

  .status-band {
    grid-template-columns: 1fr;
  }

  .route-ribbon,
  .status-band,
  .section-shell {
    width: auto;
    margin-right: max(20px, env(safe-area-inset-right));
    margin-left: max(20px, env(safe-area-inset-left));
  }

  .status-card {
    min-height: 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .day-switcher {
    width: 100%;
  }

  .day-switcher button {
    min-height: 44px;
    padding-inline: 15px;
  }

  .day-card:first-child,
  .day-card:nth-child(4) {
    grid-template-columns: 1fr;
  }

  .day-card:first-child .day-visual,
  .day-card:nth-child(4) .day-visual {
    min-height: 300px;
  }

  .weather-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .illustration-grid figure:first-child {
    grid-column: span 2;
  }

  .checklist-groups {
    grid-template-columns: 1fr 1fr;
  }

  .checklist-item,
  .source-links a,
  .publish-lock button {
    min-height: 44px;
  }

  .checklist-item {
    align-items: center;
  }

  .checklist-item input {
    margin-top: 0;
  }

  .source-links a {
    display: inline-flex;
    align-items: center;
  }

  .mobile-nav {
    position: fixed;
    right: auto;
    bottom: calc(9px + env(safe-area-inset-bottom));
    left: 50%;
    z-index: 50;
    display: grid;
    width: calc(100% - 20px);
    max-width: 520px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    background: rgba(18, 56, 74, 0.94);
    box-shadow: 0 12px 34px rgba(9, 31, 40, 0.3);
    transform: translateX(-50%);
    backdrop-filter: blur(16px);
  }

  .mobile-nav a {
    display: grid;
    min-height: 44px;
    gap: 2px;
    place-items: center;
    padding: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 750;
    text-decoration: none;
  }

  .mobile-nav span {
    font-size: 16px;
    line-height: 1;
  }

  .publish-lock {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(86px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: calc(76px + env(safe-area-inset-top));
  }

  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
    font-size: 15px;
  }

  .site-header {
    min-height: 62px;
    padding:
      max(8px, env(safe-area-inset-top))
      max(16px, env(safe-area-inset-right))
      8px
      max(16px, env(safe-area-inset-left));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 11px;
  }

  .private-badge {
    font-size: 8px;
  }

  .hero {
    width: auto;
    min-height: clamp(480px, calc(100svh - 220px), 540px);
    margin-right: max(10px, env(safe-area-inset-right));
    margin-left: max(10px, env(safe-area-inset-left));
    margin-top: 10px;
    border-radius: 24px;
  }

  .hero-image {
    bottom: auto;
    height: auto;
    aspect-ratio: 1800 / 1013;
    object-fit: cover;
    object-position: center;
  }

  .hero-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(7, 31, 42, 0.04) 0%,
        rgba(7, 31, 42, 0.12) 30%,
        rgba(7, 31, 42, 0.9) 52%,
        rgba(7, 31, 42, 0.98) 100%
      );
  }

  .hero-content {
    min-height: clamp(480px, calc(100svh - 220px), 540px);
    padding: 28px 22px 26px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.08;
  }

  .hero-date {
    font-size: 14px;
  }

  .route-ribbon,
  .status-band,
  .section-shell {
    width: auto;
    margin-right: max(14px, env(safe-area-inset-right));
    margin-left: max(14px, env(safe-area-inset-left));
  }

  .route-ribbon {
    justify-content: start;
    margin-top: -15px;
    padding: 14px 17px;
  }

  .status-band {
    margin-top: 24px;
  }

  .status-card {
    grid-template-columns: 40px 1fr;
    padding: 17px;
  }

  .status-icon {
    width: 38px;
    height: 38px;
  }

  .itinerary-section,
  .event-section,
  .checklist-section {
    padding-top: 76px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .weather-copy h2 {
    font-size: 31px;
  }

  .day-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-card {
    padding: 20px 18px;
  }

  .day-card:first-child,
  .day-card:nth-child(4) {
    grid-column: auto;
  }

  .day-visual,
  .day-card:first-child .day-visual,
  .day-card:nth-child(4) .day-visual {
    min-height: 240px;
  }

  .day-guide-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
    gap: 6px;
  }

  .day-guide-label {
    min-height: 36px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .day-guide-actions {
    gap: 6px;
  }

  .day-guide-actions a {
    min-height: 48px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .day-body {
    padding: 22px 18px 24px;
  }

  .day-body h3 {
    font-size: 23px;
  }

  .stay-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .weather-chip {
    min-width: 0;
    flex: 1 1 130px;
  }

  .weather-section {
    margin-top: 76px;
    padding: 62px 0;
  }

  .weather-overview {
    display: flex;
    gap: 12px;
    padding-bottom: 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .weather-overview::-webkit-scrollbar {
    display: none;
  }

  .weather-region-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .illustration-section {
    margin-top: 76px;
    padding: 62px 0;
  }

  .illustration-grid {
    display: flex;
    gap: 12px;
    padding-bottom: 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .illustration-grid figure,
  .illustration-grid figure:first-child {
    flex: 0 0 90%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    grid-column: auto;
    scroll-snap-align: start;
  }

  .illustration-grid img {
    height: 100%;
    min-height: 0;
  }

  .checklist-groups {
    grid-template-columns: 1fr;
  }

  .source-section {
    margin-top: 70px;
    padding-bottom: 50px;
  }

  .source-inner {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 980px) and (orientation: landscape) and (max-height: 560px) {
  .hero,
  .hero-content {
    min-height: clamp(210px, calc(100svh - 164px), 250px);
  }

  .hero-image {
    inset: 0 0 0 auto;
    width: 70%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: right center;
  }

  .hero-scrim {
    background:
      linear-gradient(
        90deg,
        rgba(7, 31, 42, 1) 0%,
        rgba(7, 31, 42, 0.98) 42%,
        rgba(7, 31, 42, 0.72) 52%,
        rgba(7, 31, 42, 0.04) 70%
      );
  }

  .hero-content {
    width: 48%;
    padding: 14px 22px;
  }

  .hero h1 {
    margin: 6px 0;
    font-size: clamp(27px, 4.6vw, 36px);
    line-height: 1.05;
  }

  .hero-date {
    font-size: 12px;
  }

  .hero-status {
    gap: 6px;
    margin-top: 10px;
  }

  .hero-status span,
  .hero-map-link {
    min-height: 32px;
    padding: 5px 8px;
    font-size: 10px;
  }
}

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

@media print {
  body {
    background: #fff;
  }

  .site-header,
  .mobile-nav,
  .day-switcher,
  .day-guide-panel,
  .weather-actions,
  .button,
  .checklist-reset {
    display: none !important;
  }

  .hero {
    min-height: 420px;
    break-after: page;
  }

  .hero-content {
    min-height: 420px;
  }

  .day-grid {
    display: block;
  }

  .day-card {
    margin-bottom: 16px;
    break-inside: avoid;
  }
}
