/* ============ Tokens ============ */
:root{
  --stone-50:#f4f5f1;
  --stone-100:#e9eae4;
  --stone-200:#d9dbd2;
  --stone-600:#5b6058;
  --stone-700:#454a42;
  --ink:#181d19;

  --slate-900:#10151a;
  --slate-800:#1a222a;
  --slate-700:#28323b;

  --terracotta:#c2542c;
  --terracotta-dark:#a1431f;
  --terracotta-tint:#f0d9cd;

  --radius-md:14px;
  --radius-lg:22px;
  --radius-pill:999px;

  --font-display:'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body:'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 1px 2px rgba(24,29,25,.06), 0 1px 1px rgba(24,29,25,.04);
  --shadow-md: 0 12px 28px -8px rgba(24,29,25,.18);
  --shadow-lg: 0 24px 60px -12px rgba(24,29,25,.28);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--stone-50);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
img{max-width:100%;display:block;}
h1,h2,h3{
  font-family:var(--font-display);
  font-weight:500;
  line-height:1.12;
  margin:0 0 .5em;
  color:var(--ink);
}
p{margin:0 0 1em;color:var(--stone-700);}
a{color:inherit;text-decoration:none;}
ul{list-style:none;margin:0;padding:0;}
button{font-family:inherit;}

.wrap{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:0 24px;
}

.section-title{
  font-size:clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  margin-bottom:2.5rem;
  max-width:38ch;
}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding:.9rem 1.7rem;
  border-radius:var(--radius-pill);
  font-weight:600;
  font-size:.95rem;
  white-space:nowrap;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .25s var(--ease-out), background-color .25s var(--ease-out), box-shadow .25s var(--ease-out), color .25s var(--ease-out);
}
.btn:active{transform:scale(0.97);}
.btn-primary{
  background:var(--terracotta);
  color:#fff;
  box-shadow:var(--shadow-sm);
}
.btn-primary:hover{background:var(--terracotta-dark); box-shadow:var(--shadow-md); transform:translateY(-1px);}
.btn-outline{
  background:transparent;
  border-color:var(--ink);
  color:var(--ink);
}
.btn-outline:hover{background:var(--ink); color:var(--stone-50);}
.btn-ghost{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.55);
  color:#fff;
  backdrop-filter:blur(6px);
}
.btn-ghost:hover{background:rgba(255,255,255,.22);}
.btn-sm{padding:.65rem 1.3rem; font-size:.85rem;}
.btn-block{width:100%;}

/* ============ Header ============ */
.scroll-sentinel{position:absolute; top:0; height:1px; width:1px;}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(244,245,241,.7);
  backdrop-filter:blur(14px) saturate(160%);
  -webkit-backdrop-filter:blur(14px) saturate(160%);
  border-bottom:1px solid transparent;
  transition:border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.site-header.is-scrolled{
  border-bottom-color:var(--stone-200);
  box-shadow:var(--shadow-sm);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
}
.brand{display:flex; align-items:center; gap:.6rem;}
.brand-mark{color:var(--terracotta); display:inline-flex;}
.brand-name{
  font-family:var(--font-display);
  font-size:1.25rem;
  font-weight:500;
  letter-spacing:.01em;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:2rem;
  font-size:.95rem;
  font-weight:600;
}
.main-nav a{position:relative; padding:.3rem 0;}
.main-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:2px;
  background:var(--terracotta);
  transition:width .25s var(--ease-out);
}
.main-nav a:hover::after{width:100%;}
.header-actions{display:flex; align-items:center; gap:.75rem;}
.nav-toggle{
  display:none;
  background:none;
  border:none;
  font-size:1.5rem;
  cursor:pointer;
  color:var(--ink);
  padding:.25rem;
}
.mobile-nav{
  display:none;
  flex-direction:column;
  gap:0;
  background:var(--stone-50);
  border-bottom:1px solid var(--stone-200);
}
.mobile-nav a{
  padding:1rem 24px;
  border-top:1px solid var(--stone-200);
  font-weight:600;
}
.mobile-nav .btn{margin:1rem 24px;}
.mobile-nav.is-open{display:flex;}

@media (max-width:900px){
  .main-nav{display:none;}
  .nav-toggle{display:inline-flex;}
  .header-actions .btn-primary{display:none;}
}

/* ============ Hero ============ */
.hero{
  position:relative;
  min-height:100dvh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.hero-media{position:absolute; inset:0; z-index:0;}
.hero-img{
  width:100%; height:100%;
  object-fit:cover;
  animation:kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns{
  from{transform:scale(1) translate3d(0,0,0);}
  to{transform:scale(1.12) translate3d(-1%, -1%, 0);}
}
@media (prefers-reduced-motion: reduce){
  .hero-img{animation:none;}
}
.hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(16,21,26,.82) 0%, rgba(16,21,26,.38) 55%, rgba(16,21,26,.15) 100%);
}
.hero-content{
  position:relative;
  z-index:1;
  color:#fff;
  padding-bottom:6rem;
  padding-top:8rem;
}
.hero-content h1{
  color:#fff;
  font-size:clamp(2.4rem, 1.9rem + 2.6vw, 4.2rem);
  max-width:16ch;
  margin-bottom:.4em;
}
.hero-sub{
  color:rgba(255,255,255,.88);
  font-size:1.15rem;
  max-width:46ch;
  margin-bottom:2rem;
}
.hero-actions{display:flex; gap:1rem; flex-wrap:wrap;}

@media (max-width:600px){
  .hero-content{padding-top:6rem; padding-bottom:3.5rem;}
}

/* ============ Facts strip ============ */
.facts-strip{
  background:var(--slate-900);
  color:var(--stone-50);
}
.facts-inner{
  display:flex;
  flex-wrap:wrap;
  gap:1.5rem 2.5rem;
  padding:1.4rem 24px;
  justify-content:center;
}
.fact{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-size:.9rem;
  font-weight:500;
  color:var(--stone-100);
  white-space:nowrap;
}
.fact i{color:var(--terracotta); font-size:1.1rem;}

/* ============ Reveal on scroll ============ */
.reveal{opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease-out), transform .7s var(--ease-out);}
.reveal.is-visible{opacity:1; transform:none;}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
}

/* ============ About ============ */
.about{padding:7rem 0;}
.about-grid{
  display:grid;
  grid-template-columns:1fr 0.9fr;
  gap:4rem;
  align-items:center;
}
.about-copy h2{font-size:clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem); max-width:16ch;}
.about-media img{border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); aspect-ratio:4/5; object-fit:cover; width:100%;}

@media (max-width:860px){
  .about-grid{grid-template-columns:1fr; gap:2rem;}
  .about{padding:4rem 0;}
}

/* ============ Amenities / Bento ============ */
.amenities{padding:5rem 0 7rem;}
.bento{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:180px;
  gap:1.25rem;
}
.bento-card{
  border-radius:var(--radius-lg);
  padding:1.6rem;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
}
.bento-card i{font-size:1.6rem; margin-bottom:.6rem;}
.bento-card h3{font-size:1.15rem; margin-bottom:.3rem;}
.bento-card p{font-size:.9rem; margin-bottom:0;}

.bento-large{
  grid-column:span 2;
  grid-row:span 2;
  background-size:cover;
  background-position:center;
  color:#fff;
}
.bento-large i,.bento-large h3{color:#fff;}
.bento-large p{color:rgba(255,255,255,.85);}
.bento-scrim{
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(16,21,26,.75), rgba(16,21,26,.05) 60%);
  z-index:0;
}
.bento-large .bento-text{position:relative; z-index:1;}

.bento-plain{
  grid-column:span 1;
  grid-row:span 1;
  background:#fff;
  border:1px solid var(--stone-200);
}
.bento-tint{
  grid-column:span 1;
  grid-row:span 1;
  color:#fff;
}
.bento-terracotta{background:var(--terracotta);}
.bento-terracotta i{color:rgba(255,255,255,.9);}
.bento-terracotta p{color:rgba(255,255,255,.85);}
.bento-slate{background:var(--slate-800); grid-column:span 2;}
.bento-slate i{color:var(--terracotta);}
.bento-slate p{color:var(--stone-100);}

@media (max-width:900px){
  .bento{grid-template-columns:repeat(2,1fr); grid-auto-rows:170px;}
  .bento-large{grid-column:span 2; grid-row:span 2;}
  .bento-slate{grid-column:span 2;}
}
@media (max-width:560px){
  .bento{grid-template-columns:1fr; grid-auto-rows:auto;}
  .bento-card{grid-column:span 1 !important; min-height:160px;}
  .bento-large{aspect-ratio:4/3;}
}

/* ============ Rooms ============ */
.rooms{padding:5rem 0 7rem; background:var(--stone-100);}
.room-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.5rem;
}
.room-card{
  background:#fff;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}
.room-card:hover{box-shadow:var(--shadow-md); transform:translateY(-4px);}
.room-img{aspect-ratio:7/5; overflow:hidden;}
.room-img img{width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease-out);}
.room-card:hover .room-img img{transform:scale(1.06);}
.room-body{padding:1.4rem;}
.room-body h3{font-size:1.15rem; margin-bottom:.3rem;}
.room-body p{font-size:.88rem; margin-bottom:1rem;}
.room-meta{display:flex; align-items:center; justify-content:space-between; gap:.75rem;}
.room-price{font-weight:700; font-size:1.05rem;}
.room-price small{font-weight:500; color:var(--stone-600); font-size:.75rem;}

@media (max-width:1024px){
  .room-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:560px){
  .room-grid{grid-template-columns:1fr;}
}

/* ============ Booking ============ */
.booking{padding:6rem 0;}
.booking-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:4rem;
  align-items:start;
}
.booking-copy h2{font-size:clamp(1.8rem,1.4rem + 1.6vw,2.6rem);}
.booking-points{margin-top:1.5rem;}
.booking-points li{
  display:flex; align-items:flex-start; gap:.6rem;
  margin-bottom:.75rem;
  font-size:.95rem;
  color:var(--stone-700);
}
.booking-points i{color:var(--terracotta); font-size:1.1rem; margin-top:.1rem;}

.booking-form{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:2rem;
  box-shadow:var(--shadow-md);
}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:1rem;}
.field{display:flex; flex-direction:column; gap:.4rem; margin-bottom:1.1rem;}
.field label{font-size:.82rem; font-weight:700; color:var(--stone-700);}
.field input, .field select{
  border:1px solid var(--stone-200);
  border-radius:10px;
  padding:.75rem .9rem;
  font-size:.95rem;
  font-family:inherit;
  color:var(--ink);
  background:#fff;
  transition:border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus{
  outline:none;
  border-color:var(--terracotta);
  box-shadow:0 0 0 3px var(--terracotta-tint);
}
.field-error{font-size:.78rem; color:#b3261e; min-height:1em;}
.booking-summary{
  background:var(--stone-50);
  border:1px solid var(--stone-200);
  border-radius:12px;
  padding:1.1rem 1.3rem;
  margin-bottom:1.3rem;
}
.summary-row{display:flex; justify-content:space-between; font-size:.9rem; padding:.3rem 0; color:var(--stone-700);}
.summary-total{border-top:1px solid var(--stone-200); margin-top:.4rem; padding-top:.6rem; font-size:1rem; color:var(--ink);}
.summary-note{font-size:.78rem; color:var(--stone-600); margin:.6rem 0 0;}
.booking-contact-actions{display:flex; gap:.75rem; margin-top:1rem; flex-wrap:wrap;}

@media (max-width:900px){
  .booking-grid{grid-template-columns:1fr; gap:2rem;}
  .form-row{grid-template-columns:1fr;}
}

/* ============ Gallery ============ */
.gallery{padding:5rem 0 7rem;}
.gallery-grid{
  columns:3 220px;
  column-gap:1.25rem;
}
.gallery-grid img{
  width:100%;
  margin-bottom:1.25rem;
  border-radius:var(--radius-md);
  break-inside:avoid;
  cursor:zoom-in;
  transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.gallery-grid img:hover{transform:scale(1.02); box-shadow:var(--shadow-md);}

.lightbox{
  position:fixed; inset:0; z-index:100;
  background:rgba(16,21,26,.92);
  display:flex; align-items:center; justify-content:center;
  padding:2rem;
}
.lightbox[hidden]{display:none;}
.lightbox img{max-width:90vw; max-height:85vh; border-radius:var(--radius-md);}
.lightbox-close{
  position:absolute; top:1.5rem; right:1.5rem;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
  width:44px; height:44px;
  border-radius:50%;
  font-size:1.2rem;
  cursor:pointer;
}

/* ============ Location ============ */
.location{padding:5rem 0 7rem; background:var(--stone-100);}
.location-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:3rem;
  align-items:center;
}
.location-copy h2{font-size:clamp(1.8rem,1.4rem + 1.6vw,2.6rem); max-width:18ch;}
.location-detail{display:flex; align-items:center; gap:.7rem; margin-bottom:1rem; font-size:.95rem; color:var(--stone-700);}
.location-detail i{color:var(--terracotta); font-size:1.2rem;}
.location-copy .btn{margin-top:.5rem;}
.location-map{border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); aspect-ratio:4/3;}
.location-map iframe{width:100%; height:100%; border:0;}

@media (max-width:860px){
  .location-grid{grid-template-columns:1fr; gap:2rem;}
}

/* ============ Testimonials ============ */
.testimonials{padding:5rem 0 6rem;}
.testi-track{
  display:flex;
  gap:1.5rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:1rem;
  margin:0 -24px;
  padding-left:24px;
  padding-right:24px;
}
.testi-card{
  scroll-snap-align:start;
  flex:0 0 min(420px, 85vw);
  background:#fff;
  border-radius:var(--radius-lg);
  padding:2rem;
  box-shadow:var(--shadow-sm);
  margin:0;
}
.testi-card blockquote{
  margin:0 0 1.2rem;
  font-family:var(--font-display);
  font-size:1.15rem;
  line-height:1.5;
  color:var(--ink);
}
.testi-card figcaption{font-size:.85rem; font-weight:700;}
.testi-card figcaption span{display:block; font-weight:500; color:var(--stone-600); margin-top:.15rem;}

/* ============ FAQ ============ */
.faq{padding:5rem 0 7rem;}
.faq-wrap{max-width:820px;}
.accordion-item{
  border-top:1px solid var(--stone-200);
  padding:1.2rem 0;
}
.accordion-item:last-child{border-bottom:1px solid var(--stone-200);}
.accordion-item summary{
  cursor:pointer;
  font-weight:700;
  font-size:1.05rem;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.accordion-item summary::-webkit-details-marker{display:none;}
.accordion-item summary::after{
  content:"+";
  font-size:1.4rem;
  color:var(--terracotta);
  transition:transform .25s var(--ease-out);
  margin-left:1rem;
}
.accordion-item[open] summary::after{transform:rotate(45deg);}
.accordion-item p{margin-top:.8rem; font-size:.95rem;}

/* ============ Final CTA ============ */
.final-cta{background:var(--slate-900); padding:5rem 0;}
.final-cta-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
}
.final-cta h2{color:#fff; max-width:16ch; margin:0; font-size:clamp(1.6rem,1.3rem + 1.2vw,2.2rem);}

/* ============ Footer ============ */
.site-footer{background:var(--slate-900); color:var(--stone-100); padding-top:4rem;}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:3rem;
  padding-bottom:3rem;
  border-bottom:1px solid var(--slate-700);
}
.footer-brand .brand-name{font-family:var(--font-display); font-size:1.3rem; color:#fff;}
.footer-brand p{color:var(--stone-100); opacity:.75; max-width:32ch; margin-top:.6rem;}
.footer-social{display:flex; gap:.9rem; margin-top:1.2rem;}
.footer-social a{
  width:38px; height:38px;
  border-radius:50%;
  background:var(--slate-800);
  display:flex; align-items:center; justify-content:center;
  transition:background .25s;
}
.footer-social a:hover{background:var(--terracotta);}
.footer-col h4{font-size:.85rem; text-transform:uppercase; letter-spacing:.08em; color:var(--stone-600); margin-bottom:1rem;}
.footer-col a, .footer-col span{
  display:flex; align-items:center; gap:.6rem;
  color:var(--stone-100);
  opacity:.85;
  margin-bottom:.8rem;
  font-size:.92rem;
}
.footer-col a:hover{opacity:1; color:var(--terracotta);}
.footer-bottom{padding:1.5rem 24px; font-size:.82rem; color:var(--stone-600);}

@media (max-width:700px){
  .footer-grid{grid-template-columns:1fr; gap:2rem;}
}
