/* ===== Passion Chalets — Prototype ===== */

:root{
  --black: #000000;
  --taupe: #8D785C;
  --taupe-deep: #6E5D47;
  --taupe-light: #D9CFC0;
  --sage: #9AB46B;
  --sage-deep: #7C9455;
  --white: #ffffff;
  --paper: #FAF9F7;
  --ink: #333333;
  --ink-soft: #6b6b6b;
  --line: #E4E1DC;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 24px 60px -30px rgba(0,0,0,.35);
  --shadow-sm: 0 12px 30px -18px rgba(0,0,0,.3);
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height:1.6;
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
svg{width:1em; height:1em; flex-shrink:0;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}
.container{width:100%; max-width:1320px; margin:0 auto; padding:0 5vw;}

.eyebrow{
  font-weight:700; font-size:.72rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--taupe); display:flex; align-items:center; gap:.6em;
}
h1,h2,h3,h4{font-family:var(--sans); font-weight:800; line-height:1.16; color:var(--black);}
.reveal{opacity:0; transform:translateY(24px); transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.in{opacity:1; transform:translateY(0);}

/* ===== Disclaimer badge ===== */
.proto-badge{
  position:fixed; left:1.1rem; bottom:1.1rem; z-index:300;
  background:var(--black); color:var(--taupe-light);
  font-size:.68rem; letter-spacing:.03em;
  padding:.55rem .9rem; border-radius:100px;
  box-shadow:var(--shadow-sm); opacity:.94;
}

/* ===== Header ===== */
header{
  position:sticky; top:0; z-index:200; width:100%;
  background:var(--black); color:var(--white);
}
.topbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:.6rem 5vw; font-size:.76rem; color:var(--taupe-light);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar a{display:flex; align-items:center; gap:.4rem;}
.topbar a svg{width:14px; height:14px; flex-shrink:0;}
.topbar a:hover{color:var(--white);}
.topbar-right{display:flex; align-items:center; gap:1.6rem;}
.nav{display:flex; align-items:center; justify-content:space-between; padding:1rem 5vw; gap:1.5rem;}
.nav-side{display:flex; align-items:center; gap:2rem; flex:1;}
.nav-side.right{justify-content:flex-end;}
.nav-center{display:flex; align-items:center; gap:2.6rem; flex:2; justify-content:center;}
.brand{display:flex; flex-direction:column; align-items:center; gap:.3rem;}
.brand img{height:52px; width:auto; display:block;}
.nav-links{display:flex; gap:1.8rem; font-size:.82rem; font-weight:600;}
.nav-links a{position:relative; padding-bottom:4px; color:var(--white);}
.nav-links a::after{content:''; position:absolute; left:0; bottom:0; width:0%; height:1px; background:var(--taupe); transition:width .3s var(--ease);}
.nav-links a:hover::after{width:100%;}
.nav-cta{display:flex; align-items:center; gap:.9rem;}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:.85rem 1.6rem; font-size:.8rem; font-weight:700;
  border:1.5px solid var(--black); color:var(--black); background:var(--white);
  border-radius:100px; transition:all .3s var(--ease); white-space:nowrap;
}
.btn:hover{background:var(--black); color:var(--white);}
.btn-taupe{background:var(--taupe); border-color:var(--taupe); color:var(--black);}
.btn-taupe:hover{background:var(--taupe-deep); border-color:var(--taupe-deep); color:var(--white);}
.btn-outline-white{background:transparent; border-color:rgba(255,255,255,.6); color:var(--white);}
.btn-outline-white:hover{background:var(--white); color:var(--black); border-color:var(--white);}
.btn-block{width:100%;}
.btn-sm{padding:.6rem 1.1rem; font-size:.72rem;}

.icon-circle{
  width:42px; height:42px; border-radius:50%; border:1.5px solid rgba(255,255,255,.35);
  display:flex; align-items:center; justify-content:center; color:var(--white);
  transition:all .3s var(--ease); flex-shrink:0;
}
.icon-circle:hover{background:var(--white); color:var(--black); border-color:var(--white);}
.icon-circle svg{width:16px; height:16px;}

.burger{display:none; flex-direction:column; gap:5px; width:24px;}
.burger span{height:2px; background:var(--white); width:100%; border-radius:2px;}

/* Social rail */
.social-rail{
  position:fixed; right:0; top:50%; transform:translateY(-50%); z-index:150;
  display:flex; flex-direction:column;
}
.social-rail a{
  width:46px; height:46px; background:var(--black); color:var(--taupe-light);
  display:flex; align-items:center; justify-content:center; font-size:.8rem;
  border-top:1px solid rgba(255,255,255,.08); transition:all .3s var(--ease);
}
.social-rail a:hover{background:var(--taupe); color:var(--black);}
.social-rail svg{width:17px; height:17px;}
@media (max-width:900px){ .social-rail{display:none;} }

/* ===== Hero + search widget ===== */
.hero{position:relative; min-height:88vh; display:flex; align-items:flex-end; overflow:hidden; color:var(--white); padding-bottom:6.5rem;}
.hero-media{position:absolute; inset:0; background-size:cover; background-position:center; transform:scale(1.06); animation:heroZoom 20s var(--ease) forwards;}
@keyframes heroZoom{to{transform:scale(1);}}
.hero-media::after{content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 35%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.75) 100%);}
.hero-content{position:relative; z-index:2; width:100%; max-width:900px; margin:0 auto; text-align:center; padding:0 5vw;}
.hero h1{font-size:clamp(2rem,4.6vw,3.4rem); color:var(--white); line-height:1.2;}

.search-widget{
  position:relative; z-index:5;
  margin:-4.5rem auto 0; max-width:1180px;
  background:var(--white); border-radius:var(--radius);
  box-shadow:var(--shadow);
  display:grid; grid-template-columns:1fr 1fr 1fr 1fr 1fr auto;
  padding:.4rem;
}
.sw-field{
  padding:.9rem 1.3rem; border-right:1px solid var(--line);
  display:flex; flex-direction:column; gap:.2rem; cursor:pointer; position:relative;
}
.sw-field:last-of-type{border-right:none;}
.sw-label{font-size:.68rem; font-weight:700; color:var(--ink-soft); text-transform:uppercase; letter-spacing:.03em;}
.sw-value{display:flex; align-items:center; justify-content:space-between; gap:.5rem;}
.sw-value .big{font-size:1.35rem; font-weight:800; color:var(--black);}
.sw-value .small{font-size:.68rem; color:var(--ink-soft); font-weight:700; text-transform:uppercase;}
.sw-value svg{width:16px; height:16px; color:var(--taupe); flex-shrink:0;}
.sw-counter{display:flex; align-items:center; justify-content:space-between; gap:.6rem;}
.sw-counter button{
  width:26px; height:26px; border-radius:50%; background:var(--taupe-light); color:var(--black);
  display:flex; align-items:center; justify-content:center; font-size:1rem; font-weight:800; flex-shrink:0;
}
.sw-counter button:hover{background:var(--taupe);}
.sw-counter .num{font-size:1.2rem; font-weight:800;}
.sw-cta{
  padding:.6rem; display:flex; align-items:stretch;
}
.sw-cta .btn{width:100%; height:100%; border-radius:calc(var(--radius) - 4px); font-size:.78rem; padding:0 1.6rem;}
@media (max-width:1080px){
  .search-widget{grid-template-columns:1fr 1fr 1fr; grid-auto-rows:auto;}
  .sw-field{border-right:1px solid var(--line); border-bottom:1px solid var(--line);}
  .sw-cta{grid-column:1/4; padding:.7rem; align-items:stretch;}
  .sw-cta .btn{height:auto; padding:1rem 1.6rem;}
}
@media (max-width:640px){
  .search-widget{grid-template-columns:1fr 1fr; margin-top:-3rem;}
  .sw-cta{grid-column:1/3;}
}

/* ===== Tree-planted strip ===== */
.impact-strip{padding:3.4rem 0 2.2rem; text-align:center;}
.impact-strip h2{font-size:clamp(1.5rem,2.6vw,2.1rem);}
.impact-strip .partner{display:flex; align-items:center; justify-content:center; gap:.6rem; margin-top:.8rem; font-size:.85rem; color:var(--ink-soft); font-weight:600;}
.impact-strip .partner svg{width:20px; height:20px; color:var(--sage-deep);}

/* ===== Section heads ===== */
.section-head{max-width:640px; margin:0 auto 3rem; text-align:center;}
.section-head h2{font-size:clamp(1.8rem,3.2vw,2.6rem); margin-top:.7rem;}
.section-head p{color:var(--ink-soft); margin-top:.8rem; font-size:.95rem;}
.section-head.left{margin:0 0 2.6rem; text-align:left;}

/* ===== Listings ===== */
.listings{padding:5rem 0;}
.listings.on-paper{background:var(--paper);}
.listing-grid{display:grid; grid-template-columns:repeat(auto-fill, minmax(320px,1fr)); gap:1.8rem;}

.card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; transition:box-shadow .4s var(--ease), transform .4s var(--ease);
  display:flex; flex-direction:column;
}
.card:hover{box-shadow:var(--shadow-sm); transform:translateY(-4px);}
.card-media{position:relative; height:230px; overflow:hidden; display:block;}
.card-media img{width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease);}
.card:hover .card-media img{transform:scale(1.06);}
.card-badge{position:absolute; top:.9rem; left:.9rem; z-index:2; background:#F2C94C; color:var(--black); font-size:.66rem; font-weight:700; letter-spacing:.03em; padding:.4rem .8rem; border-radius:100px;}
.card-badge.new{background:#7FC6C1;}
.card-fav{position:absolute; top:.9rem; right:.9rem; z-index:2; color:var(--white); font-size:1.2rem; text-shadow:0 2px 8px rgba(0,0,0,.5); transition:transform .3s;}
.card-fav:hover{transform:scale(1.15);}
.card-mark{position:absolute; bottom:.8rem; left:.9rem; z-index:2; display:flex; align-items:center; gap:.4rem; color:var(--white); font-size:.62rem; font-weight:700; letter-spacing:.03em; text-transform:uppercase; text-shadow:0 1px 4px rgba(0,0,0,.5);}
.card-mark svg{width:16px; height:16px;}
.card-body{padding:1.3rem 1.4rem 1.5rem; display:flex; flex-direction:column; flex:1;}
.card-top{display:flex; justify-content:space-between; gap:1rem; margin-bottom:.6rem;}
.card h3{font-size:1rem; font-weight:700; margin-bottom:.25rem;}
.card-loc{font-size:.78rem; color:var(--ink-soft); font-weight:500;}
.card-price{text-align:right; white-space:nowrap;}
.card-price .from{display:block; font-size:.62rem; color:var(--ink-soft); font-weight:600;}
.card-price .amt{font-size:1.05rem; font-weight:800; color:var(--black);}
.card-price .unit{font-size:.68rem; color:var(--ink-soft);}
.card-desc{font-size:.82rem; color:var(--ink-soft); line-height:1.6; margin-bottom:1rem; flex:1;}
.card-icons{display:flex; gap:1rem; padding-top:.9rem; border-top:1px solid var(--line); color:var(--taupe-deep);}
.card-icons span{display:flex; align-items:center; gap:.3rem; font-size:.8rem; font-weight:700; color:var(--ink);}
.card-icons svg{width:17px; height:17px; color:var(--taupe);}

.no-results{text-align:center; padding:5rem 1rem; color:var(--ink-soft); display:none;}
.no-results.show{display:block;}

/* ===== Filters ===== */
.filters{
  display:flex; flex-wrap:wrap; gap:1rem; align-items:center; justify-content:space-between;
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:1.1rem 1.4rem; margin-bottom:2.4rem; box-shadow:var(--shadow-sm);
}
.filter-group{display:flex; flex-wrap:wrap; gap:.7rem; flex:1;}
.filter-select select{
  font-family:var(--sans); font-size:.8rem; font-weight:600;
  border:1px solid var(--line); border-radius:100px; background:var(--paper); color:var(--ink);
  padding:.6rem 1.8rem .6rem 1.1rem; appearance:none; min-width:130px;
}
.filter-search{display:flex; align-items:center; gap:.5rem; border:1px solid var(--line); border-radius:100px; padding:.6rem 1.1rem; min-width:200px; background:var(--paper);}
.filter-search svg{width:14px; height:14px; color:var(--ink-soft); flex-shrink:0;}
.filter-search input{border:none; background:none; padding:0; outline:none; width:100%; font-family:var(--sans); font-size:.82rem;}
.filter-count{font-size:.8rem; color:var(--ink-soft); white-space:nowrap;}
.filter-count strong{color:var(--black);}
.filter-reset{font-size:.76rem; font-weight:700; color:var(--taupe-deep);}
.filter-reset:hover{text-decoration:underline;}

/* ===== Types grid (home) ===== */
.types-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem;}
.type-tile{position:relative; height:180px; border-radius:var(--radius); overflow:hidden;}
.type-tile img{width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease);}
.type-tile:hover img{transform:scale(1.08);}
.type-tile::after{content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.62) 100%);}
.type-tile span{position:absolute; bottom:1rem; left:1.2rem; z-index:2; color:var(--white); font-weight:700; font-size:.92rem;}
@media (max-width:900px){ .types-grid{grid-template-columns:repeat(2,1fr);} }

/* ===== Dual / owner teaser ===== */
.dual{padding:5rem 0; background:var(--black); color:var(--white);}
.dual-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:4vw; align-items:center;}
.dual-media{border-radius:var(--radius); overflow:hidden; height:380px;}
.dual-media img{width:100%; height:100%; object-fit:cover;}
.dual-text h2{color:var(--white); font-size:clamp(1.7rem,3vw,2.3rem); margin-bottom:1.1rem;}
.dual-text p{color:rgba(255,255,255,.75); margin-bottom:1.6rem; font-size:.95rem; line-height:1.75;}
@media (max-width:900px){ .dual-grid{grid-template-columns:1fr;} .dual-media{height:280px;} }

/* ===== About/founder teaser ===== */
.founder{padding:5.5rem 0;}
.founder-grid{display:grid; grid-template-columns:.9fr 1.1fr; gap:4vw; align-items:center;}
.founder-media{border-radius:var(--radius); overflow:hidden; height:420px;}
.founder-media img{width:100%; height:100%; object-fit:cover;}
.founder-text p{color:var(--ink-soft); line-height:1.8; margin-bottom:1.2rem; font-size:.98rem;}
.founder-text strong{color:var(--black);}
@media (max-width:900px){ .founder-grid{grid-template-columns:1fr;} .founder-media{height:300px;} }

/* ===== Testimonial ===== */
.testimonial{padding:5.5rem 0; text-align:center; background:var(--paper);}
.testimonial blockquote{font-size:clamp(1.2rem,2vw,1.6rem); max-width:760px; margin:0 auto 1.2rem; line-height:1.55; font-weight:600; color:var(--black);}
.testimonial cite{font-style:normal; font-size:.8rem; color:var(--ink-soft); font-weight:600;}
.testimonial .stars{color:#F2C94C; margin-bottom:1rem; font-size:1.1rem; letter-spacing:.2em;}

/* ===== CTA banner ===== */
.cta-banner{position:relative; padding:5.5rem 0; color:var(--white); text-align:center; overflow:hidden;}
.cta-banner .bg{position:absolute; inset:0; background-size:cover; background-position:center;}
.cta-banner .bg::after{content:''; position:absolute; inset:0; background:rgba(0,0,0,.68);}
.cta-banner .inner{position:relative; z-index:1;}
.cta-banner h2{color:var(--white); font-size:clamp(1.7rem,3.2vw,2.5rem); margin:.8rem 0 1.4rem;}
.cta-banner p{max-width:50ch; margin:0 auto 2rem; color:rgba(255,255,255,.82); font-size:.95rem;}

/* ===== Pricing (owner) ===== */
.pricing-points{display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem;}
.point-card{background:var(--paper); border-radius:var(--radius); padding:2rem 1.6rem; text-align:center;}
.point-card .ic{width:52px; height:52px; border-radius:50%; background:var(--white); color:var(--taupe); display:flex; align-items:center; justify-content:center; margin:0 auto 1.1rem; box-shadow:var(--shadow-sm);}
.point-card .ic svg{width:22px; height:22px;}
.point-card h3{font-size:1.05rem; margin-bottom:.6rem;}
.point-card p{font-size:.85rem; color:var(--ink-soft); line-height:1.65;}
@media (max-width:820px){ .pricing-points{grid-template-columns:1fr;} }

/* ===== Contact ===== */
.contact{padding:5.5rem 0;}
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:5vw;}
.contact-info h2{font-size:clamp(1.8rem,3vw,2.4rem); margin-bottom:1.1rem;}
.contact-info p{color:var(--ink-soft); margin-bottom:2rem; font-size:.95rem;}
.contact-item{display:flex; gap:1.1rem; align-items:flex-start; padding:1.2rem 0; border-top:1px solid var(--line);}
.contact-item:last-child{border-bottom:1px solid var(--line);}
.contact-item .ic{width:38px; height:38px; border-radius:50%; background:var(--paper); color:var(--taupe); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.contact-item .ic svg{width:16px; height:16px;}
.contact-item h4{font-size:.88rem; margin-bottom:.25rem;}
.contact-item p{margin:0; font-size:.86rem; color:var(--ink-soft);}
.contact-social{display:flex; gap:.7rem; margin-top:1.6rem;}
.contact-social a{width:38px; height:38px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; color:var(--black); transition:all .3s;}
.contact-social a svg{width:15px; height:15px;}
.contact-social a:hover{background:var(--taupe); border-color:var(--taupe); color:var(--white);}
.contact-form{background:var(--paper); border-radius:var(--radius); padding:2.4rem;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:1.2rem;}
.field{margin-bottom:1.2rem;}
.field label{display:block; font-size:.72rem; font-weight:700; color:var(--ink-soft); margin-bottom:.5rem; text-transform:uppercase; letter-spacing:.03em;}
.field input, .field textarea, .field select{
  width:100%; border:1px solid var(--line); border-radius:var(--radius-sm); background:var(--white);
  padding:.75rem .95rem; font-family:var(--sans); font-size:.9rem; color:var(--ink); outline:none; transition:border-color .3s;
}
.field input:focus, .field textarea:focus, .field select:focus{border-color:var(--taupe);}
.field textarea{resize:vertical; min-height:90px;}
.form-success{display:none; text-align:center; padding:2rem 0;}
.form-success.show{display:block;}
.form-success .icon{width:52px; height:52px; border-radius:50%; background:var(--sage); color:var(--white); display:flex; align-items:center; justify-content:center; margin:0 auto 1.1rem;}
.form-success .icon svg{width:20px; height:20px;}

/* ===== Footer ===== */
footer{background:var(--black); color:rgba(255,255,255,.72); padding:4rem 0 1.6rem;}
.footer-grid{display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:3rem; padding-bottom:2.6rem; border-bottom:1px solid rgba(255,255,255,.1);}
.footer-brand img{height:56px; filter:none; margin-bottom:1rem;}
.footer-brand p{font-size:.85rem; line-height:1.7; max-width:32ch;}
.footer-col h4{color:var(--white); font-size:.82rem; margin-bottom:1.2rem; font-weight:700;}
.footer-col p, .footer-col a{display:block; font-size:.85rem; margin-bottom:.7rem;}
.footer-col a:hover{color:var(--taupe-light);}
.newsletter{display:flex; margin-top:.6rem;}
.newsletter input{flex:1; border:1px solid rgba(255,255,255,.2); background:transparent; color:var(--white); padding:.7rem 1rem; border-radius:100px 0 0 100px; outline:none; font-family:var(--sans); font-size:.85rem;}
.newsletter button{background:var(--taupe); color:var(--black); padding:0 1.2rem; border-radius:0 100px 100px 0; font-weight:700;}
.footer-social{display:flex; gap:.6rem; margin-top:1.4rem;}
.footer-social a{width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; transition:all .3s;}
.footer-social a svg{width:15px; height:15px;}
.footer-social a:hover{background:var(--taupe); border-color:var(--taupe); color:var(--black);}
.footer-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:1.6rem; font-size:.76rem; flex-wrap:wrap; gap:1rem;}
.footer-bottom a:hover{color:var(--white);}
@media (max-width:900px){ .footer-grid{grid-template-columns:1fr; gap:2rem;} }

/* ===== Toast / to-top ===== */
.toast{position:fixed; bottom:2rem; right:2rem; z-index:600; background:var(--black); color:var(--white); padding:.9rem 1.4rem; font-size:.85rem; border-radius:100px; display:flex; align-items:center; gap:.7rem; transform:translateY(120%); transition:transform .5s var(--ease); box-shadow:var(--shadow);}
.toast.show{transform:translateY(0);}
.toast .dot{width:7px; height:7px; border-radius:50%; background:var(--taupe);}
.to-top{position:fixed; right:2rem; bottom:2rem; z-index:150; width:46px; height:46px; border-radius:50%; background:var(--black); color:var(--white); display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transform:translateY(10px); transition:all .4s var(--ease);}
.to-top.show{opacity:1; pointer-events:auto; transform:translateY(0);}
.to-top:hover{background:var(--taupe); color:var(--black);}
.to-top svg{width:16px; height:16px;}

/* ===== Mobile nav ===== */
.mobile-nav{position:fixed; top:0; right:0; height:100vh; width:min(320px,84vw); background:var(--black); z-index:400; transform:translateX(100%); transition:transform .5s var(--ease); box-shadow:-30px 0 60px rgba(0,0,0,.3); padding:5.5rem 2rem 2rem;}
.mobile-nav.open{transform:translateX(0);}
.mobile-nav a{display:block; font-size:1.15rem; font-weight:700; padding:.75rem 0; border-bottom:1px solid rgba(255,255,255,.1); color:var(--white);}
.mobile-nav-close{position:absolute; top:1.6rem; right:1.6rem; width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.2); color:var(--white);}
.mobile-nav a.mobile-nav-cta{margin-top:1.6rem; background:var(--taupe); color:var(--black); text-align:center; border-radius:100px; padding:1rem; border:none;}
.mobile-nav-info{display:flex; flex-direction:column; gap:.9rem; margin-top:1.6rem; padding-top:1.6rem; border-top:1px solid rgba(255,255,255,.12);}
.mobile-nav-info a{display:flex; align-items:center; gap:.7rem; font-size:.85rem; font-weight:600; padding:0; border:none; color:rgba(255,255,255,.8);}
.mobile-nav-info a svg{width:15px; height:15px; color:var(--taupe); flex-shrink:0;}
.mobile-nav-info a:hover{color:var(--white);}

/* ===== Page fade ===== */
body{opacity:0; animation:pageIn .6s var(--ease) forwards;}
@keyframes pageIn{to{opacity:1;}}

/* ===== Breadcrumb / page header ===== */
.breadcrumb{padding:1.1rem 0; font-size:.8rem; color:var(--ink-soft); display:flex; gap:.5rem; align-items:center;}
.breadcrumb a:hover{color:var(--taupe-deep);}
.breadcrumb .sep{color:var(--line);}
.breadcrumb .current{color:var(--black); font-weight:600;}

.page-header{position:relative; padding:3.4rem 0 2.6rem; color:var(--white); overflow:hidden;}
.page-header .bg{position:absolute; inset:0; background-size:cover; background-position:center;}
.page-header .bg::after{content:''; position:absolute; inset:0; background:rgba(0,0,0,.62);}
.page-header .inner{position:relative; z-index:1;}
.page-header h1{color:var(--white); font-size:clamp(1.8rem,3.4vw,2.6rem);}
.page-header p{max-width:56ch; color:rgba(255,255,255,.82); margin-top:.7rem; font-size:.9rem;}

/* ===== Chalet detail ===== */
.chalet-top{padding-top:1.4rem;}
.chalet-title-row{display:flex; justify-content:space-between; align-items:flex-start; gap:1.2rem; margin-bottom:1.4rem; flex-wrap:wrap;}
.chalet-title-row h1{font-size:clamp(1.6rem,3vw,2.2rem);}
.chalet-title-row .loc{font-size:.9rem; color:var(--ink-soft); font-weight:600; margin-top:.4rem; display:flex; align-items:center;}
.chalet-title-row .loc svg{width:15px; height:15px; flex-shrink:0;}
.chalet-actions{display:flex; gap:.6rem;}
.icon-btn{width:40px; height:40px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; color:var(--black); transition:all .3s;}
.icon-btn svg{width:16px; height:16px;}
.icon-btn:hover{border-color:var(--taupe); color:var(--taupe);}

.gallery{margin-bottom:1rem;}
.gallery-main{position:relative; border-radius:var(--radius); overflow:hidden; height:520px;}
.gallery-main img{width:100%; height:100%; object-fit:cover;}
.gallery-count{position:absolute; bottom:1rem; right:1rem; background:rgba(0,0,0,.65); color:var(--white); font-size:.76rem; padding:.4rem .8rem; border-radius:100px;}
.gallery-nav{position:absolute; top:50%; transform:translateY(-50%); width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.9); display:flex; align-items:center; justify-content:center; color:var(--black); z-index:2;}
.gallery-nav svg{width:16px; height:16px;}
.gallery-nav.prev{left:1rem;} .gallery-nav.next{right:1rem;}
.gallery-thumbs{display:flex; gap:.6rem; margin-top:.7rem; overflow-x:auto; padding-bottom:.3rem;}
.gallery-thumbs img{width:110px; height:78px; object-fit:cover; border-radius:var(--radius-sm); flex-shrink:0; cursor:pointer; opacity:.65; transition:opacity .3s;}
.gallery-thumbs img.active{opacity:1; outline:2px solid var(--taupe);}
@media (max-width:820px){ .gallery-main{height:320px;} }

.chalet-layout{display:grid; grid-template-columns:1.5fr 1fr; gap:4vw; align-items:start; padding:2.6rem 0 5rem;}
.chalet-main p.lead{color:var(--ink-soft); line-height:1.8; margin-bottom:1.2rem; font-size:.95rem;}
.quick-facts{display:flex; flex-wrap:wrap; gap:1.6rem; padding:1.3rem 0; margin-bottom:1.6rem; border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.quick-fact{display:flex; align-items:center; gap:.6rem; font-size:.88rem; font-weight:700;}
.quick-fact svg{width:20px; height:20px; color:var(--taupe);}
.chalet-main h3{font-size:1.2rem; margin:2rem 0 1.1rem;}
.amenity-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:1rem 1.6rem;}
.amenity{display:flex; align-items:center; gap:.7rem; font-size:.86rem;}
.amenity svg{width:19px; height:19px; color:var(--taupe); flex-shrink:0;}

.accordion-item{border-bottom:1px solid var(--line);}
.accordion-head{display:flex; justify-content:space-between; align-items:center; padding:1.1rem 0; font-weight:700; font-size:.92rem;}
.accordion-head svg{width:14px; height:14px; transition:transform .3s var(--ease);}
.accordion-item.open .accordion-head svg{transform:rotate(180deg);}
.accordion-body{max-height:0; overflow:hidden; transition:max-height .35s var(--ease);}
.accordion-item.open .accordion-body{max-height:400px;}
.accordion-body-inner{padding:0 0 1.2rem; font-size:.85rem; color:var(--ink-soft); line-height:1.75;}

.conditions p{font-size:.88rem; color:var(--ink-soft); line-height:1.8; margin-bottom:.6rem;}

/* Booking widget (sidebar) */
.booking-card{position:sticky; top:100px; background:var(--white); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-sm); padding:1.6rem;}
.bk-dates{display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--line); border-radius:var(--radius-sm); margin-bottom:1rem;}
.bk-date{padding:.7rem .9rem; border-right:1px solid var(--line);}
.bk-date:last-child{border-right:none;}
.bk-date .lbl{font-size:.64rem; font-weight:700; color:var(--ink-soft); text-transform:uppercase;}
.bk-date .val{font-size:.92rem; font-weight:800; margin-top:.15rem;}
.bk-calendar{margin-bottom:1rem;}
.bk-cal-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:.7rem;}
.bk-cal-head button{width:28px; height:28px; border-radius:50%; border:1px solid var(--line); display:flex; align-items:center; justify-content:center;}
.bk-cal-head button svg{width:13px; height:13px;}
.bk-cal-head .lbl{font-weight:700; font-size:.86rem;}
.bk-cal-grid{display:grid; grid-template-columns:repeat(7,1fr); gap:2px; text-align:center;}
.bk-cal-grid .dow{font-size:.62rem; font-weight:700; color:var(--ink-soft); padding-bottom:.3rem;}
.bk-day{
  aspect-ratio:1; display:flex; align-items:center; justify-content:center;
  font-size:.76rem; border-radius:50%; cursor:pointer; color:var(--ink);
}
.bk-day.empty{visibility:hidden;}
.bk-day.unavailable{background:var(--taupe); color:var(--black); cursor:not-allowed; opacity:.55;}
.bk-day.available:hover{background:var(--taupe-light);}
.bk-day.in-range{background:var(--sage); color:var(--white);}
.bk-day.range-start, .bk-day.range-end{background:var(--sage-deep); color:var(--white); font-weight:800;}
.bk-legend{display:flex; gap:1.1rem; margin-top:.7rem; font-size:.68rem; color:var(--ink-soft);}
.bk-legend span{display:flex; align-items:center; gap:.4rem;}
.bk-legend .dot{width:10px; height:10px; border-radius:50%;}
.bk-legend .dot.av{background:var(--sage);}
.bk-legend .dot.un{background:var(--taupe);}
.bk-counters{margin-bottom:1rem;}
.bk-counter-row{display:flex; align-items:center; justify-content:space-between; padding:.7rem 0; border-top:1px solid var(--line);}
.bk-counter-row .lbl{font-size:.84rem; font-weight:700;}
.bk-counter-row .sub{font-size:.68rem; color:var(--ink-soft); font-weight:400;}
.bk-counter{display:flex; align-items:center; gap:.7rem;}
.bk-counter button{width:26px; height:26px; border-radius:50%; background:var(--paper); border:1px solid var(--line); font-weight:800; display:flex; align-items:center; justify-content:center;}
.bk-counter button:hover{background:var(--taupe-light);}
.bk-counter .num{font-weight:800; min-width:14px; text-align:center;}
.bk-price-reveal{display:none; margin-top:1rem; padding-top:1rem; border-top:1px solid var(--line);}
.bk-price-reveal.show{display:block;}
.bk-price-row{display:flex; justify-content:space-between; font-size:.84rem; color:var(--ink-soft); padding:.35rem 0;}
.bk-price-row.total{color:var(--black); font-weight:800; font-size:1rem; border-top:1px solid var(--line); margin-top:.4rem; padding-top:.7rem;}
.bk-note{display:flex; gap:.6rem; align-items:flex-start; font-size:.76rem; color:var(--ink-soft); margin-top:1rem; line-height:1.6;}
.bk-note svg{width:14px; height:14px; color:var(--taupe); flex-shrink:0; margin-top:.15rem;}

.related{padding:5rem 0; background:var(--paper);}

@media (max-width:1080px){
  .chalet-layout{grid-template-columns:1fr;}
  .booking-card{position:static;}
}
@media (max-width:820px){
  .topbar{display:none;}
  .nav{padding:.9rem 5vw;}
  .nav-links, .nav-side.left, .nav-side.right .btn, .nav-side.right .icon-circle{display:none;}
  .nav-side.right{gap:0;}
  .nav-center{flex:1; justify-content:flex-start;}
  .burger{display:flex;}
  .listing-grid{grid-template-columns:repeat(auto-fill, minmax(260px,1fr));}
  .form-row{grid-template-columns:1fr;}
}
@media (max-width:560px){
  .listing-grid{grid-template-columns:1fr;}
  .amenity-grid{grid-template-columns:1fr;}
  .filters{flex-direction:column; align-items:stretch;}
  .filter-group{flex-direction:column;}
  .contact-grid{grid-template-columns:1fr;}
  .to-top{right:1.1rem; bottom:1.1rem; width:42px; height:42px;}
  .toast{right:.8rem; left:.8rem; bottom:.8rem;}
  .proto-badge{left:.7rem; bottom:.7rem; font-size:.62rem;}
}
