:root {
  --navy: #0b1d2d;
  --navy2: #122a3d;
  --sand: #e7d3aa;
  --gold: #c9a45c;
  --gold2: #e2c888;
  --ivory: #fbf8f1;
  --green: #5d7d6d;
  --text: #24313a;
  --muted: #66727a;
  --white: #fff;
  --shadow: 0 18px 50px rgba(7, 24, 36, 0.14);
  --radius: 24px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--navy);
}
h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
}
h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
}
h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.3rem);
}
p {
  margin: 0 0 18px;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.section {
  padding: 110px 0;
}
.section-dark {
  background: var(--navy);
  color: #dfe7ea;
}
.section-dark h2,
.section-dark h3 {
  color: white;
}
.section-sand {
  background: #efe5d0;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold2);
  margin-bottom: 14px;
}
.eyebrow.dark {
  color: #8a6c35;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  transition: 0.25s ease;
  min-height: 52px;
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f2ca72;
  outline-offset: 3px;
}
.btn-gold {
  background: var(--gold);
  color: #13202a;
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline:hover {
  background: white;
  color: var(--navy);
}
.btn-outline-dark {
  border-color: #35505f;
  color: var(--navy);
  background: transparent;
}
.btn-outline-dark:hover,
.btn-navy:hover {
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-text {
  background: transparent;
  color: var(--navy);
  padding-inline: 10px;
}
.text-link {
  font-weight: 700;
  color: #8a6c35;
}
.text-link i {
  margin-left: 8px;
}
.button-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
}
.site-header.scrolled,
.site-header.menu-open {
  background: rgba(11, 29, 45, 0.93);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 245px;
  height: auto;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #fff;
}
.primary-nav > a:not(.btn),
.dropdown-toggle {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  background: none;
  border: 0;
  padding: 12px 0;
}
.primary-nav a.active {
  color: var(--gold2);
}
.nav-dropdown {
  position: relative;
}
.dropdown-toggle i {
  font-size: 0.7rem;
  margin-left: 6px;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  width: 245px;
  background: #fff;
  color: var(--navy);
  padding: 10px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.22s;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 9px;
}
.dropdown-menu a:hover {
  background: #f2ead9;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 9px;
  width: 27px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.menu-toggle span:nth-child(1) {
  top: 13px;
}
.menu-toggle span:nth-child(2) {
  top: 21px;
}
.menu-toggle span:nth-child(3) {
  top: 29px;
}
.menu-toggle.active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}
.home-hero,
.page-hero,
.hotel-hero {
  position: relative;
  color: white;
  overflow: hidden;
}
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}
.page-hero {
  min-height: 570px;
  display: flex;
  align-items: flex-end;
}
.hotel-hero {
  min-height: 760px;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 18, 29, 0.88) 0%,
      rgba(5, 18, 29, 0.58) 48%,
      rgba(5, 18, 29, 0.18) 100%
    ),
    linear-gradient(0deg, rgba(5, 18, 29, 0.78), transparent 60%);
}
.home-hero-content,
.page-hero-content,
.hotel-hero-content {
  position: relative;
  z-index: 1;
}
.home-hero-content {
  padding: 180px 0 72px;
}
.home-hero h1 {
  max-width: 970px;
  color: white;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
}
.hero-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 900px;
  font-size: 1.08rem;
  color: #e2e9ec;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  color: #e7ebed;
  font-size: 0.9rem;
}
.trust-row i {
  color: var(--gold2);
  margin-right: 8px;
}
.page-hero-content,
.hotel-hero-content {
  padding-bottom: 80px;
  max-width: 850px;
}
.page-hero h1,
.hotel-hero h1 {
  color: #fff;
}
.page-hero p,
.hotel-hero p {
  max-width: 760px;
  font-size: 1.1rem;
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  font-size: 0.87rem;
  margin-bottom: 28px;
  color: #e5eaec;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: center;
}
.split-grid.reverse > :first-child {
  order: 2;
}
.rounded-media {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-block > p:not(.eyebrow) {
  color: #52616a;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 35px;
}
.stats-row div {
  border-top: 1px solid #cdb985;
  padding-top: 15px;
}
.stats-row strong {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--navy);
  display: block;
}
.stats-row span {
  font-size: 0.8rem;
  color: var(--muted);
}
.section-heading {
  max-width: 820px;
  margin-bottom: 50px;
}
.section-heading.center {
  text-align: center;
  margin-inline: auto;
}
.section-dark .section-heading p {
  color: #c8d1d5;
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hotel-card {
  background: #fff;
  color: var(--text);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.17);
  display: flex;
  flex-direction: column;
}
.hotel-card-image {
  height: 270px;
  width: 100%;
  object-fit: cover;
}
.hotel-card-body {
  padding: 27px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.hotel-card h3 {
  font-size: 1.9rem;
}
.location {
  color: #8a6c35;
  font-size: 0.85rem;
  font-weight: 700;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 0.84rem;
}
.feature-list i {
  color: var(--green);
  margin-right: 7px;
}
.card-meta {
  border-top: 1px solid #e7e7e4;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.card-meta span {
  font-size: 0.8rem;
  color: var(--muted);
}
.card-meta strong {
  color: var(--navy);
}
.package-hotel-tabs {
  display: grid;
  gap: 58px;
}
.package-group > h3 {
  font-size: 2rem;
  border-bottom: 1px solid #d6c9ab;
  padding-bottom: 14px;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.package-card {
  background: white;
  border: 1px solid #e1d6bf;
  border-radius: 18px;
  padding: 27px;
  box-shadow: 0 12px 30px rgba(10, 29, 42, 0.06);
}
.package-card h4 {
  font-size: 1.35rem;
}
.package-label {
  font-weight: 700;
  color: #8a6c35;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.package-card ul {
  padding-left: 18px;
  color: #5f6c73;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.experience-grid div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  font-weight: 600;
}
.experience-grid i {
  color: var(--green);
}
.newsletter-section {
  background: var(--navy2);
}
.newsletter-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  background: #102638;
  border: 1px solid rgba(226, 200, 136, 0.38);
  border-radius: 26px;
  padding: 54px;
  color: #dbe4e7;
}
.newsletter-box h2 {
  color: white;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-weight: 700;
  font-size: 0.86rem;
}
.form-grid {
  display: grid;
  gap: 18px;
}
.form-grid.two {
  grid-template-columns: 1fr 1fr;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9ced0;
  background: #fff;
  color: #17252e;
  border-radius: 10px;
  padding: 13px 14px;
  min-height: 50px;
}
textarea {
  resize: vertical;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 17px 0;
  font-size: 0.87rem;
}
.checkbox input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 3px;
}
.checkbox a {
  text-decoration: underline;
}
.form-message {
  margin-top: 12px;
  font-weight: 700;
}
.form-message.success {
  color: #79c59b;
}
.form-message.error {
  color: #e16f6f;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.timeline-item {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 22px;
}
.timeline-item > span {
  font-family: var(--serif);
  color: var(--gold2);
  font-size: 2rem;
}
.timeline-item p {
  color: #c5d0d4;
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value-card {
  background: white;
  border: 1px solid #e2d9c7;
  padding: 20px;
  border-radius: 15px;
}
.value-card i {
  color: #8a6c35;
  font-size: 1.35rem;
}
.value-card h3 {
  font-size: 1.1rem;
  margin: 10px 0 6px;
}
.value-card p {
  font-size: 0.9rem;
  margin: 0;
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.criteria-grid div {
  background: white;
  padding: 16px;
  border-radius: 12px;
}
.criteria-grid i {
  color: var(--green);
  margin-right: 10px;
}
.prose-columns {
  columns: 2;
  column-gap: 55px;
  margin-top: 35px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: white;
  border: 1px solid #dfd4be;
  border-radius: 18px;
  padding: 28px;
}
.stars {
  color: #ae843d;
  letter-spacing: 3px;
}
.review-card span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}
.cta-panel {
  margin-top: 60px;
  background: var(--navy);
  color: white;
  border-radius: 24px;
  padding: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-panel h2 {
  color: white;
  font-size: 2.6rem;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.room-card {
  background: white;
  border: 1px solid #e2d7c1;
  border-radius: 18px;
  padding: 26px;
}
.room-card ul {
  padding-left: 18px;
}
.amenity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}
.amenity-pills span {
  background: #efe6d4;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
}
.amenity-pills i {
  color: var(--green);
  margin-right: 7px;
}
.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 25px 0;
}
.casino-grid div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 9px;
  align-items: center;
}
.casino-grid i {
  color: var(--gold2);
}
.warning-note {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: #f0e5cd;
  color: var(--navy);
  border-left: 5px solid var(--gold);
  border-radius: 11px;
  margin-top: 26px;
}
.warning-note i {
  font-size: 1.5rem;
  color: #8a6c35;
}
.warning-note p {
  margin: 5px 0 0;
  font-size: 0.88rem;
}
.warning-note a {
  text-decoration: underline;
}
.feature-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}
.feature-columns div {
  border-top: 1px solid #d8cab0;
  padding-top: 15px;
}
.feature-columns h3 {
  font-size: 1.13rem;
}
.feature-columns p {
  font-size: 0.9rem;
}
.contact-map-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}
.contact-list p {
  display: flex;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid #d9ccb4;
}
.contact-list i {
  color: #8a6c35;
  width: 20px;
  margin-top: 5px;
}
.contact-list strong {
  display: block;
  color: var(--navy);
}
.map-wrap {
  min-height: 470px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}
.contact-form {
  background: white;
  border: 1px solid #dfd4bd;
  border-radius: 22px;
  padding: 35px;
  box-shadow: var(--shadow);
}
.faq-list {
  max-width: 900px;
  margin: auto;
}
.faq-item {
  border-bottom: 1px solid #cfc1a5;
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border: 0;
  background: none;
  padding: 22px 0;
  font-weight: 700;
  color: var(--navy);
}
.faq-item button i {
  transition: 0.25s;
}
.faq-item.open button i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 0 22px;
  color: #59666e;
}
.legal-hero {
  background: var(--navy);
  color: white;
  padding: 170px 0 80px;
}
.legal-hero h1 {
  color: white;
  font-size: clamp(3rem, 6vw, 5.6rem);
}
.legal-hero > div > p:not(.eyebrow, .updated) {
  max-width: 780px;
  font-size: 1.1rem;
}
.updated {
  color: #b9c4c9;
  font-size: 0.85rem;
}
.legal-layout {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 70px;
}
.legal-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  background: #efe5d0;
  padding: 22px;
  border-radius: 16px;
  max-height: calc(100vh - 150px);
  overflow: auto;
}
.legal-toc h2 {
  font-size: 1.25rem;
}
.legal-toc a {
  display: block;
  padding: 6px 0;
  font-size: 0.82rem;
  color: #536069;
}
.legal-content {
  min-width: 0;
}
.legal-section {
  scroll-margin-top: 120px;
  margin-bottom: 50px;
}
.legal-section h2 {
  font-size: 2rem;
}
.legal-section p {
  color: #4f5d65;
}
.warning-box,
.support-callout {
  border-radius: 16px;
  padding: 22px;
  margin: 20px 0;
}
.warning-box {
  background: #f2e4c7;
  border-left: 6px solid #b58331;
}
.support-callout {
  background: #dbe9e2;
  border: 1px solid #9db9aa;
}
.support-callout a {
  text-decoration: underline;
  font-weight: 700;
}
.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
th,
td {
  border: 1px solid #d8d9d5;
  padding: 13px;
  text-align: left;
  vertical-align: top;
}
th {
  background: #eae0ca;
  color: var(--navy);
}
.site-footer {
  background: #071723;
  color: #c8d2d6;
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.9fr 1.15fr;
  gap: 45px;
}
.footer-brand img {
  width: 270px;
  margin-bottom: 20px;
}
.site-footer h3 {
  color: white;
  font-size: 1.2rem;
}
.site-footer a {
  display: block;
  margin: 7px 0;
}
.inline-form {
  display: flex;
}
.inline-form input {
  border-radius: 10px 0 0 10px;
}
.inline-form button {
  width: 52px;
  border: 0;
  border-radius: 0 10px 10px 0;
  background: var(--gold);
}
.responsibility-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid #243744;
  border-bottom: 1px solid #243744;
  padding: 24px 0;
  margin-top: 50px;
}
.responsibility-strip p {
  margin: 0;
  font-size: 0.86rem;
}
.age-badge {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  font-size: 0.8rem;
}
.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.footer-bottom a,
.footer-bottom button {
  margin: 0;
}
.link-button {
  border: 0;
  background: none;
  color: inherit;
  padding: 0;
  font: inherit;
  line-height: inherit;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.cookie-banner {
  position: fixed;
  z-index: 2000;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: #fff;
  border: 1px solid #d9c697;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}
.cookie-banner p {
  margin: 4px 0 0;
  max-width: 700px;
}
.cookie-banner a {
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-actions .btn {
  min-height: 45px;
  padding: 10px 17px;
}
.cookie-modal {
  position: fixed;
  z-index: 2100;
  inset: 0;
  background: rgba(3, 15, 24, 0.76);
  display: grid;
  place-items: center;
  padding: 20px;
}
.cookie-panel {
  width: min(720px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  padding: 34px;
  position: relative;
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  border: 0;
  background: none;
  font-size: 2rem;
}
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #e1e3e3;
}
.cookie-option h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.cookie-option p {
  font-size: 0.87rem;
  margin: 0;
  color: #66727a;
}
.switch input {
  position: absolute;
  opacity: 0;
}
.switch span {
  width: 50px;
  height: 28px;
  border-radius: 999px;
  background: #a9b0b4;
  display: block;
  position: relative;
  transition: 0.2s;
}
.switch span:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  left: 3px;
  top: 3px;
  transition: 0.2s;
}
.switch input:checked + span {
  background: var(--green);
}
.switch input:checked + span:before {
  transform: translateX(22px);
}
.switch input:disabled + span {
  opacity: 0.65;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.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;
}
@media (max-width: 1100px) {
  .primary-nav {
    gap: 16px;
  }
  .nav-cta {
    display: none;
  }
  .hotel-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hotel-card:last-child {
    grid-column: 1/-1;
    max-width: 560px;
  }
  .package-grid {
    grid-template-columns: 1fr 1fr;
  }
  .package-card:last-child {
    grid-column: 1/-1;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .primary-nav {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(11, 29, 45, 0.98);
    display: block;
    padding: 0 24px;
    transition:
      max-height 0.35s,
      padding 0.35s;
  }
  .primary-nav.open {
    max-height: calc(100vh - 92px);
    overflow: auto;
    padding: 18px 24px 35px;
  }
  .primary-nav > a:not(.btn),
  .dropdown-toggle {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav-cta {
    display: inline-flex;
    margin-top: 16px;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    box-shadow: none;
    max-height: 0;
    padding: 0 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: hidden;
  }
  .nav-dropdown.open .dropdown-menu {
    max-height: 230px;
    padding-block: 8px;
  }
  .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .split-grid,
  .newsletter-box,
  .contact-map-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-grid.reverse > :first-child {
    order: 0;
  }
  .rounded-media {
    min-height: 450px;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .hotel-grid {
    grid-template-columns: 1fr;
  }
  .hotel-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .package-grid,
  .room-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: static;
    max-height: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 680px) {
  .container,
  .legal-layout {
    width: min(100% - 32px, 1180px);
  }
  .section {
    padding: 76px 0;
  }
  .header-inner {
    height: 76px;
  }
  .brand img {
    width: 210px;
  }
  .primary-nav {
    top: 76px;
  }
  .home-hero-content {
    padding: 130px 0 48px;
  }
  .home-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }
  .hero-intro {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }
  .trust-row {
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }
  .page-hero {
    min-height: 500px;
  }
  .hotel-hero {
    min-height: 650px;
  }
  .page-hero-content,
  .hotel-hero-content {
    padding-bottom: 55px;
  }
  .rounded-media {
    min-height: 360px;
  }
  .stats-row,
  .value-grid,
  .package-grid,
  .room-grid,
  .review-grid,
  .criteria-grid,
  .feature-columns,
  .casino-grid {
    grid-template-columns: 1fr;
  }
  .package-card:last-child {
    grid-column: auto;
  }
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .prose-columns {
    columns: 1;
  }
  .newsletter-box,
  .contact-form {
    padding: 28px 20px;
  }
  .form-grid.two {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom > div {
    width: 100%;
    padding-right: 66px;
    row-gap: 12px;
  }
  .responsibility-strip {
    align-items: flex-start;
  }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 18px;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .btn {
    width: 100%;
  }
  .cookie-panel {
    padding: 28px 18px;
  }
  .cookie-modal-actions .btn {
    width: 100%;
  }
  .legal-hero {
    padding: 130px 0 60px;
  }
  .legal-section h2 {
    font-size: 1.65rem;
  }
}
