:root{
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.74);
  --stroke: rgba(255,255,255,0.14);
  --shadow: 0 18px 60px rgba(0,0,0,0.40);
  --radius: 20px;
  --max: 1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  background:#050811;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.45;
}
a{color:inherit}

.shell{
  min-height: 100vh;
  display:flex;
  flex-direction: column;
}

.top{
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 32px));
  z-index: 30;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.20);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.brand{
  display:flex;
  align-items:baseline;
  gap: 10px;
  letter-spacing: 0.2px;
  text-decoration:none;
}
.brand strong{font-weight:700;font-size:14px}
.brand span{color:var(--muted);font-size:12px}
.nav{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.navRight{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.flags{
  display:flex;
  align-items:center;
  gap: 6px;
}
.flagBtn{
  appearance:none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  line-height: 1;
  border-radius: 6px;
  padding: 6px 8px;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.flagBtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}
.flagBtn[aria-pressed="true"]{
  background: rgba(255,255,255,0.70);
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 0 0 2px rgba(239,68,68,0.95);
  color: #0b1220;
}

.themeBtn{
  appearance:none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  line-height: 1;
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.themeBtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
}
.mobileTheme{
  margin-left: 6px;
}

.bookBtn{
  appearance:none;
  border: 0;
  cursor:pointer;
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  background: linear-gradient(90deg, rgba(245,158,11,0.98), rgba(239,68,68,0.98));
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease;
}
.bookBtn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 38px rgba(0,0,0,0.40);
}

.menuBtn{
  appearance:none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 18px;
  line-height: 1;
  cursor:pointer;
  display:none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.menuBtn:hover{transform: translateY(-1px);background: rgba(255,255,255,0.10);border-color: rgba(255,255,255,0.22)}
.menuBtn[aria-expanded="true"]{background: rgba(255,255,255,0.70);color:#0b1220}
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  text-decoration:none;
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.pill:hover{transform: translateY(-1px);background: rgba(255,255,255,0.10);border-color: rgba(255,255,255,0.22)}

.split{
  flex: 1;
  display:grid;
  grid-template-columns: 1fr;
  position: relative;
  min-height: 100vh;
}
@media (min-width: 900px){
  .split{
    display:grid;
    grid-template-columns: 1fr 1fr;
  }
}

.split::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255,255,255,0.26);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.28),
    0 0 18px rgba(255,255,255,0.10);
  opacity: 0;
  pointer-events:none;
  z-index: 5;
}
@media (min-width: 900px){
  .split::after{opacity: 1;}
}

.side{
  position:relative;
  min-height: 50vh;
  overflow:hidden;
  z-index: 1;
}
@media (min-width: 900px){
  .side{
    min-height: 100vh;
  }
}
.bg{
  position:absolute;
  inset:0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.06);
}
.overlay{
  position:absolute;
  inset:0;
  z-index: 1;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(0,0,0,0.10), rgba(0,0,0,0.75)),
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.10) 40%, rgba(0,0,0,0.75));
  opacity: 0.78;
  transition: opacity 220ms ease;
}

.sideHit{
  position:absolute;
  inset:0;
  z-index: 2;
  display:block;
  text-decoration:none;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
}

/* Hover highlight: brighten the side under the cursor */
@media (hover: hover){
  .side .bg{transition: transform 260ms ease, filter 260ms ease}
  .split:hover .side:not(:hover) .overlay{opacity: 0.90}
  .split:hover .side:hover .overlay{opacity: 0.46}
  .split:hover .side:hover .bg{
    transform: scale(1.06);
    filter: saturate(1.18) contrast(1.10) brightness(1.11);
  }
}

.sideInner{
  position:relative;
  z-index: 3;
  height: 100%;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding: 86px 18px 22px;
  pointer-events: none;
}

.panel{pointer-events:auto}
.panel *{pointer-events:auto}
.panel{
  width: min(560px, 100%);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.panel h2{
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 18px;
}
.panel p{
  margin: 0;
  color: rgba(255,255,255,0.80);
  font-size: 13px;
}
.panel p + p{margin-top:10px}
.panel .ctaRow{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.26);
  color: rgba(255,255,255,0.92);
  text-decoration:none;
  font-size: 13px;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.btn:hover{transform: translateY(-1px);background: rgba(0,0,0,0.36);border-color: rgba(255,255,255,0.26)}
.btn.primary{
  background: linear-gradient(135deg, rgba(245,158,11,0.92), rgba(239,68,68,0.92));
  border-color: rgba(255,255,255,0.18);
  color: #10131a;
  font-weight: 800;
}

.heroStage{
  position: relative;
  height: 100vh;
}

.centerHero{
  position: absolute;
  inset: 0;
  pointer-events:none;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 25;
}
.centerCard{
  pointer-events:auto;
  width: min(var(--max), calc(100% - 32px));
  max-width: 980px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 18px 18px;
  max-height: min(78vh, 720px);
  overflow: auto;
}

/* Make compact panels (e.g. Contact) fit content better */
#heroCard[data-active-panel="contact"]{
  max-width: 560px;
}
#heroCard[data-active-panel="contact"] .centerPanel[data-panel="contact"]{
  text-align: left;
}
#heroCard[data-active-panel="contact"] .contactStack{
  align-items: stretch;
}
#heroCard[data-active-panel="contact"] .contactRow{
  width: 100%;
  max-width: 460px;
}
#heroCard[data-active-panel="contact"] .contactExtra{
  text-align: left;
}
.centerCard h1{
  margin:0 0 8px;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.2px;
}
.centerCard p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
  max-width: 78ch;
}
@media (min-width: 900px){
  .centerCard{padding: 22px 22px}
  .centerCard p{font-size: 15px}
}

.centerTopRow{
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap: 10px;
  margin-bottom: 12px;
}
.backBtn{
  appearance:none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.backBtn:hover{transform: translateY(-1px);background: rgba(255,255,255,0.10);border-color: rgba(255,255,255,0.22)}
.closeBtn{
  appearance:none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.90);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 22px;
  line-height: 1;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.closeBtn:hover{transform: translateY(-1px);background: rgba(255,255,255,0.10);border-color: rgba(255,255,255,0.22)}
.centerTopTitle{
  color: rgba(255,255,255,0.70);
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: none;
  justify-self: center;
}
.centerCard[hidden]{display:none !important}
.centerPanel h2{
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 22px;
}
.centerPanel p{
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}
.contactStack{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.mobileMenu{
  position: fixed;
  inset: 0;
  z-index: 50;
}
.mobileMenu[hidden]{display:none !important}
.mobileMenuBackdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(6px);
}
.mobileMenuPanel{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 86vw);
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.92);
  border-left: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  padding: 16px;
  transform: translateX(12px);
  transition: transform 220ms ease;
}
.mobileMenu.isOpen .mobileMenuPanel{transform: translateX(0)}
.mobileMenuHeader{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 2px 14px;
}
.mobileMenuTitle{
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: none;
  color: rgba(255,255,255,0.70);
}
.mobileMenuClose{
  appearance:none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.90);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  font-size: 22px;
  line-height: 1;
  cursor:pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.mobileMenuClose:hover{transform: translateY(-1px);background: rgba(255,255,255,0.10);border-color: rgba(255,255,255,0.22)}
.mobileMenuBody{
  display:flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
}
.mobileLang{
  display:flex;
  gap: 8px;
  justify-content:center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 6px;
}
.mobileFlag{
  font-size: 22px;
}
.mobileLink{
  appearance:none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.90);
  cursor:pointer;
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 16px;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.mobileLink:hover{transform: translateY(-1px);background: rgba(255,255,255,0.10);border-color: rgba(255,255,255,0.22)}
.mobileBookBtn{
  appearance:none;
  border: 0;
  cursor:pointer;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(90deg, rgba(245,158,11,0.98), rgba(239,68,68,0.98));
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  margin-top: 8px;
}

.foot{
  display:none;
}

.content{
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}
.section{
  padding: 76px 0;
  min-height: 100vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(239,68,68,0.16), transparent 60%),
    radial-gradient(900px 520px at 88% 15%, rgba(245,158,11,0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-top: 1px solid rgba(255,255,255,0.06);
}
.section h2{
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 26px;
}
.section p{
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  max-width: 92ch;
}
.muted{color: rgba(255,255,255,0.70)}
.mapCard{
  margin-top: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mapCard--inModal{
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.map{
  height: 420px;
}
.mapCard--inHero{
  margin-top: 12px;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.map--inCard{height: 360px}

.addrGrid{
  margin-top: 12px;
  margin-bottom: 12px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 900px){
  .addrGrid{grid-template-columns: 1fr 1fr;}
}
.addrCard{
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 12px 14px;
}
.addrCard h3{
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.addrCard div{
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.4;
}

.footer{
  padding: 22px 0 34px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}
.footerInner{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
  justify-content: space-between;
  color: rgba(255,255,255,0.64);
  font-size: 12px;
}
.footerLinks{
  display:inline-flex;
  align-items:center;
  gap: 10px;
}
.footerLink{
  appearance:none;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.70);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.footerLink:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
}

.policyText{
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font: inherit;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.80);
}

.modal{
  position: fixed;
  inset: 0;
  z-index: 60;
  display:none;
}
.modal.isOpen{display:block}
.modalBackdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.68);
  backdrop-filter: blur(10px);
}
.modalCard{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100% - 36px));
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(239,68,68,0.12), transparent 60%),
    radial-gradient(900px 520px at 85% 15%, rgba(245,158,11,0.10), transparent 60%),
    linear-gradient(180deg, rgba(15,23,42,0.96), rgba(2,6,23,0.96));
  color: rgba(255,255,255,0.92);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  padding: 18px;
}
.modalCard--wide{
  width: min(820px, calc(100% - 36px));
}
.modalTitle{
  margin: 2px 0 14px;
  font-weight: 400;
  font-size: 22px;
  text-align:center;
}
.modalBody{
  max-height: min(62vh, 560px);
  overflow:auto;
  padding-right: 4px;
}
.modalBody p{
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.55;
}
.statusModalMessage{
  white-space: pre-line;
}
.statusModalMessage.isError{
  color: rgba(239,68,68,0.95);
}
.modalList{display:flex;flex-direction:column;gap: 12px}
.contactRow{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 12px;
  border-radius: 16px;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 140ms ease, background 140ms ease;
}
.contactRowButton{
  width: 100%;
  text-align:left;
  cursor: default;
  appearance:none;
  font: inherit;
}
.contactRow:hover{transform: translateY(-1px)}
.contactRow--warm{background: rgba(239,68,68,0.12)}
.contactRow--warm:hover{background: rgba(239,68,68,0.18)}
.contactRow--sun{background: rgba(245,158,11,0.12)}
.contactRow--sun:hover{background: rgba(245,158,11,0.18)}
.contactRow--cool{background: rgba(59,130,246,0.12)}
.contactRow--cool:hover{background: rgba(59,130,246,0.18)}
.contactIcon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size: 16px;
  flex: 0 0 auto;
}
.contactIcon--warm{background: rgb(239,68,68)}
.contactIcon--sun{background: rgb(245,158,11)}
.contactIcon--cool{background: rgb(59,130,246)}
.contactLabel{font-size: 12px;color: rgba(255,255,255,0.68)}
.contactValue{font-size: 16px;color: rgba(255,255,255,0.92)}
.contactExtra{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  line-height: 1.35;
}
.bookingForm{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.bookingRow{
  display:grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.bookingField{
  display:flex;
  flex-direction: column;
  gap: 6px;
}
.bookingLabel{
  color: rgba(255,255,255,0.70);
  font-size: 12px;
}
.bookingInput{
  appearance:none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  border-radius: 12px;
  padding: 10px 12px;
  outline: none;
}
.dateField{
  position: relative;
  display:flex;
  align-items:center;
}
.dateField .bookingInput{
  width: 100%;
  padding-right: 42px;
}
.dateNative{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.dateBtn{
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  border-radius: 10px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  cursor: pointer;
}
.dateBtn:hover{
  background: rgba(255,255,255,0.22);
}
.bookingInput:focus{
  border-color: rgba(245,158,11,0.55);
  box-shadow: 0 0 0 2px rgba(245,158,11,0.25);
}
.bookingTextarea{resize: vertical;}
.bookingConsent{
  display:flex;
  gap: 8px;
  align-items:flex-start;
  color: rgba(255,255,255,0.74);
  font-size: 12px;
}
.bookingSummary{
  display:flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
}
.bookingSummaryRow{
  display:flex;
  align-items:center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}
.bookingSummaryRow--total .bookingSummaryValue{
  color: rgba(255,255,255,0.96);
  font-weight: 700;
}
.bookingSummaryLabel{
  letter-spacing: 0.02em;
}
.bookingActions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.centerPanel[data-panel="booking"] .bookingActions .btn{
  border: 0;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}
.centerPanel[data-panel="booking"] .bookingActions .btn.primary{
  background: linear-gradient(90deg, rgba(245,158,11,0.98), rgba(239,68,68,0.98));
  border: 0;
  color: #fff;
  font-weight: 700;
}
.centerPanel[data-panel="booking"] .bookingActions .btn:hover{
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}
.bookingStatus{
  min-height: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.82);
}
.modalClose{
  margin-top: 14px;
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 0;
  cursor:pointer;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.78);
  transition: background 140ms ease, transform 140ms ease;
}
.modalClose:hover{background: rgba(255,255,255,0.14);transform: translateY(-1px)}
.srOnly{
  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: 760px){
  .nav{display:none;}
  .flags{display:none;}
  .bookBtn{display:none;}
  .menuBtn{display:inline-flex;}
  .navRight{flex-wrap: nowrap;}

  /* Bring back the center slogan card on mobile, but keep it compact. */
  .centerHero{
    align-items: center;
    padding: 18px;
  }
  .centerCard{
    max-width: 560px;
    width: min(560px, calc(100% - 32px));
    max-height: 62vh;
    padding: 12px 12px;
  }
  /* Let Locations breathe on mobile (reduce forced scrolling) */
  #heroCard[data-active-panel="locations"]{
    max-height: 82vh;
  }
  #heroCard[data-active-panel="locations"] .muted{
    margin-bottom: 6px;
  }
  #heroCard[data-active-panel="locations"] .mapCard--inHero{
    margin-top: 10px;
  }
  #heroCard[data-active-panel="locations"] .map--inCard{
    height: 240px;
  }
  #heroCard[data-active-panel="locations"] .addrGrid{
    margin-top: 10px;
    gap: 8px;
  }
  #heroCard[data-active-panel="locations"] .addrCard{
    padding: 10px 12px;
  }
  #heroCard[data-active-panel="locations"] .addrCard h3{
    margin-bottom: 6px;
  }
  .centerTopRow{
    margin-bottom: 8px;
  }
  .backBtn{
    padding: 6px 8px;
    border-radius: 10px;
  }
  .centerTopTitle{
    font-size: 10px;
  }
  .centerCard h1{
    margin: 0 0 6px;
    font-size: clamp(22px, 6vw, 30px);
  }
  .centerCard p{
    font-size: 13px;
    display: block;
    overflow: visible;
  }

  /* Legacy mobile intro (kept in DOM but never shown now). */
  .mobileSlogan{display:none !important;}

  /* Keep the split backgrounds visible on tiny screens */
  .sideInner{
    padding: 0 14px 14px;
    align-items:flex-end;
  }
  .sideInner .panel{
    width: auto;
    max-width: calc(100% - 12px);
    border-radius: 999px;
    padding: 10px 12px;
    background: rgba(0,0,0,0.18);
  }
  .sideInner .panel h2{
    margin: 0;
    font-size: 14px;
    font-weight: 600;
  }
  .sideInner .panel p,
  .sideInner .panel .ctaRow{
    display:none;
  }

  /* When a center popup is open, hide the bottom pills to avoid visual clutter */
  body.panelOpen .sideInner{
    opacity: 0;
    pointer-events:none;
  }
}

html[data-theme="light"] body{
  background: #f8fafc;
  color: rgba(11,18,32,0.92);
}
html[data-theme="light"] .top{
  background: rgba(255,255,255,0.55);
  border-color: rgba(11,18,32,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.12);
  color: rgba(11,18,32,0.92);
}
html[data-theme="light"] .brand strong{
  color: rgba(11,18,32,0.92);
}
html[data-theme="light"] .brand span{
  color: rgba(11,18,32,0.60);
}
html[data-theme="light"] .pill,
html[data-theme="light"] .menuBtn,
html[data-theme="light"] .flagBtn,
html[data-theme="light"] .themeBtn{
  background: rgba(11,18,32,0.06);
  border-color: rgba(11,18,32,0.12);
  color: rgba(11,18,32,0.88);
}
html[data-theme="light"] .pill:hover,
html[data-theme="light"] .menuBtn:hover,
html[data-theme="light"] .flagBtn:hover,
html[data-theme="light"] .themeBtn:hover{
  background: rgba(11,18,32,0.10);
  border-color: rgba(11,18,32,0.20);
}
html[data-theme="light"] .flagBtn[aria-pressed="true"]{
  background: rgba(11,18,32,0.12);
  border-color: rgba(11,18,32,0.18);
  box-shadow: 0 0 0 2px rgba(239,68,68,0.65);
  color: #0b1220;
}
html[data-theme="light"] .panel{
  background: rgba(255,255,255,0.60);
  border-color: rgba(11,18,32,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}
html[data-theme="light"] .panel p{
  color: rgba(11,18,32,0.74);
}
html[data-theme="light"] .centerCard{
  background: rgba(255,255,255,0.62);
  border-color: rgba(11,18,32,0.10);
}
html[data-theme="light"] .centerCard p{
  color: rgba(11,18,32,0.74);
}
html[data-theme="light"] .centerTopTitle{
  color: rgba(11,18,32,0.60);
}
html[data-theme="light"] .bookingLabel{
  color: rgba(11,18,32,0.70);
}
html[data-theme="light"] .bookingInput{
  border-color: rgba(11,18,32,0.16);
  background: rgba(255,255,255,0.45);
  color: rgba(11,18,32,0.92);
}
html[data-theme="light"] .dateBtn{
  background: rgba(11,18,32,0.08);
  color: rgba(11,18,32,0.72);
}
html[data-theme="light"] .dateBtn:hover{
  background: rgba(11,18,32,0.14);
}
html[data-theme="light"] .bookingConsent{
  color: rgba(11,18,32,0.70);
}
html[data-theme="light"] .bookingStatus{
  color: rgba(11,18,32,0.74);
}
html[data-theme="light"] .bookingSummary{
  border-color: rgba(11,18,32,0.16);
  background: rgba(255,255,255,0.45);
}
html[data-theme="light"] .bookingSummaryRow{
  color: rgba(11,18,32,0.68);
}
html[data-theme="light"] .bookingSummaryRow--total .bookingSummaryValue{
  color: rgba(11,18,32,0.92);
}
html[data-theme="light"] .contactLabel,
html[data-theme="light"] .contactExtra{
  color: rgba(11,18,32,0.62);
}
html[data-theme="light"] .contactValue{
  color: rgba(11,18,32,0.92);
}
html[data-theme="light"] .overlay{
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(255,255,255,0.18), rgba(0,0,0,0.24)),
    linear-gradient(180deg, rgba(0,0,0,0.20), rgba(0,0,0,0.04) 40%, rgba(0,0,0,0.28));
  opacity: 0.52;
}
html[data-theme="light"] .section{
  background:
    radial-gradient(900px 520px at 12% 10%, rgba(239,68,68,0.10), transparent 60%),
    radial-gradient(900px 520px at 88% 15%, rgba(245,158,11,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.30));
  border-top-color: rgba(11,18,32,0.10);
}
html[data-theme="light"] .section h2{
  color: rgba(11,18,32,0.92);
}
html[data-theme="light"] .section p{
  color: rgba(11,18,32,0.74);
}
html[data-theme="light"] .muted{
  color: rgba(11,18,32,0.62);
}
html[data-theme="light"] .mapCard{
  background: rgba(255,255,255,0.60);
  border-color: rgba(11,18,32,0.10);
}
html[data-theme="light"] .mapCard--inModal,
html[data-theme="light"] .mapCard--inHero{
  background: rgba(255,255,255,0.50);
  border-color: rgba(11,18,32,0.10);
}
html[data-theme="light"] .footer{
  background: rgba(255,255,255,0.55);
  border-top-color: rgba(11,18,32,0.10);
}
html[data-theme="light"] .footerInner{
  color: rgba(11,18,32,0.62);
}
html[data-theme="light"] .footerLink{
  background: rgba(11,18,32,0.06);
  border-color: rgba(11,18,32,0.12);
  color: rgba(11,18,32,0.80);
}
html[data-theme="light"] .footerLink:hover{
  background: rgba(11,18,32,0.10);
  border-color: rgba(11,18,32,0.20);
}
html[data-theme="light"] .policyText{
  color: rgba(11,18,32,0.74);
}
html[data-theme="light"] .btn{
  background: rgba(11,18,32,0.08);
  border-color: rgba(11,18,32,0.14);
  color: rgba(11,18,32,0.88);
}
html[data-theme="light"] .btn:hover{
  background: rgba(11,18,32,0.12);
  border-color: rgba(11,18,32,0.20);
}
html[data-theme="light"] .btn.primary{
  background: linear-gradient(135deg, rgba(245,158,11,0.92), rgba(239,68,68,0.92));
  border-color: rgba(11,18,32,0.12);
  color: #10131a;
}
html[data-theme="light"] .backBtn,
html[data-theme="light"] .closeBtn{
  background: rgba(11,18,32,0.06);
  border-color: rgba(11,18,32,0.12);
  color: rgba(11,18,32,0.88);
}
html[data-theme="light"] .backBtn:hover,
html[data-theme="light"] .closeBtn:hover{
  background: rgba(11,18,32,0.10);
  border-color: rgba(11,18,32,0.20);
}
html[data-theme="light"] .centerPanel[data-panel="booking"] .bookingActions .btn{
  background: rgba(11,18,32,0.10);
  color: rgba(11,18,32,0.78);
}
html[data-theme="light"] .centerPanel[data-panel="booking"] .bookingActions .btn:hover{
  background: rgba(11,18,32,0.16);
}
html[data-theme="light"] .centerPanel[data-panel="booking"] .bookingActions .btn.primary{
  background: linear-gradient(90deg, rgba(245,158,11,0.98), rgba(239,68,68,0.98));
  color: #fff;
}
html[data-theme="light"] .modalBackdrop{
  background: rgba(11,18,32,0.32);
}
html[data-theme="light"] .mobileMenuBackdrop{
  background: rgba(11,18,32,0.28);
}
html[data-theme="light"] .split::after{
  background: rgba(11,18,32,0.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.60),
    0 0 18px rgba(11,18,32,0.12);
}
html[data-theme="light"] .modalCard{
  background: rgba(255,255,255,0.72);
  border-color: rgba(11,18,32,0.10);
  color: rgba(11,18,32,0.92);
}
html[data-theme="light"] .modalBody p{
  color: rgba(11,18,32,0.74);
}
html[data-theme="light"] .addrCard{
  background: rgba(255,255,255,0.55);
  border-color: rgba(11,18,32,0.10);
}
html[data-theme="light"] .addrCard h3{
  color: rgba(11,18,32,0.92);
}
html[data-theme="light"] .addrCard div{
  color: rgba(11,18,32,0.70);
}
html[data-theme="light"] .modalClose{
  background: rgba(11,18,32,0.06);
  color: rgba(11,18,32,0.80);
}
html[data-theme="light"] .modalClose:hover{
  background: rgba(11,18,32,0.10);
}
html[data-theme="light"] .mobileMenuPanel{
  background: rgba(255,255,255,0.70);
  color: rgba(11,18,32,0.92);
  border-left-color: rgba(11,18,32,0.10);
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}
html[data-theme="light"] .mobileMenuTitle{
  color: rgba(11,18,32,0.60);
}
html[data-theme="light"] .mobileMenuClose,
html[data-theme="light"] .mobileLink{
  background: rgba(11,18,32,0.06);
  border-color: rgba(11,18,32,0.12);
  color: rgba(11,18,32,0.90);
}
html[data-theme="light"] .mobileMenuClose:hover,
html[data-theme="light"] .mobileLink:hover{
  background: rgba(11,18,32,0.10);
  border-color: rgba(11,18,32,0.20);
}
html[data-theme="light"] .mobileLang{
  border-bottom-color: rgba(11,18,32,0.12);
}
@media (max-width: 760px){
  html[data-theme="light"] .sideInner .panel{
    background: rgba(255,255,255,0.86);
  }
}
