:root {
  --ink: #211b15;
  --paper: #eadcc5;
  --parchment: #f3e8d1;
  --navy: #1f2b2b;
  --gold: #b07a35;
  --olive: #596844;
  --coral: #b8563a;
  --rose: #a94b61;
  --violet: #6c5370;
  --line: rgba(72, 54, 33, 0.24);
  --shadow: 0 18px 48px rgba(45, 31, 18, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(176, 122, 53, 0.11), transparent 28%),
    linear-gradient(90deg, rgba(72, 54, 33, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(72, 54, 33, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 42px 42px, 42px 42px, auto;
  color: var(--ink);
  font-family:
    "Hiragino Sans",
    "Yu Gothic",
    "Noto Sans JP",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  letter-spacing: 0;
}

.site-grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(67, 43, 20, 0.22) 0 1px, transparent 1.2px),
    radial-gradient(circle at 78% 64%, rgba(255, 248, 220, 0.28) 0 1px, transparent 1.2px),
    linear-gradient(90deg, transparent 0 48%, rgba(70, 43, 19, 0.08) 49% 51%, transparent 52% 100%);
  background-size: 19px 19px, 31px 31px, 7px 100%;
}

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

button {
  font: inherit;
}

.hero {
  min-height: 94vh;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px max(24px, calc((100vw - 1280px) / 2));
  color: #fff0d2;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(204, 95, 76, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(30, 25, 19, 0.88), rgba(48, 38, 25, 0.46) 54%, rgba(30, 25, 19, 0.28)),
    linear-gradient(180deg, rgba(41, 28, 17, 0.16), rgba(33, 27, 18, 0.86)),
    url("./assets/honeymoon-hero.png") center / cover;
  filter: sepia(0.18) saturate(0.88) contrast(1.04);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 180px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--paper) 82%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(234, 220, 197, 0.08), transparent 11%, transparent 89%, rgba(64, 39, 19, 0.14)),
    radial-gradient(ellipse at center, transparent 52%, rgba(29, 21, 14, 0.24));
  pointer-events: none;
}

.masthead,
.hero-copy,
.hero-meta {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 240, 210, 0.3);
  padding-bottom: 20px;
  text-transform: uppercase;
}

.mark {
  font-family: "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
}

.nav-links a {
  opacity: 0.86;
}

.hero-copy {
  align-self: center;
  padding: 86px 0 120px;
}

.eyebrow {
  margin: 0 0 16px;
  color: currentColor;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 82px;
  line-height: 0.98;
  text-wrap: balance;
}

.dates {
  width: fit-content;
  margin: 30px 0 18px;
  border-block: 1px solid rgba(255, 240, 210, 0.38);
  padding: 13px 0;
  font-size: 18px;
  font-weight: 700;
}

.lead {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 240, 210, 0.92);
  font-size: 18px;
  line-height: 1.9;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: end;
  border: 1px solid rgba(255, 240, 210, 0.26);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 240, 210, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-meta div {
  display: grid;
  gap: 8px;
  min-height: 100px;
  align-content: center;
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(39, 48, 43, 0.72), rgba(50, 38, 26, 0.54)),
    rgba(31, 43, 43, 0.58);
}

.hero-meta span,
.route-date,
.place,
.highlights p {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-meta strong {
  font-family: "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 28px;
}

main {
  overflow: hidden;
}

.route-band,
.schedule-band,
.notes-band {
  padding-inline: max(24px, calc((100vw - 1280px) / 2));
}

.route-band {
  padding-top: 88px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 100% 10%, rgba(176, 122, 53, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(72, 54, 33, 0.08), transparent 30%),
    var(--paper);
}

.section-head {
  width: min(100%, 1280px);
  margin: 0 auto 42px;
}

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

h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 48px;
  line-height: 1.12;
}

.route-line {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.route-line li {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: 170px;
  border-top: 1px solid var(--line);
  padding: 34px 28px 24px 0;
}

.route-line li::before {
  position: absolute;
  top: -9px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 3px double var(--paper);
  border-radius: 50%;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--line);
}

.route-line li:nth-child(2)::before {
  background: var(--coral);
}

.route-line li:nth-child(3)::before {
  background: var(--olive);
}

.route-line li:nth-child(4)::before {
  background: var(--violet);
}

.route-line li:nth-child(5)::before {
  background: var(--navy);
}

.route-date {
  color: var(--coral);
}

.route-line strong {
  color: var(--navy);
  font-family: "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 34px;
}

.route-stop {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.map-link {
  width: fit-content;
  border: 1px solid rgba(20, 35, 61, 0.24);
  border-radius: 3px;
  padding: 6px 10px;
  color: var(--navy);
  background: rgba(255, 244, 222, 0.58);
  font-size: 12px;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.map-link:hover,
.map-link:focus-visible {
  border-color: rgba(20, 35, 61, 0.5);
  background: #fff0d2;
  transform: translateY(-1px);
}

.route-line small {
  font-size: 15px;
}

.schedule-band {
  padding-top: 92px;
  padding-bottom: 102px;
  color: #fff0d2;
  background:
    radial-gradient(circle at 0 0, rgba(176, 122, 53, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(255, 240, 210, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 240, 210, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #1d2522, #30372d 54%, #4a3524);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.schedule-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.schedule-band h2 {
  color: #fff0d2;
}

.time-note {
  margin: 12px 0 0;
  color: rgba(255, 240, 210, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid rgba(255, 240, 210, 0.22);
  border-radius: 4px;
  padding: 6px;
  background: rgba(255, 240, 210, 0.07);
}

.filter {
  min-width: 78px;
  min-height: 42px;
  border: 0;
  border-radius: 3px;
  color: #fff0d2;
  cursor: pointer;
  background: transparent;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.filter:hover,
.filter:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 240, 210, 0.13);
}

.filter.is-active {
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 18%, rgba(176, 122, 53, 0.14) 0 1px, transparent 1.2px),
    #fff0d2;
  box-shadow: inset 0 0 0 1px rgba(72, 54, 33, 0.12);
}

.itinerary {
  width: min(100%, 1280px);
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.day-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 130px;
  align-items: stretch;
  min-height: 188px;
  border: 1px solid rgba(255, 240, 210, 0.18);
  border-radius: 4px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 240, 210, 0.1), rgba(255, 240, 210, 0.035)),
    rgba(31, 38, 34, 0.38);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    border-color 200ms ease;
}

.day-card:hover {
  border-color: rgba(255, 240, 210, 0.42);
  transform: translateY(-2px);
}

.day-card.is-hidden {
  display: none;
}

.day {
  display: grid;
  align-content: space-between;
  border-right: 1px solid rgba(255, 240, 210, 0.16);
  padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(255, 240, 210, 0.12), rgba(255, 240, 210, 0.055)),
    rgba(53, 58, 50, 0.45);
}

.day span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.day strong {
  font-family: "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.day-body {
  align-self: center;
  padding: 28px 34px;
}

.place {
  margin: 0 0 12px;
  color: #f2c27d;
}

.day-body h3 {
  margin: 0 0 10px;
  font-family: "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 32px;
  line-height: 1.25;
}

.day-body p:last-child,
.day-summary {
  margin: 0;
  color: rgba(255, 240, 210, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

.flight-plan {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.flight-leg {
  display: grid;
  grid-template-columns: 108px minmax(110px, 0.42fr) minmax(220px, 1fr);
  align-items: center;
  gap: 10px 18px;
  border: 1px solid rgba(255, 240, 210, 0.18);
  border-radius: 3px;
  padding: 13px 15px;
  background:
    linear-gradient(90deg, rgba(176, 122, 53, 0.12), transparent 52%),
    rgba(255, 240, 210, 0.07);
}

.flight-leg time {
  color: #f2c27d;
  font-size: 13px;
  font-weight: 800;
}

.flight-leg strong {
  color: #fff0d2;
  font-family: "Times New Roman", serif;
  font-size: 23px;
}

.flight-leg strong a,
.flight-connection a {
  border-bottom: 1px solid currentColor;
  color: inherit;
  text-underline-offset: 4px;
}

.flight-leg strong a:hover,
.flight-leg strong a:focus-visible,
.flight-connection a:hover,
.flight-connection a:focus-visible {
  color: #f2c27d;
}

.flight-leg span,
.flight-connection {
  color: rgba(255, 240, 210, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.flight-connection {
  width: fit-content;
  border-left: 2px solid #f2c27d;
  margin-left: 16px;
  padding: 3px 0 3px 13px;
}

.flight-connection.is-alert {
  border-left-color: #ffb19a;
  color: #ffd6c8;
}

.hotel-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(260px, 1fr);
  gap: 0;
  margin-top: 18px;
  border: 1px solid rgba(255, 240, 210, 0.2);
  border-radius: 4px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(176, 122, 53, 0.14), rgba(255, 240, 210, 0.035)),
    rgba(255, 240, 210, 0.06);
}

.hotel-card img {
  width: 100%;
  height: 100%;
  min-height: 236px;
  object-fit: cover;
  filter: sepia(0.22) saturate(0.82) contrast(1.04);
}

.hotel-card-body {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 22px;
}

.hotel-kicker {
  margin: 0;
  color: #f2c27d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hotel-card h4 {
  margin: 0;
  color: #fff0d2;
  font-family: "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 29px;
  line-height: 1.12;
}

.hotel-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.hotel-card dl div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
}

.hotel-card dt {
  color: rgba(255, 240, 210, 0.56);
  font-size: 12px;
  font-weight: 800;
}

.hotel-card dd {
  margin: 0;
  color: rgba(255, 240, 210, 0.84);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.hotel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-links a {
  border: 1px solid rgba(255, 240, 210, 0.3);
  border-radius: 3px;
  padding: 8px 12px;
  color: #fff0d2;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hotel-links a:hover,
.hotel-links a:focus-visible {
  color: var(--navy);
  background: #fff0d2;
  transform: translateY(-1px);
}

.stay-note {
  display: grid;
  gap: 9px;
  margin-top: 18px;
  border: 1px solid rgba(255, 240, 210, 0.2);
  border-radius: 4px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(176, 122, 53, 0.14), rgba(255, 240, 210, 0.035)),
    rgba(255, 240, 210, 0.06);
}

.stay-note span {
  color: #f2c27d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.stay-note strong {
  color: #fff0d2;
  font-family: "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 22px;
}

.stay-note p {
  margin: 0;
  color: rgba(255, 240, 210, 0.8);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.spot-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid rgba(255, 240, 210, 0.2);
  border-radius: 4px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(176, 122, 53, 0.14), rgba(255, 240, 210, 0.035)),
    rgba(255, 240, 210, 0.06);
}

.spot-list > span {
  color: #f2c27d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.spot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spot-links a {
  border: 1px solid rgba(255, 240, 210, 0.3);
  border-radius: 3px;
  padding: 8px 12px;
  color: #fff0d2;
  font-size: 12px;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.spot-links a:hover,
.spot-links a:focus-visible {
  color: var(--navy);
  background: #fff0d2;
  transform: translateY(-1px);
}

.travel {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border-left: 1px solid rgba(255, 240, 210, 0.16);
  color: #fff0d2;
  background:
    linear-gradient(180deg, rgba(21, 28, 25, 0.18), rgba(67, 45, 27, 0.22)),
    rgba(9, 16, 27, 0.22);
}

.travel span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 240, 210, 0.32);
  border-radius: 50%;
  color: #f2c27d;
  font-size: 24px;
}

.travel b {
  font-size: 13px;
  text-transform: uppercase;
}

.accent-red .day strong {
  color: #d87955;
}

.accent-ochre .day strong {
  color: #d9a551;
}

.accent-green .day strong {
  color: #a8bf85;
}

.accent-violet .day strong {
  color: #b9a0c6;
}

.accent-pink .day strong {
  color: #cf7f94;
}

.notes-band {
  padding-top: 96px;
  padding-bottom: 112px;
  background:
    radial-gradient(circle at 96% 8%, rgba(176, 122, 53, 0.11), transparent 30%),
    linear-gradient(90deg, rgba(72, 54, 33, 0.08), transparent 32%),
    var(--parchment);
}

.highlights {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.highlights article {
  min-height: 290px;
  border-right: 1px solid var(--line);
  padding: 38px 34px 24px 0;
}

.highlights article + article {
  padding-left: 34px;
}

.highlights p {
  margin: 0 0 54px;
  color: var(--coral);
}

.highlights h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: "Times New Roman", "Hiragino Mincho ProN", serif;
  font-size: 42px;
}

.highlights span {
  display: block;
  max-width: 320px;
  font-size: 17px;
  line-height: 1.9;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - 1280px) / 2));
  color: #fff0d2;
  background:
    linear-gradient(90deg, #1a221f, #32281d);
}

footer p {
  margin: 0;
  font-family: "Times New Roman", serif;
  font-size: 24px;
}

footer a {
  border-bottom: 1px solid rgba(255, 240, 210, 0.44);
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-copy {
    padding: 72px 0 64px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-meta,
  .route-line,
  .highlights {
    grid-template-columns: 1fr;
  }

  .route-line li {
    min-height: 0;
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 0 0 38px 28px;
  }

  .route-line li::before {
    top: 0;
    left: -9px;
  }

  .schedule-head {
    align-items: start;
    flex-direction: column;
  }

  .day-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .flight-leg {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .flight-leg span {
    grid-column: 1 / -1;
  }

  .hotel-card {
    grid-template-columns: 1fr;
  }

  .hotel-card img {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .travel {
    grid-column: 1 / -1;
    grid-template-columns: auto auto;
    min-height: 72px;
    border-top: 1px solid rgba(255, 248, 239, 0.12);
    border-left: 0;
  }

  .highlights article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
  }

  .highlights article + article {
    padding-left: 0;
  }

  .highlights p {
    margin-bottom: 22px;
  }
}

@media (max-width: 620px) {
  .masthead {
    align-items: start;
    flex-direction: column;
  }

  .nav-links {
    gap: 16px;
  }

  .hero {
    min-height: 92vh;
    padding-inline: 18px;
    background-position: 58% center;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 1.08;
  }

  .dates,
  .lead {
    font-size: 15px;
  }

  .hero-meta div {
    min-height: 84px;
    padding: 18px;
  }

  .hero-meta strong,
  .route-line strong {
    font-size: 27px;
  }

  .route-band,
  .schedule-band,
  .notes-band {
    padding-inline: 18px;
  }

  .route-band,
  .schedule-band,
  .notes-band {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  h2 {
    font-size: 36px;
  }

  .filters {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter {
    min-width: 0;
  }

  .day-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .day {
    grid-template-columns: auto auto;
    gap: 18px;
    align-items: baseline;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 239, 0.12);
    padding: 20px;
  }

  .day-body {
    padding: 24px 20px;
  }

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

  .flight-leg {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px;
  }

  .flight-leg span {
    grid-column: auto;
  }

  .flight-connection {
    margin-left: 10px;
  }

  .hotel-card-body {
    padding: 18px;
  }

  .hotel-card dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .travel {
    grid-column: auto;
  }

  .highlights h3 {
    font-size: 34px;
  }

footer {
  align-items: start;
  flex-direction: column;
  padding-inline: 18px;
  }
}

/* Playful artist-site mood inspired by the reference: bold blue, candy pink, and sticker-like travel cards. */
:root {
  --ink: #26386f;
  --paper: #f7b7cf;
  --parchment: #fff3d7;
  --navy: #294f91;
  --gold: #ffd963;
  --olive: #59b879;
  --coral: #ec7198;
  --rose: #f19ab9;
  --violet: #7a6bd6;
  --line: rgba(41, 79, 145, 0.22);
  --shadow: 0 18px 0 rgba(35, 64, 124, 0.22);
}

body {
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 243, 215, 0.6) 0 7px, transparent 8px),
    radial-gradient(circle at 82% 22%, rgba(255, 217, 99, 0.45) 0 10px, transparent 11px),
    radial-gradient(circle at 18% 82%, rgba(89, 184, 121, 0.28) 0 9px, transparent 10px),
    linear-gradient(180deg, #2c5598 0 42%, #f7b7cf 42% 100%);
  color: var(--ink);
}

.site-grain {
  opacity: 0.1;
  mix-blend-mode: normal;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(38, 56, 111, 0.22) 0 1px, transparent 1.4px);
  background-size: 18px 18px, 29px 29px;
}

.hero {
  color: #fff3d7;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 217, 99, 0.18) 0 14px, transparent 15px),
    radial-gradient(circle at 78% 28%, rgba(247, 183, 207, 0.22) 0 18px, transparent 19px),
    linear-gradient(180deg, #2e5598, #284b8d);
  filter: none;
}

.hero::before {
  inset: auto max(24px, calc((100vw - 1280px) / 2)) 96px auto;
  z-index: -1;
  width: min(42vw, 520px);
  aspect-ratio: 1 / 1;
  border: 10px solid #fff3d7;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(41, 79, 145, 0.08), rgba(41, 79, 145, 0.22)),
    url("./assets/honeymoon-hero.png") center / cover;
  box-shadow: 18px 18px 0 rgba(247, 183, 207, 0.72);
  transform: rotate(3deg);
}

.hero::after {
  height: 120px;
  background:
    linear-gradient(180deg, transparent, #2e5598 12%, #f7b7cf 13% 100%);
}

.masthead {
  border-bottom: 2px solid rgba(255, 243, 215, 0.34);
}

.mark {
  color: #fff3d7;
  font-family: "Arial Rounded MT Bold", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 32px;
  font-style: normal;
  text-shadow: 3px 3px 0 #ec7198;
}

.nav-links {
  color: #fff3d7;
  font-weight: 900;
}

.eyebrow {
  color: #ffd963;
}

.hero h1,
h2,
.day-body h3,
.route-line strong,
.highlights h3 {
  font-family: "Arial Rounded MT Bold", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 900;
}

.hero h1 {
  color: #fff3d7;
  max-width: 680px;
  text-shadow: 5px 5px 0 #ec7198;
}

.dates {
  border: 3px solid #fff3d7;
  border-radius: 999px;
  padding: 11px 18px;
  color: #2a4f92;
  background: #ffd963;
  box-shadow: 7px 7px 0 rgba(236, 113, 152, 0.72);
}

.lead {
  color: #fff3d7;
  font-weight: 800;
}

.hero-meta {
  border: 4px solid #fff3d7;
  border-radius: 18px;
  background: #fff3d7;
  box-shadow: 12px 12px 0 rgba(236, 113, 152, 0.76);
  backdrop-filter: none;
}

.hero-meta div {
  background: #fff3d7;
  color: #294f91;
}

.hero-meta div + div {
  border-left: 2px dashed rgba(41, 79, 145, 0.28);
}

.hero-meta strong {
  color: #ec7198;
  font-family: "Arial Rounded MT Bold", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
}

.route-band {
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 217, 99, 0.52) 0 14px, transparent 15px),
    radial-gradient(circle at 88% 72%, rgba(89, 184, 121, 0.22) 0 18px, transparent 19px),
    #f7b7cf;
}

.section-head .eyebrow,
.route-date,
.highlights p {
  color: #294f91;
}

h2 {
  color: #294f91;
  text-shadow: 4px 4px 0 rgba(255, 243, 215, 0.86);
}

.route-line {
  gap: 12px;
}

.route-line li {
  min-height: 190px;
  border: 4px solid #294f91;
  border-radius: 18px;
  padding: 28px 22px;
  background: #fff3d7;
  box-shadow: 8px 8px 0 rgba(41, 79, 145, 0.2);
}

.route-line li::before {
  top: -14px;
  left: 20px;
  width: 22px;
  height: 22px;
  border: 4px solid #fff3d7;
  background: #ffd963;
}

.route-line li:nth-child(2)::before {
  background: #ec7198;
}

.route-line li:nth-child(3)::before {
  background: #59b879;
}

.route-line li:nth-child(4)::before {
  background: #7a6bd6;
}

.route-line li:nth-child(5)::before {
  background: #294f91;
}

.route-line strong {
  color: #294f91;
}

.map-link {
  border: 3px solid #294f91;
  border-radius: 999px;
  color: #294f91;
  background: #ffd963;
}

.schedule-band {
  color: #294f91;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 243, 215, 0.42) 0 7px, transparent 8px),
    radial-gradient(circle at 82% 30%, rgba(247, 183, 207, 0.35) 0 12px, transparent 13px),
    #294f91;
}

.schedule-band h2 {
  color: #f7b7cf;
  text-shadow: 4px 4px 0 rgba(255, 243, 215, 0.94);
}

.time-note {
  color: #fff3d7;
}

.filters {
  border: 3px solid #fff3d7;
  border-radius: 18px;
  background: rgba(255, 243, 215, 0.08);
}

.filter {
  border-radius: 12px;
  color: #fff3d7;
  font-weight: 900;
}

.filter:hover,
.filter:focus-visible {
  background: rgba(255, 243, 215, 0.18);
}

.filter.is-active {
  color: #294f91;
  background: #fff3d7;
  box-shadow: 5px 5px 0 rgba(236, 113, 152, 0.72);
}

.itinerary {
  gap: 20px;
}

.day-card {
  border: 4px solid #fff3d7;
  border-radius: 18px;
  background: #fff3d7;
  box-shadow: 10px 10px 0 rgba(247, 183, 207, 0.65);
}

.day-card:hover {
  border-color: #ffd963;
}

.day {
  border-right: 3px dashed rgba(41, 79, 145, 0.3);
  background: #f7b7cf;
  color: #294f91;
}

.day strong {
  color: #294f91;
  font-family: "Arial Rounded MT Bold", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  text-shadow: 3px 3px 0 #fff3d7;
}

.day-body {
  color: #294f91;
}

.place {
  color: #ec7198;
}

.day-body h3 {
  color: #294f91;
}

.day-body p:last-child,
.day-summary,
.flight-leg span,
.flight-connection,
.hotel-card dd {
  color: rgba(38, 56, 111, 0.82);
}

.flight-leg,
.hotel-card {
  border: 3px solid #294f91;
  border-radius: 16px;
  background: #fffaf0;
}

.flight-leg strong,
.hotel-card h4 {
  color: #294f91;
  font-family: "Arial Rounded MT Bold", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
}

.flight-leg strong a:hover,
.flight-leg strong a:focus-visible,
.flight-connection a:hover,
.flight-connection a:focus-visible {
  color: #ec7198;
}

.flight-leg time,
.hotel-kicker {
  color: #ec7198;
}

.flight-connection {
  border-left: 4px solid #ec7198;
}

.flight-connection.is-alert {
  border-left-color: #ffd963;
  color: #a64b71;
}

.hotel-card img {
  filter: saturate(1.05) contrast(1.03);
}

.hotel-card dt {
  color: rgba(41, 79, 145, 0.58);
}

.stay-note {
  border: 3px solid #294f91;
  border-radius: 16px;
  background: #fffaf0;
}

.stay-note span {
  color: #ec7198;
}

.stay-note strong {
  color: #294f91;
  font-family: "Arial Rounded MT Bold", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
}

.stay-note p {
  color: rgba(38, 56, 111, 0.82);
}

.spot-list {
  border: 3px solid #294f91;
  border-radius: 16px;
  background: #fffaf0;
}

.spot-list > span {
  color: #ec7198;
}

.spot-links a {
  border: 3px solid #294f91;
  border-radius: 999px;
  color: #294f91;
  background: #ffd963;
}

.spot-links a:hover,
.spot-links a:focus-visible {
  color: #294f91;
  background: #f7b7cf;
}

.hotel-links a {
  border: 3px solid #294f91;
  border-radius: 999px;
  color: #294f91;
  background: #ffd963;
}

.hotel-links a:hover,
.hotel-links a:focus-visible {
  color: #294f91;
  background: #f7b7cf;
}

.travel {
  border-left: 3px dashed rgba(41, 79, 145, 0.3);
  color: #294f91;
  background: #fff3d7;
}

.travel span {
  border: 3px solid #294f91;
  color: #294f91;
  background: #ffd963;
}

.accent-red .day strong,
.accent-ochre .day strong,
.accent-green .day strong,
.accent-violet .day strong,
.accent-pink .day strong {
  color: #294f91;
}

.notes-band {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 217, 99, 0.5) 0 12px, transparent 13px),
    radial-gradient(circle at 86% 22%, rgba(89, 184, 121, 0.28) 0 15px, transparent 16px),
    #f7b7cf;
}

.highlights {
  gap: 18px;
  border-top: 0;
}

.highlights article {
  min-height: 260px;
  border: 4px solid #294f91;
  border-radius: 18px;
  padding: 28px;
  background: #fff3d7;
  box-shadow: 8px 8px 0 rgba(41, 79, 145, 0.18);
}

.highlights article + article {
  padding-left: 28px;
}

.highlights h3 {
  color: #294f91;
}

footer {
  color: #fff3d7;
  background: #294f91;
}

@media (max-width: 920px) {
  .hero::before {
    right: 24px;
    bottom: 42px;
    width: min(52vw, 280px);
    opacity: 0.42;
  }

  .hero-meta div + div {
    border-top: 2px dashed rgba(41, 79, 145, 0.28);
    border-left: 0;
  }

  .route-line {
    gap: 18px;
  }

  .route-line li {
    border-left: 4px solid #294f91;
    padding: 28px 22px;
  }

  .route-line li::before {
    left: 20px;
  }

  .travel {
    border-top: 3px dashed rgba(41, 79, 145, 0.3);
  }

  .highlights article {
    border-bottom: 4px solid #294f91;
  }
}

@media (max-width: 620px) {
  .hero {
    background-position: center;
  }

  .hero h1 {
    text-shadow: 3px 3px 0 #ec7198;
  }

  .hero::before {
    width: 230px;
    opacity: 0.28;
  }

  .day {
    border-bottom: 3px dashed rgba(41, 79, 145, 0.3);
  }
}
