:root {
  --cream: #f7f0df;
  --white: #fff;
  --navy: #101f3a;
  --blue: #2356d8;
  --sky: #bfe8ff;
  --orange: #ee6d32;
  --yellow: #ffd447;
  --green: #0d493b;
  --sand: #e9d7b7;
  --red: #f04a34;
  --line: 3px solid var(--navy);
  --shadow: 0 12px 0 rgba(16, 31, 58, 0.12);
  --max: 1440px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: "Archivo Black", sans-serif;
  line-height: 1.05;
  margin: 0 0 0.55em;
}
h1 {
  font-size: clamp(2.55rem, 5vw, 4.35rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}
h3 {
  font-size: 1.45rem;
}
p {
  margin: 0.5rem 0 1.2rem;
}
.mono,
.eyebrow,
.section-label,
.route-label,
.country-label {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 100px 48px;
}
.section-label {
  font-size: 0.82rem;
  font-weight: 700;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}
.section-heading > p {
  max-width: 520px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  background: var(--yellow);
  padding: 12px 18px;
  z-index: 9999;
  border: 2px solid var(--navy);
}
.skip-link:focus {
  top: 16px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 3px;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.3s;
  background: rgba(247, 240, 223, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid transparent;
}
.site-header.scrolled {
  background: #fff;
  border-bottom-color: var(--navy);
  box-shadow: 0 8px 0 rgba(16, 31, 58, 0.08);
}
.header-inner {
  max-width: 1600px;
  margin: auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: 0.3s;
}
.scrolled .header-inner {
  padding-block: 8px;
}
.brand {
  width: 250px;
  flex: 0 0 auto;
}
.brand img {
  width: 100%;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1;
}
.nav-link {
  background: none;
  border: 0;
  padding: 10px 7px;
  font-weight: 700;
  font-size: 0.91rem;
  position: relative;
}
.nav-link:after {
  content: "";
  position: absolute;
  height: 3px;
  background: var(--orange);
  left: 8px;
  right: 8px;
  bottom: 3px;
  transform: scaleX(0);
  transition: 0.2s;
}
.nav-link:hover:after,
.nav-link.active:after {
  transform: scaleX(1);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.route-label {
  font-size: 0.68rem;
  white-space: nowrap;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: 999px;
  padding: 4px 8px;
  font-weight: 900;
  line-height: 1;
}
.age-badge.large {
  padding: 12px 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  border: 3px solid var(--navy);
  padding: 14px 20px;
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--navy);
  transition: 0.2s;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--navy);
}
.btn-small {
  padding: 10px 14px;
  font-size: 0.85rem;
  box-shadow: 3px 3px 0 var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
}
.btn-orange {
  background: var(--orange);
}
.text-button {
  background: none;
  border: 0;
  text-decoration: underline;
  padding: 0;
}
.destinations-menu {
  position: relative;
}
.mega-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translate(-50%, 10px);
  width: min(980px, 80vw);
  background: #fff;
  border: 3px solid var(--navy);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  box-shadow: 10px 10px 0 var(--navy);
}
.destinations-menu.open .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.destination-mini {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 2px solid var(--navy);
}
.destination-mini img {
  width: 82px;
  height: 72px;
  object-fit: cover;
}
.destination-mini span {
  display: flex;
  flex-direction: column;
}
.destination-mini small {
  font-family: "IBM Plex Mono";
  font-size: 0.65rem;
}
.destination-mini em {
  font-style: normal;
  font-size: 0.73rem;
  margin-top: 4px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--navy);
  margin: 6px;
}
.mobile-drawer {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: min(420px, 90vw);
  z-index: 1200;
  background: var(--cream);
  border-right: 4px solid var(--navy);
  transform: translateX(-105%);
  transition: 0.28s;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open {
  transform: none;
}
.drawer-backdrop,
.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 31, 58, 0.55);
  z-index: 1150;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.drawer-backdrop.open,
.cookie-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-top img {
  width: 230px;
}
.drawer-close,
.cookie-close {
  background: var(--yellow);
  border: 2px solid var(--navy);
  width: 44px;
  height: 44px;
}
.mobile-drawer nav {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}
.mobile-drawer nav a {
  font-family: "Archivo Black";
  font-size: 1.75rem;
  border-bottom: 2px solid var(--navy);
  padding: 13px 0;
}
.mobile-drawer nav span {
  font-family: "IBM Plex Mono";
  font-size: 0.72rem;
  margin-right: 18px;
}
.drawer-contact {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-hero {
  padding: 130px 28px 30px;
  max-width: 1600px;
  margin: auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.7fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.hero-grid > * {
  border: var(--line);
}
.hero-headline {
  grid-row: span 2;
  padding: 56px;
  background: var(--cream);
}
.hero-headline h1 {
  max-width: 820px;
}
.hero-headline > p {
  font-size: 1.17rem;
  max-width: 760px;
}
.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.risk-note {
  font-size: 0.9rem;
}
.hero-photo {
  position: relative;
  background: var(--blue);
  padding: 10px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.photo-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--yellow);
  border: 2px solid var(--navy);
  padding: 8px 12px;
  font-family: "IBM Plex Mono";
  font-size: 0.7rem;
}
.route-map-card {
  padding: 25px;
  background: var(--sky);
}
.route-svg svg {
  width: 100%;
  height: 220px;
}
.route-path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.route-svg circle {
  fill: var(--orange);
  stroke: var(--navy);
  stroke-width: 4;
}
.route-destinations {
  display: grid;
  gap: 7px;
  font-family: "IBM Plex Mono";
  font-size: 0.72rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--yellow);
}
.hero-stats div {
  padding: 18px;
  border-right: 2px solid var(--navy);
}
.hero-stats strong {
  font-family: "Archivo Black";
  font-size: 2.2rem;
}
.hero-stats span {
  display: block;
  font-size: 0.75rem;
}
.hero-cta {
  background: var(--orange);
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Archivo Black";
  font-size: 1.25rem;
}
.hero-small {
  position: relative;
  padding: 8px;
  background: var(--green);
}
.hero-small img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}
.sticker {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  border: 2px solid var(--navy);
  transform: rotate(4deg);
  padding: 6px 9px;
  font-family: "IBM Plex Mono";
  font-size: 0.68rem;
}
.ticker {
  overflow: hidden;
  border-block: var(--line);
  background: var(--blue);
  color: white;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker span {
  font-family: "Archivo Black";
  padding: 18px 34px;
  position: relative;
}
.ticker span:after {
  content: "✦";
  color: var(--yellow);
  position: absolute;
  right: -5px;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
}
.intro-visual {
  position: relative;
}
.intro-visual > img {
  height: 680px;
  width: 100%;
  object-fit: cover;
  border: var(--line);
}
.info-box {
  position: absolute;
  width: 220px;
  padding: 16px;
  border: 2px solid var(--navy);
  box-shadow: 5px 5px 0 var(--navy);
}
.info-box b,
.info-box span {
  display: block;
}
.info-box.blue {
  background: var(--blue);
  color: white;
  left: -25px;
  top: 40px;
}
.info-box.orange {
  background: var(--orange);
  right: -20px;
  top: 250px;
}
.info-box.green {
  background: var(--green);
  color: white;
  left: 30px;
  bottom: 30px;
}
.editorial-map {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  border: var(--line);
  background: white;
}
.editorial-map img {
  height: 420px;
  width: 100%;
  object-fit: cover;
}
.map-key {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.dot {
  width: 18px;
  height: 18px;
  border: 2px solid var(--navy);
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}
.blue-dot {
  background: var(--blue);
}
.orange-dot {
  background: var(--orange);
}
.green-dot {
  background: var(--green);
}
.routes-section {
  background: #fff;
  border-block: var(--line);
}
.route-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--line);
  margin-bottom: 40px;
  background: var(--cream);
}
.route-card:nth-of-type(even) .route-image {
  order: 2;
}
.route-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}
.route-copy {
  padding: 50px;
}
.route-number {
  font-family: "IBM Plex Mono";
  background: var(--yellow);
  border: 2px solid var(--navy);
  padding: 7px 10px;
}
.route-copy h3 {
  font-size: 2.7rem;
  margin-top: 24px;
}
.route-copy h4 {
  font-size: 1.45rem;
}
.route-copy dl {
  display: grid;
  gap: 0;
  margin: 30px 0;
}
.route-copy dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-top: 2px solid var(--navy);
  padding: 12px 0;
}
.route-copy dt {
  font-weight: 800;
}
.arrow-link {
  font-weight: 900;
  border-bottom: 3px solid var(--navy);
  padding-bottom: 5px;
}
.arrow-link i {
  transition: 0.2s;
}
.arrow-link:hover i {
  transform: translateX(6px);
}
.hotel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hotel-card {
  border: var(--line);
  background: white;
  box-shadow: var(--shadow);
}
.hotel-card header {
  padding: 25px;
  border-bottom: var(--line);
}
.hotel-card header span {
  font-family: "IBM Plex Mono";
  font-size: 0.75rem;
}
.hotel-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-bottom: var(--line);
}
.hotel-blue header {
  background: var(--blue);
  color: white;
}
.hotel-gold header {
  background: var(--orange);
}
.hotel-green header {
  background: var(--green);
  color: white;
}
.hotel-card-body {
  padding: 25px;
}
.hotel-card-body ul {
  padding-left: 20px;
}
.hotel-card-body > a:not(.btn) {
  display: block;
  font-weight: 800;
  margin: 18px 0;
}
.compare-section {
  background: var(--sky);
  border-block: var(--line);
}
.compare-tool {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 35px;
}
.compare-tool fieldset {
  border: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.compare-tool legend {
  font-family: "Archivo Black";
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.compare-tool label {
  border: 2px solid var(--navy);
  background: white;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
}
.compare-tool input {
  width: 20px;
  height: 20px;
}
.recommendation-panel {
  border: var(--line);
  background: var(--yellow);
  padding: 35px;
  box-shadow: 8px 8px 0 var(--navy);
}
.package-groups > section {
  border-top: var(--line);
  padding: 35px 0;
}
.package-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.package-row article,
.stay-packages article {
  background: white;
  border: var(--line);
  padding: 25px;
}
.package-row article:nth-child(2) {
  background: var(--sand);
}
.package-row article:nth-child(3) {
  background: var(--sky);
}
.package-row a,
.stay-packages a {
  font-weight: 800;
}
.regional-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border-block: var(--line);
  background: var(--orange);
}
.regional-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.regional-copy {
  padding: 90px 60px;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 35px 0;
}
.icon-grid article {
  background: #101b2d;
  border: 2px solid var(--navy);
  padding: 18px;
}
.icon-grid i {
  font-size: 1.5rem;
}
.horizontal-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 420px);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
}
.horizontal-scroll article {
  border: var(--line);
  background: white;
  scroll-snap-align: start;
}
.horizontal-scroll img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-bottom: var(--line);
}
.horizontal-scroll article > *:not(img) {
  margin-inline: 22px;
}
.horizontal-scroll article a {
  display: block;
  font-weight: 800;
  margin-bottom: 20px;
}
.planner-section {
  background: var(--green);
  color: white;
}
.planner-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.planner-form label,
.contact-form label,
.newsletter-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 700;
}
.planner-form input,
.planner-form select,
.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter-form input,
.newsletter-form select {
  border: 3px solid var(--navy);
  background: white;
  padding: 13px;
}
.planner-result {
  margin-top: 25px;
}
.planner-result article {
  background: var(--yellow);
  color: var(--navy);
  border: var(--line);
  padding: 25px;
}
.newsletter-section {
  max-width: var(--max);
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--blue);
  color: white;
  border: var(--line);
  padding: 55px;
}
.big-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.check-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
}
.check-label input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.page-hero,
.contact-hero,
.hotel-hero {
  max-width: 1600px;
  margin: auto;
  padding: 145px 28px 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.page-hero > div,
.contact-hero > div {
  border: var(--line);
  padding: 55px;
  background: var(--yellow);
  position: relative;
}
.page-hero > div:last-child,
.contact-hero > div:last-child {
  padding: 10px;
  background: var(--blue);
}
.page-hero img,
.contact-hero img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.breadcrumbs {
  font-family: "IBM Plex Mono";
  font-size: 0.73rem;
  display: flex;
  gap: 9px;
  margin-bottom: 35px;
}
.poster-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.poster-strip span {
  background: var(--navy);
  color: white;
  padding: 7px 10px;
  font-family: "IBM Plex Mono";
  font-size: 0.7rem;
}
.hero-route-tag,
.contact-marker {
  position: absolute;
  right: 25px;
  bottom: 25px;
  background: var(--orange);
  border: 2px solid var(--navy);
  padding: 10px;
  font-family: "IBM Plex Mono";
  font-size: 0.7rem;
}
.prose-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 55px;
}
.prose-grid aside img {
  border: var(--line);
}
blockquote {
  font-family: "Archivo Black";
  font-size: 1.7rem;
  border-left: 8px solid var(--orange);
  padding-left: 20px;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.module-grid article,
.principle-cards article {
  border: var(--line);
  padding: 24px;
  background: white;
}
.module-grid article span,
.principle-cards span {
  font-family: "IBM Plex Mono";
  background: var(--yellow);
  padding: 5px 8px;
}
.timeline-section {
  padding: 90px 48px;
  background: var(--blue);
  color: white;
  border-block: var(--line);
}
.timeline-section > .section-heading,
.timeline {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}
.timeline:before {
  content: "";
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 7px;
  background: var(--yellow);
}
.timeline article {
  position: relative;
  padding: 0 12px;
}
.timeline article span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border: 3px solid var(--navy);
  border-radius: 50%;
  font-family: "Archivo Black";
}
.timeline h3 {
  font-size: 1.1rem;
  margin-top: 20px;
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.checklist-grid article {
  display: flex;
  gap: 18px;
  background: white;
  border: 2px solid var(--navy);
  padding: 20px;
}
.checklist-grid i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  border-radius: 50%;
}
.principle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-grid article {
  background: white;
  border: var(--line);
  padding: 28px;
}
.rating {
  color: #c45600;
  font-weight: 900;
}
.review-grid footer {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--navy);
  padding-top: 16px;
}
.route-cta {
  max-width: var(--max);
  margin: 0 auto 100px;
  background: var(--orange);
  border: var(--line);
  padding: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.route-cta div:last-child {
  display: flex;
  flex-direction: column;
}
.route-cta a {
  font-family: "Archivo Black";
  font-size: 1.35rem;
  border-bottom: 3px solid var(--navy);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
}
.hotel-hero {
  padding-top: 130px;
  grid-template-columns: 1.15fr 0.85fr;
}
.hotel-hero-image,
.hotel-hero-copy {
  border: var(--line);
}
.hotel-hero-image {
  padding: 10px;
  position: relative;
}
.hotel-hero-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}
.hero-coordinate {
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: var(--yellow);
  border: 2px solid var(--navy);
  padding: 9px;
  font-family: "IBM Plex Mono";
  font-size: 0.72rem;
}
.hotel-hero-copy {
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.theme-blue .hotel-hero-copy {
  background: var(--blue);
  color: white;
}
.theme-gold .hotel-hero-copy {
  background: var(--orange);
}
.theme-green .hotel-hero-copy {
  background: var(--green);
  color: white;
}
.hotel-hero-copy h2 {
  font-family: "DM Sans";
  font-size: 1.35rem;
}
.hotel-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.hotel-image-grid > div:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: var(--line);
}
.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.room-grid article,
.dining-items article {
  border: 2px solid var(--navy);
  background: white;
  padding: 18px;
}
.room-grid h3,
.dining-items h3 {
  font-size: 1.1rem;
}
.amenity-band {
  display: flex;
  flex-wrap: wrap;
  border: var(--line);
  margin-top: 25px;
  background: var(--yellow);
}
.amenity-band span {
  padding: 13px 18px;
  border-right: 2px solid var(--navy);
  font-weight: 800;
}
.casino-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: var(--line);
}
.casino-image img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}
.casino-copy {
  padding: 80px;
}
.theme-blue .casino-copy {
  background: var(--sky);
}
.theme-gold .casino-copy {
  background: var(--sand);
}
.theme-green .casino-copy {
  background: #bfe2d8;
}
.casino-list {
  list-style: none;
  padding: 0;
}
.casino-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--navy);
}
.risk-panel {
  background: var(--navy);
  color: white;
  padding: 25px;
  margin-top: 25px;
}
.risk-panel strong {
  font-family: "Archivo Black";
  font-size: 1.4rem;
}
.risk-panel a {
  color: var(--yellow);
  font-weight: 800;
}
.dining-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 25px;
}
.dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: var(--line);
}
.dining-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stay-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stay-packages article:nth-child(2) {
  background: var(--sand);
}
.stay-packages article:nth-child(3) {
  background: var(--sky);
}
.availability {
  font-size: 0.85rem;
  border-top: 1px solid var(--navy);
  padding-top: 12px;
}
.practical-section {
  max-width: var(--max);
  margin: auto;
  padding: 90px 48px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  background: var(--yellow);
  border: var(--line);
}
.contact-dl div {
  border-top: 2px solid var(--navy);
  padding: 13px 0;
}
.contact-dl dt {
  font-weight: 900;
}
.practical-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.practical-cards article {
  background: white;
  border: 2px solid var(--navy);
  padding: 18px;
}
.map-section {
  max-width: var(--max);
  margin: 0 auto 100px;
  border: var(--line);
  padding: 10px;
  background: var(--blue);
}
.map-section iframe {
  width: 100%;
  height: 520px;
  border: 0;
}
.contact-hero > div:first-child {
  background: var(--orange);
}
.general-contact-card {
  background: #101139;
  border: var(--line);
  padding: 20px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
.hotel-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hotel-contact-cards article {
  border: var(--line);
  padding: 25px;
}
.hotel-contact-cards article.blue {
  background: var(--sky);
}
.hotel-contact-cards article.gold {
  background: var(--sand);
}
.hotel-contact-cards article.green {
  background: #bfe2d8;
}
.hotel-contact-cards a {
  display: block;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: white;
  border: var(--line);
  padding: 35px;
}
.span-2 {
  grid-column: span 2;
}
.success-message {
  grid-column: span 2;
}
.success-message.show {
  background: #d6f5e1;
  border: 2px solid var(--green);
  padding: 16px;
}
.faq-list article {
  border-top: var(--line);
}
.faq-list article:last-child {
  border-bottom: var(--line);
}
.faq-list button {
  width: 100%;
  background: none;
  border: 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  text-align: left;
  font-family: "Archivo Black";
  font-size: 1.15rem;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.25s;
}
.faq-answer > p {
  overflow: hidden;
  margin: 0;
  max-width: 900px;
}
.faq-list article.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-list article.open .faq-answer > p {
  margin: 0 0 22px 60px;
}
.legal-hero {
  max-width: var(--max);
  margin: auto;
  padding: 150px 48px 60px;
  background: var(--blue);
  color: white;
  border-inline: var(--line);
  border-bottom: var(--line);
}
.legal-hero p {
  font-size: 1.15rem;
  max-width: 850px;
}
.last-updated {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  padding: 8px 12px;
  border: 2px solid var(--navy);
  font-family: "IBM Plex Mono";
}
.legal-layout {
  max-width: var(--max);
  margin: auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  padding: 70px 48px;
}
.legal-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  border: var(--line);
  background: white;
  padding: 20px;
  max-height: 75vh;
  overflow: auto;
}
.legal-toc h2 {
  font-size: 1.35rem;
}
.legal-toc a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #bbb;
  font-size: 0.9rem;
}
.legal-section {
  scroll-margin-top: 110px;
  border-bottom: 2px solid var(--navy);
  padding: 0 0 30px;
  margin-bottom: 35px;
}
.legal-section h2 {
  font-size: 1.8rem;
}
.legal-section h2 span {
  font-family: "IBM Plex Mono";
  font-size: 0.75rem;
  background: var(--yellow);
  padding: 5px 7px;
  margin-right: 10px;
}
.legal-highlight {
  background: var(--yellow);
  border: var(--line);
  padding: 25px;
  margin-bottom: 30px;
}
.table-wrap {
  overflow-x: auto;
  margin-bottom: 35px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
th,
td {
  border: 2px solid var(--navy);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}
.warning-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
.warning-wall strong {
  background: var(--orange);
  border: var(--line);
  padding: 18px;
  font-family: "Archivo Black";
}
.support-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}
.support-links a {
  background: var(--green);
  color: white;
  border: 2px solid var(--navy);
  padding: 12px 16px;
  font-weight: 800;
}
.site-footer {
  background: var(--navy);
  color: white;
  border-top: var(--line);
}
.footer-route {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 25px 48px;
  background: var(--yellow);
  color: var(--navy);
  font-family: "IBM Plex Mono";
  font-size: 0.75rem;
}
.footer-route i {
  height: 5px;
  background: var(--orange);
  flex: 1;
  position: relative;
}
.footer-route i:after {
  content: "";
  position: absolute;
  right: 0;
  top: -5px;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border: 2px solid var(--navy);
  border-radius: 50%;
}
.footer-grid {
  max-width: var(--max);
  margin: auto;
  padding: 65px 48px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 35px;
}
.footer-grid h2 {
  font-size: 1rem;
  color: var(--yellow);
}
.footer-grid section:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-brand img {
  width: 280px;
  background: white;
  border-radius: 12px;
}
.footer-brand p {
  max-width: 430px;
}
.footer-brand .age-badge {
  color: #ffffff;
  margin-left: 10px;
}
.footer-news {
  max-width: var(--max);
  margin: auto;
  padding: 35px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
}
.footer-newsletter input {
  width: 100%;
  background: white;
}
.footer-newsletter button {
  background: var(--orange);
  border: 3px solid white;
  color: white;
  font-weight: 800;
  padding: 0 18px;
}
.footer-warning {
  max-width: var(--max);
  margin: auto;
  padding: 30px 48px;
  background: var(--orange);
  color: var(--navy);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}
.footer-warning strong {
  font-family: "Archivo Black";
  font-size: 1.25rem;
}
.footer-bottom {
  max-width: var(--max);
  margin: auto;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono";
  font-size: 0.72rem;
}
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: var(--yellow);
  border: 3px solid var(--navy);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1300;
  background: var(--yellow);
  border: var(--line);
  box-shadow: 8px 8px 0 var(--navy);
  padding: 18px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.cookie-banner.show {
  display: grid;
}
.cookie-banner p {
  margin: 3px 0;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1400;
  transform: translateY(105%);
  transition: 0.28s;
}
.cookie-sheet.open {
  transform: none;
}
.cookie-sheet-inner {
  max-width: 1180px;
  margin: auto;
  background: var(--cream);
  border: var(--line);
  border-bottom: 0;
  padding: 30px;
  max-height: 88vh;
  overflow: auto;
}
.cookie-sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.cookie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 25px 0;
}
.cookie-grid article {
  border: 2px solid var(--navy);
  background: white;
  padding: 18px;
}
.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.switch input {
  position: absolute;
  opacity: 0;
}
.switch span {
  width: 52px;
  height: 28px;
  border: 2px solid var(--navy);
  background: #ccc;
  border-radius: 30px;
  display: block;
  position: relative;
}
.switch span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border: 2px solid var(--navy);
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: 0.2s;
}
.switch input:checked + span {
  background: var(--green);
}
.switch input:checked + span:after {
  left: 26px;
}
.cookie-sheet-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.route-path {
  transition: stroke-dashoffset 1.8s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.form-message {
  min-height: 1.4em;
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
}
.form-message.success {
  color: #d8ffe5;
  font-weight: 700;
}
.form-message.error {
  color: #fff0a8;
  font-weight: 700;
}
.footer-newsletter .form-message {
  grid-column: 1/-1;
}
.planner-summary {
  background: var(--yellow);
  color: var(--navy);
  border: var(--line);
  padding: 25px;
}
.faq-list article.open button i {
  transform: rotate(45deg);
}
.faq-list button i {
  transition: transform 0.2s ease;
}
@media (max-width: 1250px) {
  .route-label,
  .desktop-nav .nav-link:nth-last-child(-n + 3) {
    display: none;
  }
  .brand {
    width: 220px;
  }
  .hotel-cards {
    grid-template-columns: 1fr 1fr;
  }
  .hotel-card:last-child {
    grid-column: 1/-1;
  }
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .timeline:before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-headline {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .route-map-card {
    grid-column: 1/2;
  }
  .hero-photo {
    grid-column: 2/3;
    grid-row: 2/4;
  }
  .hero-small {
    grid-column: 2/3;
  }
  .hero-stats {
    grid-column: 1/2;
  }
  .hero-cta {
    grid-column: 1/2;
  }
}
@media (max-width: 992px) {
  .desktop-nav,
  .header-tools .btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-inner {
    justify-content: space-between;
  }
  .section {
    padding: 75px 26px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid > * {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .hero-photo img {
    min-height: 380px;
  }
  .intro-grid,
  .route-card,
  .compare-tool,
  .regional-section,
  .newsletter-section,
  .page-hero,
  .contact-hero,
  .hotel-hero,
  .hotel-image-grid,
  .casino-section,
  .dining-grid,
  .practical-section,
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .route-card:nth-of-type(even) .route-image {
    order: 0;
  }
  .hotel-cards {
    grid-template-columns: 1fr;
  }
  .hotel-card:last-child {
    grid-column: auto;
  }
  .package-row,
  .stay-packages {
    grid-template-columns: 1fr;
  }
  .planner-form {
    grid-template-columns: 1fr 1fr;
  }
  .icon-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-hero > div,
  .contact-hero > div {
    padding: 35px;
  }
  .hotel-hero-image img {
    height: 500px;
  }
  .casino-image img {
    min-height: 450px;
  }
  .practical-section {
    margin: 0 20px;
  }
  .legal-toc {
    position: relative;
    top: 0;
    max-height: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .cookie-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hotel-contact-cards {
    grid-template-columns: 1fr;
  }
  .timeline-section {
    padding: 75px 26px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }
  .home-hero {
    padding: 110px 14px 20px;
  }
  .hero-headline {
    padding: 32px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stats div {
    border-right: 0;
    border-bottom: 2px solid var(--navy);
  }
  .section {
    padding: 65px 18px;
  }
  .intro-visual > img {
    height: 520px;
  }
  .info-box {
    position: relative;
    width: auto;
    inset: auto !important;
    margin-top: 10px;
    box-shadow: none;
  }
  .editorial-map {
    grid-template-columns: 1fr;
  }
  .route-copy {
    padding: 30px;
  }
  .route-copy dl div {
    grid-template-columns: 1fr;
  }
  .module-grid,
  .principle-cards,
  .review-grid,
  .checklist-grid,
  .room-grid,
  .dining-items,
  .practical-cards {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .planner-form,
  .big-newsletter,
  .contact-form {
    grid-template-columns: 1fr;
  }
  .span-2,
  .success-message {
    grid-column: auto;
  }
  .regional-copy {
    padding: 60px 24px;
  }
  .icon-grid {
    grid-template-columns: 1fr;
  }
  .page-hero,
  .contact-hero,
  .hotel-hero {
    padding: 115px 14px 25px;
  }
  .page-hero > div,
  .contact-hero > div,
  .hotel-hero-copy {
    padding: 28px;
  }
  .hotel-hero-image img {
    height: 420px;
  }
  .casino-copy {
    padding: 55px 22px;
  }
  .legal-hero {
    padding: 125px 20px 45px;
  }
  .legal-layout {
    padding: 45px 18px;
  }
  .footer-grid {
    padding: 55px 24px;
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-news {
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }
  .footer-newsletter {
    grid-template-columns: 1fr;
  }
  .footer-newsletter button {
    padding: 13px;
  }
  .footer-warning {
    padding: 26px 24px;
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    padding: 20px 24px;
    flex-direction: column;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .cookie-grid {
    grid-template-columns: 1fr;
  }
  .cookie-sheet-inner {
    padding: 22px 16px;
  }
  .cookie-sheet-actions {
    position: sticky;
    bottom: -22px;
    background: var(--cream);
    padding: 16px 0;
  }
  .warning-wall {
    grid-template-columns: 1fr;
  }
  .route-cta {
    margin: 0 18px 70px;
    padding: 35px 22px;
    grid-template-columns: 1fr;
  }
  .route-cta a {
    font-size: 1rem;
  }
  .horizontal-scroll {
    grid-auto-columns: 85vw;
  }
  .newsletter-section {
    margin-inline: 18px;
    padding: 38px 22px;
  }
  .practical-section {
    padding: 60px 22px;
  }
  .hotel-image-grid > div:first-child img {
    min-height: 400px;
  }
  .map-section {
    margin-inline: 18px;
  }
  .map-section iframe {
    height: 380px;
  }
}
@media (max-width: 480px) {
  .brand {
    width: 185px;
  }
  .age-badge {
    font-size: 0.75rem;
  }
  .header-inner {
    padding: 10px 12px;
  }
  .hero-headline {
    padding: 24px;
  }
  .button-row {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .route-svg svg {
    height: 160px;
  }
  .route-copy h3 {
    font-size: 2rem;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .hotel-hero-image img {
    height: 340px;
  }
  .footer-route {
    padding: 18px 12px;
    font-size: 0.55rem;
  }
  .contact-form {
    padding: 20px;
  }
  .faq-list button {
    grid-template-columns: 42px 1fr auto;
    font-size: 1rem;
  }
  .faq-list article.open .faq-answer > p {
    margin-left: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .route-path {
    stroke-dashoffset: 0;
  }
}

:root {
  --cream: #f3f0e9;
  --white: #ffffff;
  --navy: #08131f;
  --blue: #173b53;
  --sky: #dfe8ea;
  --orange: #9f6248;
  --yellow: #c8a96b;
  --green: #173f3a;
  --sand: #e6ded0;
  --red: #9d3d32;
  --line: 1px solid rgba(8, 19, 31, 0.22);
  --shadow: 0 24px 60px rgba(8, 19, 31, 0.12);
  --max: 1420px;
}
body {
  background: #f3f0e9;
  color: #17222d;
  font-family: "Manrope", sans-serif;
  line-height: 1.75;
}
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.025em;
  font-weight: 600;
  line-height: 0.98;
}
h1 {
  font-size: clamp(3rem, 5.2vw, 5.3rem);
}
h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.35rem);
}
h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
}
.mono,
.eyebrow,
.section-label,
.route-label,
.country-label {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.14em;
}
.section {
  padding-top: 118px;
  padding-bottom: 118px;
}
.section-label,
.eyebrow {
  color: #8a6a40;
  font-weight: 500;
}
.site-header {
  background: rgba(8, 19, 31, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}
.site-header.scrolled {
  background: #08131f;
  border-bottom-color: rgba(200, 169, 107, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.header-inner {
  padding: 18px 34px;
}
.scrolled .header-inner {
  padding-block: 11px;
}
.brand {
  width: 265px;
}
.brand img {
  filter: none;
}
.nav-link {
  color: #f7f4ed;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}
.nav-link:after {
  height: 1px;
  background: #c8a96b;
  bottom: 0;
}
.route-label {
  color: #c8a96b;
}
.age-badge {
  background: transparent;
  color: #f7f4ed;
  border: 1px solid #c8a96b;
  border-radius: 2px;
  padding: 7px 9px;
}
.menu-toggle span {
  background: #f7f4ed;
}
.btn {
  background: #173f3a;
  border: 1px solid #173f3a;
  box-shadow: none;
  border-radius: 2px;
  padding: 15px 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 19, 31, 0.17);
}
.btn-outline {
  background: transparent;
  color: #17222d;
  border-color: #17222d;
}
.btn-orange {
  background: #9f6248;
  border-color: #9f6248;
}
.mega-dropdown {
  background: #f8f6f1;
  border: 1px solid rgba(8, 19, 31, 0.2);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  padding: 20px;
  border-radius: 3px;
}
.destination-mini {
  border: 1px solid rgba(8, 19, 31, 0.14);
  background: #fff;
  padding: 12px;
}
.destination-mini img {
  height: 82px;
}
.mobile-drawer {
  background: #0b1723;
  color: #f7f4ed;
  border-right: 1px solid #c8a96b;
}
.mobile-drawer nav a {
  border-color: rgba(255, 255, 255, 0.15);
}
.drawer-close,
.cookie-close {
  background: transparent;
  color: #fff;
  border-color: #c8a96b;
}
.home-hero {
  max-width: none;
  padding: 0;
  margin: 0;
  background: #08131f;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: minmax(720px, 88vh) auto;
  gap: 0;
}
.hero-grid > * {
  border: 0;
}
.hero-headline {
  grid-column: 1;
  grid-row: 1;
  padding: 170px 7vw 90px;
  background: linear-gradient(135deg, #08131f 0%, #0e2637 100%);
  color: #f7f4ed;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-headline h1 {
  max-width: 760px;
}
.hero-headline > p {
  font-size: 1.12rem;
  max-width: 650px;
  color: #cfd7dc;
}
.hero-headline .eyebrow {
  color: #c8a96b;
}
.hero-headline .btn-outline {
  color: #f7f4ed;
  border-color: rgba(255, 255, 255, 0.55);
}
.risk-note {
  color: #b9c2c8;
}
.hero-photo {
  grid-column: 2;
  grid-row: 1;
  padding: 0;
  background: #08131f;
  overflow: hidden;
}
.hero-photo:after,
.hotel-hero-image:after,
.page-hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 15, 23, 0.05),
    rgba(6, 15, 23, 0.42)
  );
  pointer-events: none;
}
.hero-photo img {
  min-height: 720px;
  height: 88vh;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.04);
}
.photo-label {
  left: 32px;
  bottom: 32px;
  background: rgba(8, 19, 31, 0.78);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 10px 14px;
}
.route-map-card {
  grid-column: 1/2;
  grid-row: 2;
  background: #122838;
  color: #fff;
  padding: 34px 7vw;
}
.route-path {
  stroke: #c8a96b;
}
.route-svg circle {
  fill: #9f6248;
  stroke: #f3f0e9;
  stroke-width: 2;
}
.route-destinations {
  color: #d6dde0;
}
.hero-stats {
  grid-column: 2/3;
  grid-row: 2;
  background: #e6ded0;
  color: #17222d;
}
.hero-stats div {
  border-right: 1px solid rgba(8, 19, 31, 0.18);
  padding: 28px;
}
.hero-stats strong {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 2.8rem;
}
.hero-cta {
  grid-column: 1/2;
  background: #9f6248;
  color: #fff;
  padding: 30px 7vw;
}
.hero-small {
  grid-column: 2/3;
  background: #0d201f;
  padding: 0;
}
.hero-small img {
  height: 220px;
  filter: saturate(0.82);
}
.sticker {
  background: #08131f;
  color: #fff;
  border: 1px solid #c8a96b;
  transform: none;
}
.ticker {
  background: #0b1723;
  border-block: 1px solid rgba(200, 169, 107, 0.35);
}
.ticker span {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.13em;
  font-size: 0.77rem;
}
.ticker span:after {
  color: #c8a96b;
  content: "•";
}
.intro-section {
  background: #f3f0e9;
}
.intro-grid {
  gap: 76px;
}
.intro-visual > img {
  border: 0;
  box-shadow: var(--shadow);
  height: 720px;
  filter: saturate(0.88);
}
.info-box {
  border: 0;
  box-shadow: 0 16px 38px rgba(8, 19, 31, 0.18);
  border-radius: 2px;
}
.info-box.blue {
  background: #173b53;
}
.info-box.orange {
  background: #9f6248;
  color: #fff;
}
.info-box.green {
  background: #173f3a;
}
.editorial-map {
  border: 0;
  background: #fff;
  box-shadow: var(--shadow);
}
.routes-section {
  background: #e9e4db;
  border: 0;
}
.route-card {
  border: 0;
  background: #fff;
  margin-bottom: 64px;
  box-shadow: var(--shadow);
}
.route-image img {
  min-height: 610px;
  filter: saturate(0.86) contrast(1.03);
}
.route-copy {
  padding: 70px;
}
.route-number {
  background: transparent;
  border: 1px solid #c8a96b;
  color: #8a6a40;
}
.route-copy dl div {
  border-top: 1px solid rgba(8, 19, 31, 0.16);
}
.arrow-link {
  border-bottom: 1px solid #17222d;
}
.hotel-cards {
  gap: 30px;
}
.hotel-card {
  border: 0;
  box-shadow: var(--shadow);
  border-radius: 3px;
  overflow: hidden;
}
.hotel-card header {
  border: 0;
  padding: 30px 30px 24px;
  background: #0f202d !important;
  color: #fff;
}
.hotel-card img {
  height: 320px;
  border: 0;
  filter: saturate(0.82);
}
.hotel-card-body {
  padding: 30px;
}
.hotel-card dl div {
  border-color: rgba(8, 19, 31, 0.12) !important;
}
.compare-section,
.planner-section {
  background: #0d1c28 !important;
  color: #f6f2ea;
}
.compare-section .section-heading p,
.planner-section p {
  color: #c6cfd4;
}
.compare-tool,
.planner-shell,
.planner-card {
  background: #f6f2ea;
  color: #17222d;
  border: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}
.package-row article,
.package-card,
.principle-card,
.module-card,
.review-card,
.check-item,
.practical-card {
  border: 1px solid rgba(8, 19, 31, 0.14);
  background: #fff;
  box-shadow: none;
  border-radius: 2px;
}
.package-row article:hover,
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(8, 19, 31, 0.1);
}
.regional-section {
  background: #173f3a;
  color: #f7f4ed;
}
.regional-copy {
  background: #173f3a;
}
.icon-card {
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}
.horizontal-scroll article,
.dining-card {
  border: 0;
  box-shadow: var(--shadow);
  background: #fff;
}
.horizontal-scroll img,
.dining-card img {
  filter: saturate(0.84);
}
.newsletter-section {
  background: #173b53 !important;
  color: #fff;
  border: 0;
}
.newsletter-section input,
.newsletter-section select {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.page-hero,
.contact-hero,
.hotel-hero {
  padding-top: 120px;
  background: #08131f;
}
.page-hero > div,
.contact-hero > div,
.hotel-hero-copy {
  background: #0d1d2a;
  color: #f7f4ed;
  padding: 72px;
}
.page-hero-image,
.contact-hero-image,
.hotel-hero-image {
  position: relative;
  overflow: hidden;
}
.page-hero img,
.contact-hero img,
.hotel-hero img {
  filter: saturate(0.82) contrast(1.04);
}
.hotel-hero {
  grid-template-columns: 0.9fr 1.1fr;
}
.hotel-hero-copy p {
  color: #d4dadd;
}
.hotel-hero-copy .btn {
  background: #c8a96b;
  color: #08131f;
  border-color: #c8a96b;
}
.hotel-hero .age-badge {
  color: #fff;
}
.hotel-image-grid img,
.casino-image img,
.dining-grid img {
  border: 0 !important;
  filter: saturate(0.84);
}
.casino-section {
  background: #0b1723;
  color: #fff;
}
.casino-copy {
  background: #0b1723;
}
.casino-copy p {
  color: #ccd4d8;
}
.warning-panel {
  background: #f0e8dc !important;
  color: #17222d;
  border: 0 !important;
  border-left: 4px solid #9d3d32 !important;
}
.practical-section,
.map-section {
  background: #fff;
  border: 0;
  box-shadow: var(--shadow);
}
.map-section iframe {
  filter: grayscale(0.18) saturate(0.75);
}
.legal-hero {
  background: #08131f;
  color: #fff;
}
.legal-toc,
.legal-content article {
  border-color: rgba(8, 19, 31, 0.14);
}
.legal-content article {
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 19, 31, 0.06);
}
.site-footer {
  background: #07111a;
}
.footer-grid {
  border-top: 1px solid rgba(200, 169, 107, 0.25);
}
.footer-brand img {
  background: transparent;
  border-radius: 0;
}
.footer-warning {
  background: #9f6248;
  color: #fff;
}
.footer-route {
  color: #c8a96b;
}
.cookie-banner {
  background: #f5f1e8;
  border: 1px solid rgba(8, 19, 31, 0.2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}
.cookie-sheet-inner {
  background: #f5f1e8;
  border: 1px solid rgba(8, 19, 31, 0.2);
  box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.2);
}
.cookie-grid article {
  border: 1px solid rgba(8, 19, 31, 0.15);
}
.back-to-top {
  background: #c8a96b;
  border: 0;
  color: #08131f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1250px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-headline {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .route-map-card,
  .hero-cta {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media (max-width: 992px) {
  .hero-grid {
    display: block;
  }
  .hero-headline {
    min-height: 680px;
    padding: 150px 7vw 80px;
  }
  .hero-photo img {
    height: 62vh;
    min-height: 480px;
  }
  .route-map-card,
  .hero-stats,
  .hero-cta,
  .hero-small {
    display: none;
  }
  .site-header {
    background: #08131f;
  }
  .route-card {
    grid-template-columns: 1fr;
  }
  .route-copy {
    padding: 48px 34px;
  }
  .hotel-hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }
  .section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .hero-headline {
    min-height: 620px;
    padding: 130px 24px 60px;
  }
  .hero-photo img {
    height: 52vh;
    min-height: 390px;
  }
  .intro-grid {
    gap: 38px;
  }
  .intro-visual > img {
    height: 520px;
  }
  .route-copy {
    padding: 38px 24px;
  }
  .hotel-card img {
    height: 260px;
  }
  .page-hero > div,
  .contact-hero > div,
  .hotel-hero-copy {
    padding: 44px 24px;
  }
  .footer-brand img {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 14px 16px;
    gap: 10px;
  }
  .brand {
    width: 205px;
  }
  .header-tools {
    gap: 8px;
  }
  .age-badge {
    padding: 6px 8px;
  }
  .menu-toggle {
    width: 38px;
    padding: 4px;
  }
  .menu-toggle span {
    height: 2px;
    margin: 6px 0;
  }
}
@media (max-width: 390px) {
  .brand {
    width: 185px;
  }
  .header-inner {
    padding-inline: 12px;
  }
}

.theme-blue .casino-copy,
.theme-gold .casino-copy,
.theme-green .casino-copy {
  background: #0b1723;
  color: #f7f4ed;
}
.casino-copy h2,
.casino-copy h3,
.casino-copy h4 {
  color: #f7f4ed;
}
.casino-copy p {
  color: #cbd4d9;
}
.casino-list li {
  border-color: rgba(255, 255, 255, 0.18);
}
.risk-panel {
  background: #122838;
  border-left: 3px solid #c8a96b;
}

/* Keep the footer Cookie Settings control aligned with the legal links. */
.footer-grid .cookie-settings-open {
  align-self: flex-start;
  width: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: inherit;
  text-align: left;
  text-decoration: none;
  line-height: inherit;
}

.footer-grid .cookie-settings-open:hover,
.footer-grid .cookie-settings-open:focus-visible {
  color: var(--yellow);
}
