:root {
  --ink: #132825;
  --forest: #153f3a;
  --forest-deep: #0e302c;
  --paper: #f3efe4;
  --paper-light: #fbf8f0;
  --lime: #e8ff78;
  --coral: #ff7d5c;
  --aqua: #8adaca;
  --blue: #8eb7e8;
  --pink: #efb4ba;
  --sand: #e7cf9b;
  --line: rgba(19, 40, 37, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: var(--paper-light);
  background:
    radial-gradient(circle at 78% 48%, rgba(232, 255, 120, 0.16), transparent 22%),
    linear-gradient(145deg, var(--forest) 0%, var(--forest-deep) 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(243, 239, 228, 0.13);
  border-radius: 50%;
}

.hero::before {
  width: 760px;
  height: 760px;
  right: -270px;
  top: -180px;
}

.hero::after {
  width: 480px;
  height: 480px;
  right: -110px;
  top: 20px;
}

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.wordmark-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--lime);
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
  text-transform: none;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 650;
}

.nav-links a {
  padding-block: 8px;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}

.nav-links a:hover {
  border-color: var(--lime);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(100px, 15vh, 180px);
  padding-bottom: 120px;
}

.eyebrow,
.section-number {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 750;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: var(--coral);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 10.4vw, 150px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.hero h1 em {
  color: var(--lime);
  font-weight: 400;
}

.hero-copy {
  max-width: 520px;
  margin: 42px 0 0;
  color: rgba(251, 248, 240, 0.74);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid rgba(251, 248, 240, 0.25);
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-primary {
  border-color: var(--lime);
  color: var(--forest);
  background: var(--lime);
}

.button-ghost {
  color: var(--paper-light);
  background: transparent;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 52px;
  display: flex;
  width: 180px;
  height: 180px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(251, 248, 240, 0.24);
  border-radius: 50%;
  transform: rotate(-8deg);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero-stamp strong {
  color: var(--coral);
  font-size: 21px;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orbit-one {
  right: 14%;
  top: 24%;
  width: 14px;
  height: 14px;
  background: var(--coral);
  box-shadow: 0 0 38px var(--coral);
}

.hero-orbit-two {
  right: 6%;
  top: 52%;
  width: 9px;
  height: 9px;
  background: var(--lime);
  box-shadow: 0 0 32px var(--lime);
}

.ticker {
  overflow: hidden;
  color: var(--paper-light);
  background: var(--coral);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding-block: 17px;
  animation: ticker 28s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 750;
}

.ticker-track i {
  color: var(--forest);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-heading {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: start;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 760px;
  margin: -12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p:last-child:not(:first-child) {
  grid-column: 2;
  max-width: 570px;
  margin: 24px 0 0;
  color: rgba(19, 40, 37, 0.65);
  font-size: 17px;
  line-height: 1.6;
}

.flight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.flight-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 248, 240, 0.48);
}

.flight-meta,
.stay-top,
.stay-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flight-meta span,
.stay-top span,
.stay-target span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 800;
}

.flight-meta p {
  margin: 0;
  color: rgba(19, 40, 37, 0.6);
  font-size: 13px;
}

.flight-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 46px;
}

.flight-route > div:not(.flight-line) {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.flight-route strong {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.flight-route span {
  color: rgba(19, 40, 37, 0.6);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.flight-line {
  display: flex;
  align-items: center;
  color: var(--coral);
}

.flight-line i {
  width: 50%;
  border-top: 1px dashed rgba(19, 40, 37, 0.35);
}

.flight-line b {
  margin-inline: 8px;
  transform: rotate(18deg);
}

.flight-note {
  margin: 40px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: rgba(19, 40, 37, 0.65);
  font-size: 13px;
}

.packing-note {
  display: flex;
  max-width: 730px;
  gap: 20px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 24px 28px;
  border-radius: 20px;
  color: var(--paper-light);
  background: var(--forest);
}

.packing-icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--lime);
  font-weight: 900;
}

.packing-note strong {
  display: block;
  margin-top: 1px;
}

.packing-note p {
  margin: 6px 0 0;
  color: rgba(251, 248, 240, 0.67);
  font-size: 14px;
  line-height: 1.5;
}

.route {
  color: var(--paper-light);
  background: var(--forest);
}

.route .section-number {
  color: var(--lime);
}

.route-heading > p:last-child:not(:first-child) {
  color: rgba(251, 248, 240, 0.65);
}

.route-rail {
  position: sticky;
  z-index: 5;
  top: 12px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 26px;
  padding: 10px;
  border: 1px solid rgba(251, 248, 240, 0.14);
  border-radius: 18px;
  background: rgba(14, 48, 44, 0.88);
  backdrop-filter: blur(12px);
}

.route-rail a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 8px;
  border-radius: 11px;
  color: rgba(251, 248, 240, 0.64);
  font-size: 11px;
  transition: background 180ms ease, color 180ms ease;
}

.route-rail a:hover {
  color: var(--forest);
  background: var(--lime);
}

.route-rail b {
  font-size: 12px;
}

.days {
  display: grid;
  gap: 14px;
}

.day-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--ink);
}

.tone-lime { background: var(--lime); }
.tone-coral { background: var(--coral); }
.tone-blue { background: var(--blue); }
.tone-sand { background: var(--sand); }
.tone-aqua { background: var(--aqua); }
.tone-pink { background: var(--pink); }

.day-date {
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-right: 1px solid rgba(19, 40, 37, 0.17);
}

.day-date span {
  font-size: 15px;
  font-weight: 800;
}

.day-date strong {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 550;
}

.day-date b {
  margin-top: auto;
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  opacity: 0.28;
}

.day-main {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(310px, 0.8fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 80px;
  padding: 38px 82px 38px 46px;
}

.day-place {
  grid-column: 1 / -1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  font-weight: 800;
}

.day-main h3 {
  margin: 24px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(46px, 6vw, 74px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.day-summary {
  max-width: 490px;
  margin: 24px 0 0;
  align-self: end;
  font-size: 16px;
  line-height: 1.55;
}

.day-details {
  grid-column: 2;
  grid-row: 2 / 4;
  margin-top: 24px;
  align-self: end;
}

.day-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
  border-top: 1px solid rgba(19, 40, 37, 0.22);
  border-bottom: 1px solid rgba(19, 40, 37, 0.22);
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.day-details summary::-webkit-details-marker { display: none; }

.day-details summary b {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.day-details[open] summary b { transform: rotate(45deg); }

.day-items {
  padding-top: 4px;
}

.day-items div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 10px;
  padding-block: 14px;
  border-top: 1px solid rgba(19, 40, 37, 0.22);
}

.day-items time {
  font-size: 11px;
  font-weight: 800;
}

.day-items span {
  font-size: 13px;
  line-height: 1.35;
}

.map-link {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(19, 40, 37, 0.35);
  border-radius: 50%;
  font-size: 18px;
  transition: transform 180ms ease, background 180ms ease;
}

.map-link:hover {
  transform: rotate(10deg);
  background: rgba(251, 248, 240, 0.55);
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stay-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-light);
}

.stay-card:nth-child(2) {
  color: var(--paper-light);
  background: var(--forest);
}

.stay-card > div:nth-child(2) {
  margin-top: 56px;
}

.stay-card h3 {
  margin: 6px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(54px, 7vw, 82px);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.stay-card p {
  margin: 0;
}

.stay-description {
  max-width: 420px;
  margin-top: 18px !important;
  color: rgba(19, 40, 37, 0.62);
  line-height: 1.55;
}

.stay-card:nth-child(2) .stay-description,
.stay-card:nth-child(2) .stay-bottom {
  color: rgba(251, 248, 240, 0.65);
}

.stay-target {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: auto;
  padding: 18px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.stay-target strong {
  font-size: 18px;
}

.stay-bottom {
  margin-top: 22px;
  color: rgba(19, 40, 37, 0.6);
  font-size: 12px;
}

.stay-bottom a {
  font-weight: 800;
}

.hotel-shortlist {
  margin-top: 0;
}

.hotel-research-head {
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.75fr;
  gap: 30px;
  align-items: start;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.hotel-research-head h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hotel-research-head > p:last-child {
  margin: 6px 0 0;
  color: rgba(19, 40, 37, 0.65);
  font-size: 14px;
  line-height: 1.65;
}

.hotel-research-head > p:last-child strong {
  color: var(--ink);
}

.hotel-jumps {
  position: sticky;
  z-index: 12;
  top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-top: 34px;
  padding: 8px;
  border: 1px solid rgba(19, 40, 37, 0.12);
  border-radius: 999px;
  background: rgba(251, 248, 240, 0.92);
  box-shadow: 0 12px 34px rgba(19, 40, 37, 0.08);
  backdrop-filter: blur(14px);
}

.hotel-jumps a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hotel-jumps a:first-child {
  color: var(--paper-light);
  background: var(--forest);
}

.hotel-callout {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr 1.1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  padding: 28px 30px;
  border-radius: 20px;
  color: var(--paper-light);
  background: var(--forest);
}

.hotel-callout span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hotel-callout strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.hotel-callout p {
  margin: 0;
  color: rgba(251, 248, 240, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.hotel-callout p b {
  color: var(--paper-light);
}

.hotel-callout > a {
  padding: 11px 15px;
  border: 1px solid rgba(251, 248, 240, 0.2);
  border-radius: 999px;
  color: var(--paper-light);
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
}

.hotel-rankings {
  margin-top: 64px;
  scroll-margin-top: 92px;
}

.hotel-rankings-head {
  display: grid;
  grid-template-columns: 0.45fr 1.75fr;
  gap: 30px;
  align-items: start;
}

.hotel-rankings-head h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hotel-rankings-head > div > p {
  margin: 10px 0 0;
  color: rgba(19, 40, 37, 0.62);
  font-size: 13px;
}

.hotel-ranking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 30px;
}

.hotel-ranking-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper-light);
}

.hotel-ranking-group-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 25px 26px 22px;
  color: var(--paper-light);
  background: var(--forest);
}

.hotel-ranking-group-head span,
.hotel-ranking-group-head > strong {
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hotel-ranking-group-head h5 {
  margin: 7px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.hotel-ranking-list {
  display: grid;
}

.hotel-ranking-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
}

.hotel-ranking-item:hover {
  background: rgba(215, 255, 75, 0.12);
}

.hotel-ranking-number {
  color: rgba(19, 40, 37, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.hotel-ranking-copy {
  display: grid;
  gap: 8px;
  color: rgba(19, 40, 37, 0.7);
  font-size: 12px;
  line-height: 1.5;
}

.hotel-ranking-name {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 10px;
  align-items: baseline;
}

.hotel-ranking-name strong {
  color: var(--ink);
  font-size: 15px;
}

.hotel-ranking-name small,
.hotel-ranking-copy > small {
  color: rgba(19, 40, 37, 0.52);
  font-size: 10px;
}

.hotel-ranking-copy > small {
  font-weight: 750;
}

.hotel-ranking-item > b {
  font-size: 15px;
  font-weight: 400;
}

.hotel-ranking-more {
  border-top: 1px solid var(--line);
}

.hotel-ranking-more > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hotel-ranking-more > summary::-webkit-details-marker { display: none; }
.hotel-ranking-more > summary b { font-size: 20px; font-weight: 400; transition: transform 180ms ease; }
.hotel-ranking-more[open] > summary b { transform: rotate(45deg); }

.hotel-zone-guide {
  margin-top: 64px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(251, 248, 240, 0.48);
  scroll-margin-top: 92px;
}

.hotel-zone-head {
  display: grid;
  grid-template-columns: 0.45fr 1.75fr;
  gap: 30px;
  align-items: start;
}

.hotel-zone-head h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.hotel-zone-head > div > p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(19, 40, 37, 0.65);
  font-size: 13px;
  line-height: 1.6;
}

.hotel-zone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hotel-zone-card {
  padding: 22px;
  border-radius: 18px;
  background: var(--paper-light);
}

.hotel-zone-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hotel-zone-card header span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hotel-zone-card header small {
  color: rgba(19, 40, 37, 0.58);
  font-size: 10px;
}

.hotel-zone-card h5 {
  margin: 22px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hotel-zone-card > strong {
  display: block;
  font-size: 11px;
  line-height: 1.45;
}

.hotel-zone-card > p {
  margin: 12px 0 0;
  color: rgba(19, 40, 37, 0.65);
  font-size: 12px;
  line-height: 1.55;
}

.hotel-area {
  margin-top: 80px;
  scroll-margin-top: 92px;
}

.hotel-area + .hotel-area {
  padding-top: 82px;
  border-top: 1px solid var(--line);
}

.hotel-area-head {
  display: grid;
  grid-template-columns: 0.45fr 1.75fr;
  gap: 30px;
  margin-bottom: 48px;
}

.hotel-area-head > p:last-child {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.hotel-bracket + .hotel-bracket {
  margin-top: 54px;
}

.hotel-bracket-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.hotel-bracket-head h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.hotel-bracket-head span {
  color: rgba(19, 40, 37, 0.58);
  font-size: 12px;
}

.hotel-list {
  display: grid;
  gap: 12px;
}

.hotel-card {
  padding: 26px 28px 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper-light);
  scroll-margin-top: 92px;
}

.hotel-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.hotel-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--lime);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hotel-card-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hotel-rank-badge {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hotel-card h5 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hotel-price {
  display: flex;
  min-width: 190px;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.hotel-price strong {
  font-size: 22px;
}

.hotel-price span {
  max-width: 220px;
  margin-top: 6px;
  color: rgba(19, 40, 37, 0.58);
  font-size: 11px;
  line-height: 1.35;
}

.hotel-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.hotel-facts span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 650;
}

.hotel-fit {
  max-width: 850px;
  margin: 18px 0 24px;
  color: rgba(19, 40, 37, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.hotel-details {
  border-top: 1px solid var(--line);
}

.hotel-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 20px;
  cursor: pointer;
  list-style: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hotel-details > summary::-webkit-details-marker { display: none; }

.hotel-details > summary b {
  font-size: 21px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.hotel-details[open] > summary b { transform: rotate(45deg); }

.hotel-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 4px 0 22px;
}

.hotel-detail-grid > div {
  padding: 18px;
  border-radius: 14px;
  background: rgba(19, 40, 37, 0.055);
}

.hotel-detail-grid > div:first-child,
.hotel-verdict {
  grid-column: 1 / -1;
}

.hotel-detail-label {
  margin: 0 0 10px;
  color: rgba(19, 40, 37, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hotel-detail-grid strong {
  font-size: 14px;
  line-height: 1.45;
}

.hotel-detail-grid ul {
  margin: 0;
  padding-left: 17px;
}

.hotel-detail-grid li {
  font-size: 12px;
  line-height: 1.55;
}

.hotel-detail-grid li + li {
  margin-top: 8px;
}

.hotel-verdict {
  color: var(--paper-light);
  background: var(--forest) !important;
}

.hotel-verdict .hotel-detail-label {
  color: var(--lime);
}

.hotel-sources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-bottom: 28px;
}

.hotel-source {
  position: relative;
  display: flex;
  min-height: 70px;
  flex-direction: column;
  justify-content: center;
  padding: 12px 38px 12px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.hotel-source:hover {
  border-color: var(--forest);
  transform: translateY(-1px);
}

.hotel-source strong {
  font-size: 12px;
}

.hotel-source span {
  margin-top: 4px;
  color: rgba(19, 40, 37, 0.58);
  font-size: 10px;
  line-height: 1.35;
}

.hotel-source b {
  position: absolute;
  top: 14px;
  right: 14px;
  font-weight: 500;
}

.book-next {
  color: var(--paper-light);
  background: var(--coral);
}

.book-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.book-heading {
  display: block;
  margin: 0;
}

.book-heading h2 {
  margin-top: 22px;
}

.book-heading > p:last-child:not(:first-child) {
  max-width: 440px;
  margin-top: 28px;
  color: rgba(251, 248, 240, 0.72);
}

.checklist {
  border-top: 1px solid rgba(251, 248, 240, 0.5);
}

.check-item {
  position: relative;
  display: grid;
  grid-template-columns: 30px 40px 1fr;
  gap: 15px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(251, 248, 240, 0.5);
  cursor: pointer;
}

.check-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-check {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(251, 248, 240, 0.75);
  border-radius: 50%;
  transition: background 180ms ease, border-color 180ms ease;
}

.check-item input:checked + .custom-check {
  border-color: var(--lime);
  background: var(--lime);
}

.check-item input:checked + .custom-check::after {
  content: "✓";
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.check-item input:focus-visible + .custom-check {
  outline: 3px solid rgba(232, 255, 120, 0.6);
  outline-offset: 3px;
}

.check-number {
  padding-top: 4px;
  font-family: Georgia, serif;
  font-size: 14px;
}

.check-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.check-copy strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.check-copy small {
  color: rgba(251, 248, 240, 0.68);
  font-size: 13px;
  line-height: 1.4;
}

.check-item:has(input:checked) .check-copy {
  opacity: 0.5;
  text-decoration: line-through;
}

.fallback {
  padding-top: 90px;
}

.fallback-card {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 88px);
  border-radius: var(--radius);
  color: var(--paper-light);
  background: var(--forest);
}

.fallback-card::after {
  content: "↺";
  position: absolute;
  right: 3%;
  bottom: -32%;
  color: rgba(232, 255, 120, 0.12);
  font-family: Georgia, serif;
  font-size: 340px;
  line-height: 1;
}

.fallback-card .section-number {
  color: var(--lime);
}

.fallback-card h2 {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.fallback-card > p:last-child {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(251, 248, 240, 0.67);
  font-size: 17px;
  line-height: 1.6;
}

footer {
  padding: 30px 0 50px;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.footer-inner > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-inner p,
.footer-inner a {
  margin: 0;
  color: rgba(19, 40, 37, 0.65);
  font-size: 12px;
}

.toast {
  position: fixed;
  z-index: 20;
  left: 50%;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--paper-light);
  background: var(--forest-deep);
  opacity: 0;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
  font-size: 13px;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 860px) {
  .section { padding-block: 82px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading h2 { margin: 0; }
  .section-heading > p:last-child:not(:first-child) { grid-column: 1; margin-top: 0; }
  .flight-grid, .stay-grid, .book-layout { grid-template-columns: 1fr; }
  .book-layout { gap: 56px; }
  .day-card { grid-template-columns: 110px 1fr; }
  .day-date { padding: 28px 22px; }
  .day-main { grid-template-columns: 1fr; padding: 30px 70px 30px 30px; }
  .day-details { grid-column: 1; grid-row: auto; margin-top: 40px; }
  .day-summary { align-self: auto; }
  .hero-stamp { width: 130px; height: 130px; }
  .hotel-research-head { grid-template-columns: 1fr; }
  .hotel-callout { grid-template-columns: 1fr; }
  .hotel-ranking-grid { grid-template-columns: 1fr; }
  .hotel-rankings-head { grid-template-columns: 1fr; }
  .hotel-zone-head { grid-template-columns: 1fr; }
  .hotel-area-head { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav-links { display: none; }
  .hero { min-height: 800px; }
  .hero-content { padding-top: 128px; }
  .hero h1 { font-size: clamp(62px, 21vw, 96px); line-height: 0.82; }
  .hero-copy { margin-top: 34px; }
  .hero-stamp { right: 14px; bottom: 28px; width: 110px; height: 110px; }
  .ticker-track { animation-duration: 20s; }
  .section { padding-block: 68px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2 { font-size: 52px; }
  .flight-card { padding: 24px 20px; }
  .flight-route { gap: 12px; margin-top: 36px; }
  .flight-route strong { font-size: 34px; }
  .flight-line b { margin-inline: 4px; }
  .packing-note { padding: 22px 20px; }
  .route-rail { overflow-x: auto; grid-template-columns: repeat(6, 76px); justify-content: start; }
  .route-rail a { flex-direction: column; gap: 2px; }
  .day-card { display: block; min-height: 0; }
  .day-date { flex-direction: row; gap: 8px; padding: 22px; border-right: 0; border-bottom: 1px solid rgba(19, 40, 37, 0.17); }
  .day-date b { margin: 0 0 0 auto; font-size: 30px; }
  .day-date strong { margin: 1px 0 0; }
  .day-main { display: block; padding: 30px 22px 34px; }
  .day-main h3 { padding-right: 34px; font-size: 49px; }
  .day-summary { font-size: 15px; }
  .day-details { margin-top: 34px; }
  .day-items div { grid-template-columns: 95px 1fr; }
  .map-link { top: 75px; right: 18px; }
  .stay-card { min-height: 430px; padding: 24px; }
  .stay-bottom { align-items: flex-end; gap: 20px; }
  .hotel-shortlist { margin-top: 0; }
  .hotel-research-head h3 { font-size: 50px; }
  .hotel-callout { padding: 24px; }
  .hotel-jumps { position: static; width: 100%; border-radius: 18px; }
  .hotel-jumps a { flex: 1 1 calc(50% - 8px); text-align: center; }
  .hotel-rankings { margin-top: 48px; }
  .hotel-ranking-group-head { padding: 22px 20px 18px; }
  .hotel-ranking-item { grid-template-columns: 34px 1fr auto; gap: 10px; padding: 18px 16px; }
  .hotel-ranking-number { font-size: 20px; }
  .hotel-zone-guide { margin-top: 48px; padding: 24px 18px; }
  .hotel-zone-grid { grid-template-columns: 1fr; }
  .hotel-area { margin-top: 62px; }
  .hotel-area + .hotel-area { padding-top: 62px; }
  .hotel-card { padding: 20px 18px 0; }
  .hotel-card-head { display: block; }
  .hotel-price { min-width: 0; margin-top: 18px; align-items: flex-start; text-align: left; }
  .hotel-facts span { border-radius: 12px; }
  .hotel-detail-grid, .hotel-sources { grid-template-columns: 1fr; }
  .hotel-detail-grid > div:first-child, .hotel-verdict { grid-column: auto; }
  .hotel-bracket-head { align-items: flex-start; flex-direction: column; gap: 5px; }
  .fallback-card { padding: 42px 26px; }
  .fallback-card h2 { font-size: 50px; }
  .footer-inner { align-items: center; }
  .footer-inner p { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .hero { min-height: auto; }
  .nav, .hero-actions, .ticker, .route-rail, .map-link, .checklist, footer { display: none !important; }
  .section { padding-block: 30px; }
  .day-card, .flight-card, .stay-card, .hotel-card { break-inside: avoid; }
  .day-details > .day-items { display: block !important; }
  .day-details summary { display: none; }
  .hotel-details[open] { display: block; }
  .reveal { opacity: 1; transform: none; }
}
