@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');

/* =========================
   CSS VARIABLES
========================= */

:root {
  --rmr-arrow: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5h12M9 1l4 4-4 4' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  /* ── Fluid scale root ──────────────────────────────────────
     Uses the SMALLER of vw or vh so a wide landscape display
     (e.g. 4000×2000) doesn't over-scale horizontally while
     starving vertical space.
     At 1920×1080  → min(0.833vw=16px, 1.48vh=16px)  ≈ 16px
     At 4000×2000  → min(0.833vw=33px, 1.48vh=29px)  ≈ 29px  ✓ (vh wins)
     At 1280×800   → min(0.833vw=10.6px, 1.48vh=11.8px) ≈ 10.6px
     Clamped 10px–20px to stay sane on very small/large screens.
  ─────────────────────────────────────────────────────────── */
  font-size: clamp(18px, min(1vw, 1.8vh), 28px);
}

/* =========================
   RESET
========================= */

body { margin: 0; }

/* =========================
   BASE
========================= */

.rmr-ts-app,
.rmr-ts-app * { box-sizing: border-box; }

.rmr-ts-app {
  --accent: #0073c6;
  width: 100%;
  height: 100dvh;
  background: #1a1a1a;
  color: #e8e8e8;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  overflow: hidden;
  font-size: 1rem;
}

.rmr-ts-view {
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2.5em 0 1em;
  overflow: hidden;
  /* no max-width — tiles must fill full viewport width */
}

/* =========================
   TYPOGRAPHY
========================= */

.rmr-ts-title {
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 3rem);
  letter-spacing: 0.375em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 0.4em;
  color: #fff;
}

.rmr-ts-subtitle {
  text-align: center;
  font-size: clamp(0.7rem, 0.85vw, 1.1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
  color: rgba(255, 255, 255, .5);
}

.rmr-ts-intro {
  text-align: center;
  max-width: 47.5em;
  margin: 0 auto 1em;
  font-size: clamp(0.7rem, 0.8vw, 1rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, .65);
}

.rmr-ts-prefix {
  display: block;
  font-size: clamp(0.6rem, 0.7vw, 0.9rem);
  letter-spacing: 0.375em;
  font-weight: 400;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 0.375em;
  text-transform: uppercase;
}

/* =========================
   LAYOUT
========================= */

.rmr-content-wrap {
    
    
  width:100%;

  padding:
    0
    clamp(24px, 2vw, 56px);

  margin: 0 auto 0.75em;
  text-align: center;
  flex-shrink: 0;
}

.rmr-panels-wrap{

    width:100%;
  
    /*
      Adds proper kiosk framing
    */
  
    padding:
      0
      clamp(20px, 2vw, 48px)
      clamp(20px, 2vh, 48px);
  
    flex:1 1 auto;
  
    min-height:0;
  
    display:flex;
  
    flex-direction:column;
  
    overflow:hidden;
  
  }
/* =========================
   GRID (EXPLORE ONLY)
========================= */

.rmr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}

/* =========================
   TILE BASE
========================= */

/* =========================
   TILE BASE
========================= */

.rmr-select-tile,
.rmr-exp-tile {

  width: 100%;

  /*
    Fill remaining viewport height
    instead of fixed vh sizing
  */

  height: 100%;

  min-height: 0;

  border-radius: 0.75em;

  overflow: hidden;

  position: relative;

  background: #222;

  cursor: pointer;

  box-shadow: 0 0.5em 2.5em rgba(0, 0, 0, .4);

  transition:
    flex-basis 0.5s ease,
    max-width 0.5s ease;

}

.rmr-select-tile:hover {
  transform: translateY(-6px);
}

/* Exp tile default sizing */
.rmr-exp-tile {
  flex: 0 0 calc((100% - 3 * 1em) / 4);
  max-width: calc((100% - 3 * 1em) / 4);
  pointer-events: auto;
}

/* Expanded tile */
.rmr-exp-tile.expanded {
  flex: 0 0 60vw;
  max-width: 60vw;
  flex-shrink: 0;
  z-index: 5;
}

/* Closing tile */
.rmr-exp-tile.closing {
  flex: 0 0 calc((100% - 3 * 1em) / 4);
  max-width: calc((100% - 3 * 1em) / 4);
}

/* =========================
   TILE MEDIA
========================= */

.rmr-tile-img {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transition: transform .8s ease;
}

.rmr-tile-img:not([style*="url"]) {
  background: linear-gradient(135deg, #2a2a2a, #111);
}

.rmr-select-tile:hover .rmr-tile-img {
  transform: scale(1.08);
}

.rmr-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .9));
}

.rmr-tile-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25em;
  height: 3.75em;
  background: var(--accent);
  transition: .4s;
}

.rmr-select-tile:hover .rmr-tile-accent {
  height: 100%;
}

/* =========================
   TILE CONTENT
========================= */

.rmr-tile-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5em;
}

.rmr-tile-title {
  font-size: clamp(0.9rem, 1.4vw, 1.75rem);
  letter-spacing: 0.125em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
}

.rmr-tile-sub {
  max-width: 16.25em;
  font-size: clamp(0.65rem, 0.75vw, 0.95rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .8);
}

.rmr-tile-cta {
  margin-top: 1.125em;
  font-size: clamp(0.55rem, 0.65vw, 0.85rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875em 1.625em;
  border-radius: 0.375em;
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  border: 1px solid rgba(255, 255, 255, .6);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.rmr-select-tile:hover .rmr-tile-cta {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, .9);
  transform: translateY(-2px);
}

/* CTA arrow */
.rmr-tile-cta::after {
  content: "";
  width: 0.875em;
  height: 0.625em;
  background-color: currentColor;
  -webkit-mask: var(--rmr-arrow) no-repeat center / contain;
  mask: var(--rmr-arrow) no-repeat center / contain;
  transition: transform .3s ease;
}

.rmr-select-tile:hover .rmr-tile-cta::after {
  transform: translateX(6px);
}

/* First tile highlighted CTA */
.rmr-select-tile:first-child .rmr-tile-cta {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.9);
  color: #111;
}

.rmr-select-tile:first-child:hover .rmr-tile-cta {
  background: #fff;
  color: #000;
}

/* =========================
   TILE VISIBILITY (EXPANDED STATE)
========================= */

.rmr-exp-tile:not(.expanded) .rmr-tile-content,
.rmr-exp-tile:not(.expanded) .rmr-tile-overlay,
.rmr-exp-tile:not(.expanded) .rmr-plus {
  opacity: 1;
  pointer-events: auto;
}

.rmr-exp-tile.expanded .rmr-tile-content,
.rmr-exp-tile.expanded .rmr-tile-overlay,
.rmr-exp-tile.expanded .rmr-plus {
  opacity: 0;
  pointer-events: none;
}

.rmr-exp-tile.expanded .rmr-tile-overlay {
  background: rgba(0, 0, 0, 0.95);
}

/* =========================
   EXPANDED PANEL
========================= */

.rmr-expanded {
    position: absolute;
    inset: 0;
  
    display: flex;
    flex-direction: column;
  
    height: 100%;
    min-height: 0;
  
    background: #1a1a1a;
  
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

.rmr-exp-tile:not(.expanded) .rmr-expanded {
  opacity: 0;
  pointer-events: none;
}

.rmr-exp-tile.expanded .rmr-expanded {
  opacity: 1;
  pointer-events: auto;
  padding: 0 2.5em;
}

.rmr-exp-header h3 {
  font-size: clamp(0.9rem, 1.25vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 0.375em;
  line-height: 1.2;
}

.rmr-exp-header div {
  font-size: clamp(0.55rem, 0.65vw, 0.85rem);
  letter-spacing: 0.125em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(255, 255, 255, .5);
}

.rmr-exp-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25em;
  padding: 1em 2.5em;
}

/* =========================
   PANELS
========================= */
.rmr-panel{
    position:relative;

    flex:0 0 100%;
    width:100%;
    max-width:100%;

    scroll-snap-align:start;

    display:flex;
    flex-direction:column;

    min-height:0;
    height:100%;

    padding:1.875em 2.5em 1.875em 0;
}

.rmr-panel h4{
    font-size:clamp(.7rem,.85vw,1.05rem);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.15em;
    color:#fff;
    margin-bottom:.375em;
}

.rmr-panel-layout{
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(420px,1fr);
    gap:2.5rem;

    flex:1;
    min-height:0;
    overflow:hidden;
}

.rmr-panel-body{
    font-size:clamp(.65rem,.8vw,1rem);
    line-height:1.85;
    font-weight:300;
    color:rgba(255,255,255,.78);

    overflow-y:auto;
    min-width:0;
    min-height:0;

    padding-right:1.25rem;
}

.rmr-panel-body p{
    margin-bottom:.625em;
}

.rmr-panel-content-image{
    position:relative;

    display:flex;
    align-items:flex-start;
    justify-content:center;

    min-width:0;
    min-height:0;
}

.rmr-panel-content-image img{
    display:block;
    width:100%;
    max-width:100%;
    max-height:70vh;
    object-fit:cover;
    border-radius:12px;
}

.rmr-panel-qr{
    position:absolute;
    top:1rem;
    right:1rem;
    width:110px;
    z-index:20;
}

.rmr-panel-qr img{
    display:block;
    width:100%;
    height:auto;
}

.rmr-panels{
    flex:1 1 auto;
    display:flex;
    min-height:0;
    overflow:hidden;
    position:relative;
}

.rmr-panels-track{
    display:flex;
    flex-wrap:nowrap;

    height:100%;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;

    scrollbar-width:none;
}

.rmr-panels-track::-webkit-scrollbar{
    display:none;
}

.rmr-panel-nav{
    display:flex;
    gap:.5em;
    justify-self:end;
}

.rmr-panel-arrow{
    width:2em;
    height:2em;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    border:none;
    color:#fff;
    cursor:pointer;
    font-size:clamp(.75rem,.9vw,1.1rem);
}

.rmr-panel-arrow:hover{
    background:#0073c6;
}

.rmr-panel-close{
    position:absolute;
    top:1em;
    right:1em;
    width:2.25em;
    height:2.25em;
    border-radius:50%;
    background:#0073c6;
    color:#fff;
    border:none;
    font-size:clamp(.85rem,1vw,1.25rem);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
    transition:all .25s ease;
}

.rmr-panel-close:hover{
    transform:scale(1.1);
}

.rmr-expanded:has(.rmr-panel:only-child) .rmr-panel-nav{
    display:none;
}

/* =========================
   DIVIDER
========================= */

.lf-panel-divider {
  width: 2em;
  height: 0.125em;
  background: #0073c6;
  margin-bottom: 0.875em;
}

/* =========================
   PLUS BUTTON
========================= */

.rmr-plus {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 2.25em;
  height: 2.25em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.85rem, 1vw, 1.25rem);
  color: #fff;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.rmr-plus::before {
  content: '+';
  transform: translateY(-1px);
}

.rmr-plus:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* =========================
   HORIZONTAL WRAP & SLIDER
========================= */

.rmr-horizontal-wrap {

    position: relative;
  
    flex: 1 1 auto;
  
    min-height: 0;
  
    display: flex;
  
    flex-direction: column;
  
    overflow: hidden;
  
  }

.rmr-horizontal {

    display: flex;
  
    flex-wrap: nowrap;
  
    gap:     clamp(12px, 1vw, 28px);
  
    overflow-x: auto;
  
    overflow-y: hidden;
  
    scroll-snap-type: x mandatory;
  
    padding: 0;
  
    scrollbar-width: none;
  
    flex: 1 1 auto;
  
    min-height: 0;
  
    height: 100%;
  
    align-items: stretch;
  
  }

.rmr-horizontal::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.rmr-horizontal.has-expanded {
  overflow-x: hidden;
}


/* Static mode (exactly 4) */
.rmr-horizontal-wrap.is-static .rmr-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
  overflow: visible;
  align-items: start;
  height: auto;
  padding: 0.5em 0;
}

.rmr-horizontal-wrap.is-static .rmr-exp-tile {
  width: 100%;
  max-width: none;
  flex: none;
  /* height comes from the tile base rule (clamp vh) */
}

/* Slider mode */
.rmr-horizontal-wrap.is-slider .rmr-horizontal {
  display: flex;
  padding: 0.75em 0;        /* scroll buttons are absolute, no padding needed */
  align-items: flex-start;
}

.rmr-horizontal-wrap.is-slider .rmr-exp-tile {
  /* 4 tiles: (container - 3 gaps) / 4. Container = 100% of horizontal */
  flex: 0 0 calc((100% - 3 * 1em) / 4);
  max-width: calc((100% - 3 * 1em) / 4);
  scroll-snap-align: start;
}

.rmr-horizontal-wrap.is-slider .rmr-exp-tile.expanded {
  flex: 0 0 60vw;
  max-width: 60vw;
}

.rmr-horizontal-wrap.is-slider .rmr-exp-tile.closing {
  flex: 0 0 calc((100% - 3 * 1em) / 4);
  max-width: calc((100% - 3 * 1em) / 4);
}

/* =========================
   SCROLL BUTTONS
========================= */

.rmr-scroll-left,
.rmr-scroll-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3em;
  height: 3em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: clamp(0.85rem, 1.1vw, 1.4rem);
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}

.rmr-scroll-left { left: 0.5em; }
.rmr-scroll-right { right: 0.5em; }

.rmr-scroll-left:hover,
.rmr-scroll-right:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.05);
}

.rmr-scroll-left:active,
.rmr-scroll-right:active {
  transform: translateY(-50%) scale(0.95);
}

/* =========================
   SCROLL HINT
========================= */

.rmr-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875em;
  margin: 0.25em 0 0.5em;
  font-size: clamp(0.55rem, 0.65vw, 0.8rem);
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.rmr-scroll-line {
  width: 2.5em;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
/* =========================
   HOME BUTTON
========================= */

.rmr-home {
    position: absolute;

    top: clamp(16px, min(2vw, 2vh), 40px);
    left: clamp(16px, min(2vw, 2vh), 40px);

    width: clamp(48px, min(4vw, 6vh), 120px);
    height: clamp(48px, min(4vw, 6vh), 120px);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: clamp(1px, min(0.08vw, 0.08vh), 2px) solid rgba(255,255,255,.2);

    background: rgba(0,0,0,.6);
    color: #fff;
    backdrop-filter: blur(clamp(3px, min(0.4vw, 0.4vh), 8px));

    cursor: pointer;
    z-index: 20;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.rmr-home:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.6);
    transform: scale(1.05);
}

.rmr-home:active {
    transform: scale(.95);
}

.rmr-home-icon {
    width: clamp(22px, min(2vw, 3vh), 60px);
    height: clamp(22px, min(2vw, 3vh), 60px);

    background-color: currentColor;

    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.5L12 3l9 7.5V21a1 1 0 0 1-1 1h-5v-7H9v7H4a1 1 0 0 1-1-1v-10.5z' fill='black'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10.5L12 3l9 7.5V21a1 1 0 0 1-1 1h-5v-7H9v7H4a1 1 0 0 1-1-1v-10.5z' fill='black'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* =========================
   MAP
========================= */

.rmr-map-wrap {
  display: flex;
  min-height: 42.5em;
  border-radius: 0.75em;
  overflow: hidden;
  background: #111;
}

.rmr-map-sidebar {
  width: 21.25em;
}

.rmr-map-stage {
  flex: 1;
  background: #2a2a2a center / cover no-repeat;
}

/* =========================
   ARRIVAL / LANDING
========================= */

.rmr-arrival {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3em 1.5em;
  text-align: center;
}

.rmr-arrival-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1f1f1f, #050505);
  z-index: 0;
}

.rmr-arrival-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 115, 198, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
}

.rmr-arrival-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rmr-arrival-media iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
  }

.rmr-arrival-content {
  position: relative;
  z-index: 2;
  max-width: 80%;
  color: #fff;
}

.rmr-arrival-content h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

.rmr-arrival-content p {
  /* margin: 2.25em 0; */
  font-size: clamp(0.75rem, 4vw, 4rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight:700;
  color: rgba(255, 255, 255, 0.72);
}

.rmr-primary-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  min-height: 3.25em;
  padding: 0 2.125em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: clamp(0.6rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.rmr-primary-btn:hover {
  background: #0073c6;
  border-color: #0073c6;
  transform: translateY(-2px);
}

.rmr-primary-btn:active {
  transform: translateY(0);
}

/* =========================
   MAP PAGE (MP)
========================= */

.mp-section { max-width: 90em; margin: 0 auto; padding: 3em 1.5em; }

.mp-back {
  position: fixed;
  bottom: 1.5em;
  right: 1.5em;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0.25em 1em rgba(0, 0, 0, .3);
  transition: all .25s ease;
  cursor: pointer;
}

.mp-back:hover {
  background: #0073c6;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0.375em 1.25em rgba(0, 115, 198, .4);
}

.mp-back svg {
  width: 1.375em;
  height: 1.375em;
  stroke: none;
  fill: currentColor;
}

.mp-title {
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 3rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #fff;
}

.mp-subtitle {
  text-align: center;
  font-size: clamp(0.7rem, 0.85vw, 1.05rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 3em;
  color: rgba(255, 255, 255, .5);
}

.mp-wrap {
  display: flex;
  min-height: 38.75em;
  border-radius: 0.75em;
  overflow: hidden;
  box-shadow: 0 0.5em 2.5em rgba(0, 0, 0, .4);
}

/* Sidebar */
.mp-sidebar {
  width: clamp(260px, 22vw, 420px);
  min-width: clamp(260px, 22vw, 420px);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 45em;
  background: #111;
}

.mp-sidebar::-webkit-scrollbar { width: 3px; }
.mp-sidebar::-webkit-scrollbar-track { background: #111; }
.mp-sidebar::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

.mp-card {
  padding: 1.25em 1.5em;
  cursor: pointer;
  transition: all .3s;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mp-card:hover { background: rgba(255, 255, 255, .04); }

.mp-card.active {
  background: rgba(255, 255, 255, .07);
  border-left-width: 3px;
}

.mp-card-logo {
  width: clamp(40px, 3.5vw, 70px);
  height: clamp(40px, 3.5vw, 70px);
  border-radius: 0.625em;
  margin-bottom: 0.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mp-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mp-card-logo .mp-fallback {
  font-size: clamp(1rem, 1.4vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

.mp-card-name {
  font-size: clamp(0.7rem, 1vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.375em;
  color: #fff;
}

.mp-card-image {
  width: 100%;
  height: 0;
  overflow: hidden;
  border-radius: 0.5em;
  margin-bottom: 0;
  opacity: 0;
  transition: height .4s ease, opacity .3s ease, margin .3s ease;
}

.mp-card.active .mp-card-image.has-img {
  height: clamp(100px, 12vw, 180px);
  opacity: 1;
  margin-bottom: 0.75em;
}

.mp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5em;
}

.mp-card-desc {
  font-size: clamp(0.6rem, 0.75vw, 0.95rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, .55);
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .3s ease;
}

.mp-card.active .mp-card-desc { max-height: 12.5em; opacity: 1; }

.mp-card-status {
  font-size: clamp(0.5rem, 0.6vw, 0.75rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.5em;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .3s ease;
}

.mp-card.active .mp-card-status { max-height: 1.875em; opacity: 1; }

.mp-card-link {
  display: inline-block;
  margin-top: 0.875em;
  padding: 0.625em 1.5em;
  font-size: clamp(0.55rem, 0.65vw, 0.8rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.25em;
  transition: all .25s ease;
  cursor: pointer;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}

.mp-card-link,
.mp-card-link:visited,
.mp-card-link:hover,
.mp-card-link:active {
  color: #fff !important;
  text-decoration: none;
}

.mp-card.active .mp-card-link.has-link { max-height: 3.125em; opacity: 1; }

.mp-card-link:hover {
  filter: brightness(1.2);
  transform: translateY(-1px);
  box-shadow: 0 0.25em 0.75em rgba(0, 0, 0, .3);
}

/* Map stage */
.mp-map {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: clamp(400px, 50vw, 900px);
  background: #2a2a2a;
}

.mp-map img.mp-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.mp-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .35);
  font-size: clamp(0.7rem, 0.85vw, 1.05rem);
  padding: 2.5em;
  text-align: center;
  line-height: 2;
  font-weight: 300;
}

.mp-placeholder code {
  background: rgba(255, 255, 255, .08);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: clamp(0.55rem, 0.65vw, 0.8rem);
  color: rgba(255, 255, 255, .5);
}

/* Pin */
.mp-pin {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 0.25em 0.625em rgba(0, 0, 0, .5));
  /* Scale pin proportionally with viewport */
  transform: translate(-50%, -100%);
  width: clamp(28px, 2.5vw, 56px);
}

.mp-pin svg {
  width: 100%;
  height: auto;
}

.mp-pin.show {
  opacity: 1;
  animation: mp-drop .4s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

.mp-pin-dot {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(8px, 0.75vw, 16px);
  height: clamp(4px, 0.375vw, 8px);
  border-radius: 50%;
  background: rgba(0, 0, 0, .25);
}

.mp-pin.show .mp-pin-dot {
  animation: mp-pulse 1.5s ease-in-out infinite;
}

@keyframes mp-drop {
  0%   { transform: translate(-50%, -150%); opacity: 0; }
  60%  { transform: translate(-50%, -95%);  opacity: 1; }
  80%  { transform: translate(-50%, -103%); }
  100% { transform: translate(-50%, -100%); opacity: 1; }
}

@keyframes mp-pulse {
  0%, 100% { transform: translateX(-50%) scale(1);   opacity: .3; }
  50%       { transform: translateX(-50%) scale(2.5); opacity: 0;  }
}

/* =========================================
   PROPERTIES LAYOUT
========================================= */

.rmr-properties-view {
  padding: 0 !important;
  max-width: none !important;
  min-height: 100dvh;
  background: #111;
}

/* =========================================
   HEADER SECTION
========================================= */

.rmr-properties-header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3em 0 0;
  background:
    linear-gradient(
      180deg,
      #1a1a1a 0%,
      #111 100%
    );
  z-index: 2;
  display: none;
}

.rmr-properties-header .rmr-content-wrap {
  margin: 0;
}

/* =========================================
   MAP IFRAME
========================================= */

.rmr-map-iframe-wrap {
  position: relative;
  width: 100%;
  height: calc(100dvh); /* fluid: accounts for header at any size */
  background: #111;
  overflow: hidden;
}

.rmr-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #111;
}

/* =========================
   RESPONSIVE
   (these supplement the fluid scaling above
    for layout-critical breakpoints)
========================= */

/* Large 4K / 2K screens — let the fluid scale handle it,
   but ensure tile grid doesn't stretch too wide */
@media (min-width: 2560px) {
  .rmr-horizontal-wrap.is-static .rmr-horizontal,
  .rmr-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  /* view stays 100% width at all sizes — no max-width cap */
}

/* Landscape tablet (1024px – 1279px) */
@media (max-width: 1279px) and (min-width: 769px) {
  .rmr-horizontal-wrap.is-static .rmr-horizontal,
  .rmr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rmr-exp-tile {
    flex: 0 0 calc((100% - 1 * 1em) / 2);
    max-width: calc((100% - 1 * 1em) / 2);
  }

  .rmr-horizontal-wrap.is-slider .rmr-exp-tile {
    flex: 0 0 calc((100% - 1 * 1em) / 2);
    max-width: calc((100% - 1 * 1em) / 2);
  }

  .rmr-horizontal-wrap.is-slider .rmr-exp-tile.expanded {
    flex: 0 0 70vw;
    max-width: 70vw;
  }

  .rmr-exp-tile.expanded {
    flex: 0 0 70vw;
    max-width: 70vw;
  }

  .mp-sidebar {
    width: clamp(220px, 28vw, 340px);
    min-width: clamp(220px, 28vw, 340px);
  }
}

/* Small landscape tablet / large phone landscape (600px – 768px) */
@media (max-width: 768px) {
  .rmr-grid {
    grid-template-columns: 1fr;
  }

  .rmr-panels-wrap {
    padding: 0 1.25em;
  }

  .rmr-horizontal-wrap.is-static .rmr-horizontal {
    grid-template-columns: 1fr;
  }

  .rmr-exp-tile,
  .rmr-exp-tile.closing {
    flex: 0 0 80vw;
    max-width: 80vw;
  }

  .rmr-horizontal-wrap.is-slider .rmr-exp-tile {
    flex: 0 0 80vw;
    max-width: 80vw;
  }

  .rmr-exp-tile.expanded,
  .rmr-horizontal-wrap.is-slider .rmr-exp-tile.expanded {
    flex: 0 0 95vw;
    max-width: 95vw;
  }
}

/* Portrait tablet / phone breakpoint for map */
@media (max-width: 900px) {
  .mp-wrap { flex-direction: column; }

  .mp-sidebar {
    width: 100%;
    min-width: unset;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: unset;
  }

  .mp-card {
    min-width: 15em;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .mp-card.active .mp-card-image.has-img { height: clamp(80px, 15vw, 140px); }

  .mp-map { min-height: clamp(300px, 45vw, 600px); }
}




/* =========================================
   FORCE FULLSCREEN CARD HEIGHT
========================================= */

.rmr-ts-view{

    height:100dvh;
  
    overflow:hidden;
  
  }
  
  .rmr-content-wrap{
  
    flex-shrink:0;
  
  }
  
  .rmr-horizontal-wrap.is-static .rmr-horizontal{
  
    height:100%;
  
    align-items:stretch;
  
  }
  
  .rmr-horizontal-wrap.is-slider .rmr-horizontal{
  
    height:100%;
  
    align-items:stretch;
  
  }
  
  .rmr-exp-tile.expanded{
  
    height:100%;
  
  }


.rmr-panel-qr img {
    display: block;
    width: 100%;
    height: auto;
}


.rmr-back {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.rmr-back-icon {
    width: 12px;
    height: 12px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    margin-left: 5px;
}
/* =========================
   TOP NAVIGATION
========================= */

.rmr-top-nav {
    position: absolute;
    top: clamp(16px, min(2vw, 2vh), 40px);
    left: clamp(16px, min(2vw, 2vh), 40px);
    z-index: 100;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(8px, min(0.75vw, 0.75vh), 18px);
}


/* Remove the Home button's own absolute positioning
   when it lives inside the nav wrapper */
.rmr-top-nav .rmr-home {
    position: relative;
    top: auto;
    left: auto;
}


/* Back button matches Home exactly */
.rmr-back {
    position: relative;

    width: clamp(48px, min(4vw, 6vh), 120px);
    height: clamp(48px, min(4vw, 6vh), 120px);

    flex: 0 0 clamp(48px, min(4vw, 6vh), 120px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border-radius: 50%;
    border:
        clamp(1px, min(0.08vw, 0.08vh), 2px)
        solid rgba(255,255,255,.2);

    background: rgba(0,0,0,.6);
    color: #fff;

    backdrop-filter:
        blur(clamp(3px, min(0.4vw, 0.4vh), 8px));

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.rmr-back:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.6);
    transform: scale(1.05);
}

.rmr-back:active {
    transform: scale(.95);
}


/* Back arrow scales proportionally like the Home icon */
.rmr-back-icon {
    width: clamp(18px, min(1.5vw, 2.25vh), 45px);
    height: clamp(18px, min(1.5vw, 2.25vh), 45px);

    border-left:
        clamp(2px, min(0.15vw, 0.2vh), 4px)
        solid currentColor;

    border-bottom:
        clamp(2px, min(0.15vw, 0.2vh), 4px)
        solid currentColor;

    transform: rotate(45deg);

    /* optical centering */
    margin-left: 0.25em;
}