/* ===== Zion House — tokens measured from the reference at 1440px ===== */
:root{
  --ink:#1F2021;
  --muted:#707070;
  --accent:#38B6FF;      /* brand blue, sampled from the logo */
  --accent-ink:#0B7FC4;  /* darker blue for text/badges on white */
  --dark:#111214;
  --page:#FAFAFA;      /* body background */
  --card:#FFFFFF;
  --line:#ECECEC;
  --chip:#F4F4F4;
  --content:1080px;    /* measured content width */
  --r-hero:40px;
  --r-card:20px;
  --r-img:16px;
  --r-pill:99px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:var(--page);color:var(--ink);
  font-family:'Manrope',system-ui,-apple-system,sans-serif;
  font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4,h5{margin:0;font-weight:400;line-height:1.15;letter-spacing:-0.03em}
p{margin:0}

.shell{padding:14px}
.section{max-width:var(--content);margin:0 auto;padding:110px 24px}
.center{text-align:center;margin-top:44px}

/* ===== Buttons — reference uses BLACK pills, not orange ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 26px;border-radius:var(--r-pill);
  font-size:14px;font-weight:500;letter-spacing:-0.01em;
  border:0;cursor:pointer;white-space:nowrap;
  transition:transform .2s ease,background .2s ease,opacity .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-dark{background:var(--dark);color:#fff}
.btn-dark:hover{background:#000}
.btn-white{background:#fff;color:var(--ink)}
.btn-white:hover{background:#f2f2f2}

/* ===== Floating pill nav ===== */
.nav{position:fixed;top:22px;left:0;right:0;z-index:80;display:flex;justify-content:center;padding:0 20px}
.nav-pill{
  width:100%;max-width:700px;background:#fff;border-radius:var(--r-pill);
  padding:9px 10px 9px 24px;display:flex;align-items:center;gap:20px;
  box-shadow:0 6px 26px rgba(0,0,0,.09);
}
/* nav uses the monogram + wordmark: the full lockup is stacked and
   goes illegible at pill height. Footer gets the full lockup. */
.brand{display:flex;align-items:center;gap:9px}
.brand img{height:30px;width:auto;display:block}
.brand span{font-size:15px;font-weight:600;letter-spacing:-0.02em;white-space:nowrap}
.brand-footer img{height:78px}
.nav-links{display:flex;gap:26px;margin:0 auto;font-size:13px;color:var(--muted)}
.nav-links a:hover{color:var(--ink)}
.nav-toggle{display:none;background:none;border:0;padding:10px;cursor:pointer}
.nav-toggle span{display:block;width:18px;height:1.5px;background:var(--ink)}
.nav-toggle span+span{margin-top:5px}

/* ===== Hero — full-bleed image inside a rounded inset container ===== */
.hero{
  position:relative;border-radius:var(--r-hero);overflow:hidden;
  min-height:min(88vh,860px);display:grid;place-items:center;text-align:center;
}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.34),rgba(0,0,0,.12) 40%,rgba(0,0,0,.44))}
.hero-inner{position:relative;z-index:2;color:#fff;padding:120px 24px 80px}
.hero-eyebrow{font-size:15px;margin-bottom:10px;opacity:.92}
.hero h1{font-size:clamp(40px,5.2vw,60px);color:#fff}
.hero-sub{margin:16px auto 0;font-size:15px;opacity:.9;max-width:46ch}
.hero .btn{margin-top:26px}

/* ===== Section headings — CENTERED with a pill tag above ===== */
.head{text-align:center;max-width:700px;margin:0 auto 52px}
.tag{
  display:inline-block;font-size:12px;color:var(--muted);
  background:var(--card);border:1px solid var(--line);
  padding:5px 15px;border-radius:var(--r-pill);margin-bottom:18px;
}
.tag-light{background:rgba(255,255,255,.16);border-color:rgba(255,255,255,.28);color:#fff;backdrop-filter:blur(6px)}
.head h2{font-size:clamp(30px,3.6vw,48px)}
.head-sub{color:var(--muted);font-size:14px;margin-top:14px}

/* ===== Rooms — 2 columns, borderless white cards ===== */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.room{background:var(--card);border-radius:var(--r-card);padding:12px;transition:transform .3s ease,box-shadow .3s ease}
.room:hover{transform:translateY(-5px);box-shadow:0 20px 44px rgba(0,0,0,.08)}
.room-img{border-radius:var(--r-img);overflow:hidden;aspect-ratio:16/10;background:var(--chip)}
.room-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.room:hover .room-img img{transform:scale(1.04)}
.room-row{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:0 8px}
.room-row:nth-of-type(1){margin-top:16px}
.room-row:nth-of-type(2){margin-top:6px;padding-bottom:8px}
.room-ask{display:grid;place-items:center;text-align:center;background:#F2F2F2}
.room-ask:hover{transform:none;box-shadow:none}
.room-ask-inner{padding:36px 30px;max-width:34ch}
.room-ask h3{font-size:20px;margin-bottom:10px}
.room-ask p{color:var(--muted);font-size:14px;margin-bottom:20px}
.room h3{font-size:17px;font-weight:500}
.price{font-size:16px;font-weight:600}
.price span{font-size:12px;font-weight:400;color:var(--muted)}
.loc{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--muted)}
.loc svg{width:13px;height:13px;fill:none;stroke:var(--muted);stroke-width:1.6}
.chips{display:flex;gap:6px}
.chips span{background:var(--chip);color:var(--muted);font-size:11px;padding:5px 11px;border-radius:var(--r-pill)}

/* ===== Featured quote ===== */
.feature{text-align:center}
.stack{display:flex;justify-content:center;margin-bottom:18px}
.stack img{width:56px;height:56px;border-radius:18px;object-fit:cover;border:3px solid var(--page)}
.stack img+img{margin-left:-18px}
.stars{color:var(--accent-ink);letter-spacing:5px;font-size:14px}
.feature-quote{max-width:820px;margin:6px auto 0;font-size:clamp(24px,3.1vw,38px);line-height:1.28}
.feature-note{margin-top:22px;color:var(--muted);font-size:13px;letter-spacing:.02em}
.feature-by{margin-top:28px}
.feature-by img{width:38px;height:38px;border-radius:50%;margin:0 auto 10px;object-fit:cover}
.feature-by .name{font-size:15px;font-weight:600}
.feature-by .role{font-size:12px;color:var(--muted)}

/* ===== Carousel — centre slide with peeking neighbours ===== */
.carousel-section{padding:40px 0 20px}
.carousel{overflow:hidden}
/* active slide sits centred, so neighbours peek on BOTH sides */
.carousel-track{display:flex;gap:20px;transition:transform .6s cubic-bezier(.2,.7,.3,1);padding-left:calc((100% - min(920px,74vw)) / 2)}
.slide{flex:0 0 min(920px,74vw);border-radius:var(--r-card);overflow:hidden;aspect-ratio:16/9;background:var(--chip)}
.slide img{width:100%;height:100%;object-fit:cover}
.dots{display:flex;justify-content:center;gap:8px;margin-top:22px}
.dot{width:7px;height:7px;border-radius:50%;border:0;padding:0;background:#D2D2D2;cursor:pointer;transition:background .25s,width .25s}
.dot.is-active{background:var(--ink);width:20px;border-radius:var(--r-pill)}

/* ===== Journal — 3 columns ===== */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.post{background:var(--card);border-radius:var(--r-card);padding:11px;transition:transform .3s ease,box-shadow .3s ease}
.post:hover{transform:translateY(-5px);box-shadow:0 20px 44px rgba(0,0,0,.08)}
.post-img{border-radius:var(--r-img);overflow:hidden;aspect-ratio:16/11;background:var(--chip)}
.post-img img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.post:hover .post-img img{transform:scale(1.04)}
.post-row{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:14px 7px 6px}
.post h3{font-size:14px;font-weight:500}
.badge{display:inline-flex;align-items:center;gap:6px;background:#EAF6FF;color:var(--accent-ink);font-size:11px;padding:5px 11px;border-radius:var(--r-pill);white-space:nowrap}
.badge::after{content:'';width:5px;height:5px;border-radius:50%;background:var(--accent)}

/* ===== Testimonials — horizontal rail ===== */
.rail{display:flex;gap:18px;overflow-x:auto;padding:4px 4px 14px;scroll-snap-type:x mandatory;scrollbar-width:none}
.rail::-webkit-scrollbar{display:none}
.tcard{flex:0 0 320px;scroll-snap-align:start;background:var(--card);border:1px solid var(--line);border-radius:var(--r-card);padding:20px;display:flex;flex-direction:column;gap:14px}
.tcard p{font-size:13px;color:var(--muted);line-height:1.65}
.tcard footer{display:flex;align-items:center;gap:10px;margin-top:auto}
.tcard footer img{width:34px;height:34px;border-radius:50%;object-fit:cover}
.tcard footer span{display:flex;flex-direction:column;line-height:1.3}
.tcard footer strong{font-size:13px;font-weight:600}
.tcard footer em{font-size:11px;color:var(--muted);font-style:normal}
.tcard .x{margin-left:auto;width:28px;height:28px;border-radius:50%;background:var(--chip);display:grid;place-items:center;font-size:12px;color:var(--ink)}
.rating{display:flex;align-items:center;gap:14px;justify-content:center;background:var(--card);border:1px solid var(--line);border-radius:var(--r-pill);padding:10px 10px 10px 12px;width:max-content;margin:38px auto 0}
.rating-circle{width:38px;height:38px;border-radius:50%;background:var(--dark);color:#fff;display:grid;place-items:center;font-size:14px}
.rating-txt{display:flex;flex-direction:column;line-height:1.3;margin-right:10px}
.rating-txt strong{font-size:13px;font-weight:600}
.rating-txt em{font-size:11px;color:var(--muted);font-style:normal}

/* ===== FAQ — centred narrow column of white cards ===== */
.faq-list{max-width:740px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-list details{background:var(--card);border-radius:var(--r-img);padding:18px 22px}
.faq-list summary{list-style:none;cursor:pointer;font-size:14px;font-weight:500;display:flex;justify-content:space-between;align-items:center;gap:18px}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{content:'+';font-size:20px;font-weight:300;transition:transform .3s ease;line-height:1}
.faq-list details[open] summary::after{transform:rotate(45deg)}
.faq-list details p{color:var(--muted);font-size:13.5px;margin-top:12px;max-width:62ch}

/* ===== CTA — full-bleed image, rounded, inset ===== */
.cta{position:relative;border-radius:var(--r-hero);overflow:hidden;text-align:center;display:grid;place-items:center;min-height:440px}
.cta-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.cta::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.42),rgba(0,0,0,.55))}
.cta-inner{position:relative;z-index:2;color:#fff;padding:70px 24px}
.cta h2{font-size:clamp(28px,3.6vw,44px);color:#fff}
.cta-sub{font-size:14px;opacity:.85;margin-top:12px}
.subscribe{display:flex;align-items:center;gap:8px;background:#fff;border-radius:var(--r-pill);padding:6px 6px 6px 20px;max-width:420px;margin:26px auto 0}
.subscribe input{flex:1;border:0;outline:0;font-family:inherit;font-size:13px;color:var(--ink);background:transparent;min-width:0}
.subscribe input::placeholder{color:#9A9A9A}
.form-note{margin-top:14px;font-size:13px;color:#fff;min-height:18px}
.cta-foot{margin-top:26px;font-size:13px;opacity:.85}

/* ===== Footer ===== */
.footer{background:var(--page);padding:86px 24px 70px}
.footer-inner{max-width:var(--content);margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px}
.footer-brand p{color:var(--muted);font-size:13px;margin-top:16px}
.footer-col{display:flex;flex-direction:column;gap:11px}
.footer-col h5{font-size:13px;font-weight:600;margin-bottom:6px}
.footer-col a{color:var(--muted);font-size:13px}
.footer-col a:hover{color:var(--ink)}

/* ===== Reveal — only active with JS, so no-JS still renders ===== */
.js .reveal{opacity:0;transform:translateY(20px);transition:opacity .7s cubic-bezier(.2,.7,.3,1),transform .7s cubic-bezier(.2,.7,.3,1)}
.js .reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .js .reveal{opacity:1;transform:none;transition:none}
  .carousel-track{transition:none}
  html{scroll-behavior:auto}
}

/* ===== Responsive ===== */
@media (max-width:1000px){
  .slide{flex:0 0 90vw}
  .grid-3{grid-template-columns:1fr 1fr}
  .footer-inner{grid-template-columns:1fr 1fr 1fr}
  .footer-brand{grid-column:1/-1}
}
@media (max-width:760px){
  :root{--r-hero:26px}
  .section{padding:76px 20px}
  .nav{top:12px;padding:0 12px}
  .nav-pill{padding:8px 8px 8px 18px;gap:12px}
  .nav-links{display:none}
  .nav-links.open{
    display:flex;flex-direction:column;gap:0;position:absolute;top:calc(100% + 10px);
    left:12px;right:12px;background:#fff;border-radius:22px;padding:8px 20px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
  }
  .nav-links.open a{padding:12px 0;border-bottom:1px solid var(--line)}
  .nav-links.open a:last-child{border-bottom:0}
  .nav-toggle{display:block;margin-left:auto}
  .brand{margin-right:auto}
  .grid-2,.grid-3{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
  .tcard{flex:0 0 276px}
  .rating{width:auto;flex-wrap:wrap;border-radius:22px}
  .hero-inner{padding:110px 20px 64px}
}

/* ===== Room cards are now interactive ===== */
.room[data-gallery]{cursor:pointer}
.room[data-gallery]:focus-visible{outline:2px solid var(--accent-ink);outline-offset:3px}
.room-img{position:relative}
.shots{
  position:absolute;left:12px;bottom:12px;z-index:2;
  background:rgba(0,0,0,.58);color:#fff;font-size:11px;font-weight:500;
  padding:6px 12px;border-radius:var(--r-pill);backdrop-filter:blur(6px);
  opacity:0;transform:translateY(4px);transition:opacity .25s ease,transform .25s ease;
}
.room[data-gallery]:hover .shots,
.room[data-gallery]:focus-visible .shots{opacity:1;transform:none}
@media (hover:none){.shots{opacity:1;transform:none}}

/* ===== Lightbox ===== */
.lightbox{position:fixed;inset:0;z-index:200;background:rgba(12,13,15,.94);
  display:grid;grid-template-rows:1fr auto;gap:14px;padding:56px 20px 18px}
.lightbox[hidden]{display:none}
.lb-stage{margin:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;min-height:0}
.lb-stage img{max-width:min(1100px,92vw);max-height:70vh;width:auto;height:auto;
  object-fit:contain;border-radius:var(--r-img);background:#1a1b1e}
.lb-stage figcaption{display:flex;align-items:center;gap:14px;flex-wrap:wrap;justify-content:center;
  color:#fff;font-size:13px}
.lb-stage figcaption span:first-child{font-weight:600}
.lb-stage figcaption span:nth-child(2){color:rgba(255,255,255,.66)}
.lb-stage figcaption span:last-child{color:rgba(255,255,255,.5);font-variant-numeric:tabular-nums}
.lb-close,.lb-nav{position:absolute;background:rgba(255,255,255,.12);border:0;color:#fff;cursor:pointer;
  border-radius:50%;display:grid;place-items:center;transition:background .2s ease}
.lb-close:hover,.lb-nav:hover{background:rgba(255,255,255,.24)}
.lb-close:focus-visible,.lb-nav:focus-visible,.lb-thumb:focus-visible{outline:2px solid #fff;outline-offset:2px}
.lb-close{top:14px;right:16px;width:40px;height:40px;font-size:24px;line-height:1}
.lb-nav{top:50%;transform:translateY(-50%);width:44px;height:44px;font-size:26px;line-height:1}
.lb-prev{left:16px}
.lb-next{right:16px}
.lb-thumbs{display:flex;gap:8px;overflow-x:auto;justify-content:flex-start;padding:2px;scrollbar-width:none}
.lb-thumbs::-webkit-scrollbar{display:none}
.lb-thumb{flex:0 0 auto;width:84px;height:56px;padding:0;border:0;border-radius:9px;overflow:hidden;
  cursor:pointer;opacity:.5;transition:opacity .2s ease,box-shadow .2s ease;background:none}
.lb-thumb img{width:100%;height:100%;object-fit:cover}
.lb-thumb.is-active{opacity:1;box-shadow:0 0 0 2px var(--accent)}
.lb-thumb:hover{opacity:.85}
@media (max-width:760px){
  .lightbox{padding:52px 10px 12px}
  .lb-stage img{max-height:58vh;max-width:96vw}
  .lb-nav{width:38px;height:38px;font-size:22px}
  .lb-prev{left:6px}
  .lb-next{right:6px}
  .lb-thumb{width:64px;height:44px}
}
@media (prefers-reduced-motion:reduce){.shots{transition:none}}
