:root{
  --bg: #f5e7c3;          /* cream */
  --soft: #f7edd0;
  --ink: #121212;
  --muted: rgba(18,18,18,.72);
  --white: #ffffff;

  --shadow: 0 18px 45px rgba(0,0,0,.12);
  --radius: 18px;

  --primary: #0f3b2a;     /* deep green */
  --primary2: #0b2a1f;
  --outline: rgba(18,18,18,.14);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height:1.55;
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button{font-family:inherit}

.container{
  width:min(1120px, 100%);
  margin:0 auto;
  padding:0 18px;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(245,231,195,.86);
  border-bottom: 1px solid rgba(18,18,18,.10);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 8px;
  gap: 12px;
}

.brand{
  display:flex; align-items:baseline; gap:5px;
}
.brand__mark{
  font-weight:800;
  letter-spacing:.06em;
  font-size: 18px;
  padding: 8px 0px 8px 10px;
}
.brand__text{
  font-weight:800;
  letter-spacing:.02em;
  
  opacity:.85;
}

.nav{
  display:flex;
  gap: 14px;
  align-items:center;
}
.nav a{
  font-weight:600;
  opacity:.9;
  padding: 8px 8px;
  border-radius: 10px;
}
.nav a:hover{ background: rgba(255,255,255,.55); }

.burger{
  display:none;
  width:44px; height:44px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  background: rgba(255,255,255,.55);
  cursor:pointer;
}
.burger span{
  display:block; width:20px; height:2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 999px;
}

/* Drawer */
.drawer{
  display:none;
}
.drawer[aria-hidden="false"]{
  display:block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 100;
}
.drawer__panel{
  position:absolute;
  top: 10px;
  right: 10px;
  width: min(360px, calc(100% - 20px));
  background: var(--bg);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.drawer__head{display:flex; align-items:center; justify-content:space-between}
.drawer__title{font-weight:800}
.drawer__close{
  width:44px; height:44px; border-radius: 12px;
  border: 1px solid var(--outline);
  background: rgba(255,255,255,.6);
  cursor:pointer;
}
.drawer__link{
  display:block;
  padding: 12px 10px;
  border-radius: 14px;
  font-weight:700;
  border: 1px solid rgba(18,18,18,.08);
  background: rgba(255,255,255,.55);
  margin-top: 10px;
}
.drawer__link:hover{ background:#fff; }
.drawer__cta{ margin-top: 12px; }
.drawer__note{
  margin-top: 12px;
  font-size: 13px;
  opacity:.75;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--outline);
  font-weight: 800;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active{ transform: translateY(1px); }
.btn--full{ width: 100%; }
.btn--xl{ padding: 16px 18px; border-radius: 16px; font-size: 16px; }

.btn--primary{
  background: var(--primary);
  color: var(--white);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 12px 30px rgba(15,59,42,.25);
}
.btn--primary:hover{ background: var(--primary2); }

.btn--ghost{
  background: rgba(255,255,255,.55);
}
.btn--ghost:hover{ background:#fff; }

.btn--ghostOnHero{
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn--ghostOnHero:hover{
  background: rgba(255,255,255,.22);
}

.btn__arrow{ font-weight: 900; letter-spacing:.12em; }

/* Hero */
.hero{
  position:relative;
  min-height: clamp(560px, 85vh, 760px);
  display:grid;
  place-items: center;
  overflow:hidden;
}
.hero__media{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  
}
.hero__shade{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 40% 40%, rgba(0,0,0,.06), rgba(0,0,0,.1) 70%),
    linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.32));
}
.hero__content{
  position:relative;
  z-index:1;
  color: #fff;
  padding: 34px 0;
  text-align:left;
}
.hero__badge{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing:.02em;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
}
.hero__title{
  margin: 14px 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 900;
}
.hero__titleAccent{
  display:inline-block;
  padding: 0 6px;
  border-radius: 10px;
  background: rgba(255,255,255,.16);
}
.hero__sub{
  display:block;
  margin-top: 8px;
  font-weight: 700;
  opacity: .95;
  font-size: clamp(16px, 2.2vw, 18px);
}
.hero__lead{
  max-width: 620px;
  margin: 0 0 16px;
  font-size: 15px;
  opacity: .92;
}
.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero__facts{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.chip{
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 13px;
}

/* Highlights pills */
.highlights{
  margin-top: -22px;
  position: relative;
  z-index: 5;
}
.highlights__row{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,18,18,.08);
  box-shadow: var(--shadow);
  overflow:auto;
}
.pill{
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.75);
  font-weight: 800;
  white-space: nowrap;
}
.pill:hover{ background:#fff; }
.pill__icon{ font-size: 16px; }

/* Sections */
.section{
  padding: 64px 0;
}
.section--soft{
  background: var(--soft);
  border-top: 1px solid rgba(18,18,18,.08);
  border-bottom: 1px solid rgba(18,18,18,.08);
}
.section__head{
  max-width: 760px;
  margin-bottom: 22px;
}
.section__head h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 3.1vw, 30px);
  letter-spacing: -0.02em;
}
.section__head p{
  margin:0;
  color: var(--muted);
  font-weight: 600;
}

/* Grid / Cards */
.grid{
  display:grid;
  gap: 14px;
}
.grid--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}
.card h3{ margin: 0 0 6px; font-size: 16px; }
.card p{ margin:0; color: var(--muted); font-weight: 600; }
.card--quote p{ font-size: 14px; }
.who{ margin-top: 12px; font-weight: 900; opacity: .85; font-size: 13px; }

/* Two columns */
.twoCol{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: start;
}
.check{
  list-style:none;
  padding:0; margin: 12px 0 0;
  display:grid;
  gap: 10px;
}
.check li{
  position:relative;
  padding-left: 26px;
  font-weight: 700;
  color: rgba(18,18,18,.86);
}
.check li::before{
  content:"✓";
  position:absolute;
  left: 0; top: 0;
  font-weight: 900;
  color: var(--primary);
}
.miniNote{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(18,18,18,.74);
  font-weight: 600;
}
.mediaFrame{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.6);
  box-shadow: var(--shadow);
}
.mediaFrame img{ width:100%; height: 420px; object-fit: cover; }
.mediaFrame__cap{
  padding: 12px 14px;
  font-weight: 800;
  color: rgba(18,18,18,.78);
}

/* Masonry (simple responsive) */
.masonry{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.masonry__item{
  position:relative;
  border: 0;
  padding: 0;
  border-radius: 22px;
  overflow:hidden;
  cursor:pointer;
  box-shadow: var(--shadow);
}
.masonry__item img{
  width:100%;
  height: 340px;
  object-fit: cover;
  transition: transform .25s ease;
}
.masonry__item:hover img{ transform: scale(1.03); }
.masonry__tag{
  position:absolute;
  left: 12px;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color:#fff;
  font-weight: 800;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.18);
}

/* Prices */
.price{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.price__top{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.price__value{
  font-weight: 1000;
  color: var(--primary);
}
.price ul{
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}
.price--featured{
  outline: 2px solid rgba(15,59,42,.25);
  background: rgba(255,255,255,.88);
}

/* Calendar */
.calendar{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(18,18,18,.10);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.calendar__bar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(18,18,18,.08);
}
.calendar__title{
  font-weight: 1000;
  letter-spacing: -0.01em;
}
.iconBtn{
  width: 42px; height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.85);
  cursor:pointer;
  font-size: 18px;
  font-weight: 900;
}
.calendar__legend{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 10px;
}
.legend{
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.10);
}
.legend--avail{ background: rgba(15, 59, 42, 0); color: var(--primary); }
.legend--book{ background: rgba(255, 255, 255, 0); color: rgb(255, 0, 0); }

.calendar__grid{
  display:grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}
.dayName{
  font-weight: 900;
  font-size: 12px;
  opacity: .70;
  text-align:center;
  padding: 6px 0;
}
.cell{
  border-radius: 14px;
  min-height: 50px;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.75);
  padding: 8px 8px;
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.cell--selected {
  outline: 3px solid #184c2e;
  background: #eef5f0;
}
/* =========================
   BOOKED DATE – RED PILL
   ========================= */

.cell--booked{
  background: #ffecec !important;
  border: 1px solid #ff0000 !important;
}

.cell--booked::after{
  background: #ff0000 !important;
  color: #ffffff !important;
}


.cell--muted{ opacity: .35; }
.cell__num{ font-weight: 1000; font-size: 13px; }
.cell__tag{
  font-size: 11px;
  font-weight: 1000;
  display:inline-flex;
  align-self:flex-start;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.10);
}
.tag--avail{ background: rgba(15,59,42,.12); color: var(--primary); }
.tag--tent{ background: rgba(240,162,34,.14); color:#9a6400; }
.tag--book{ background: rgba(0,0,0,.10); color: #ff0000; }

.calendar__foot{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.calendar__hint{
  font-size: 13px;
  color: rgba(18,18,18,.70);
  font-weight: 700;
}

/* Accordion */
.accordion{ display:grid; gap: 10px; }
.qa{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(18,18,18,.10);
  background: rgba(255,255,255,.75);
}
.qa__q{
  width:100%;
  text-align:left;
  background: transparent;
  border:0;
  padding: 14px 16px;
  font-weight: 1000;
  display:flex;
  align-items:center;
  justify-content: space-between;
  cursor:pointer;
}
.qa__a{
  display:none;
  padding: 0 16px 14px;
  color: var(--muted);
  font-weight: 700;
}
.qa.open .qa__a{ display:block; }
.qa__icon{ font-weight: 1000; }

/* Promo */
.promo{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.note{
  margin-top: 14px;
  font-size: 13px;
  color: rgba(18,18,18,.74);
  font-weight: 700;
}

/* Action */
.action{
  text-align:center;
}
.action p{ color: var(--muted); font-weight: 700; margin: 8px 0 14px; }
.action__buttons{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}
.action__tiny{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(18,18,18,.70);
  font-weight: 700;
}

/* Footer */
.footer{
  padding: 26px 0 90px; /* extra for sticky bar */
  background: rgba(0,0,0,.92);
  color: #fff;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__brand{ font-weight: 1000; letter-spacing: .02em; }
.footer__meta{ opacity: .78; font-weight: 700; font-size: 13px; }
.footer__right{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: .92;
  font-weight: 800;
}

/* Sticky Bar */
.stickyBar{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display:flex;
  gap: 10px;
  padding: 10px;
  background: rgba(245,231,195,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(18,18,18,.10);
}
.stickyBar__btn{
  flex: 1;
  text-align:center;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 1000;
  border: 1px solid rgba(18,18,18,.12);
  background: rgba(255,255,255,.7);
}
.stickyBar__btn--primary{
  background: var(--primary);
  color:#fff;
  border-color: rgba(255,255,255,.18);
}

/* Lightbox */
.lightbox{
  display:none;
}
.lightbox[aria-hidden="false"]{
  display:grid;
  place-items:center;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 120;
  padding: 18px;
}
.lightbox__img{
  width: min(960px, 100%);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.lightbox__close{
  position: fixed;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 18px;
  cursor:pointer;
}

/* Responsive */
@media (max-width: 960px){
  .grid--3{ grid-template-columns: 1fr; }
  .twoCol{ grid-template-columns: 1fr; }
  .masonry{ grid-template-columns: 1fr; }
  .mediaFrame img{ height: 340px; }
  .nav{ display:none; }
  .burger{ display:inline-flex; flex-direction:column; justify-content:center; }
}

@media (max-width: 520px){
  .hero__lead{ font-size: 14px; }
  .calendar__grid{ gap: 6px; }
  .cell{ min-height: 30px; }
  .highlights__row{ padding: 12px; }
  .cell__tag{
  font-size: 5px; display:contents;}
}
