/* ================================
   SAYRIA LUXURY SPA — COMPLETE CSS
   Premium redesign with elegant typography
================================== */

@font-face{
  font-family: "Canto Roman";
  src: local("Canto Roman");
  font-display: swap;
}
@font-face{
  font-family: "Avenir Next";
  src: local("Avenir Next");
  font-display: swap;
}

:root{
  --font-primary: "Canto Roman", "Georgia", serif;
  --font-secondary: "Avenir Next", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --paper: #fbf8f3;
  --paper-2: #f6f0e6;
  --ink: #12100e;
  --shadow: 0 24px 80px rgba(0,0,0,0.28);
  --header-h: 72px;
  --wrap: 1160px;
}

/* =========================================
   RESET & BASE
========================================= */
*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font-secondary);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }

.wrap{
  width: min(var(--wrap), calc(100% - 56px));
  margin: 0 auto;
}

/* =========================================
   TYPOGRAPHY
========================================= */
.h2, .h3, .h4, h1, h2, h3, h4{
  font-family: var(--font-primary);
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.h2{ font-size: clamp(1.35rem, 2vw, 1.9rem); }
.h3{ font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
.h4{ font-size: clamp(1.05rem, 1.5vw, 1.25rem); }

.p{
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(18,16,14,0.78);
}
.p-small{
  font-size: 0.95rem;
  line-height: 1.7;
}

.intro-lead{
  font-size: 1.06rem;
  line-height: 1.9;
  color: rgba(18,16,14,0.80);
}

.kicker{
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-secondary);
}

.kicker.dark{
  color: rgba(18,16,14,0.55);
}

.text-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(18,16,14,0.65);
  border-bottom: 1px solid rgba(18,16,14,0.22);
  padding-bottom: 6px;
  transition: all 0.2s ease;
}
.text-link:hover{ 
  color: rgba(18,16,14,0.88);
  border-bottom-color: rgba(18,16,14,0.42);
}

/* =========================================
   BUTTONS
========================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  font-family: var(--font-secondary);
  transition: all 0.25s ease;
}
.btn-pill{
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.btn-light{
  background: #fff;
  color: #111;
  border-color: #fff;
}
.btn-light:hover{
  background: rgba(255,255,255,0.92);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-dark{
  background: #111;
  color: #fff;
  border-color: #111;
}
.btn-dark:hover{
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-ghost{
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.55);
}

/* =========================================
   ENHANCED MENU STYLES
   Luxurious, smooth, modern
========================================= */

/* ---------- ENHANCED HAMBURGER ICON ---------- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  transition: transform 0.3s ease;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: all 0.3s ease;
  transform-origin: center;
}

body.drawer-open .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.drawer-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

body.drawer-open .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------- ENHANCED BOOK NOW BUTTON ---------- */
.header-cta {
  position: absolute;
  right: 18px;
  height: 40px;
  padding: 0 18px 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.header-cta .btn-text {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.header-cta .btn-icon {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.header-cta:hover {
  background: rgba(0,0,0,0.28);
  padding-right: 22px;
  padding-left: 18px;
}

.header-cta:hover .btn-text {
  transform: translateX(-5px);
}

.header-cta:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

.site-header.is-solid .header-cta {
  background: rgba(18,16,14,0.95);
  border-color: rgba(18,16,14,0.95);
  color: #fff;
}

.site-header.is-solid .header-cta:hover {
  background: rgba(18,16,14,1);
}

/* ---------- ENHANCED HEADER ---------- */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  z-index: 3000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default: on hero we want white */
.site-header .icon,
.site-header .header-cta{
  color:#fff;
}

/* Solid state after scroll */
.site-header.is-solid{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(18,16,14,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.site-header.is-solid .icon{ color: rgba(18,16,14,0.85); }

/* HAMBURGER */
.icon{
  position:absolute;
  left: 18px;
  width: 44px;
  height: 44px;
  border:0;
  background: transparent;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  transition: all 0.3s ease;
  color: inherit;
}
.icon:hover{ 
  background: rgba(255,255,255,0.14);
  transform: scale(1.05);
}
.site-header.is-solid .icon:hover{ 
  background: rgba(18,16,14,0.06);
}

/* LOGO */
.logo img{
  height: 28px;
  display:block;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.25));
  transition: all 0.3s ease;
}
.site-header.is-solid .logo img{ 
  filter: none;
}
.logo:hover img {
  transform: scale(1.02);
}

/* =========================================
   ENHANCED OVERLAY BG
========================================= */
.overlay-bg{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 3500;
  backdrop-filter: blur(2px);
}
.overlay-bg.active{
  opacity:1;
  visibility: visible;
}

/* =========================================
   ENHANCED DRAWER MENU
========================================= */
.drawer{
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(440px, 90vw);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow: 40px 0 80px rgba(0,0,0,0.2);
  z-index: 4000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(18,16,14,0.08);
}
.drawer.open{ 
  transform: translateX(0);
}

.drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

.drawer-header {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(18,16,14,0.08);
  display: flex;
  justify-content: flex-end;
}

.drawer-close {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(18,16,14,0.1);
  background: rgba(255,255,255,0.8);
  border-radius: 999px;
  font-size: 0.85rem;
  color: rgba(18,16,14,0.7);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-secondary);
}

.drawer-close:hover {
  background: rgba(18,16,14,0.05);
  color: rgba(18,16,14,0.9);
}

.close-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.close-text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- DRAWER CONTENT ---------- */
.drawer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.drawer-section {
  padding: 0 28px;
  margin-bottom: 40px;
}

.drawer-section-title {
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(18,16,14,0.5);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(18,16,14,0.08);
}

.drawer-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 12px;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.drawer-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18,16,14,0.03);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.drawer-item:hover::before {
  transform: scaleX(1);
}

.drawer-item:hover {
  color: rgba(18,16,14,0.95);
}

.item-text {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  line-height: 1.2;
  color: rgba(18,16,14,0.8);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.drawer-item:hover .item-text {
  transform: translateX(4px);
}

.item-chevron {
  font-size: 1rem;
  color: rgba(18,16,14,0.4);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.drawer-item:hover .item-chevron {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- DRAWER BOTTOM ---------- */
.drawer-bottom {
  margin-top: auto;
  padding: 28px;
  border-top: 1px solid rgba(18,16,14,0.08);
}

.drawer-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.drawer-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(18,16,14,0.65);
}

.drawer-info-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.drawer-info-item a:hover {
  color: rgba(18,16,14,0.9);
}

.info-icon {
  font-size: 0.9rem;
  opacity: 0.7;
}

.drawer-actions {
  margin-bottom: 28px;
}

.drawer-book-btn {
  width: 100%;
  justify-content: center;
}

.drawer-mini {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: rgba(18,16,14,0.5);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.drawer-mini a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.drawer-mini a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(18,16,14,0.2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.drawer-mini a:hover {
  color: rgba(18,16,14,0.8);
}

.drawer-mini a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- ANIMATION STAGGERING ---------- */
.drawer.open .drawer-item {
  animation: slideIn 0.5s ease forwards;
  opacity: 0;
  transform: translateX(-20px);
}

.drawer.open .drawer-item:nth-child(1) { animation-delay: 0.1s; }
.drawer.open .drawer-item:nth-child(2) { animation-delay: 0.15s; }
.drawer.open .drawer-item:nth-child(3) { animation-delay: 0.2s; }
.drawer.open .drawer-item:nth-child(4) { animation-delay: 0.25s; }
.drawer.open .drawer-item:nth-child(5) { animation-delay: 0.3s; }
.drawer.open .drawer-item:nth-child(6) { animation-delay: 0.35s; }
.drawer.open .drawer-item:nth-child(7) { animation-delay: 0.4s; }
.drawer.open .drawer-item:nth-child(8) { animation-delay: 0.45s; }

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================================
   HERO
========================================= */
.hero{
  position: relative;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}

.hero-media{
  position: absolute;
  inset: 0;
}

.hero-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim{
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 50% 35%, rgba(0,0,0,0.10), rgba(0,0,0,0.65));
}

.hero-content{
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 54px) 20px 70px;
  color: #fff;
}

.hero-brand-small{
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.hero-brand-sub{
  margin: 6px 0 0;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.72);
}

.hero-title{
  margin: 18px auto 10px;
  font-family: var(--font-primary);
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  max-width: 860px;
  line-height: 1.15;
}

.hero-subtitle{
  margin: 0 auto 22px;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.hero-actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-dots{
  display: none !important;
}

/* =========================================
   SECTIONS
========================================= */
.section{
  padding: 72px 0;
}

.section-paper{
  background: var(--paper);
}

.section-paper-alt{
  background: var(--paper-2);
}

.intro-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.intro-left .p{
  max-width: 68ch;
  font-size: 1.02rem;
  line-height: 1.85;
}

.meta-block{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(18,16,14,0.10);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.06);
}

.meta-title{
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18,16,14,0.62);
  margin-bottom: 14px;
}

.meta-row{
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(18,16,14,0.08);
}

.meta-row:first-of-type{
  border-top: 0;
  padding-top: 0;
}

.meta-key{
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18,16,14,0.50);
}

.meta-val{
  font-size: 0.98rem;
  color: rgba(18,16,14,0.78);
}

.meta-val a{
  text-decoration: none;
  border-bottom: 1px solid rgba(18,16,14,0.18);
}

.meta-val a:hover{
  border-bottom-color: rgba(18,16,14,0.32);
}

.meta-cta{
  margin-top: 14px;
}

/* =========================================
   SLIDERS
========================================= */
.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.highlight-slider{
  position: relative;
  margin-top: 20px;
  border-top: 1px solid rgba(18,16,14,0.10);
  padding-top: 24px;
}

.slider-track{
  position: relative;
  overflow: hidden;
}

.slide{
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.slide.is-active{
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.slide-grid{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.slide-media img{
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
}

.tag-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 12px;
}

.tag{
  border: 1px solid rgba(18,16,14,0.16);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(18,16,14,0.72);
  background: rgba(255,255,255,0.55);
}

.slider-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(18,16,14,0.14);
  background: rgba(255,255,255,0.72);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: rgba(18,16,14,0.70);
  z-index: 5;
  transition: all 0.2s ease;
}

.slider-arrow:hover{
  background: rgba(255,255,255,0.92);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.highlight-slider .slider-arrow.left{
  left: -10px;
}

.highlight-slider .slider-arrow.right{
  right: auto;
  left: calc(45% - 10px);
}

/* =========================================
   BANNER
========================================= */
.banner{
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.banner-media{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.banner-overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 50% 55%, rgba(0,0,0,0.18), rgba(0,0,0,0.65));
}

.banner-content{
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 80px 20px;
  width: min(920px, calc(100% - 56px));
}

.banner-title{
  font-family: var(--font-primary);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin: 12px 0;
}

.banner-sub{
  max-width: 660px;
  margin: 0 auto 18px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
}

.banner-dots{
  display: none !important;
}

/* =========================================
   SPLIT SECTION
========================================= */
.split{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.split-media img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

/* =========================================
   ACCORDION
========================================= */
.accordion{
  margin-top: 14px;
  border-top: 1px solid rgba(18,16,14,0.10);
}

.acc-item{
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-bottom: 1px solid rgba(18,16,14,0.08);
  font-family: var(--font-secondary);
  font-size: 0.96rem;
  color: rgba(18,16,14,0.78);
}

.acc-icon{
  font-size: 20px;
  opacity: 0.7;
}

.acc-panel{
  display: none;
  padding: 10px 0 16px;
}

.acc-panel.open{
  display: block;
}

/* =========================================
   FACILITIES
========================================= */
.facilities-new{
  padding-top: 90px;
  padding-bottom: 90px;
  background: var(--paper-2);
}

.facilities-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.fac-visual{
  position: relative;
  width: 100%;
  max-width: 600px;
}

.fac-track{
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 20px;
  background: #d4cfc4;
}

.fac-slide{
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.fac-slide.is-active{
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2;
}

.fac-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  font-size: 28px;
  line-height: 1;
  color: rgba(18,16,14,0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
  user-select: none;
}

.fac-arrow.left{
  left: 16px;
}

.fac-arrow.right{
  right: 16px;
}

.fac-arrow:hover{
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transform: translateY(-50%) scale(1.08);
}

.fac-content{
  max-width: 540px;
}

.fac-intro{
  margin: 14px 0 28px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(18,16,14,0.75);
}

.fac-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.fac-list li{
  padding: 13px 0;
  border-bottom: 1px solid rgba(18,16,14,0.08);
  font-size: 0.98rem;
  color: rgba(18,16,14,0.75);
  transition: color 0.2s ease;
}

.fac-list li:first-child{
  border-top: 1px solid rgba(18,16,14,0.08);
}

.fac-list li:hover{
  color: rgba(18,16,14,0.95);
}

.list li{
  padding: 10px 0;
  border-bottom: 1px solid rgba(18,16,14,0.08);
  color: rgba(18,16,14,0.78);
}

/* =========================================
   EXPERTS
========================================= */
.experts-head{
  max-width: 760px;
}

.experts-list{
  margin-top: 18px;
  border-top: 1px solid rgba(18,16,14,0.10);
}

.expert-row{
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  text-align: left;
  padding: 18px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(18,16,14,0.08);
  font-family: var(--font-secondary);
  color: rgba(18,16,14,0.75);
}

.expert-cta{
  justify-self: end;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18,16,14,0.55);
}

.expert-name{
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: rgba(18,16,14,0.85);
}

/* =========================================
   MODAL
========================================= */
.modal{
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.open{
  display: flex;
}

.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
}

.modal-inner{
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 24px));
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.modal-top{
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.modal-title{
  pointer-events: none;
  font-family: var(--font-primary);
  font-size: 1.35rem;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.38);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.modal-close:hover{
  background: rgba(0,0,0,0.36);
}

.modal-shell{
  min-height: min(720px, calc(100vh - 90px));
  background: #fff;
}

.booking-embed{
  width: 100%;
  height: min(720px, calc(100vh - 90px));
  background: #fff;
}

.booking-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================================
   FOOTER
========================================= */
.site-footer{
  background: #0f0f0f;
  color: rgba(255,255,255,0.82);
  padding: 54px 0 26px;
  margin-top: 0;
}

.footer-inner{
  width: min(var(--wrap), calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.site-footer h4,
.site-footer h5{
  font-family: var(--font-primary);
  font-weight: 400;
  margin: 0 0 12px;
  color: rgba(255,255,255,0.92);
}

.site-footer p{
  margin: 0 0 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.site-footer a{
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.20);
  padding-bottom: 3px;
}

.site-footer a:hover{
  color: rgba(255,255,255,0.95);
  border-bottom-color: rgba(255,255,255,0.40);
}

.footer-meta{
  color: rgba(255,255,255,0.62);
  font-size: 0.95rem;
}

.footer-links{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer-bottom{
  width: min(var(--wrap), calc(100% - 56px));
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,0.60);
  font-size: 0.92rem;
}

.footer-bottom-links{
  display: flex;
  gap: 14px;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 980px){
  .intro-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  
  .slide-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .slide-media img{
    height: 260px;
  }
  
  .highlight-slider .slider-arrow.left{
    left: -6px;
  }
  
  .highlight-slider .slider-arrow.right{
    right: -6px;
    left: auto;
  }
  
  .split{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .split-media img{
    height: 320px;
  }
  
  .facilities-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .fac-visual{
    max-width: 100%;
  }
  
  .fac-track{
    padding-bottom: 65%;
  }
  
  .fac-content{
    max-width: 100%;
  }
  
  .expert-row{
    grid-template-columns: 1fr;
  }
  
  .expert-cta{
    justify-self: start;
  }
  
  .footer-inner{
    grid-template-columns: 1fr;
  }
  
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px){
  .drawer {
    width: 85vw;
  }
  
  .drawer-header {
    padding: 20px 24px;
  }
  
  .drawer-section {
    padding: 0 24px;
  }
  
  .drawer-bottom {
    padding: 24px;
  }
  
  .item-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 640px){
  :root{
    --header-h: 64px;
  }
  
  .wrap{
    width: calc(100% - 28px);
  }
  
  .site-header{
    padding: 0 20px;
  }
  
  .logo img{ 
    height: 24px; 
  }
  
  .header-cta{
    padding: 0 12px;
    height: 38px;
    font-size: 0.74rem;
  }
  
  .drawer{
    width: 90vw;
  }
  
  .drawer-header{
    padding: 16px 20px;
  }
  
  .drawer-section{
    padding: 0 20px;
    margin-bottom: 32px;
  }
  
  .drawer-bottom{
    padding: 20px;
  }
  
  .drawer-item{
    padding: 14px 16px;
  }
  
  .item-text{
    font-size: 1.1rem;
  }
  
  .drawer-mini{
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  .hero-subtitle{
    font-size: 0.98rem;
    line-height: 1.65;
  }
  
  .facilities-new{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .facilities-grid{
    padding: 0 20px;
    gap: 32px;
  }
  
  .fac-track{
    padding-bottom: 70%;
    border-radius: 16px;
  }
  
  .fac-arrow{
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  
  .fac-arrow.left{
    left: 10px;
  }
  
  .fac-arrow.right{
    right: 10px;
  }
  
  .fac-intro{
    font-size: 1rem;
    margin: 12px 0 24px;
  }
  
  .fac-list li{
    padding: 11px 0;
    font-size: 0.95rem;
  }
  
  .intro-lead{
    font-size: 1.02rem;
    line-height: 1.85;
  }
}

@media (max-width: 480px){
  .drawer {
    width: 92vw;
  }
  
  .item-text {
    font-size: 1rem;
  }
  
  .drawer-mini {
    font-size: 0.78rem;
  }
}

/* =========================================
   SCROLL REVEAL (SUBTLE)
========================================= */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
/* ADD THESE RULES TO YOUR CSS FILE */

/* Ensure iframe container adapts to mobile */
@media (max-width: 768px) {
  .modal-inner {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  
  .modal-shell {
    min-height: 100vh;
  }
  
  .booking-embed {
    height: 100vh;
  }
  
  /* Hide desktop title bar on mobile for more space */
  .modal-top {
    display: none;
  }
  
  .modal-close {
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
  }
}

/* =========================================
   PRE-BOOKING MODAL STYLES
   Add these to your existing CSS file
========================================= */

#preBookingModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
}

#preBookingModal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Backdrop styling */
#preBookingModal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 5001;
}

/* Inner container */
.pre-booking-inner {
  position: relative;
  z-index: 5002;
  max-width: 420px;
  width: 90%;
  margin: 0 auto;
}

/* Shell styling */
.pre-booking-shell {
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(18, 16, 14, 0.1);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Header */
.pre-booking-header {
  padding: 32px 32px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(18, 16, 14, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.logo-modal img {
  height: 32px;
  margin: 0 auto;
}

/* Body */
.pre-booking-body {
  padding: 32px;
  text-align: center;
  background: white;
}

.pre-booking-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin: 0 0 24px;
  color: rgba(18, 16, 14, 0.9);
  font-weight: 400;
  line-height: 1.3;
}

.pre-booking-message {
  margin-bottom: 32px;
}

.pre-booking-message p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(18, 16, 14, 0.75);
  margin: 0 0 16px;
}

.pre-booking-message strong {
  color: rgba(18, 16, 14, 0.95);
  font-weight: 500;
}

/* Secure note box */
.pre-booking-note {
  margin-top: 20px;
  padding: 18px;
  background: rgba(18, 16, 14, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(18, 16, 14, 0.05);
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(18, 16, 14, 0.65);
}

.secure-icon {
  font-size: 1rem;
}

.redirect-note {
  font-size: 0.95rem;
  color: rgba(18, 16, 14, 0.6);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* Buttons */
.pre-booking-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.btn-confirm {
  padding: 16px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-back {
  background: transparent;
  border: 0;
  color: rgba(18, 16, 14, 0.55);
  font-size: 0.9rem;
  padding: 12px;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: var(--font-secondary);
}

.btn-back:hover {
  color: rgba(18, 16, 14, 0.85);
}

/* Footer */
.pre-booking-footer {
  padding: 20px 32px;
  text-align: center;
  border-top: 1px solid rgba(18, 16, 14, 0.06);
  background: rgba(18, 16, 14, 0.01);
}

.small-note {
  font-size: 0.8rem;
  color: rgba(18, 16, 14, 0.4);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .pre-booking-inner {
    width: 95%;
  }
  
  .pre-booking-body {
    padding: 24px;
  }
  
  .pre-booking-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .pre-booking-inner {
    width: 100%;
    margin: 0 12px;
  }
  
  .pre-booking-body {
    padding: 20px;
  }
  
  .pre-booking-header {
    padding: 24px 24px 16px;
  }
  
  .pre-booking-footer {
    padding: 16px 20px;
  }
}