:root {
  --rose:      #C5543A;
  --gold:      #B8922A;
  --gold-lt:   #D4A83A;
  --ivory:     #F6EFE3;
  --blush:     #EDD9C4;
  --charcoal:  #1E1A17;
  --mid:       #6B5B4E;
  --light:     #F9F5EF;
  --white:     #FFFFFF;
  --green-wa:  #25D366;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', system-ui, sans-serif;
  --ease:      cubic-bezier(.25,.8,.25,1);
  --hdr:       72px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--light); color: var(--charcoal); line-height: 1.6; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: var(--sans); cursor: pointer; }
 
.eyebrow { font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.section-title { font-family: var(--serif); font-size: clamp(2rem,4vw,3.2rem); font-weight: 300; line-height: 1.15; }
.section-title em { font-style: italic; color: var(--rose); }
.divider { width: 48px; height: 2px; background: var(--gold); margin: .9rem auto 1.6rem; }
 
/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300; height: var(--hdr);
  display: flex; align-items: center; justify-content: space-between; padding: 0 4vw;
  background: rgba(20,15,12,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,146,42,.2); transition: background .3s;
}
.logo-wrap { display: flex; align-items: center; gap: .85rem; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--ivory); letter-spacing: .04em; line-height: 1.15; }
.logo-sub  { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.main-nav  { display: flex; align-items: center; gap: 2rem; }
.main-nav a { font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(246,239,227,.75); transition: color .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.nav-book { padding: .45rem 1.3rem !important; border: 1px solid var(--gold); color: var(--gold) !important; transition: background .2s, color .2s !important; }
.nav-book:hover { background: var(--gold); color: var(--charcoal) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ivory); transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; top: var(--hdr); left: 0; right: 0; z-index: 290;
  background: rgba(20,15,12,.97); backdrop-filter: blur(20px);
  padding: 1.5rem 6vw 2rem; flex-direction: column; gap: 1rem;
  border-bottom: 1px solid rgba(184,146,42,.2);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(246,239,227,.8); padding: .6rem 0; border-bottom: 1px solid rgba(184,146,42,.1); }
.mobile-nav a:last-child { border-bottom: none; }
 
/* ═══════════════════════════════════════════════════════
   PAGE BANNER
═══════════════════════════════════════════════════════ */
.rp-banner {
  position: relative; height: 48vh; min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding-top: var(--hdr);
}
.rp-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rp-banner-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,10,6,.55) 0%, rgba(17,10,6,.88) 100%); }
.rp-banner-content { position: relative; z-index: 2; max-width: 640px; padding: 0 5vw; }
.rp-banner-eyebrow { display: inline-flex; align-items: center; gap: .6rem; background: rgba(184,146,42,.15); border: 1px solid rgba(184,146,42,.35); padding: .4rem 1rem; margin-bottom: 1.2rem; }
.rp-banner-eyebrow span { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.rp-banner h1 { font-family: var(--serif); font-size: clamp(2.2rem,5vw,3.6rem); font-weight: 300; color: var(--ivory); line-height: 1.15; }
.rp-banner h1 em { font-style: italic; color: var(--gold-lt); }
.rp-banner p { color: rgba(246,239,227,.6); font-size: .9rem; margin-top: .9rem; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
 
/* Breadcrumb */
.breadcrumb { position: relative; z-index: 2; display: flex; align-items: center; gap: .5rem; justify-content: center; margin-top: 1.3rem; font-size: .72rem; letter-spacing: .06em; color: rgba(246,239,227,.45); }
.breadcrumb a { color: rgba(246,239,227,.65); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
 
/* ═══════════════════════════════════════════════════════
   ROOMS BODY
═══════════════════════════════════════════════════════ */
.rp-body { max-width: 1200px; margin: 0 auto; padding: 5rem 5vw 6rem; }
.rp-intro { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.rp-intro p { font-size: .88rem; color: var(--mid); line-height: 1.8; margin-top: .8rem; }
 
/* Detail card */
.rp-card { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); border: 1px solid var(--blush); margin-bottom: 3rem; overflow: hidden; box-shadow: 0 4px 24px rgba(17,10,6,.05); }
.rp-card-imgs { position: relative; }
.rp-img-main { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }
.rp-card-tag { position: absolute; top: 1.2rem; left: 1.2rem; background: var(--rose); color: var(--white); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; padding: .35rem .85rem; z-index: 2; }
.rp-card-tag.gold { background: var(--gold); color: var(--charcoal); }
.rp-card-body { padding: 2.6rem; display: flex; flex-direction: column; gap: 1.1rem; }
.rp-card-eyebrow { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.rp-card-name { font-family: var(--serif); font-size: 2.1rem; font-weight: 300; line-height: 1.1; }
.rp-price-row { display: flex; align-items: baseline; gap: .5rem; margin-top: .3rem; }
.rp-price-amt { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--rose); }
.rp-price-per { font-size: .78rem; color: var(--mid); }
.rp-card-desc { font-size: .88rem; color: var(--mid); line-height: 1.85; }
.rp-divider { height: 1px; background: var(--blush); margin: .3rem 0; }
.rp-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1.5rem; }
.rp-spec { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--charcoal); }
.rp-spec-icon { font-size: 1rem; flex-shrink: 0; width: 22px; text-align: center; }
.rp-card-actions { display: flex; gap: 1rem; margin-top: .5rem; flex-wrap: wrap; }
.rp-btn-book { padding: .9rem 2rem; background: var(--green-wa); color: var(--white); font-size: .76rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; border: none; display: inline-flex; align-items: center; gap: .6rem; transition: background .2s; }
.rp-btn-book:hover { background: #1ea855; }
.rp-btn-check { padding: .9rem 2rem; border: 1px solid rgba(184,146,42,.5); color: var(--gold); font-size: .76rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; background: none; transition: background .2s, border-color .2s; }
.rp-btn-check:hover { background: rgba(184,146,42,.1); border-color: var(--gold); }
 
/* Comparison table */
.rp-compare { margin-top: 1rem; background: var(--ivory); padding: 3rem 2.5rem; }
.rp-compare-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; text-align: center; margin-bottom: 2rem; }
.rp-compare-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.rp-compare-table th, .rp-compare-table td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--blush); }
.rp-compare-table th { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.rp-compare-table td:not(:first-child) { text-align: center; }
.rp-compare-table tr:last-child td { border-bottom: none; }
.rp-check { color: #2da44e; font-size: 1rem; }
.rp-dash  { color: var(--mid); opacity: .4; }
 
/* ═══════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════ */
#cta-banner {
  padding: 5rem 5vw; margin-top: 1rem;
  background: linear-gradient(135deg, #3D2014 0%, #8B3A22 60%, #5A2510 100%);
  text-align: center; position: relative; overflow: hidden;
}
#cta-banner::before { content: ''; position: absolute; inset: 0; background-image: repeating-conic-gradient(rgba(184,146,42,.07) 0% 25%, transparent 0% 50%); background-size: 48px 48px; pointer-events: none; }
.cta-title { font-family: var(--serif); font-size: clamp(1.8rem,4vw,3rem); font-weight: 300; color: var(--ivory); margin-bottom: .6rem; position: relative; z-index: 1; }
.cta-title em { font-style: italic; color: var(--gold-lt); }
.cta-sub { color: rgba(246,239,227,.6); font-size: .88rem; margin-bottom: 2rem; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-rose { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; background: var(--rose); color: var(--white); font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; border: none; transition: background .2s, transform .2s; }
.btn-rose:hover { background: #a8432b; transform: translateY(-2px); }
.btn-gold-outline { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem; border: 1px solid rgba(184,146,42,.6); color: var(--gold); font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; background: none; transition: background .2s, border-color .2s; }
.btn-gold-outline:hover { background: rgba(184,146,42,.1); border-color: var(--gold); }
 
/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer { background: #0E0A07; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding: 5rem 5vw 3rem; border-bottom: 1px solid rgba(184,146,42,.12); max-width: 1300px; margin: auto; }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.2rem; }
.footer-logo img { height: 50px; width: auto; object-fit: contain; }
.footer-brand-text p { font-size: .8rem; color: rgba(246,239,227,.5); line-height: 1.8; margin-bottom: 1.2rem; }
.footer-contact a { display: block; font-size: .8rem; color: rgba(246,239,227,.55); margin-bottom: .5rem; transition: color .2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.soc-btn { width: 34px; height: 34px; border: 1px solid rgba(184,146,42,.25); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .75rem; transition: background .2s, border-color .2s; }
.soc-btn:hover { background: rgba(184,146,42,.15); border-color: var(--gold); }
.footer-col h4 { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.footer-col li { font-size: .8rem; color: rgba(246,239,227,.45); margin-bottom: .65rem; cursor: pointer; transition: color .2s; }
.footer-col li:hover { color: var(--ivory); }
.footer-bottom { max-width: 1300px; margin: auto; display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 5vw; font-size: .67rem; color: rgba(246,239,227,.3); letter-spacing: .06em; flex-wrap: wrap; gap: .5rem; }
 
/* ═══════════════════════════════════════════════════════
   BOOKING MODAL (WhatsApp)
═══════════════════════════════════════════════════════ */
.modal-back { position: fixed; inset: 0; z-index: 600; background: rgba(10,6,4,.75); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; padding: 1rem; }
.modal-back.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--white); width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto; transform: translateY(24px) scale(.97); transition: transform .35s var(--ease); }
.modal-back.open .modal-box { transform: none; }
.modal-hdr { background: var(--charcoal); padding: 1.6rem 2rem; display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 2px solid var(--gold); }
.modal-hdr-info h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 300; color: var(--ivory); }
.modal-hdr-info .wa-tag { display: flex; align-items: center; gap: .4rem; margin-top: .3rem; }
.modal-hdr-info .wa-tag span { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-wa); }
.modal-close { background: none; border: none; color: rgba(246,239,227,.45); font-size: 1.5rem; line-height: 1; transition: color .2s; }
.modal-close:hover { color: var(--ivory); }
.modal-body { padding: 2rem; }
.room-strip { background: var(--light); border-left: 3px solid var(--gold); padding: 1rem 1.2rem; margin-bottom: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.rs-name { font-family: var(--serif); font-size: 1.1rem; }
.rs-dates { font-size: .72rem; color: var(--mid); margin-top: .15rem; }
.rs-total { font-family: var(--serif); font-size: 1.35rem; color: var(--rose); font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grp { margin-bottom: 1.1rem; }
.form-lbl { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .35rem; }
.form-inp { width: 100%; border: none; border-bottom: 1.5px solid var(--blush); padding: .5rem 0; font-family: var(--sans); font-size: .9rem; color: var(--charcoal); background: transparent; outline: none; transition: border-color .2s; }
.form-inp:focus { border-color: var(--rose); }
.form-error { color: var(--rose); font-size: .73rem; display: none; margin-bottom: .8rem; }
.wa-submit { width: 100%; padding: .95rem; background: var(--green-wa); color: var(--white); font-family: var(--sans); font-size: .8rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; border: none; display: flex; align-items: center; justify-content: center; gap: .7rem; transition: background .2s; margin-top: .5rem; }
.wa-submit:hover { background: #1ea855; }
.modal-note { font-size: .7rem; color: var(--mid); text-align: center; margin-top: 1rem; line-height: 1.65; }
.booking-success { text-align: center; padding: 2.8rem 1.5rem; display: none; }
.bk-icon { font-size: 3rem; margin-bottom: 1rem; }
.bk-title { font-family: var(--serif); font-size: 1.75rem; font-weight: 300; margin-bottom: .6rem; }
.bk-msg { font-size: .84rem; color: var(--mid); line-height: 1.75; }
.bk-ref { display: inline-block; margin-top: 1.2rem; background: var(--light); border: 1px solid var(--blush); padding: .5rem 1.2rem; font-size: .75rem; letter-spacing: .1em; color: var(--mid); }
.bk-ref strong { color: var(--rose); }
 
/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
 
/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .rp-card { grid-template-columns: 1fr; }
  .rp-img-main { min-height: 260px; }
  .rp-spec-grid { grid-template-columns: 1fr; }
  .rp-compare-table { font-size: .75rem; }
  .rp-compare-table th, .rp-compare-table td { padding: .6rem .5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  :root { --hdr: 64px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .logo-text { display: none; }
  .logo-img { height: 44px; }
}
@media (max-width: 600px) {
  .rp-card-body { padding: 1.8rem; }
  .rp-card-actions { flex-direction: column; }
  .rp-btn-book, .rp-btn-check { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}