/* ==========================================================
   Enlight Runway 1331 - Main Landing Page Specific Styles
   ========================================================== */

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: 74px;
  padding-bottom: 64px;
  background-color: var(--ink);
}
.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(25,32,27,0.15) 0%, rgba(25,32,27,0.25) 50%, rgba(25,32,27,0.7) 100%);
  pointer-events: none;
}
.hero-content {
  color: var(--paper);
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  z-index: 3;
  padding: 0 24px;
}
.hero-content .btn-outline {
  border-color: var(--paper);
  color: var(--paper);
}
.hero-content .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-4px);
}
h1.title {
  font-family: var(--disp);
  font-weight: 800;
  font-size: clamp(3.2rem, 7.5vw, 5.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-align: center;
  display: block;
}
.title-script {
  font-family: var(--script);
  font-weight: 700;
  color: var(--tangerine-light);
  font-size: 1.1em;
  margin: 0 0.12em;
  display: inline;
}
.hero-sub {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 32px;
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.6;
}
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Booking Widget */
.bookmask {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: 20px; padding: 12px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1); width: 90%; max-width: 900px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.5s;
  z-index: 10;
}
.bm-toggle-btn { display: none; }
.bm-body { display: flex; align-items: center; gap: 16px; width: 100%; }
.bm-field { flex: 1; padding: 8px 16px; border-right: 1px solid var(--cool-grey-tint); }
.bm-field:last-of-type { border-right: none; }
.bm-field label { display: block; font-size: 0.75rem; color: var(--ink-soft); font-weight: 500; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.bm-field select, .bm-field input { border: none; background-color: transparent; font-family: var(--body); font-size: 1rem; font-weight: 500; color: var(--ink); width: 100%; outline: none; cursor: pointer; }
.bm-go { padding: 16px 32px; font-size: 1.05rem; }

@keyframes fadeUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Marquee */
.strip { background: var(--tangerine-light); color: var(--dark-green); overflow: hidden; padding: 12px 0; }
.marq {
  display: flex; white-space: nowrap; animation: sc 25s linear infinite;
  font-family: var(--body); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.marq span { display: inline-flex; gap: 40px; padding-right: 40px; }
@keyframes sc { to { transform: translateX(-50%); } }

/* Sections */
.pad { padding: 120px 0; }
.shead { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.eyebrow { color: var(--tangerine); font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 16px; }
.shead h2 { font-family: var(--disp); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.02em; text-align: center; }
.shead p { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; text-align: center; margin: 0 auto; max-width: 700px; }

/* Doors */
.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.door {
  border-radius: 24px; padding: 48px; min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.door:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.door.stay { background: var(--tangerine-tint); color: var(--ink); }
.door.live { background: #E8F0E1; color: var(--ink); }
.door h3 { font-family: var(--disp); font-weight: 800; font-size: 2.2rem; margin-bottom: 12px; }
.door p { font-size: 1.05rem; opacity: 0.8; margin-bottom: 24px; max-width: 28em; }
.door .go { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--tangerine); font-size: 1.05rem; }
.door.live .go { color: var(--mandarin-green); }
.door:hover .go span { transform: translateX(6px); }
.go span { transition: transform 0.2s; }

/* Verticals */
.verticals { background: var(--white); }
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vcard {
  background: var(--paper); border: 1px solid var(--cool-grey-tint);
  border-radius: 20px; padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vcard:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,0.05); }
.vicon {
  width: 64px; height: 64px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px; padding: 14px;
  background: var(--tangerine);
}
.vicon svg, .vicon img { width: 100%; height: 100%; object-fit: contain; }
.vcard:nth-child(even) .vicon { background: var(--mandarin-green); }
.vcard h3 { font-family: var(--disp); font-weight: 700; font-size: 1.5rem; margin-bottom: 8px; }
.vcard .zh { font-family: var(--hk); font-size: 0.9rem; color: var(--ink-soft); display: block; margin-bottom: 12px; }
.vcard p { color: var(--ink-soft); font-size: 1rem; }

/* Mosaic */
.grids { background: var(--cool-grey-tint); }
.modes { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; }
.mode {
  font-family: var(--body); font-weight: 500; font-size: 1rem;
  padding: 10px 24px; border-radius: 24px; border: 1px solid var(--cool-grey);
  background: var(--white); color: var(--ink); cursor: pointer; transition: 0.2s;
}
.mode:hover { border-color: var(--tangerine); }
.mode.on { background: var(--tangerine); color: var(--white); border-color: var(--tangerine); }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(320px, auto); gap: 16px; }
.tile {
  background: var(--white); border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: opacity 0.4s, transform 0.4s;
  border: 1px solid var(--cool-grey-tint);
  min-height: 320px;
}
.tile.w2 { grid-column: span 2; }
.tile.h2 { grid-row: span 2; }
.tile:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); }
.tile .tg { font-size: 0.8rem; font-weight: 500; color: var(--tangerine); text-transform: uppercase; letter-spacing: 0.05em; }
.tile h3 { font-family: var(--disp); font-weight: 700; font-size: 1.4rem; color: var(--ink); }
.tile p { font-size: 0.95rem; color: var(--ink-soft); }
.tile.feat { background: var(--tangerine-tint); border: none; }
.tile.feat h3 { font-size: 2rem; color: var(--tangerine); }

/* Voices - 4-Column Grid & Compact Quote Font Size */
.voices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.vquote { background: var(--white); border-radius: 20px; padding: 28px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.03); border: 1px solid var(--cool-grey-tint); display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.vquote:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); border-color: rgba(226, 128, 14, 0.3); }
.vquote .q { font-family: var(--body); font-size: 0.93rem; line-height: 1.55; color: var(--ink-soft); font-style: italic; margin-bottom: 20px; flex: 1; }
.vquote .who2 { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--cool-grey-tint); }
.vquote .av2 { width: 42px; height: 42px; border-radius: 50%; background: var(--tangerine-tint); color: var(--tangerine); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.05rem; flex-shrink: 0; }
.vquote b { display: block; font-family: var(--disp); font-weight: 700; font-size: 1.02rem; color: var(--ink); }
.vquote small { color: var(--ink-soft); font-size: 0.82rem; }

/* Offers */
.offers { background: var(--paper); }
.row3, .row-events { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ocard { background: var(--white); border: 1px solid var(--cool-grey-tint); border-radius: 20px; padding: 40px; transition: 0.3s; }
.ocard:hover { border-color: var(--tangerine); transform: translateY(-4px); }
.ocard .k { font-size: 0.85rem; font-weight: 500; color: var(--mandarin-green); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.ocard h3 { font-family: var(--disp); font-weight: 700; font-size: 1.6rem; margin-bottom: 12px; }
.ocard p { color: var(--ink-soft); margin-bottom: 24px; }
.ocard .go { color: var(--tangerine); font-weight: 500; }

/* Meetings */
.meetings-bg { background: var(--tangerine-tint); }
.row4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mcard { background: var(--white); border-radius: 20px; padding: 32px; border: 1px solid var(--cool-grey-tint); text-align: center; }
.mcard h3 { font-family: var(--disp); font-weight: 700; font-size: 1.2rem; margin-bottom: 12px; }
.mcard p { color: var(--ink-soft); font-size: 0.95rem; }

/* About */
.about { background: var(--tangerine); color: var(--paper); text-align: center; }
.about .eyebrow { color: var(--white); }
.about h2 { color: var(--white); }
.about p { color: var(--white); margin: 0 auto 24px; max-width: 700px; font-size: 1.15rem; }
.about-stats { display: flex; justify-content: center; gap: 64px; margin-top: 64px; flex-wrap: wrap; }
.stat .nm { font-family: var(--disp); font-weight: 800; font-size: 4rem; line-height: 1; color: var(--white); }
.stat .nm .u { color: var(--tangerine-light); font-size: 2rem; }
.stat .l { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-top: 12px; }

/* Neighbourhood */
.hood { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mapbox { border-radius: 24px; overflow: hidden; height: 500px; background: var(--cool-grey-tint); display: flex; align-items: center; justify-content: center; }
.hlist { display: flex; flex-direction: column; gap: 24px; }
.hitem { display: flex; gap: 24px; }
.hitem .ico { width: 56px; height: 56px; border-radius: 16px; background: var(--tangerine-tint); color: var(--tangerine); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.5rem; }
.hitem:nth-child(even) .ico { background: #E8F0E1; color: var(--mandarin-green); }
.hitem h3 { font-family: var(--disp); font-weight: 700; font-size: 1.3rem; margin-bottom: 8px; }
.hitem p { color: var(--ink-soft); }

/* Social Wall */
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.social-card {
  position: relative; display: block; aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,0.06); transform: translateY(0);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.social-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.12); }
.social-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transform: scale(1); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-card:hover .social-card-bg { transform: scale(1.06); }
.social-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,21,17,0.55) 0%, rgba(15,21,17,0.12) 32%, rgba(15,21,17,0.4) 65%, rgba(15,21,17,0.92) 100%);
  pointer-events: none;
}
.social-badge {
  position: absolute; top: 12px; left: 12px; display: flex; align-items: center; gap: 7px;
  background: rgba(15,21,17,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 20px; padding: 5px 11px; z-index: 2;
}
.social-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--tangerine-light); }
.social-badge-text { color: var(--white); font-family: var(--body); font-weight: 700; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.social-card-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; z-index: 2; }
.social-card-handle { color: var(--white); font-family: var(--body); font-weight: 700; font-size: 0.95rem; text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.4); }
.social-card-cta { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.35s ease, opacity 0.35s ease; }
.social-card:hover .social-card-cta { max-height: 28px; opacity: 1; }
.social-card-cta span { display: inline-block; margin-top: 8px; font-family: var(--body); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tangerine-light); font-weight: 700; text-shadow: 0 1px 3px rgba(0,0,0,0.7); }

/* Slider Navigation Arrows */
.slider-container { position: relative; width: 100%; }
.slider-nav {
  position: absolute;
  top: -52px;
  right: 0;
  display: none;
  gap: 8px;
  z-index: 10;
}
.snav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--cool-grey-tint);
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  outline: none;
  user-select: none;
}
.snav-btn:hover {
  background: var(--tangerine-tint);
  border-color: var(--tangerine);
  color: var(--tangerine);
}

.connect-heading { margin: 48px 0 20px; font-family: var(--body); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); text-align: center; }
.connect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ticket-card {
  position: relative; display: flex; align-items: stretch; min-height: 184px;
  border-radius: 16px; overflow: hidden; text-decoration: none; background: var(--white);
  border: 1px solid var(--cool-grey-tint); box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ticket-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.ticket-spine { flex: 1; min-width: 0; color: var(--white); padding: 22px 24px; display: flex; flex-direction: column; justify-content: space-between; }
.ticket-spine-header { display: flex; align-items: center; gap: 8px; font-family: var(--body); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.ticket-spine-icon { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.6); display: inline-flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; }
.ticket-spine-title { font-family: var(--disp); font-weight: 850; font-size: 22px; line-height: 1.1; letter-spacing: -0.01em; margin-top: 10px; }
.ticket-spine-handle { margin-top: 4px; font-family: var(--body); font-size: 13px; color: rgba(255,255,255,0.85); }
.ticket-spine-footer { display: flex; justify-content: space-between; align-items: flex-end; font-family: var(--body); font-size: 10px; letter-spacing: 0.12em; color: rgba(255,255,255,0.7); margin-top: 16px; }
.ticket-spine-footer span:last-child { font-weight: 700; color: var(--white); }

.ticket-perf { position: absolute; top: 0; bottom: 0; right: 130px; border-left: 2px dashed var(--cool-grey-tint); }
.ticket-notch-top { position: absolute; right: 121px; top: -10px; width: 20px; height: 20px; border-radius: 50%; background: var(--cool-grey-tint); }
.ticket-notch-bottom { position: absolute; right: 121px; bottom: -10px; width: 20px; height: 20px; border-radius: 50%; background: var(--cool-grey-tint); }
.ticket-qr-stub { width: 130px; flex-shrink: 0; background: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 12px; }
.ticket-qr-img { width: 90px; height: 90px; background-size: contain; background-repeat: no-repeat; background-position: center; }
.ticket-qr-caption { font-family: var(--body); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); text-align: center; font-weight: 500; }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--cool-grey-tint); }
.qa button {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 32px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--disp); font-weight: 700; font-size: 1.4rem; color: var(--ink);
}
.qa .ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: var(--ink-soft); font-size: 1.05rem; }
.qa .ans p { padding-bottom: 32px; padding-right: 48px; }
.qa.open .ans { max-height: 300px; }
.qa .pm-i { font-size: 2rem; color: var(--tangerine); transition: transform 0.3s; font-weight: 400; }
.qa.open .pm-i { transform: rotate(45deg); }

/* Utilities */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .hero {
    min-height: 100svh;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 70px;
    flex-direction: column;
    justify-content: flex-end;
  }
  .bookmask {
    position: relative;
    bottom: auto;
    left: 0;
    transform: none;
    width: calc(100% - 32px);
    max-width: 540px;
    margin: 32px auto 0;
    flex-direction: column;
    gap: 0;
    padding: 0;
    animation: none;
    opacity: 1;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
  }
  .bm-toggle-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.25s ease;
  }
  .bm-toggle-btn:hover { background: var(--paper); }
  .bm-toggle-left { display: flex; align-items: center; gap: 14px; text-align: left; }
  .bm-calendar-icon {
    width: 42px; height: 42px; border-radius: 14px;
    background: var(--tangerine-tint); color: var(--tangerine);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .bm-toggle-title { display: block; font-family: var(--disp); font-weight: 700; font-size: 1.05rem; color: var(--ink); line-height: 1.2; }
  .bm-toggle-sub { display: block; font-size: 0.8rem; color: var(--ink-soft); font-weight: 400; margin-top: 2px; }
  .bm-chevron {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--cool-grey-tint); color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease, color 0.2s ease;
  }
  .bookmask.open .bm-chevron {
    transform: rotate(180deg);
    background: var(--tangerine);
    color: var(--white);
  }
  .bm-body {
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 20px 24px 24px;
    background: var(--white);
    border-top: 1px solid var(--cool-grey-tint);
  }
  .bookmask.open .bm-body { display: flex; }
  .bm-field { border-right: none; border-bottom: 1px solid var(--cool-grey-tint); width: 100%; padding: 10px 0; }
  .bm-field:last-of-type { border-bottom: none; margin-bottom: 8px; }
  .bm-go { width: 100%; justify-content: center; padding: 14px 24px; font-weight: 600; border-radius: 16px; }
  
  .doors, .vgrid, .voices, .row3, .row4, .hood, .rooms-grid { grid-template-columns: 1fr !important; }
  .room-card { grid-column: span 1 !important; }
  .grid { grid-template-columns: 1fr 1fr; }
  .grid .tile.w2, .grid .tile.h2 { grid-column: span 1 !important; grid-row: span 1 !important; }
  .social-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .connect-grid { grid-template-columns: 1fr 1fr !important; }
  .stat { margin-bottom: 32px; }
  .about-stats { gap: 32px; }
  .stat .nm { font-size: 2.2rem !important; }
  .stat .nm .u { font-size: 1.1rem !important; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh !important;
    min-height: 100svh !important;
    min-height: 100dvh !important;
    min-height: -webkit-fill-available !important;
    height: 100dvh !important;
    padding-top: 65px !important;
    padding-bottom: calc(115px + env(safe-area-inset-bottom, 0px)) !important;
    justify-content: flex-end !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero-content {
    padding: 0 16px;
    margin: 0 auto !important;
  }
  h1.title { font-size: 2.3rem; line-height: 1.15; text-shadow: 0 2px 10px rgba(0,0,0,0.3); margin-bottom: 12px; }
  .hero-sub { font-size: 0.95rem; line-height: 1.4; text-shadow: 0 1px 6px rgba(0,0,0,0.3); opacity: 0.95; margin-bottom: 10px; }
  .cta-row { gap: 12px; }
  .cta-row .btn { width: 100%; justify-content: center; }
  .modes { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .mode { padding: 8px 16px; font-size: 0.9rem; }
  .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .grid .tile, .grid .tile.w2 { grid-column: span 1 !important; flex-direction: column !important; min-height: auto; }
  .grid .tile img { width: 100% !important; height: 150px !important; order: -1; }
  .grid .tile > div { padding: 20px !important; }
  .doors { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .door img { height: 140px !important; object-fit: cover !important; }
  .door > div { padding: 14px !important; }
  .door h3 { font-size: 1.15rem !important; margin-bottom: 6px !important; }
  .door p { font-size: 0.78rem !important; margin-bottom: 10px !important; line-height: 1.4 !important; }
  .door .go { font-size: 0.78rem !important; gap: 4px !important; }
  .social-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .connect-grid { grid-template-columns: 1fr !important; }

  .slider-nav {
    display: flex !important;
    position: static !important;
    justify-content: center !important;
    margin: 0 0 20px 0 !important;
    gap: 12px !important;
  }

  /* Sliders for mobile view */
  .voices, .vgrid, .row3, .row4, .row-events {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 16px !important;
    padding-bottom: 24px !important;
    margin-left: -30px !important;
    margin-right: -30px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    scrollbar-width: none;
  }
  .voices::-webkit-scrollbar, .vgrid::-webkit-scrollbar, .row3::-webkit-scrollbar, .row4::-webkit-scrollbar, .row-events::-webkit-scrollbar {
    display: none;
  }
  .vquote {
    flex: 0 0 280px !important;
    scroll-snap-align: start;
    margin: 0 !important;
  }
  .vcard {
    flex: 0 0 280px !important;
    scroll-snap-align: start;
    margin: 0 !important;
  }
  .vcard img { height: 300px !important; }
  .ocard, .event-card {
    flex: 0 0 290px !important;
    scroll-snap-align: start;
    margin: 0 !important;
    flex-direction: column !important;
  }
  .ocard img {
    width: 100% !important;
    height: 220px !important;
  }
  .mcard {
    flex: 0 0 260px !important;
    scroll-snap-align: start;
    margin: 0 !important;
  }
}

@media (max-width: 600px) {
  .social-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  h1.title { font-size: 2.1rem; }
  .pad { padding: 50px 0; }
  .door { border-radius: 14px !important; }
  .door img { height: 120px !important; }
  .vcard { padding: 24px; }
  .ocard { padding: 24px; }
  .bookmask { padding: 20px 16px; width: calc(100% - 24px); }
  .room-amenities { gap: 6px 10px; font-size: 0.8rem; }

  .voices, .vgrid, .row3, .row4, .row-events {
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding-top: 16px;
  border-top: 1px solid var(--cool-grey-tint);
  margin-bottom: 20px;
}
.room-amenities span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.room-amenities svg {
  color: var(--tangerine);
  flex-shrink: 0;
}

.category-intro {
  text-align: center;
  max-width: 800px;
  margin: -24px auto 40px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.rooms-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.rooms-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 20px 4px 40px;
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 30px;
  padding-right: 30px;
  cursor: grab;
  user-select: none;
}
.rooms-slider.grabbing {
  cursor: grabbing;
}

.rooms-slider::-webkit-scrollbar {
  display: none;
}

.room-card-container {
  flex: 0 0 350px;
  perspective: 1000px;
  height: 480px;
}

.room-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border-radius: 20px;
}

.room-card-container:hover .room-card-inner,
.room-card-inner.flipped {
  transform: rotateY(180deg);
}

.room-card-front, .room-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--cool-grey-tint);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.room-card-front img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  pointer-events: none;
}

.room-card-front-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-card-front h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.room-card-back {
  transform: rotateY(180deg);
  padding: 32px;
  background: var(--dark-green);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: var(--dark-green);
}

.room-card-back h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.room-desc-section {
  margin-bottom: 16px;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.room-desc-section strong {
  color: var(--tangerine-light);
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}

.room-card-back .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  background: var(--tangerine-light);
  color: var(--dark-green);
  font-weight: 700;
}

.room-card-back .btn-primary:hover {
  background: var(--white);
  color: var(--dark-green);
}

@media (max-width: 768px) {
  .room-card-container {
    flex: 0 0 300px;
    height: 460px;
  }
  .rooms-slider {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.rooms-slider-nav-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  width: 100%;
}

.rooms-slider-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  user-select: none;
}

.rooms-nav-btn {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  padding: 8px 12px;
  outline: none;
}

.rooms-nav-btn:hover {
  color: var(--tangerine);
}

.rooms-nav-btn:disabled {
  color: var(--cool-grey);
  cursor: not-allowed;
  opacity: 0.5;
}

.rooms-nav-progress {
  flex: 1;
  height: 2px;
  background: var(--cool-grey-tint);
  position: relative;
  border-radius: 1px;
}

.rooms-nav-progress-fill {
  position: absolute;
  top: -1px;
  height: 4px;
  background: var(--tangerine);
  border-radius: 2px;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s ease;
}

.rooms-nav-counter {
  margin-top: 12px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .bookmask {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 16px 16px 0 0 !important;
    box-shadow: 0 -6px 28px rgba(226,128,14,0.35) !important;
    z-index: 999 !important;
    background: linear-gradient(135deg, #E2800E 0%, #F0B323 100%) !important;
    padding: 0 !important;
    animation: none !important;
    opacity: 1 !important;
    border: none !important;
  }
  .bm-toggle-btn {
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 16px !important;
    height: 52px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    border-radius: 16px 16px 0 0 !important;
    color: var(--white) !important;
  }
  .bm-calendar-icon {
    width: 28px !important;
    height: 28px !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,0.25) !important;
    color: var(--white) !important;
  }
  .bm-calendar-icon svg {
    width: 15px !important;
    height: 15px !important;
  }
  .bm-toggle-title {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    line-height: 1 !important;
  }
  .bm-toggle-sub {
    display: none !important;
  }
  .bm-chevron {
    width: 26px !important;
    height: 26px !important;
    color: var(--white) !important;
    background: rgba(255,255,255,0.2) !important;
  }
  .bm-chevron svg {
    width: 15px !important;
    height: 15px !important;
    stroke: var(--white) !important;
  }
  .bm-body {
    display: none;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 14px 18px 20px !important;
    background: var(--white) !important;
    border-top: none !important;
    max-height: 65vh !important;
    overflow-y: auto !important;
  }
  .bookmask.open .bm-body {
    display: flex !important;
  }
}

.modal-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.modal-field-cell { display: flex; flex-direction: column; }
.modal-field-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.input-ctrl, select.input-ctrl, input.input-ctrl {
  width: 100% !important;
  height: 48px !important;
  box-sizing: border-box !important;
  padding: 0 16px !important;
  border-radius: 12px !important;
  border: 1px solid var(--cool-grey) !important;
  font-family: var(--body) !important;
  font-size: 0.95rem !important;
  background: var(--white) !important;
  color: var(--ink) !important;
}

@media (max-width: 768px) {
  #event-inquiry-modal { padding: 12px 8px !important; }
  .modal-inquiry-card {
    padding: 20px 14px !important;
    margin: 12px auto !important;
    border-radius: 18px !important;
  }
  .modal-field-grid { grid-template-columns: 1fr !important; gap: 12px !important; margin-bottom: 14px !important; }
  .modal-field-label { font-size: 0.78rem !important; margin-bottom: 5px !important; }
  .input-ctrl, select.input-ctrl, input.input-ctrl { height: 44px !important; padding: 0 12px !important; font-size: 0.9rem !important; border-radius: 10px !important; }
}
@media (max-width: 768px) {
  .modal-field-grid { grid-template-columns: 1fr; }
}

.booking-bar-wrapper {
  background: linear-gradient(180deg, var(--tangerine-tint) 0%, var(--paper) 100%);
  border-bottom: 1px solid rgba(226,128,14,0.18);
  display: flex;
  justify-content: center;
  padding: 28px 20px;
}
.booking-bar-wrapper .bookmask {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  opacity: 1 !important;
  animation: none !important;
  width: 100%;
  max-width: 920px;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(226,128,14,0.12);
  border: 1.5px solid rgba(226,128,14,0.28);
  background: var(--white);
}

@media (max-width: 768px) {
  .logo-mark { height: 38px !important; width: auto !important; max-width: 110px !important; }
  .booking-bar-wrapper {
    padding: 0;
    background: transparent;
    border: none;
  }
  .booking-bar-wrapper .bookmask {
    position: fixed !important;
    inset: auto 0 0 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 18px 18px 0 0 !important;
    box-shadow: 0 -6px 28px rgba(226,128,14,0.35) !important;
    z-index: 9999 !important;
    background: linear-gradient(135deg, #E2800E 0%, #F0B323 100%) !important;
    border: none !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
  }
  .booking-bar-wrapper .bookmask .bm-toggle-btn {
    background: transparent;
    color: var(--white);
  }
  .booking-bar-wrapper .bookmask .bm-calendar-icon {
    background: rgba(255,255,255,0.25) !important;
    color: var(--white) !important;
    border-radius: 10px;
    padding: 6px;
  }
  .booking-bar-wrapper .bookmask .bm-toggle-title {
    color: var(--white) !important;
    font-weight: 800 !important;
  }
  .booking-bar-wrapper .bookmask .bm-toggle-sub {
    color: rgba(255,255,255,0.85) !important;
  }
  .booking-bar-wrapper .bookmask .bm-chevron {
    color: var(--white) !important;
  }
  .booking-bar-wrapper .bookmask .bm-body {
    background: var(--white);
    border-radius: 0 0 0 0;
  }
}

.text-gradient {
  background: linear-gradient(135deg, #E2800E 0%, #F0B323 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #E2800E;
  display: inline;
}
.about .text-gradient {
  background: linear-gradient(135deg, #fff 0%, #FFD494 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Calendar Icon inside Date Input Fields */
.bm-field .flatpickr-input,
.bm-field input,
.flatpickr-input,
#bm-checkin,
#bm-checkout {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23E2800E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 18px 18px !important;
  padding-right: 34px !important;
}

/* Back to Top Floating CTA Button */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tangerine);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(226, 128, 14, 0.35);
  cursor: pointer;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--tangerine-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(226, 128, 14, 0.5);
}
.back-to-top:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

.bm-toggle-text { display: flex; flex-direction: column; }
