/* WildNest screenshot recreation */
:root{
  --green:#123d31;
  --green-deep:#0a2119;
  --nav:#fff;
  --navtext:#27302c;
  --white:#fff;
  --button:#717871;
  --cream:#eef1e9;
  --ink:#1c2420;
  --ink-soft:#5b655e;
  --gold:#b08d4f;
  --line:rgba(255,255,255,.12);
  --line-dark:rgba(18,61,49,.12);
}
*{box-sizing:border-box}
html,body{width:100%;min-height:100%;margin:0}
body{
  min-height:100vh;
  overflow-x:hidden;
  font-family:"DM Sans",Arial,sans-serif;
  background:var(--green);
}
.page-bg{
  position:fixed;
  inset:-45px;
  z-index:-2;
  background-image:
    linear-gradient(rgba(5,28,22,.32),rgba(5,28,22,.32)),
    url("images/mountain_4.jpeg");
  background-position:center;
  background-size:cover;
  filter:blur(12px);
  transform:scale(1.08);
}
.page-bg:after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(8,49,39,.26);
}
.hero-frame{
  width:100%;
  height:100vh;
  min-height:640px;
  margin:0;
  padding:0;
  background:none;
  border:0;
  box-shadow:none;
}
.hero-shell{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
}
.hero{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.hero-video{
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.8) saturate(1.05);
}
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,rgba(0,0,0,.52) 0%,rgba(0,0,0,.30) 38%,rgba(0,0,0,.08) 70%,rgba(0,0,0,.12) 100%),
    linear-gradient(180deg,rgba(5,35,27,.18),rgba(5,35,27,.08) 45%,rgba(0,0,0,.22));
}
.navbar{
  position:absolute;
  z-index:10;
  top:28px;
  left:50%;
  transform:translateX(-50%);
  width:min(86%,1320px);
  min-height:76px;
  padding:0 16px 0 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  background:linear-gradient(180deg,rgba(12,32,24,.6),rgba(12,32,24,.4));
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}
.brand{
  display:flex;
  align-items:center;
  gap:7px;
  color:#37413b;
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  white-space:nowrap;
}
.brand-logo{
  display:block;
  height:40px;
  width:auto;
}
.brand-logo-footer{height:42px}
.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(20px,2.6vw,40px);
  flex:1;
}
.nav-links a{
  position:relative;
  color:rgba(255,255,255,.92);
  font-size:17px;
  font-weight:500;
  text-decoration:none;
  white-space:nowrap;
  transition:color .18s ease;
}
.nav-links a:after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-5px;
  height:1.5px;
  background:#fff;
  transition:right .25s ease;
}
.nav-links a:hover{color:#fff}
.nav-links a:hover:after,
.nav-links a.active:after{right:0}
.nav-links a.active{color:#fff;font-weight:600}
.nav-book-btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:15px 26px;
  color:#1c2420;
  background:var(--cream);
  border-radius:999px;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.nav-book-btn .arrow{display:inline-block;transition:transform .2s ease}
.nav-book-btn:hover{
  background:#fff;
  transform:translateY(-1px);
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}
.nav-book-btn:hover .arrow{transform:translateX(3px)}
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:34px;
  height:34px;
  border:0;
  background:none;
  cursor:pointer;
  padding:0;
}
.nav-toggle span{
  display:block;
  width:100%;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:transform .2s ease,opacity .2s ease;
}
.nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.hero-content{
  position:absolute;
  z-index:4;
  left:10.8%;
  top:31%;
  width:min(540px,47%);
}
.hero-eyebrow{
  margin:0 0 14px;
  color:var(--white);
  font-size:13px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:.85;
}
.hero-content h1{
  margin:0;
  color:#fff;
  font-size:clamp(44px,5vw,73px);
  line-height:1.02;
  font-weight:700;
  letter-spacing:-.045em;
  text-shadow:0 2px 15px rgba(0,0,0,.18);
}
.hero-content p{
  margin:30px 0 0;
  color:rgba(255,255,255,.96);
  font-size:clamp(16px,1.35vw,21px);
  line-height:1.35;
  font-weight:600;
}
.hero-actions{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.book-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:35px;
  min-width:145px;
  height:58px;
  padding:0 25px;
  color:var(--button);
  background:#fff;
  border:0;
  border-radius:999px;
  font-family:inherit;
  font-size:17px;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 8px 25px rgba(0,0,0,.12);
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.book-button:hover{
  transform:translateY(-2px);
  background:#f4f7f4;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}
.ghost-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:35px;
  min-width:145px;
  height:58px;
  padding:0 25px;
  color:#fff;
  background:transparent;
  border:1.5px solid rgba(255,255,255,.55);
  border-radius:999px;
  font-size:17px;
  font-weight:700;
  text-decoration:none;
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}
.ghost-button:hover{
  background:rgba(255,255,255,.12);
  border-color:#fff;
  transform:translateY(-2px);
}
.scroll-cue{
  position:absolute;
  z-index:4;
  left:50%;
  bottom:104px;
  transform:translateX(-50%);
  width:26px;
  height:42px;
  border:1.5px solid rgba(255,255,255,.6);
  border-radius:999px;
}
.scroll-cue span{
  position:absolute;
  top:8px;
  left:50%;
  width:4px;
  height:8px;
  margin-left:-2px;
  background:#fff;
  border-radius:999px;
  animation:cue-scroll 1.6s ease infinite;
}
@keyframes cue-scroll{
  0%{opacity:1;transform:translateY(0)}
  70%{opacity:0;transform:translateY(14px)}
  100%{opacity:0;transform:translateY(0)}
}

/* CHECK AVAILABILITY */
.availability{
  position:relative;
  z-index:6;
  margin-top:-72px;
  padding:0 0 100px;
}
.availability-card{
  max-width:1040px;
  margin:0 auto;
  padding:38px clamp(24px,5vw,56px) 32px;
  background:#fff;
  border-radius:26px;
  box-shadow:0 30px 70px rgba(0,0,0,.22),0 4px 14px rgba(0,0,0,.06);
}
.availability-note{
  margin:0 0 18px;
  text-align:center;
  font-size:13px;
  font-weight:600;
  color:var(--ink-soft);
}
.availability-note a{
  color:var(--green);
  font-weight:700;
  text-decoration:none;
  border-bottom:1.5px solid transparent;
  transition:border-color .18s ease;
}
.availability-note a:hover{border-bottom-color:var(--green)}
.availability-card h2{
  margin:0 0 30px;
  text-align:center;
  color:var(--green);
  font-family:"Fraunces",serif;
  font-size:clamp(24px,3vw,32px);
  font-weight:600;
  letter-spacing:-.01em;
}
.availability-form{
  display:flex;
  align-items:flex-end;
  gap:16px;
  flex-wrap:wrap;
}
.availability-field label{
  display:block;
  margin-bottom:8px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
}
.availability-dates{
  position:relative;
  flex:1.7;
  min-width:280px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:13px 18px;
  background:var(--cream);
  border:1px solid var(--line-dark);
  border-radius:14px;
}
.availability-dates > div{flex:1;min-width:0;cursor:pointer}
.date-display{
  display:block;
  width:100%;
  border:0;
  background:transparent;
  font-family:inherit;
  font-size:14.5px;
  font-weight:600;
  color:var(--ink);
  padding:0;
  text-align:left;
  cursor:pointer;
}
.date-display:focus{outline:none}
.availability-arrow{
  flex-shrink:0;
  color:var(--gold);
  font-size:16px;
  padding-bottom:2px;
}

/* CALENDAR POPOVER */
.calendar-popover{
  position:absolute;
  z-index:40;
  top:calc(100% + 14px);
  left:50%;
  transform:translateX(-50%);
  width:min(680px,92vw);
  max-height:min(560px,70vh);
  overflow-y:auto;
  padding:22px;
  background:#fff;
  border-radius:20px;
  box-shadow:0 30px 60px rgba(0,0,0,.28);
  border:1px solid var(--line-dark);
}
.calendar-popover[hidden]{display:none}
.calendar-months{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
}
.month-panel{
  flex:1;
  min-width:250px;
}
.month-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:9px 10px;
  background:var(--green);
  color:#fff;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
}
.month-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  flex-shrink:0;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  color:#fff;
  font-size:12px;
  cursor:pointer;
  transition:background .18s ease;
}
.month-nav:hover{background:rgba(255,255,255,.3)}
.month-nav:disabled{opacity:0;pointer-events:none}
.month-nav-spacer{width:26px;flex-shrink:0}
.weekday-row,
.day-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:3px;
}
.weekday-row{
  margin:12px 0 6px;
}
.weekday-row span{
  text-align:center;
  font-size:11px;
  font-weight:700;
  color:var(--ink-soft);
  text-transform:uppercase;
}
.day-cell{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:1px;
  height:48px;
  border-radius:8px;
  font-size:12.5px;
  font-weight:700;
  color:var(--ink);
  cursor:pointer;
  background:transparent;
  overflow:hidden;
  transition:background .15s ease;
}
.day-cell:not(.is-empty):not(.is-disabled):hover{background:rgba(18,61,49,.08)}
.day-cell .day-price{
  font-size:10px;
  font-weight:600;
  color:var(--green);
}
.day-cell.is-empty{cursor:default}
.day-cell.is-disabled{
  color:#c6cdc6;
  cursor:not-allowed;
}
.day-cell.is-disabled .day-price{color:#c6cdc6}
.day-cell.is-in-range{background:#dcedf8}
.day-cell.is-start,
.day-cell.is-end{
  background:var(--green);
  color:#fff;
}
.day-cell.is-start .day-price,
.day-cell.is-end .day-price{color:rgba(255,255,255,.85)}
.day-cell.is-start{border-radius:8px 0 0 8px}
.day-cell.is-end{border-radius:0 8px 8px 0}
.day-cell.is-start.is-end{border-radius:8px}
.day-cell.no-checkin:before,
.day-cell.no-checkout:before{
  content:"";
  position:absolute;
  top:0;
  width:0;
  height:0;
  border-style:solid;
}
.day-cell.no-checkin:before{
  left:0;
  border-width:16px 16px 0 0;
  border-color:#7fc4ea transparent transparent transparent;
}
.day-cell.no-checkout:before{
  right:0;
  left:auto;
  border-width:0 16px 16px 0;
  border-color:transparent #e0699a transparent transparent;
}
.day-cell.min-stay:after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width:0;
  height:0;
  border-style:solid;
  border-width:0 0 16px 16px;
  border-color:transparent transparent #6ea25b transparent;
}
.day-cell.is-sold-out{color:#b7bdb7;cursor:not-allowed}
.day-cell.is-sold-out .day-price{display:none}
.day-cell.is-sold-out .sold-out-mark{
  font-size:13px;
  color:#9aa19a;
}
.calendar-legend{
  display:flex;
  flex-wrap:wrap;
  gap:16px 22px;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid var(--line-dark);
  font-size:12px;
  color:var(--ink-soft);
}
.legend-item{
  display:inline-flex;
  align-items:center;
  gap:7px;
}
.legend-swatch{
  display:inline-block;
  width:14px;
  height:14px;
  border-radius:3px;
  font-style:normal;
}
.legend-no-checkin{background:linear-gradient(135deg,#7fc4ea 50%,transparent 50%)}
.legend-no-checkout{background:linear-gradient(-45deg,#e0699a 50%,transparent 50%)}
.legend-min-stay{background:linear-gradient(-45deg,transparent 50%,#6ea25b 50%)}
.legend-sold-out{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#9aa19a;
  font-weight:700;
  font-size:12px;
}
.availability-room{
  position:relative;
  flex:1.2;
  min-width:230px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:13px 18px;
  background:var(--cream);
  border:1px solid var(--line-dark);
  border-radius:14px;
  cursor:pointer;
  transition:border-color .18s ease;
}
.availability-room:hover{border-color:var(--green)}
.room-group{flex:1;min-width:0;cursor:pointer}
.availability-room .plus{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  width:26px;
  height:26px;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-size:14px;
  line-height:1;
  pointer-events:none;
}

/* ROOM & GUEST POPOVER */
.room-popover{
  width:min(380px,90vw);
  padding:20px;
  cursor:default;
}
.rooms-list{
  display:flex;
  flex-direction:column;
  gap:20px;
  max-height:min(460px,64vh);
  overflow-y:auto;
  padding:2px 4px 6px 2px;
}
.room-block{
  flex-shrink:0;
  border:1px solid var(--line-dark);
  border-radius:12px;
  overflow:hidden;
}
.room-block-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 14px;
  background:var(--green);
  color:#fff;
  font-size:14px;
  font-weight:700;
}
.room-block-actions{display:flex;gap:8px}
.room-action-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  flex-shrink:0;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.2);
  color:#fff;
  font-size:15px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  transition:background .18s ease,opacity .18s ease;
}
.room-action-btn:hover:not(:disabled){background:rgba(255,255,255,.36)}
.room-action-btn:disabled{opacity:.35;cursor:not-allowed}
.room-action-btn.add{background:var(--gold)}
.room-action-btn.add:hover:not(:disabled){background:#c4a25e}
.room-block-body{
  display:flex;
  gap:20px;
  padding:14px 16px;
}
.room-counter{flex:1;min-width:0}
.room-counter-label{
  display:block;
  margin-bottom:8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.03em;
  color:var(--ink);
  text-align:center;
}
.counter-controls{display:flex;align-items:center;justify-content:center;gap:12px}
.counter-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  flex-shrink:0;
  border-radius:999px;
  border:1.5px solid var(--line-dark);
  background:#fff;
  color:var(--green);
  font-size:15px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  transition:border-color .18s ease,background .18s ease,color .18s ease,opacity .18s ease;
}
.counter-btn:hover:not(:disabled){border-color:var(--green);background:var(--green);color:#fff}
.counter-btn:disabled{opacity:.35;cursor:not-allowed}
.counter-value{min-width:18px;text-align:center;font-size:15px;font-weight:700;color:var(--ink)}
.child-ages-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px 16px;
  padding:2px 16px 18px;
  border-top:1px solid var(--line-dark);
  margin-top:14px;
  padding-top:16px;
}
.child-age-field{
  flex:1;
  min-width:130px;
}
.child-age-field label{
  display:block;
  margin-bottom:7px;
  font-size:12px;
  font-weight:600;
  color:var(--ink);
}
.child-age-field .req{color:#d64550;margin-left:2px}
.child-age-select{
  width:100%;
  padding:9px 10px;
  border:1.5px solid var(--line-dark);
  border-radius:8px;
  background:#fff;
  font-family:inherit;
  font-size:13.5px;
  color:var(--ink);
  cursor:pointer;
  transition:border-color .18s ease;
}
.child-age-select:focus{outline:none;border-color:var(--green)}
.room-popover-done{
  width:100%;
  margin-top:18px;
  height:44px;
  border:0;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-family:inherit;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:background .18s ease;
}
.room-popover-done:hover{background:#0d3227}
.availability-submit{
  height:54px;
  min-width:130px;
  padding:0 30px;
  background:var(--green);
  color:#fff;
  border:0;
  border-radius:999px;
  font-family:inherit;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(18,61,49,.25);
  transition:background .18s ease,box-shadow .18s ease,transform .18s ease;
}
.availability-submit:hover{
  background:#0d3227;
  box-shadow:0 14px 28px rgba(18,61,49,.32);
  transform:translateY(-2px);
}
.flexible-dates{
  display:flex;
  align-items:center;
  gap:9px;
  margin-top:22px;
  font-size:13.5px;
  color:var(--ink-soft);
  cursor:pointer;
}
.flexible-dates input{
  width:16px;
  height:16px;
  accent-color:var(--green);
  cursor:pointer;
}

/* ============ SITE SECTIONS ============ */
.section-inner{
  width:min(92%,1200px);
  margin:0 auto;
}
.eyebrow{
  margin:0 0 12px;
  color:var(--gold);
  font-size:13px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.eyebrow-light{color:#d8c9a3}
.section-head{
  max-width:640px;
  margin:0 0 56px;
}
.section-head h2{
  margin:0;
  font-size:clamp(30px,3.4vw,44px);
  line-height:1.12;
  letter-spacing:-.02em;
}
.section-sub{
  margin:18px 0 0;
  font-size:16px;
  line-height:1.6;
}
.lede{
  font-size:16px;
  line-height:1.7;
}
.text-link{
  display:inline-block;
  color:var(--green);
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  border-bottom:1.5px solid transparent;
  transition:border-color .18s ease;
}
.text-link:hover{border-bottom-color:currentColor}

/* ABOUT */
.about{
  background:var(--cream);
  color:var(--ink);
  padding:110px 0;
}
.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
.about-media{
  position:relative;
}
.about-media img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:18px;
  display:block;
}
.about-media-card{
  position:absolute;
  left:-28px;
  bottom:-28px;
  width:190px;
  padding:22px 24px;
  background:var(--green);
  color:#fff;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,.18);
}
.about-media-card strong{
  display:block;
  font-size:34px;
  font-weight:700;
  color:var(--gold);
}
.about-media-card span{
  display:block;
  margin-top:6px;
  font-size:13px;
  line-height:1.4;
  color:rgba(255,255,255,.85);
}
.about-copy h2{
  margin:0;
  font-size:clamp(32px,3.6vw,46px);
  line-height:1.1;
  letter-spacing:-.02em;
  color:var(--green);
}
.about-copy .lede{
  margin:24px 0 0;
  color:var(--ink-soft);
}
.weather-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:36px;
  padding-top:30px;
  border-top:1px solid var(--line-dark);
}
.weather-location strong{
  display:block;
  font-size:15px;
  font-weight:700;
  color:var(--green);
}
.weather-location span{
  display:block;
  margin-top:4px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--gold);
}
.weather-icon{
  flex-shrink:0;
  color:var(--green);
}
.weather-icon svg{display:block;width:38px;height:38px}
.weather-temp{text-align:right}
.weather-temp strong{
  display:block;
  font-size:26px;
  font-weight:700;
  color:var(--ink);
}
.weather-temp span{
  display:block;
  margin-top:2px;
  font-size:12.5px;
  color:var(--ink-soft);
}

/* ROOMS */
.rooms{
  background:var(--green);
  color:#fff;
  padding:110px 0;
}
.rooms .section-head h2,
.gallery .section-head h2,
.experiences .section-head h2,
.testimonials .section-head h2,
.contact-copy h2{color:#fff}
.rooms .section-head{color:rgba(255,255,255,.78)}
.about .section-head{color:var(--ink-soft)}
.room-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:32px;
}
.room-card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  transition:transform .25s ease,box-shadow .25s ease;
}
.room-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(0,0,0,.25);
}
.room-media{
  position:relative;
  height:320px;
}
.room-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.room-body{padding:28px 28px 32px}
.room-body h3{
  margin:0 0 12px;
  font-size:23px;
  font-weight:700;
}
.room-body p{
  margin:0 0 24px;
  font-size:14.5px;
  line-height:1.6;
  color:rgba(255,255,255,.72);
}
.room-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.room-more-btn,
.room-book-btn{
  display:inline-flex;
  align-items:center;
  gap:5px;
  height:44px;
  padding:0 22px;
  border-radius:999px;
  font-size:13.5px;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease;
}
.room-more-btn{
  color:#fff;
  background:transparent;
  border:1.5px solid rgba(255,255,255,.4);
}
.room-more-btn .arrow{display:inline-block;transition:transform .2s ease}
.room-more-btn:hover{
  border-color:#fff;
  background:rgba(255,255,255,.08);
}
.room-more-btn:hover .arrow{transform:translateX(3px)}
.room-book-btn{
  color:#1c2420;
  background:var(--gold);
  border:1.5px solid var(--gold);
  box-shadow:0 8px 20px rgba(176,141,79,.25);
}
.room-book-btn:hover{
  background:#c4a25e;
  border-color:#c4a25e;
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(176,141,79,.32);
}

/* ACTIVITIES */
.activities{
  background:var(--cream);
  color:var(--ink);
  padding:110px 0;
}
.activities .section-head h2{color:var(--green)}
.activities .section-head{color:var(--ink-soft)}
.activities-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:260px;
  gap:24px;
}
.activity-item{
  position:relative;
  border-radius:16px;
  overflow:hidden;
}
.activity-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.activity-item:hover img{transform:scale(1.08)}
.activity-caption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:22px 20px;
  background:linear-gradient(0deg,rgba(10,33,25,.78),rgba(10,33,25,.05) 65%,transparent);
  color:#fff;
  font-size:15px;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
}

/* EXPERIENCES */
.experiences{
  background:var(--green-deep);
  color:#fff;
  padding:110px 0;
}
.experiences .section-head{color:rgba(255,255,255,.78)}
.exp-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.exp-card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  transition:transform .25s ease,box-shadow .25s ease;
}
.exp-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(0,0,0,.28);
}
.exp-card img{
  width:100%;
  height:210px;
  object-fit:cover;
  display:block;
}
.exp-body{padding:26px}
.exp-body h3{
  margin:0 0 10px;
  font-size:20px;
}
.exp-body p{
  margin:0 0 16px;
  font-size:14.5px;
  line-height:1.6;
  color:rgba(255,255,255,.72);
}
.exp-body .text-link{color:var(--gold)}

/* GALLERY */
.gallery{
  background:var(--cream);
  color:var(--ink);
  padding:110px 0;
}
.gallery .section-head h2{color:var(--green)}
.gallery .section-head{color:var(--ink-soft)}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:220px;
  gap:18px;
}

/* TESTIMONIALS */
.testimonials{
  background:var(--green);
  color:#fff;
  padding:110px 0;
}
.testi-slider{
  display:flex;
  align-items:center;
  gap:16px;
}
.testi-viewport{
  flex:1;
  display:flex;
  gap:28px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.testi-viewport::-webkit-scrollbar{display:none}
.testi-nav{
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:999px;
  border:1.5px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:20px;
  line-height:1;
  cursor:pointer;
  transition:background .18s ease,border-color .18s ease,opacity .18s ease;
}
.testi-nav:hover:not(:disabled){background:rgba(255,255,255,.16);border-color:#fff}
.testi-nav:disabled{opacity:.3;cursor:not-allowed}
.testi-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:32px;
}
.testi-dot{
  width:8px;
  height:8px;
  padding:0;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.25);
  cursor:pointer;
  transition:background .18s ease,transform .18s ease;
}
.testi-dot.is-active{background:var(--gold);transform:scale(1.3)}
.testi-card{
  flex:0 0 calc((100% - 56px)/3);
  scroll-snap-align:start;
  margin:0;
  padding:26px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:18px;
}
.testi-card p{
  margin:0 0 6px;
  font-size:14.5px;
  line-height:1.65;
  color:rgba(255,255,255,.88);
  font-style:italic;
  display:-webkit-box;
  -webkit-line-clamp:5;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.testi-card.is-expanded p{
  -webkit-line-clamp:unset;
  overflow:visible;
}
.testi-readmore{
  display:inline-block;
  margin:0 0 16px;
  padding:0;
  border:0;
  background:none;
  color:var(--gold);
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.03em;
  cursor:pointer;
}
.testi-readmore:hover{text-decoration:underline}
.testi-readmore[hidden]{display:none}
.testi-card footer{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.testi-card strong{font-size:14.5px}
.testi-card span{font-size:12.5px;color:var(--gold)}

/* CTA */
.cta{
  background:linear-gradient(120deg,var(--green-deep),var(--green));
  padding:90px 0;
}
.cta-inner{
  text-align:center;
  max-width:620px;
}
.cta-inner h2{
  margin:0;
  color:#fff;
  font-size:clamp(28px,3.4vw,40px);
}
.cta-inner p{
  margin:18px 0 0;
  color:rgba(255,255,255,.75);
  font-size:16px;
  line-height:1.6;
}
.cta-inner .book-button{margin-top:32px}

/* CONTACT */
.contact{
  background:var(--cream);
  color:var(--ink);
  padding:110px 0;
}
.contact-grid{
  display:grid;
  grid-template-columns:.8fr 1.1fr;
  gap:70px;
  align-items:center;
}
.contact-copy h2{
  margin:0;
  color:var(--green);
  font-size:clamp(30px,3.4vw,42px);
}
.contact-copy .lede{
  margin:20px 0 0;
  color:var(--ink-soft);
}
.contact-list{
  list-style:none;
  margin:38px 0 0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.contact-list li{
  font-size:15px;
  color:var(--ink);
  padding-top:16px;
  border-top:1px solid var(--line-dark);
}
.contact-list li:first-child{border-top:0;padding-top:0}
.contact-list span{
  display:block;
  font-size:11.5px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:4px;
}
.contact-list a{
  color:var(--ink);
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:color .18s ease,border-color .18s ease;
}
.contact-list a:hover{
  color:var(--green);
  border-bottom-color:var(--green);
}
.contact-form{
  background:#fff;
  border-radius:20px;
  padding:38px;
  box-shadow:0 20px 50px rgba(18,61,49,.08);
  display:flex;
  flex-direction:column;
  gap:16px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.contact-form input:not([type="checkbox"]),
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid rgba(18,61,49,.16);
  border-radius:12px;
  font-family:inherit;
  font-size:14px;
  color:var(--ink);
  background:var(--cream);
  resize:vertical;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:2px solid var(--green);
  outline-offset:1px;
}
.form-submit{
  align-self:flex-start;
  margin-top:6px;
  color:#fff;
  background:var(--green);
}
.form-submit:hover{background:#0d3227}

/* CONTACT — CHECK AVAILABILITY (form-styled variant) */
.contact-avail-heading{
  margin:0;
  color:var(--green);
  font-family:"Fraunces",serif;
  font-size:22px;
  font-weight:600;
}
.contact-date-field{position:relative}
.contact-date-field .availability-arrow{display:none}
.contact-date-group{
  position:relative;
  padding:12px 16px;
  border:1px solid rgba(18,61,49,.16);
  border-radius:12px;
  background:var(--cream);
  cursor:pointer;
  transition:border-color .18s ease;
}
.contact-date-group:hover{border-color:var(--green)}
.contact-field-label{
  display:block;
  margin-bottom:5px;
  font-size:10.5px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold);
}
.contact-date-display{
  display:block;
  width:100%;
  border:0;
  background:transparent;
  padding:0;
  font-family:inherit;
  font-size:14px;
  font-weight:600;
  color:var(--ink);
  text-align:left;
  cursor:pointer;
}
.contact-date-display:focus{outline:none}
.contact-avail-submit{align-self:flex-start;margin-top:2px}

/* FOOTER */
.site-footer{
  background:var(--green-deep);
  color:rgba(255,255,255,.75);
  padding:80px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1.3fr;
  gap:40px;
  padding-bottom:60px;
  border-bottom:1px solid var(--line);
}
.footer-brand .brand{color:#fff;margin-bottom:16px}
.footer-brand p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  max-width:260px;
}
.social-row{
  display:flex;
  gap:10px;
  margin-top:22px;
}
.social-row a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:999px;
  border:1px solid var(--line);
  color:#fff;
  font-size:11px;
  font-weight:700;
  text-decoration:none;
  transition:background .18s ease,border-color .18s ease;
}
.social-row a:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.3)}
.footer-col h5{
  margin:0 0 20px;
  color:#fff;
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.footer-col a{
  display:block;
  margin-bottom:12px;
  color:rgba(255,255,255,.72);
  font-size:14px;
  text-decoration:none;
  transition:color .18s ease;
}
.footer-col a:hover{color:var(--gold)}
.footer-newsletter p{
  margin:0 0 18px;
  font-size:13.5px;
  line-height:1.6;
}
.newsletter-form{
  display:flex;
  gap:8px;
}
.newsletter-form input{
  flex:1;
  min-width:0;
  padding:12px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.05);
  color:#fff;
  font-family:inherit;
  font-size:13px;
}
.newsletter-form input::placeholder{color:rgba(255,255,255,.5)}
.newsletter-form button{
  width:44px;
  height:44px;
  flex-shrink:0;
  border:0;
  border-radius:999px;
  background:var(--gold);
  color:#1c2420;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:background .18s ease;
}
.newsletter-form button:hover{background:#c4a25e}
.footer-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  padding:26px 0;
  font-size:13px;
}
.footer-legal{
  display:flex;
  gap:22px;
}
.footer-legal a{
  color:rgba(255,255,255,.65);
  text-decoration:none;
}
.footer-legal a:hover{color:var(--gold)}

/* ============ ANIMATIONS & INTERACTIONS ============ */

/* scroll progress bar */
.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  width:0%;
  height:3px;
  background:linear-gradient(90deg,var(--gold),#e6cd91);
  transition:width .1s linear;
}

/* hero entrance */
.hero-anim{
  opacity:0;
  transform:translateY(22px);
  animation:hero-in .8s cubic-bezier(.16,.84,.44,1) forwards;
}
@keyframes hero-in{
  to{opacity:1;transform:translateY(0)}
}

/* sticky nav that appears once you scroll past the hero */
.navbar-sticky{
  position:fixed;
  top:0;
  left:50%;
  z-index:100;
  width:min(86%,1280px);
  background:rgba(9,26,20,.92);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  transform:translateX(-50%) translateY(-140%);
  margin-top:18px;
  opacity:0;
  pointer-events:none;
  transition:transform .45s cubic-bezier(.16,.84,.44,1),opacity .35s ease;
}
.navbar-sticky.visible{
  transform:translateX(-50%) translateY(0);
  opacity:1;
  pointer-events:auto;
}

/* back to top */
.back-to-top{
  position:fixed;
  right:26px;
  bottom:26px;
  z-index:90;
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:999px;
  background:var(--green);
  color:#fff;
  font-size:19px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(0,0,0,.22);
  opacity:0;
  visibility:hidden;
  transform:translateY(14px);
  transition:opacity .3s ease,transform .3s ease,visibility .3s ease,background .2s ease;
}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{background:var(--gold)}

/* anchor offset so sections don't hide under the sticky nav */
section[id]{scroll-margin-top:110px}
html{scroll-behavior:smooth}

/* scroll reveal */
.reveal{
  opacity:0;
  transform:translateY(32px);
  transition:opacity .8s cubic-bezier(.16,.84,.44,1),transform .8s cubic-bezier(.16,.84,.44,1);
}
.reveal.in-view{opacity:1;transform:translateY(0)}
.room-grid .reveal:nth-child(2){transition-delay:.12s}
.exp-grid .reveal:nth-child(2){transition-delay:.12s}
.exp-grid .reveal:nth-child(3){transition-delay:.24s}
.testi-viewport .reveal:nth-child(2){transition-delay:.12s}
.testi-viewport .reveal:nth-child(3){transition-delay:.24s}
.gallery-grid .reveal:nth-child(2){transition-delay:.08s}
.gallery-grid .reveal:nth-child(3){transition-delay:.16s}
.gallery-grid .reveal:nth-child(4){transition-delay:.08s}
.gallery-grid .reveal:nth-child(5){transition-delay:.16s}
.gallery-grid .reveal:nth-child(6){transition-delay:.24s}

/* text-link arrow shift */
.text-link .arrow{display:inline-block;transition:transform .25s ease}
.text-link:hover .arrow{transform:translateX(5px)}

/* room / experience card image zoom on hover */
.room-card:hover .room-media img{transform:scale(1.08)}
.room-media img{transition:transform .5s ease}
.exp-card:hover img{transform:scale(1.08)}
.exp-card img{transition:transform .5s ease}
.room-card,
.exp-card{will-change:transform}

/* gallery hover caption */
.gallery-item{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  height:100%;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.gallery-item:hover img{transform:scale(1.08)}
.gallery-caption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px 18px 14px;
  background:linear-gradient(0deg,rgba(10,33,25,.8),transparent);
  color:#fff;
  font-size:13px;
  font-weight:600;
  letter-spacing:.03em;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .3s ease,transform .3s ease;
}
.gallery-item:hover .gallery-caption{opacity:1;transform:translateY(0)}
.gallery-item:nth-child(1){grid-row:span 2}
.gallery-item:nth-child(5){grid-row:span 2}

/* testimonial decorative quote mark */
.testi-card{position:relative;overflow:hidden}
.testi-mark{
  position:absolute;
  top:-6px;
  right:18px;
  font-family:Georgia,serif;
  font-size:92px;
  line-height:1;
  color:rgba(255,255,255,.06);
  pointer-events:none;
}
.testi-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 50px rgba(0,0,0,.22);
  transition:transform .3s ease,box-shadow .3s ease;
}

/* cta living gradient */
.cta{
  background-size:220% 220%;
  animation:cta-shift 10s ease infinite;
}
@keyframes cta-shift{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* footer micro-interactions */
.footer-col a{position:relative}
.social-row a{transition:transform .2s ease,background .18s ease,border-color .18s ease}
.social-row a:hover{transform:translateY(-3px) scale(1.06)}
.newsletter-form button{transition:background .18s ease,transform .18s ease}
.newsletter-form button:hover{transform:translateX(2px)}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1!important;transform:none!important;transition:none!important}
  .hero-anim{opacity:1!important;transform:none!important;animation:none!important}
  .hero-video{display:none}
  .hero{background-image:url("images/mountain_4.jpeg");background-size:cover;background-position:center}
  .cta{animation:none!important}
  .scroll-cue span{animation:none!important}
  .room-card:hover .room-media img,
  .exp-card:hover img,
  .gallery-item:hover img{transform:none!important}
}

@media(max-width:1000px){
  .hero-frame{height:82vh}
  .availability{margin-top:-56px;padding-bottom:80px}
  .availability-card{padding:30px 26px 26px}
  .navbar{width:90%;padding:0 10px 0 22px}
  .brand-logo{height:28px}
  .nav-links{gap:14px}
  .nav-links a{font-size:10px}
  .nav-book-btn{padding:11px 18px;font-size:12.5px}
  .hero-content{left:10%;top:32%}

  .about-grid,
  .contact-grid{grid-template-columns:1fr;gap:44px}
  .about-media img{height:380px}
  .about-media-card{left:20px}
  .room-grid,
  .exp-grid,
  .activities-grid{grid-template-columns:repeat(2,1fr)}
  .testi-card{flex-basis:calc((100% - 28px)/2)}
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:180px}
  .footer-grid{grid-template-columns:1fr 1fr;row-gap:44px}
}
@media(max-width:700px){
  .hero-frame{height:100vh;min-height:680px}
  .navbar{top:18px;width:calc(100% - 32px);min-height:50px;padding:0 8px 0 18px;flex-wrap:wrap}
  .brand-logo{height:24px}
  .nav-toggle{display:flex}
  .nav-book-btn{display:none}
  .nav-links{
    display:none;
    position:absolute;
    top:calc(100% + 12px);
    left:0;
    right:0;
    flex-direction:column;
    align-items:flex-start;
    gap:2px;
    padding:14px 22px;
    background:rgba(9,26,20,.96);
    backdrop-filter:blur(16px);
    border-radius:20px;
    box-shadow:0 14px 30px rgba(0,0,0,.3);
  }
  .nav-links.open{display:flex}
  .nav-links a{width:100%;padding:10px 0;font-size:14px;color:rgba(255,255,255,.88)}
  .hero{background-position:60% center}
  .hero-content{left:8%;right:8%;top:auto;bottom:12%;width:auto}
  .hero-content h1{font-size:clamp(43px,12vw,65px);line-height:1.02}
  .hero-content p{margin-top:22px;font-size:16px}
  .book-button{height:52px;min-width:130px;margin-top:26px;font-size:15px}
  .ghost-button{height:52px;min-width:130px;margin-top:26px;font-size:15px}
  .scroll-cue{display:none}

  .availability{margin-top:-40px;padding-bottom:60px}
  .availability-card{padding:26px 20px 22px;border-radius:20px}
  .availability-form{flex-direction:column;align-items:stretch;gap:14px}
  .availability-dates{flex-direction:row}
  .availability-submit{width:100%}

  .about,.rooms,.activities,.experiences,.gallery,.testimonials,.contact{padding:70px 0}
  .cta{padding:60px 0}
  .section-head{margin-bottom:36px}
  .about-media img{height:280px}
  .about-media-card{position:static;width:auto;margin-top:18px;display:flex;align-items:center;gap:14px}
  .about-media-card strong{font-size:26px}
  .weather-strip{flex-wrap:wrap;justify-content:center;text-align:center;gap:14px}
  .weather-temp{text-align:center}
  .room-grid,.exp-grid,.activities-grid{grid-template-columns:1fr}
  .activities-grid{grid-auto-rows:200px}
  .testi-card{flex-basis:100%}
  .testi-nav{width:38px;height:38px;font-size:17px}
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:150px}
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5){grid-row:span 1}
  .form-row{grid-template-columns:1fr}
  .contact-form{padding:26px}
  .footer-grid{grid-template-columns:1fr;gap:36px}
  .footer-bottom-inner{flex-direction:column;align-items:flex-start}
}
@media(max-width:390px){
  .hero-content h1{font-size:40px}
  .hero-content p{font-size:14px}
}
