:root{
  --navy:#1d1e56; --navy-deep:#131341;
  --sand:#f7f2e7; --sand-dim:#efe8d8;
  --green:#4f9b3a; --green-deep:#2f6e21;
  --orange:#d25527; --orange-deep:#a8401b;
  --charcoal:#262420; --stone:#7a756c; --cream:#fffaf1;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{font-family:'Work Sans',sans-serif; color:var(--charcoal); background:var(--sand); line-height:1.55; overflow-x:hidden;}
h1,h2,h3{font-family:'Fraunces',serif; font-weight:600; letter-spacing:-0.01em;}
a{color:inherit; text-decoration:none;}
img{display:block; max-width:100%; width:100%; height:100%; object-fit:cover;}
.wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
.btn{display:inline-flex; align-items:center; gap:8px; padding:14px 28px; border-radius:4px; font-weight:600; font-size:15px; border:2px solid transparent; cursor:pointer; white-space:nowrap;}
.btn-orange{background:var(--orange); color:var(--cream);}
.btn-outline{border-color:rgba(255,255,255,0.6); color:var(--cream);}
.btn-navy{background:var(--navy-deep); color:var(--cream);}

/* ===== HEADER / NAV ===== */
header{position:fixed; top:0; left:0; right:0; z-index:20; padding:14px 0; background:var(--navy); box-shadow:0 2px 16px rgba(0,0,0,0.18);}
nav{display:flex; align-items:center; justify-content:space-between; gap:20px;}
.logo-mark .name{font-family:'Fraunces',serif; font-weight:700; font-size:19px; color:var(--cream); line-height:1.1;}
.logo-mark .name span{display:block; font-size:11px; letter-spacing:0.13em; font-weight:500; color:var(--orange);}
.navlinks{display:flex; align-items:center; gap:30px; flex:1; justify-content:center;}
.navlinks a{color:var(--cream); font-size:15px; font-weight:500; opacity:0.92; white-space:nowrap;}
.navlinks a:hover{opacity:1;}
.nav-cta{padding:10px 22px; font-size:14px; flex-shrink:0;}
.burger{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; z-index:30;}
.burger span{width:24px; height:2px; background:var(--cream); display:block;}
.mobile-panel{display:none; position:fixed; inset:0; background:var(--navy-deep); z-index:25; flex-direction:column; align-items:center; justify-content:center; gap:28px; overflow-y:auto; padding:60px 20px;}
.mobile-panel a{color:var(--cream); font-size:20px; font-family:'Fraunces',serif; font-weight:600;}
.mobile-panel.open{display:flex;}
.mobile-close{position:absolute; top:24px; right:28px; background:none; border:none; color:var(--cream); font-size:28px; cursor:pointer;}

/* ===== MEGA-MENU DROPDOWNS ===== */
.has-dropdown{position:relative;}
.has-dropdown::after{content:''; position:absolute; left:50%; transform:translateX(-50%); top:100%; width:280px; height:18px;}
.dropdown-trigger{cursor:default; display:inline-flex; align-items:center; gap:4px;}
.dropdown-trigger .caret{font-size:10px; opacity:0.7; transition:transform 0.18s ease;}
.has-dropdown:hover .caret{transform:rotate(180deg);}
.dropdown-menu{
  position:absolute; top:calc(100% + 18px); left:50%;
  transform:translateX(-50%) translateY(6px);
  background:var(--navy); border:1px solid rgba(255,255,255,0.08);
  border-radius:10px; padding:12px; min-width:250px;
  box-shadow:0 18px 36px rgba(0,0,0,0.3);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index:30;
}
.has-dropdown:hover .dropdown-menu{opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0);}
.dropdown-menu a{display:flex; flex-direction:column; gap:2px; padding:10px 14px; border-radius:6px; opacity:1;}
.dropdown-menu a:hover{background:var(--navy-deep);}
.dropdown-menu .item-label{font-size:14px; font-weight:600; color:var(--cream);}
.dropdown-menu .item-desc{font-size:12px; color:rgba(255,250,241,0.55); font-weight:400;}
.mobile-panel .sub-group{display:flex; flex-direction:column; align-items:center; gap:14px;}
.mobile-panel .sub-label{color:var(--orange); font-size:12px; letter-spacing:0.1em;}
.mobile-panel .sub-group a{font-size:16px; font-weight:500; font-family:'Work Sans',sans-serif;}

/* ===== HOMEPAGE HERO ===== */
.hero{position:relative; min-height:640px; display:flex; align-items:flex-end;}
.hero-photo{position:absolute; inset:0; z-index:0;}
.hero-photo img{object-position:center 55%;}
.hero-photo::after{content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(19,19,65,0.55) 0%, rgba(19,19,65,0.25) 35%, rgba(19,19,65,0.85) 100%);}
.hero-content{position:relative; z-index:2; max-width:640px; padding:170px 0 60px;}
.eyebrow-free{color:var(--orange); font-size:15px; font-weight:600; margin-bottom:16px;}
.hero h1{color:var(--cream); font-size:52px; line-height:1.08; margin-bottom:20px;}
.hero p{color:rgba(255,250,241,0.88); font-size:18px; max-width:480px; margin-bottom:32px;}
.hero-ctas{display:flex; gap:16px; flex-wrap:wrap;}

.facts{background:var(--sand-dim); border-bottom:1px solid rgba(38,36,32,0.08);}
.facts .wrap{display:grid; grid-template-columns:repeat(4,1fr); padding:32px;}
.fact{text-align:center; padding:0 12px; border-left:1px solid rgba(38,36,32,0.12);}
.fact:first-child{border-left:none;}
.fact .num{font-family:'Fraunces',serif; font-size:28px; font-weight:600; color:var(--navy);}
.fact .lbl{font-size:13px; color:var(--stone); margin-top:4px;}

section{padding:84px 0;}
.section-head{max-width:600px; margin-bottom:48px;}
.section-head h2{font-size:34px; color:var(--navy); margin-bottom:12px;}
.section-head p{color:var(--stone); font-size:16px;}

.accom-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
.accom-card{background:var(--cream); border-radius:6px; overflow:hidden; border:1px solid rgba(38,36,32,0.08);}
.accom-photo{height:170px; position:relative;}
.accom-body{padding:20px;}
.accom-body h3{font-size:17px; color:var(--navy); margin-bottom:8px; line-height:1.3;}
.accom-specs{list-style:none; font-size:13px; color:var(--stone); margin-bottom:14px;}
.accom-specs li{padding:3px 0; border-top:1px solid rgba(38,36,32,0.06);}
.accom-specs li:first-child{border-top:none;}
.accom-specs b{color:var(--charcoal); font-weight:600;}
.accom-link{font-size:14px; font-weight:600; color:var(--green-deep);}

.facilities-band{background:var(--navy);}
.facilities-band .section-head h2{color:var(--cream);}
.facilities-band .section-head p{color:rgba(255,250,241,0.65);}
.fac-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px;}
.fac-item{background:var(--navy-deep); border-radius:8px; overflow:hidden;}
.fac-photo{height:120px; position:relative;}
.fac-text{padding:16px 18px 20px;}
.fac-text h4{color:var(--cream); font-size:14px; font-weight:600; margin-bottom:4px;}
.fac-text p{color:rgba(255,250,241,0.6); font-size:12.5px;}

.video-wrap{position:relative; width:100%; padding-bottom:56.25%; height:0; border-radius:10px; overflow:hidden; background:var(--navy-deep) center/cover no-repeat; cursor:pointer;}
.video-wrap iframe{position:absolute; top:0; left:0; width:100%; height:100%; border:0;}
.video-play{position:absolute; inset:0; display:flex; align-items:center; justify-content:center;}
.video-play span{width:76px; height:76px; border-radius:50%; background:var(--orange); display:flex; align-items:center; justify-content:center;}
.video-play svg{width:26px; height:26px; margin-left:4px;}

.promo-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.promo-card{background:var(--cream); border-radius:8px; overflow:hidden; border:1px solid rgba(38,36,32,0.08);}
.promo-photo{width:100%; aspect-ratio:4/5; background:var(--sand-dim); display:flex; align-items:center; justify-content:center;}
.promo-photo img{object-fit:contain;}
.promo-body{padding:16px 18px 20px; display:flex; align-items:center; justify-content:space-between; gap:12px;}
.promo-body span{font-size:13px; color:var(--stone); font-weight:500;}
.promo-tag{font-size:11px; font-weight:600; color:var(--orange-deep); background:rgba(210,85,39,0.1); padding:4px 10px; border-radius:20px;}

.gallery-strip{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:16px; height:340px;}
.gal{border-radius:6px; position:relative; overflow:hidden; display:flex; align-items:flex-end; padding:20px;}
.gal span{color:var(--cream); font-weight:600; font-size:14px; position:relative; z-index:2;}
.gal::after{content:''; position:absolute; inset:0; background:linear-gradient(0deg, rgba(19,19,65,0.7), rgba(19,19,65,0.05)); z-index:1;}

.cta-banner{background:linear-gradient(120deg, var(--green-deep), var(--green)); border-radius:10px; padding:52px 56px; display:flex; align-items:center; justify-content:space-between; gap:36px; flex-wrap:wrap;}
.cta-banner h2{color:var(--cream); font-size:28px; margin-bottom:10px;}
.cta-banner p{color:rgba(255,250,241,0.85); font-size:15px;}
.cta-contact{display:flex; flex-direction:column; gap:8px; align-items:flex-start;}
.cta-contact a{color:var(--cream); font-weight:600; font-size:16px;}

footer{background:var(--navy-deep); color:rgba(255,250,241,0.7); padding:60px 0 28px;}
.foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; margin-bottom:44px;}
.foot-grid h5{color:var(--cream); font-size:14px; font-weight:600; margin-bottom:14px;}
.foot-grid a, .foot-grid p{display:block; font-size:14px; margin-bottom:9px; color:rgba(255,250,241,0.65);}
.foot-bottom{border-top:1px solid rgba(255,255,255,0.1); padding-top:22px; font-size:13px; display:flex; justify-content:space-between; color:rgba(255,250,241,0.45); flex-wrap:wrap; gap:8px;}

/* ===== BREADCRUMB / PAGE TOP BAND ===== */
.page-top-band{background:var(--sand-dim); padding:112px 0 30px; border-bottom:1px solid rgba(38,36,32,0.08);}
.page-top-band .crumbs{font-size:13px; color:var(--stone); margin-bottom:14px;}
.page-top-band .crumbs a{color:var(--stone);}
.page-top-band .crumbs a:hover{color:var(--navy);}
.page-top-band .crumb-current{color:var(--navy); font-weight:600;}
.page-top-band .crumb-sep{margin:0 2px; color:rgba(38,36,32,0.3);}
.page-top-band h1{font-size:32px; color:var(--navy); margin-bottom:8px;}
.page-top-band p{color:var(--stone); font-size:15px; max-width:560px;}

/* ===== CONTENT / PROSE BLOCKS ===== */
.content-block{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;}
.content-block.reverse .content-photo{order:2;}
.content-photo{border-radius:8px; overflow:hidden; height:360px;}
.content-photo.compact{height:260px;}
.content-text h2{font-size:30px; color:var(--navy); margin-bottom:16px;}
.content-text p{color:var(--stone); font-size:15.5px; margin-bottom:14px; line-height:1.7;}
.content-text ul{list-style:none; margin-top:10px;}
.content-text ul li{padding:6px 0 6px 24px; position:relative; font-size:15px; color:var(--charcoal);}
.content-text ul li::before{content:'✓'; position:absolute; left:0; color:var(--green-deep); font-weight:600;}

/* ===== FACILITY DETAIL CARDS ===== */
.fac-detail-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.fac-detail-card{background:var(--cream); border-radius:8px; overflow:hidden; border:1px solid rgba(38,36,32,0.08);}
.fac-detail-photo{height:180px;}
.fac-detail-body{padding:18px 20px 22px;}
.fac-detail-body h4{font-size:16px; color:var(--navy); margin-bottom:6px;}
.fac-detail-body p{font-size:13.5px; color:var(--stone); line-height:1.6;}

/* ===== PRICE PAGE ===== */
.price-note{font-size:13px; color:var(--stone); margin-top:16px; line-height:1.6;}
.price-callout{background:var(--sand-dim); border-left:3px solid var(--orange); border-radius:0 6px 6px 0; padding:16px 20px; margin-bottom:28px; font-size:14px; color:var(--charcoal);}

/* ===== MOSAIC GALLERY ===== */
.mosaic{column-count:3; column-gap:14px;}
.mosaic .mitem{display:block; width:100%; break-inside:avoid; margin-bottom:14px; border-radius:6px; overflow:hidden; cursor:pointer; border:0; padding:0; background:none;}
.mosaic .mitem img{width:100%; display:block; height:auto; object-fit:initial; transition:transform 0.3s ease;}
.mosaic .mitem:hover img{transform:scale(1.03);}
.gallery-tabs{display:flex; gap:10px; margin-bottom:32px; flex-wrap:wrap;}
.gallery-tabs a{padding:10px 20px; border-radius:20px; font-size:14px; font-weight:600; border:1px solid rgba(38,36,32,0.15); color:var(--stone);}
.gallery-tabs a.active{background:var(--navy); color:var(--cream); border-color:var(--navy);}
.gallery-empty{color:var(--stone); font-size:14px; padding:40px 0; text-align:center;}

/* ===== LIGHTBOX ===== */
.lightbox-overlay{position:fixed; inset:0; background:rgba(19,19,65,0.94); z-index:200; display:none; align-items:center; justify-content:center; flex-direction:column; padding:20px;}
.lightbox-overlay.open{display:flex;}
.lightbox-stage{position:relative; max-width:92vw; display:flex; align-items:center; justify-content:center;}
.lightbox-stage img{max-width:88vw; max-height:70vh; border-radius:6px; display:block;}
.lightbox-close{position:absolute; top:18px; right:22px; color:var(--cream); font-size:32px; background:none; border:none; cursor:pointer; line-height:1;}
.lightbox-nav{position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.14); border:none; color:var(--cream); width:44px; height:44px; border-radius:50%; font-size:20px; cursor:pointer;}
.lightbox-nav:hover{background:rgba(255,255,255,0.24);}
.lightbox-prev{left:-10px;}
.lightbox-next{right:-10px;}
.lightbox-filmstrip{display:flex; gap:8px; margin-top:20px; overflow-x:auto; max-width:92vw; padding:4px 4px 10px; scroll-snap-type:x mandatory;}
.lightbox-filmstrip img{height:60px; width:auto; border-radius:4px; opacity:0.5; cursor:pointer; scroll-snap-align:center; flex-shrink:0;}
.lightbox-filmstrip img.active{opacity:1; outline:2px solid var(--orange);}
.lightbox-count{color:rgba(255,250,241,0.6); font-size:13px; margin-top:10px;}

/* ===== CONTACT PAGE ===== */
.contact-grid{display:grid; grid-template-columns:1fr 1.2fr; gap:48px;}
.contact-details h3{font-size:15px; color:var(--navy); margin:22px 0 8px;}
.contact-details h3:first-child{margin-top:0;}
.contact-details p, .contact-details a{display:block; font-size:15px; color:var(--charcoal); margin-bottom:4px;}
.contact-map{border-radius:8px; overflow:hidden; height:220px; margin-top:24px;}
.contact-map iframe{width:100%; height:100%; border:0;}
.form-field{margin-bottom:16px;}
.form-field label{display:block; font-size:13px; font-weight:600; color:var(--navy); margin-bottom:6px;}
.form-field input, .form-field textarea{
  width:100%; padding:12px 14px; border-radius:5px; border:1px solid rgba(38,36,32,0.18);
  font-family:'Work Sans',sans-serif; font-size:14px; background:var(--cream); color:var(--charcoal);
}
.form-field textarea{min-height:110px; resize:vertical;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.form-banner{padding:14px 18px; border-radius:6px; font-size:14px; margin-bottom:20px; display:none;}
.form-banner.show{display:block;}
.form-banner.success{background:rgba(79,155,58,0.12); color:var(--green-deep); border:1px solid rgba(79,155,58,0.3);}
.form-banner.error{background:rgba(210,85,39,0.1); color:var(--orange-deep); border:1px solid rgba(210,85,39,0.3);}
.hp-field{position:absolute; left:-9999px; top:-9999px;}

/* ===================== RESPONSIVE ===================== */
@media (max-width:980px){
  .navlinks{display:none;}
  .burger{display:flex;}
  .hero h1{font-size:42px;}
  .facts .wrap{grid-template-columns:repeat(2,1fr); gap:24px 0;}
  .fact:nth-child(3){border-left:none;}
  .accom-grid{grid-template-columns:repeat(2,1fr);}
  .fac-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-strip{grid-template-columns:1fr 1fr; height:auto;}
  .gallery-strip .gal:first-child{grid-column:1 / -1; height:220px;}
  .gallery-strip .gal{height:180px;}
  .promo-grid{grid-template-columns:repeat(2,1fr);}
  .foot-grid{grid-template-columns:1fr 1fr; gap:32px 24px;}
  .fac-detail-grid{grid-template-columns:repeat(2,1fr);}
  .content-block{grid-template-columns:1fr; gap:28px;}
  .content-block.reverse .content-photo{order:0;}
  .content-photo{height:280px;}
  .contact-grid{grid-template-columns:1fr;}
  .mosaic{column-count:2;}
}
@media (max-width:640px){
  .wrap{padding:0 20px;}
  .hero-content{padding:130px 0 48px;}
  .hero h1{font-size:32px;}
  .hero p{font-size:16px;}
  .hero-ctas .btn{width:100%; justify-content:center;}
  .hero-ctas{flex-direction:column;}
  .facts .wrap{grid-template-columns:1fr 1fr; padding:24px 20px;}
  .fact{border-left:none; padding:8px 0;}
  section{padding:56px 0;}
  .section-head h2{font-size:26px;}
  .accom-grid{grid-template-columns:1fr;}
  .fac-grid{grid-template-columns:1fr 1fr;}
  .gallery-strip{grid-template-columns:1fr;}
  .gallery-strip .gal:first-child{grid-column:auto; height:200px;}
  .gallery-strip .gal{height:160px;}
  .promo-grid{grid-template-columns:1fr;}
  .cta-banner{padding:36px 24px; flex-direction:column; align-items:flex-start;}
  .foot-grid{grid-template-columns:1fr;}
  .foot-bottom{flex-direction:column;}
  .fac-detail-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .gallery-tabs{gap:8px;}
  .gallery-tabs a{padding:8px 14px; font-size:13px;}
  .page-top-band{padding:100px 0 24px;}
  .page-top-band h1{font-size:26px;}
  .mosaic{column-count:1;}
  .lightbox-prev{left:4px;} .lightbox-next{right:4px;}
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top{
  position:fixed; right:24px; bottom:24px; z-index:150;
  width:48px; height:48px; border-radius:50%;
  background:var(--orange); color:var(--cream);
  display:flex; align-items:center; justify-content:center;
  border:none; cursor:pointer; box-shadow:0 6px 18px rgba(0,0,0,0.25);
  opacity:0; visibility:hidden; transform:translateY(12px);
  transition:opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.2s ease;
}
.back-to-top.show{opacity:1; visibility:visible; transform:translateY(0);}
.back-to-top:hover{background:var(--orange-deep);}
.back-to-top svg{width:20px; height:20px;}
@media (max-width:640px){
  .back-to-top{right:16px; bottom:16px; width:44px; height:44px;}
}
