
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #1a0a03;
  --ink2:     #2d1407;
  --brown:    #6b3520;
  --orange:   #c84b1e;
  --orange2:  #e06030;
  --parch:    #faf5ee;
  --parch2:   #f2e9da;
  --linen:    #e8ddd0;
  --stone:    #8c7b6a;
  --white:    #ffffff;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--fb);
  background: var(--parch);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(200, 75, 30, 0.15); color: var(--ink); }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 64px; height: 64px; border-radius: 50%; border: 1.5px solid rgba(200,75,30,0.4); object-fit: cover; animation: logoPulse 1.5s ease-in-out infinite; }
@keyframes logoPulse { 0%,100%{opacity:.4;transform:scale(.95)} 50%{opacity:1;transform:scale(1)} }
.loader-line { width: 120px; height: 1px; background: rgba(255,255,255,.08); position: relative; overflow: hidden; }
.loader-line::after { content: ''; position: absolute; inset: 0; background: var(--orange); transform: translateX(-100%); animation: loadLine 1.2s var(--ease-out) 0.3s forwards; }
@keyframes loadLine { to { transform: translateX(0); } }
.loader-text { font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.28); font-family: var(--fb); }

/* ── NAVIGATION ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 72px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s, height .3s, backdrop-filter .5s;
}
#nav.scrolled {
  background: rgba(26, 10, 3, .96);
  backdrop-filter: blur(20px);
  height: 60px;
  border-bottom: 1px solid rgba(200,75,30,.1);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(200,75,30,.4); object-fit: cover; }
.nav-wordmark strong { display: block; font-family: var(--fd); font-size: 16px; font-weight: 500; color: #fff; letter-spacing: .02em; }
.nav-wordmark span { display: block; font-size: 7.5px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-size: 10.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); padding: 8px 13px; border-radius: 2px; transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: 4px; left: 13px; right: 13px; height: 1px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out); }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }
.nav-book-btn {
  padding: 10px 22px; background: var(--orange); color: #fff !important;
  border-radius: 2px; font-weight: 500 !important; letter-spacing: .12em !important;
  transition: background .2s !important;
}
.nav-book-btn::after { display: none !important; }
.nav-book-btn:hover { background: var(--orange2) !important; }
.ham { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.ham span { width: 22px; height: 1.5px; background: rgba(255,255,255,.7); display: block; transition: all .3s; }
.mob-menu {
  display: none; position: fixed; inset: 0; background: var(--ink); z-index: 490;
  flex-direction: column; align-items: center; justify-content: center; gap: 0;
}
.mob-menu.open { display: flex; }
.mob-menu a { font-family: var(--fd); font-size: clamp(28px, 7vw, 52px); font-weight: 300; color: rgba(255,255,255,.65); padding: 12px 0; letter-spacing: .04em; border-bottom: 1px solid rgba(255,255,255,.05); width: 280px; text-align: center; transition: color .2s; }
.mob-menu a:hover { color: var(--orange2); }
.mob-close { position: absolute; top: 22px; right: 24px; background: none; border: none; color: rgba(255,255,255,.4); font-size: 24px; cursor: pointer; }

/* ── STICKY BOOK NOW ── */
.sticky-book {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: rgba(26,10,3,.97); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(200,75,30,.15);
  padding: 14px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%);
  transition: transform .5s var(--ease-out);
}
.sticky-book.visible { transform: translateY(0); }
.sticky-book-fields { display: flex; align-items: center; gap: 12px; flex: 1; }
.sticky-field {
  flex: 1; padding: 10px 14px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px; color: #fff; font-family: var(--fb); font-size: 12px;
  font-weight: 300; outline: none; transition: border-color .2s;
  -webkit-appearance: none; appearance: none;
}
.sticky-field:focus { border-color: rgba(200,75,30,.6); }
.sticky-field::placeholder { color: rgba(255,255,255,.3); }
.sticky-field option { background: #2d1407; }
.sticky-label { font-size: 8.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); display: block; margin-bottom: 4px; }
.sticky-cta {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 28px; background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 2px; border: none; cursor: pointer; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.sticky-cta:hover { background: var(--orange2); transform: translateY(-1px); }
.sticky-wa {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; background: #25d366; color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 2px; white-space: nowrap; transition: opacity .2s;
}
.sticky-wa:hover { opacity: .88; }

/* ── HERO ── */
.hero {
  position: relative; height: 100svh; min-height: 680px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 14s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(26,10,3,.95) 0%, rgba(26,10,3,.55) 35%, rgba(26,10,3,.1) 65%, transparent 100%),
    linear-gradient(105deg, rgba(26,10,3,.5) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 72px 100px; max-width: 960px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 500; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(200,75,30,.85); margin-bottom: 24px;
  opacity: 0; animation: fadeUp .8s var(--ease-out) .5s forwards;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--orange); opacity: .7; }
.hero-h1 {
  font-family: var(--fd); font-size: clamp(56px, 9vw, 118px);
  font-weight: 300; color: #fff; line-height: .96; letter-spacing: -.02em;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .9s var(--ease-out) .7s forwards;
}
.hero-h1 em { font-style: italic; color: rgba(230, 140, 90, .88); }
.hero-tagline {
  font-size: clamp(14px, 1.6vw, 18px); color: rgba(255,255,255,.5);
  font-weight: 300; max-width: 480px; line-height: 1.75; margin-bottom: 44px;
  opacity: 0; animation: fadeUp .8s var(--ease-out) .9s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s var(--ease-out) 1.1s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 2px; border: none; cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 36px; border: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.8);
  font-size: 11px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 2px; transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 36px; background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 2px; border: none; cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-dark:hover { background: var(--brown); transform: translateY(-1px); }
.hero-scroll {
  position: absolute; right: 56px; bottom: 44px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn .6s ease 1.6s forwards;
}
.scroll-word { font-size: 8px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.28); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 56px; background: linear-gradient(to bottom, transparent, rgba(200,75,30,.7)); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.25;transform:scaleY(.4);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }
.hero-badge {
  position: absolute; top: 92px; right: 56px; z-index: 2;
  width: 100px; height: 100px;
  background: rgba(200,75,30,.12); border: 1px solid rgba(200,75,30,.25);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  opacity: 0; animation: fadeIn .8s ease 1.8s forwards;
}
.hero-badge-n { font-family: var(--fd); font-size: 28px; font-weight: 300; color: #fff; line-height: 1; }
.hero-badge-l { font-size: 7px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 3px; }

/* ── SECTION SYSTEM ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.section { padding: 112px 72px; }
.section-inner { max-width: 1360px; margin: 0 auto; }
.section--dark { background: var(--ink); color: rgba(255,255,255,.7); }
.section--parch { background: var(--parch); }
.section--linen { background: var(--parch2); }
.eyebrow { font-size: 9.5px; font-weight: 500; letter-spacing: .32em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--orange); flex-shrink: 0; }
.display { font-family: var(--fd); font-size: clamp(36px, 5vw, 62px); font-weight: 300; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); margin-bottom: 20px; }
.display em { font-style: italic; color: var(--orange); }
.display--light { color: #fff; }
.display--light em { color: rgba(230,145,80,.88); }
.body-copy { font-size: 15px; font-weight: 300; color: var(--stone); line-height: 1.85; max-width: 560px; }
.body-copy--light { color: rgba(255,255,255,.45); }
.rule { width: 40px; height: 1.5px; background: var(--orange); margin: 22px 0; opacity: .75; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative; height: 55vh; min-height: 380px;
  display: flex; align-items: flex-end; padding-bottom: 72px; padding-left: 72px;
  overflow: hidden;
}
.ph-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 10s ease-out forwards; }
.ph-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,10,3,.9) 0%, rgba(26,10,3,.4) 55%, rgba(26,10,3,.15) 100%); }
.ph-content { position: relative; z-index: 2; }
.ph-eyebrow { font-size: 9.5px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: rgba(200,75,30,.82); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.ph-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--orange); opacity: .7; }
.ph-h1 { font-family: var(--fd); font-size: clamp(38px, 6.5vw, 76px); font-weight: 300; color: #fff; line-height: 1.02; }
.ph-h1 em { font-style: italic; color: rgba(230,140,80,.88); }

/* ── BREADCRUMB ── */
.bc { background: var(--parch2); padding: 13px 72px; border-bottom: 1px solid var(--linen); font-size: 11.5px; color: var(--stone); }
.bc-inner { max-width: 1360px; margin: 0 auto; display: flex; align-items: center; gap: 8px; }
.bc a { color: var(--brown); transition: color .2s; } .bc a:hover { color: var(--orange); }
.bc-sep { opacity: .35; }

/* ── FEATURE STRIP ── */
.feat-strip { background: var(--ink2); }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1360px; margin: 0 auto; }
.feat-item { padding: 44px 36px; border-right: 1px solid rgba(255,255,255,.05); transition: background .3s; cursor: default; }
.feat-item:last-child { border-right: none; }
.feat-item:hover { background: rgba(200,75,30,.07); }
.feat-em { font-size: 30px; margin-bottom: 16px; }
.feat-title { font-family: var(--fd); font-size: 18px; font-weight: 400; color: rgba(255,255,255,.85); margin-bottom: 6px; }
.feat-desc { font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,.32); line-height: 1.65; }

/* ── ABOUT SPLIT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 88px; align-items: center; }
.about-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 300px 210px; gap: 5px; }
.am-main { grid-column: 1 / -1; overflow: hidden; }
.am-sub { overflow: hidden; }
.am-main img, .am-sub img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.am-main:hover img, .am-sub:hover img { transform: scale(1.04); }
.about-quote { font-family: var(--fd); font-size: clamp(18px, 2.2vw, 26px); font-style: italic; font-weight: 300; color: var(--brown); line-height: 1.55; margin: 28px 0; padding-left: 20px; border-left: 2px solid rgba(200,75,30,.28); }

/* ── ROOMS ── */
.rooms-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; gap: 24px; }
.rooms-scroll { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.room-card { position: relative; overflow: hidden; cursor: pointer; }
.room-card img { width: 100%; height: 520px; object-fit: cover; display: block; transition: transform .8s var(--ease-out); }
.room-card:hover img { transform: scale(1.06); }
.room-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,10,3,.92) 0%, rgba(26,10,3,.15) 55%, transparent 100%); transition: opacity .4s; }
.room-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 28px; transform: translateY(6px); transition: transform .4s var(--ease-out); }
.room-card:hover .room-body { transform: translateY(0); }
.room-num { font-size: 8.5px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--orange2); margin-bottom: 8px; }
.room-name { font-family: var(--fd); font-size: clamp(22px, 2.5vw, 30px); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 8px; }
.room-name em { font-style: italic; }
.room-meta { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.42); margin-bottom: 14px; }
.room-link { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--orange2); display: inline-flex; align-items: center; gap: 6px; opacity: 0; transform: translateY(5px); transition: opacity .3s .1s, transform .3s .1s var(--ease-out); }
.room-card:hover .room-link { opacity: 1; transform: translateY(0); }

/* ── CINEMATIC BREAK ── */
.cinematic { position: relative; height: 75vh; min-height: 480px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.cinematic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.cinematic-overlay { position: absolute; inset: 0; background: rgba(26,10,3,.46); }
.cinematic-text { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.cinematic-text blockquote { font-family: var(--fd); font-size: clamp(24px, 4vw, 52px); font-style: italic; font-weight: 300; color: #fff; line-height: 1.4; max-width: 820px; }
.cinematic-text blockquote em { font-style: normal; color: rgba(230,140,80,.9); }
.cinematic-text cite { display: block; margin-top: 22px; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.32); font-style: normal; }

/* ── AMENITIES ── */
.amen-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--linen); border: 1px solid var(--linen); margin-top: 56px; }
.amen-item { background: var(--parch); padding: 36px 28px; transition: background .28s; }
.amen-item:hover { background: var(--parch2); }
.amen-em { font-size: 28px; margin-bottom: 14px; }
.amen-title { font-family: var(--fd); font-size: 17px; font-weight: 400; color: var(--ink); margin-bottom: 5px; }
.amen-desc { font-size: 12.5px; font-weight: 300; color: var(--stone); line-height: 1.7; }

/* ── NEARBY ── */
.nearby-list { margin-top: 56px; }
.nb-row { display: flex; align-items: stretch; border-top: 1px solid var(--linen); transition: background .25s; }
.nb-row:last-child { border-bottom: 1px solid var(--linen); }
.nb-row:hover { background: rgba(200,75,30,.04); }
.nb-dist { width: 100px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; border-right: 1px solid var(--linen); }
.nb-km { font-family: var(--fd); font-size: 30px; font-weight: 300; color: var(--orange); line-height: 1; }
.nb-unit { font-size: 9px; letter-spacing: .12em; color: var(--stone); margin-top: 2px; }
.nb-body { padding: 22px 28px; flex: 1; display: flex; align-items: center; gap: 24px; }
.nb-name { font-family: var(--fd); font-size: 20px; font-weight: 400; color: var(--ink); min-width: 240px; }
.nb-desc { font-size: 13px; font-weight: 300; color: var(--stone); line-height: 1.7; }

/* ── GALLERY ── */
.gallery-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.gcat { padding: 9px 22px; background: transparent; border: 1px solid var(--linen); font-family: var(--fb); font-size: 10.5px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); cursor: pointer; border-radius: 40px; transition: all .22s; }
.gcat:hover, .gcat.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.gallery-masonry { columns: 3; column-gap: 5px; }
.gi { break-inside: avoid; margin-bottom: 5px; overflow: hidden; position: relative; cursor: pointer; }
.gi img { width: 100%; display: block; transition: transform .55s var(--ease-out), filter .3s; }
.gi:hover img { transform: scale(1.05); filter: brightness(.85); }
.gi-overlay { position: absolute; inset: 0; background: rgba(26,10,3,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.gi:hover .gi-overlay { background: rgba(26,10,3,.3); }
.gi-icon { width: 46px; height: 46px; border: 1.5px solid rgba(255,255,255,.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s var(--ease-out); }
.gi:hover .gi-icon { opacity: 1; transform: scale(1); }

/* ── LIGHTBOX ── */
.lb { display: none; position: fixed; inset: 0; background: rgba(10,5,2,.97); z-index: 9999; align-items: center; justify-content: center; }
.lb.open { display: flex; }
#lbImg { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: rgba(255,255,255,.5); font-size: 26px; cursor: pointer; transition: color .2s; } .lb-close:hover { color: #fff; }
.lb-p, .lb-n { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: 20px; cursor: pointer; padding: 12px 16px; transition: all .2s; border-radius: 2px; }
.lb-p { left: 16px; } .lb-n { right: 16px; }
.lb-p:hover, .lb-n:hover { border-color: var(--orange); color: var(--orange2); }
.lb-ct { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); font-size: 10px; letter-spacing: .22em; color: rgba(255,255,255,.3); }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.rev { background: var(--parch2); padding: 38px 32px; border-top: 2px solid transparent; transition: border-color .3s; }
.rev:hover { border-color: var(--orange); }
.rev-stars { color: var(--orange); font-size: 13px; letter-spacing: 3px; margin-bottom: 18px; }
.rev-text { font-family: var(--fd); font-size: 15.5px; font-style: italic; font-weight: 300; color: var(--ink); line-height: 1.8; margin-bottom: 22px; }
.rev-author { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); }
.rev-source { font-size: 11px; color: var(--orange); margin-top: 3px; }

/* ── FAQ ── */
.faq-list { margin-top: 52px; }
.faq-item { border-top: 1px solid var(--linen); }
.faq-item:last-child { border-bottom: 1px solid var(--linen); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; cursor: pointer; font-family: var(--fd); font-size: 20px; font-weight: 400; color: var(--ink); transition: color .2s; }
.faq-q:hover { color: var(--orange); }
.faq-icon { width: 28px; height: 28px; border: 1px solid var(--linen); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: all .3s; color: var(--orange); }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--orange); background: rgba(200,75,30,.08); }
.faq-a { font-size: 14px; font-weight: 300; color: var(--stone); line-height: 1.85; max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out), padding .4s; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.cf { padding: 52px; background: var(--white); border: 1px solid var(--linen); }
.form-field { margin-bottom: 22px; }
.form-field label { display: block; font-size: 9px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: none; border-bottom: 1.5px solid var(--linen);
  padding: 10px 0; font-family: var(--fb); font-size: 14.5px; font-weight: 300;
  background: transparent; color: var(--ink); outline: none;
  transition: border-color .25s; -webkit-appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit { width: 100%; padding: 16px; margin-top: 8px; background: var(--ink); color: #fff; border: none; font-family: var(--fb); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background .25s; }
.form-submit:hover { background: var(--orange); }
.form-success { display: none; margin-top: 14px; padding: 14px 16px; background: rgba(200,75,30,.08); border: 1px solid rgba(200,75,30,.25); font-size: 13px; color: var(--orange); border-radius: 2px; }
.ci-list { display: flex; flex-direction: column; gap: 0; }
.ci-row { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--linen); }
.ci-row:first-child { border-top: 1px solid var(--linen); }
.ci-icon { width: 40px; height: 40px; border: 1px solid var(--linen); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.ci-label { font-size: 8.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); margin-bottom: 3px; }
.ci-val { font-size: 14px; font-weight: 300; color: var(--ink); }
.ci-val a { color: var(--ink); transition: color .2s; } .ci-val a:hover { color: var(--orange); }

/* ── MAP ── */
.map-frame { width: 100%; height: 440px; border: 0; border-radius: 2px; margin-top: 52px; filter: saturate(1.1) contrast(1.05); }

/* ── CALLOUT BAND ── */
.callout { padding: 100px 72px; background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 50%, rgba(107,53,32,.7) 100%); text-align: center; position: relative; overflow: hidden; }
.callout::before { content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 600px; border: 1px solid rgba(200,75,30,.07); border-radius: 50%; transform: translate(-50%, -50%); }
.callout::after { content: ''; position: absolute; top: 50%; left: 50%; width: 340px; height: 340px; border: 1px solid rgba(200,75,30,.06); border-radius: 50%; transform: translate(-50%, -50%); }
.callout-inner { position: relative; z-index: 1; }
.callout h2 { font-family: var(--fd); font-size: clamp(34px, 5.5vw, 68px); font-weight: 300; color: #fff; margin-bottom: 14px; line-height: 1.08; }
.callout h2 em { font-style: italic; color: rgba(230,140,80,.88); }
.callout p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.4); margin-bottom: 38px; }
.callout-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-wa { display: inline-flex; align-items: center; gap: 9px; padding: 15px 32px; background: #25d366; color: #fff; font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; border-radius: 2px; transition: opacity .2s; }
.btn-wa:hover { opacity: .88; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 80px 72px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; max-width: 1360px; margin: 0 auto; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.06); }
.fb-brand .flogo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.fb-brand .flogo img { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(200,75,30,.3); }
.fb-brand .fname { font-family: var(--fd); font-size: 18px; font-weight: 400; color: rgba(255,255,255,.75); }
.fb-brand .fsub { font-size: 8px; letter-spacing: .22em; text-transform: uppercase; color: rgba(200,75,30,.45); }
.fb-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.28); line-height: 1.85; max-width: 260px; }
.fb-links { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.fb-links a, .fb-links span { font-size: 12.5px; color: rgba(255,255,255,.25); } .fb-links a:hover { color: var(--orange2); }
.fc h4 { font-size: 9px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fc a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.3); transition: color .2s; } .fc a:hover { color: rgba(255,255,255,.75); }
.footer-bottom { max-width: 1360px; margin: 0 auto; padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 11px; color: rgba(255,255,255,.18); }
.footer-bottom a { color: rgba(255,255,255,.16); margin-left: 14px; transition: color .2s; } .footer-bottom a:hover { color: var(--orange2); }

/* ── FLOAT BUTTONS ── */
.float-wa { position: fixed; bottom: 88px; right: 24px; width: 54px; height: 54px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 400; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s; }
.float-wa:hover { transform: scale(1.08); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .section { padding: 88px 40px; } .callout { padding: 80px 40px; }
  .page-hero { padding-left: 40px; padding-bottom: 56px; }
  .bc { padding: 13px 40px; } footer { padding: 64px 40px 28px; }
  #nav { padding: 0 32px; } .sticky-book { padding: 12px 32px; }
  .hero-content { padding: 0 48px 88px; }
  .hero-badge { right: 32px; }
  .about-grid { gap: 56px; }
  .contact-grid { gap: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nearby-list .nb-name { min-width: 180px; }
}
@media(max-width:900px){
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .rooms-scroll { grid-template-columns: 1fr; }
  .room-card img { height: 380px; }
  .amen-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .feat-item:nth-child(2n) { border-right: none; }
  .feat-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.05); }
  .gallery-masonry { columns: 2; }
  .nb-body { flex-direction: column; gap: 8px; }
  .nb-name { min-width: unset; }
}
@media(max-width:768px){
  #nav { padding: 0 20px; } .nav-links { display: none; } .ham { display: flex; }
  .hero-content { padding: 0 24px 72px; }
  .hero-badge, .hero-scroll { display: none; }
  .section { padding: 64px 20px; } .callout { padding: 64px 20px; }
  .page-hero { padding-left: 20px; padding-bottom: 44px; }
  .bc { padding: 12px 20px; } footer { padding: 52px 20px 24px; }
  .hero-h1 { font-size: clamp(46px, 12vw, 70px); }
  .rooms-scroll { grid-template-columns: 1fr; }
  .amen-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cf { padding: 28px 20px; }
  .sticky-book { padding: 10px 16px; gap: 10px; }
  .sticky-book-fields { display: none; }
  .nb-dist { width: 72px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-wa { bottom: 80px; }
}
@media(prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
