:root{
  --accent:#b85a30;
  --accent-dark:#974521;
  --accent-soft:#f3e7de;
  --dark:#161f1c;
  --dark-2:#1f2b27;
  --light:#f8f4ee;
  --paper:#fffdf9;
  --ink:#233029;
  --muted:#5d6b63;
  --line:#e6ded2;
  --radius:14px;
  --shadow:0 1px 2px rgba(22,31,28,.04), 0 12px 32px -16px rgba(22,31,28,.18);
  --nav-h:70px;
  --banner:42px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{margin:0;line-height:1.15;letter-spacing:-0.01em}
p{margin:0}

.container{max-width:1180px;margin:0 auto;padding:0 24px}

/* ============ NAV ============ */
.site-nav{
  position:sticky;
  top:42px;
  z-index:50;
  background:rgba(255,253,249,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
  height:var(--nav-h);
  display:flex;
  align-items:center;
  gap:24px;
}
.wordmark{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:18px;
  color:var(--dark);
  letter-spacing:-0.02em;
  margin-right:auto;
}
.wordmark-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;height:34px;
  border-radius:10px;
  background:var(--accent);
  color:#fff;
  flex:none;
}
.wordmark-text{white-space:nowrap}
.nav-links{display:flex;gap:28px;align-items:center}
.nav-links a{
  font-weight:600;
  font-size:15px;
  color:var(--ink);
  padding:6px 0;
  position:relative;
}
.nav-links a:hover{color:var(--accent)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:inherit;
  font-weight:700;
  font-size:15px;
  padding:12px 20px;
  border-radius:999px;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-align:center;
}
.btn-filled{background:var(--accent);color:#fff}
.btn-filled:hover{background:var(--accent-dark);transform:translateY(-1px)}
.btn-ghost{border-color:var(--dark);color:var(--dark);background:transparent}
.btn-ghost:hover{background:var(--dark);color:var(--paper)}
.btn-ghost-light{border-color:rgba(255,255,255,.5);color:#fff;background:transparent}
.btn-ghost-light:hover{background:rgba(255,255,255,.12)}
.btn-lg{padding:15px 28px;font-size:16px}

.nav-cta svg{flex:none}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:space-between;
  width:28px;height:20px;
  background:none;border:none;cursor:pointer;padding:0;
}
.nav-toggle span{height:2px;width:100%;background:var(--dark);border-radius:2px;transition:.25s}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(9px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}

.mobile-menu{
  display:none;
  flex-direction:column;
  gap:6px;
  padding:18px 24px 24px;
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.mobile-menu a{padding:12px 0;font-weight:600;border-bottom:1px solid var(--line)}
.mobile-menu .btn{margin-top:12px}

/* ============ HERO ============ */
.hero{
  background:var(--dark);
  color:var(--paper);
  padding:80px 0 96px;
}
.hero-grid{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:56px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:18px;
}
.eyebrow-light{color:#f0a878}
.hero-title{
  font-size:clamp(34px,5.2vw,60px);
  font-weight:800;
  line-height:1.05;
  letter-spacing:-0.025em;
}
.hero-sub{
  font-size:18px;
  color:#cdd5cf;
  margin-top:20px;
  max-width:42ch;
}
.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}
.hero-photo{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 30px 60px -20px rgba(0,0,0,.5);
}
.hero-photo img{width:100%;aspect-ratio:980/500;object-fit:cover}

/* ============ PILLARS ============ */
.pillars{background:var(--light);padding:72px 0}
.pillars-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.pillar{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px 24px;
  box-shadow:var(--shadow);
}
.pillar-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;height:46px;
  border-radius:12px;
  background:var(--accent-soft);
  color:var(--accent-dark);
  margin-bottom:16px;
}
.pillar h3{font-size:18px;margin-bottom:8px}
.pillar p{font-size:14.5px;color:var(--muted)}

/* ============ SECTION HEAD ============ */
.section-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 48px;
}
.section-title{
  font-size:clamp(28px,3.6vw,42px);
  font-weight:800;
  letter-spacing:-0.02em;
  color:var(--dark);
}
.section-sub{
  margin-top:14px;
  font-size:17px;
  color:var(--muted);
}

/* ============ ROOMS ============ */
.rooms{background:var(--paper);padding:96px 0}
.room-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.room-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}
.room-photo{overflow:hidden;background:var(--accent-soft)}
.room-photo img{
  width:100%;
  aspect-ratio:980/500;
  object-fit:cover;
  transition:transform .6s ease;
}
.room-card:hover .room-photo img{transform:scale(1.04)}
.room-body{padding:24px 22px 26px}
.room-body h3{font-size:20px;margin-bottom:10px;color:var(--dark)}
.room-body p{font-size:15px;color:var(--muted)}
.room-card-cta{
  background:var(--dark);
  color:var(--paper);
  border-color:var(--dark);
  justify-content:center;
}
.room-card-cta .room-body{display:flex;flex-direction:column;justify-content:center;flex:1}
.room-card-cta h3{color:var(--paper)}
.room-card-cta p{color:#cdd5cf;margin-bottom:18px}

/* ============ AMENITIES ============ */
.amenities{background:var(--light);padding:96px 0}
.amenity-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px 28px;
}
.amenity{
  display:flex;
  align-items:center;
  gap:14px;
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:12px;
  padding:16px 18px;
  font-weight:600;
  font-size:14.5px;
  color:var(--ink);
}
.amenity-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;height:38px;
  border-radius:10px;
  background:var(--accent-soft);
  color:var(--accent-dark);
  flex:none;
}

/* ============ LOCATION ============ */
.location{background:var(--paper);padding:96px 0}
.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.location-photo{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.location-photo img{width:100%;aspect-ratio:980/500;object-fit:cover}
.location-copy .section-title{text-align:left}
.location-list{list-style:none;padding:0;margin:24px 0 0;display:flex;flex-direction:column;gap:14px}
.location-list li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:15.5px;
  color:var(--ink);
  font-weight:500;
}
.location-list svg{color:var(--accent);flex:none}

/* ============ ABOUT ============ */
.about{background:var(--light);padding:96px 0}
.about-inner{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:48px;
  align-items:start;
  max-width:920px;
}
.about-mark{
  width:64px;height:64px;
  border-radius:16px;
  background:var(--accent);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:none;
}
.about-copy .section-title{text-align:left}
.about-copy p{margin-top:14px;font-size:16.5px;color:var(--muted);max-width:62ch}
.about-copy p + p{margin-top:14px}

/* ============ FINAL CTA ============ */
.final-cta{
  background:var(--dark);
  color:var(--paper);
  padding:96px 0;
  text-align:center;
}
.final-cta-inner{max-width:680px;margin:0 auto}
.final-cta-title{
  font-size:clamp(30px,4vw,46px);
  font-weight:800;
  letter-spacing:-0.02em;
  margin-top:8px;
}
.final-cta-sub{
  margin-top:14px;
  font-size:18px;
  color:#cdd5cf;
}
.final-cta-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  margin-top:32px;
}

/* ============ FOOTER ============ */
.site-footer{
  background:var(--dark-2);
  color:#cdd5cf;
  padding:64px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:48px;
}
.wordmark-light{color:var(--paper)}
.wordmark-light .wordmark-mark{background:var(--accent)}
.footer-tagline{margin-top:14px;font-size:15px;color:#a9b3ac;max-width:32ch}
.footer-col h4{
  color:var(--paper);
  font-size:14px;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.footer-col a,.footer-col p{
  display:block;
  font-size:15px;
  color:#a9b3ac;
  margin-bottom:10px;
}
.footer-col a:hover{color:var(--paper)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding:20px 24px;
  text-align:center;
  font-size:13.5px;
  color:#8a948d;
  max-width:1180px;
  margin:0 auto;
}

/* ============ REVEAL ============ */
.reveal{opacity:1;transform:none;transition:opacity .7s ease, transform .7s ease}
.reveal.is-hidden{opacity:0;transform:translateY(18px)}

/* ============ RESPONSIVE ============ */
@media (max-width:980px){
  .pillars-grid{grid-template-columns:repeat(2,1fr)}
  .room-grid{grid-template-columns:repeat(2,1fr)}
  .amenity-grid{grid-template-columns:repeat(3,1fr)}
  .hero-grid{grid-template-columns:1fr;gap:36px}
  .hero-photo{order:-1;max-width:520px}
  .location-grid{grid-template-columns:1fr;gap:36px}
}
@media (max-width:760px){
  .nav-links{display:none}
  .nav-cta{display:none}
  .nav-toggle{display:flex}
  .hero{padding:56px 0 64px}
  .pillars,.rooms,.amenities,.location,.about,.final-cta{padding:64px 0}
  .room-grid{grid-template-columns:1fr}
  .amenity-grid{grid-template-columns:repeat(2,1fr)}
  .about-inner{grid-template-columns:1fr;gap:24px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .hero-ctas .btn,.final-cta-buttons .btn{width:100%}
}
@media (max-width:420px){
  .pillars-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}

@media (prefers-reduced-motion:reduce){
  *{transition:none !important;animation:none !important}
  html{scroll-behavior:auto}
  .room-card:hover .room-photo img{transform:none}
}