:root {
  --ivory:     #FAF8F3;
  --ivory-mid: #F2EDE3;
  --ivory-dark:#E8E0D0;
  --forest:    #2C4A3E;
  --forest-mid:#3D6457;
  --forest-lt: #5C8A78;
  --gold:      #B8873A;
  --gold-lt:   #D4A85C;
  --gold-pale: #F0D9A8;
  --sand:      #C9B48A;
  --text:      #1E2D28;
  --text-mid:  #4A5E57;
  --text-soft: #7A8F87;
  --white:     #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(44,74,62,0.08);
  --shadow-md: 0 8px 40px rgba(44,74,62,0.12);
  --shadow-lg: 0 20px 60px rgba(44,74,62,0.15);
}
 
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
 
body {
  font-family:'DM Sans', sans-serif;
  background:var(--ivory);
  color:var(--text);
  overflow-x:hidden;
}
 
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--ivory-mid); }
::-webkit-scrollbar-thumb { background:var(--forest-lt); border-radius:3px; }
 
/* ─── NAV ─── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:76px;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 48px;
  background:rgba(250,248,243,0.96);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(44,74,62,0.1);
  transition:all 0.35s;
}
nav.scrolled { height:64px; box-shadow:var(--shadow-sm); }
 
.nav-logo {
  font-family:'Playfair Display', serif;
  font-size:1.5rem; font-weight:600;
  color:var(--forest); text-decoration:none;
  letter-spacing:0.06em;
  display:flex; align-items:center; gap:10px;
}
.nav-logo-icon {
  width:36px; height:36px;
  background:var(--forest); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:0.9rem; color:var(--gold-pale);
}
.nav-logo span { color:var(--gold); }
 
.nav-links { display:flex; align-items:center; gap:32px; list-style:none; }
.nav-links a {
  font-size:0.72rem; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase;
  color:var(--text-mid); text-decoration:none;
  transition:color 0.3s; cursor:pointer;
}
.nav-links a:hover { color:var(--forest); }
.nav-book {
  background:var(--forest) !important;
  color:var(--ivory) !important;
  padding:10px 24px; border-radius:2px;
  transition:background 0.3s !important;
}
.nav-book:hover { background:var(--forest-mid) !important; }
 
.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.hamburger span { display:block; width:24px; height:1.5px; background:var(--forest); transition:all 0.3s; }
 
.mobile-menu {
  display:none; position:fixed;
  top:76px; left:0; right:0;
  background:rgba(250,248,243,0.98); backdrop-filter:blur(16px);
  padding:20px 32px 32px;
  border-bottom:1px solid var(--ivory-dark);
  z-index:999; flex-direction:column;
  box-shadow:var(--shadow-md);
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  display:block; padding:14px 0;
  font-size:0.78rem; letter-spacing:0.15em; text-transform:uppercase;
  color:var(--text-mid); text-decoration:none;
  border-bottom:1px solid var(--ivory-dark);
  cursor:pointer; transition:color 0.3s; font-weight:500;
}
.mobile-menu a:hover { color:var(--forest); }
 
/* ─── PAGE SYSTEM ─── */
.page { display:none; }
.page.active { display:block; }
#home { display:block; }
 
/* ─── HERO ─── */
.hero {
  position:relative; height:100vh; min-height:620px;
  display:flex; align-items:center; overflow:hidden;
}
.hero-slider {
  position:absolute; inset:0; z-index:0; overflow:hidden; background:#1E2D28;
}
.hero-slide {
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; transform:scale(1);
  animation:zoomFade 18s infinite linear;
}
.hero-slide:nth-child(1) { animation-delay:0s; }
.hero-slide:nth-child(2) { animation-delay:6s; }
.hero-slide:nth-child(3) { animation-delay:12s; }

@keyframes zoomFade {
  0% { opacity:0; transform:scale(1); }
  5% { opacity:1; }
  33% { opacity:1; }
  38% { opacity:0; }
  100% { opacity:0; transform:scale(1.15); }
}

.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(105deg, rgba(44,74,62,0.75) 0%, rgba(44,74,62,0.3) 55%, rgba(184,135,58,0.12) 100%);
  z-index:1;
}
.hero-content {
  position:relative; z-index:2;
  padding:0 80px; max-width:700px;
  animation:fadeInLeft 1.1s ease forwards;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(250,248,243,0.15); border:1px solid rgba(250,248,243,0.3);
  backdrop-filter:blur(8px); padding:7px 18px; border-radius:100px;
  font-size:0.65rem; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--gold-pale); margin-bottom:28px;
}
.hero-badge::before { content:'●'; font-size:0.4rem; color:var(--gold-lt); }
.hero-title {
  font-family:'Playfair Display', serif;
  font-size:clamp(2.8rem, 6vw, 5.5rem);
  font-weight:400; line-height:1.1; color:var(--white); margin-bottom:20px;
}
.hero-title em { font-style:italic; color:var(--gold-pale); }
.hero-line { width:60px; height:2px; background:var(--gold-lt); margin:24px 0; }
.hero-sub {
  font-size:0.88rem; line-height:1.9;
  color:rgba(250,248,243,0.8); margin-bottom:40px;
  font-weight:300; max-width:440px;
}
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }
 
.btn-fill {
  background:var(--gold); color:var(--white);
  padding:14px 34px; border:none; cursor:pointer;
  font-family:'DM Sans', sans-serif; font-size:0.72rem; font-weight:600;
  letter-spacing:0.15em; text-transform:uppercase;
  text-decoration:none; display:inline-block; border-radius:2px; transition:all 0.3s;
}
.btn-fill:hover { background:var(--gold-lt); transform:translateY(-2px); box-shadow:0 8px 24px rgba(184,135,58,0.35); }
 
.btn-ghost {
  background:transparent; color:var(--white);
  padding:13px 34px; border:1.5px solid rgba(255,255,255,0.5);
  cursor:pointer; font-family:'DM Sans', sans-serif;
  font-size:0.72rem; font-weight:500; letter-spacing:0.15em; text-transform:uppercase;
  text-decoration:none; display:inline-block; border-radius:2px; transition:all 0.3s;
}
.btn-ghost:hover { border-color:var(--white); background:rgba(255,255,255,0.1); }
 
.hero-scroll-hint {
  position:absolute; bottom:40px; right:56px; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.scroll-text {
  font-size:0.6rem; letter-spacing:0.3em; text-transform:uppercase;
  color:rgba(255,255,255,0.5); writing-mode:vertical-rl;
}
.scroll-line {
  width:1px; height:56px;
  background:linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation:scrollPulse 2s infinite;
}
 
/* ─── BOOKING BAR ─── */
.booking-bar {
  background:var(--white); box-shadow:var(--shadow-md);
  border-top:3px solid var(--gold);
  padding:28px 48px; display:flex; align-items:center; gap:0; flex-wrap:wrap;
}
.booking-item {
  flex:1; padding:0 28px; min-width:160px;
  border-right:1px solid var(--ivory-dark);
}
.booking-item:first-child { padding-left:0; }
.booking-item:last-child { border-right:none; padding-right:0; }
.booking-label { font-size:0.6rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--text-soft); margin-bottom:6px; display:block; }
.booking-value { font-family:'Playfair Display', serif; font-size:1rem; color:var(--text); font-weight:500; }
.booking-btn {
  background:var(--forest); color:var(--white); padding:14px 36px;
  border:none; cursor:pointer; font-family:'DM Sans', sans-serif;
  font-size:0.72rem; letter-spacing:0.15em; text-transform:uppercase;
  border-radius:2px; font-weight:600; transition:background 0.3s; white-space:nowrap; margin-left:20px;
}
.booking-btn:hover { background:var(--forest-mid); }
 
/* ─── SHARED ─── */
.container { max-width:1240px; margin:0 auto; padding:0 48px; }
section { padding:100px 0; }
.tag { display:inline-block; font-size:0.62rem; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:14px; }
.s-title { font-family:'Playfair Display', serif; font-size:clamp(2rem, 4vw, 3.2rem); font-weight:400; line-height:1.2; color:var(--text); }
.s-title em { font-style:italic; color:var(--forest); }
.s-body { font-size:0.84rem; line-height:2; color:var(--text-mid); max-width:540px; }
.divider { width:48px; height:2px; background:var(--gold); margin:20px 0; }
 
/* ─── ABOUT ─── */
.about-section { background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-images { position:relative; padding:0 0 60px 60px; }
.about-img1 { width:80%; aspect-ratio:3/4; object-fit:cover; box-shadow:var(--shadow-lg); display:block; }
.about-img2 { position:absolute; bottom:0; left:0; width:55%; aspect-ratio:4/3; object-fit:cover; box-shadow:var(--shadow-md); border:6px solid var(--white); }
.about-award { position:absolute; top:40px; right:0; background:var(--forest); padding:24px 20px; text-align:center; width:110px; }
.award-num { font-family:'Playfair Display', serif; font-size:2.5rem; font-weight:700; color:var(--gold-pale); line-height:1; display:block; }
.award-lbl { font-size:0.58rem; letter-spacing:0.15em; text-transform:uppercase; color:rgba(240,217,168,0.7); margin-top:4px; display:block; }
.about-stats { display:flex; margin-top:40px; border-top:1px solid var(--ivory-dark); padding-top:32px; }
.a-stat { flex:1; text-align:center; border-right:1px solid var(--ivory-dark); padding:0 20px; }
.a-stat:last-child { border-right:none; }
.a-stat-num { font-family:'Playfair Display', serif; font-size:2.2rem; color:var(--forest); font-weight:600; display:block; line-height:1; }
.a-stat-lbl { font-size:0.62rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--text-soft); margin-top:6px; display:block; }
 
/* ─── ROOMS ─── */
.rooms-section { background:var(--ivory); }
.rooms-header { text-align:center; margin-bottom:60px; }
.rooms-header .divider { margin:20px auto; }
.rooms-header .s-body { margin:0 auto; text-align:center; }
.rooms-grid { display:grid; grid-template-columns:repeat(12, 1fr); gap:16px; }
.room-card { position:relative; overflow:hidden; border-radius:2px; cursor:pointer; box-shadow:var(--shadow-sm); }
.room-card:nth-child(1) { grid-column:span 7; min-height:460px; }
.room-card:nth-child(2) { grid-column:span 5; min-height:460px; }
.room-card:nth-child(3) { grid-column:span 5; min-height:320px; }
.room-card:nth-child(4) { grid-column:span 7; min-height:320px; }
.room-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.7s cubic-bezier(.25,.46,.45,.94); display:block; }
.room-card:hover img { transform:scale(1.06); }
.room-info { position:absolute; bottom:0; left:0; right:0; padding:32px; background:linear-gradient(to top, rgba(30,45,40,0.88) 0%, transparent 100%); }
.room-badge { display:inline-block; background:var(--gold); color:var(--white); font-size:0.58rem; letter-spacing:0.2em; text-transform:uppercase; padding:4px 12px; margin-bottom:10px; }
.room-name { font-family:'Playfair Display', serif; font-size:1.5rem; color:var(--white); font-weight:400; margin-bottom:6px; }
.room-card:nth-child(1) .room-name { font-size:1.9rem; }
.room-feat { font-size:0.7rem; color:rgba(240,217,168,0.85); letter-spacing:0.05em; }
 
/* ─── FACILITIES ─── */
.facilities-section { background:var(--forest); }
.fac-header { text-align:center; margin-bottom:60px; }
.fac-header .tag { color:var(--gold-pale); }
.fac-header .s-title { color:var(--white); }
.fac-header .s-body { color:rgba(240,217,168,0.65); margin:0 auto; text-align:center; }
.fac-header .divider { margin:20px auto; background:var(--gold-lt); }
.fac-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.06); }
.fac-card { background:rgba(44,74,62,0.55); padding:44px 32px; transition:background 0.3s; position:relative; overflow:hidden; }
.fac-card:hover { background:rgba(61,100,87,0.7); }
.fac-card::after { content:''; position:absolute; bottom:0; left:32px; right:32px; height:2px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform 0.35s; }
.fac-card:hover::after { transform:scaleX(1); }
.fac-num { font-family:'Playfair Display', serif; font-size:3rem; color:rgba(184,135,58,0.18); line-height:1; margin-bottom:16px; display:block; font-weight:700; }
.fac-icon { font-size:1.8rem; margin-bottom:16px; display:block; }
.fac-name { font-family:'Playfair Display', serif; font-size:1.1rem; color:var(--white); font-weight:500; margin-bottom:12px; }
.fac-desc { font-size:0.72rem; line-height:1.9; color:rgba(240,217,168,0.6); }
 
/* ─── RESTAURANT ─── */
.restaurant-section { background:var(--white); }
.rest-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.rest-images { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; gap:12px; height:560px; }
.rest-img { object-fit:cover; width:100%; height:70%; display:block; }
.rest-img:first-child { grid-row:span 2; }
.rest-content .s-body { margin:16px 0 28px; }
.cuisine-list { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:32px; }
.cuisine-tag { background:var(--ivory-mid); border:1px solid var(--ivory-dark); color:var(--forest); padding:7px 18px; font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; border-radius:100px; font-weight:500; transition:all 0.3s; cursor:default; }
.cuisine-tag:hover { background:var(--forest); color:var(--white); border-color:var(--forest); }
 
/* ─── GALLERY PREVIEW ─── */
.gallery-section { background:var(--ivory-mid); }
.gallery-top { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:40px; flex-wrap:wrap; gap:20px; }
.btn-outline-forest { background:transparent; border:1.5px solid var(--forest); color:var(--forest); padding:12px 28px; font-family:'DM Sans', sans-serif; font-size:0.68rem; letter-spacing:0.15em; text-transform:uppercase; cursor:pointer; font-weight:600; border-radius:2px; transition:all 0.3s; text-decoration:none; display:inline-block; }
.btn-outline-forest:hover { background:var(--forest); color:var(--white); }
.gallery-mosaic { display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:240px; gap:8px; }
.g-item { overflow:hidden; position:relative; cursor:pointer; border-radius:2px; }
.g-item:nth-child(1) { grid-column:span 2; grid-row:span 2; }
.g-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease, filter 0.5s ease; display:block; }
.g-item:hover img { transform:scale(1.07); filter:brightness(0.88); }
.g-overlay { position:absolute; inset:0; background:rgba(44,74,62,0.4); opacity:0; transition:opacity 0.3s; display:flex; align-items:center; justify-content:center; }
.g-overlay span { font-size:2rem; color:var(--white); font-family:'Playfair Display', serif; }
.g-item:hover .g-overlay { opacity:1; }
 
/* ─── CONFERENCE ─── */
.conference-section { background:var(--ivory); }
.conf-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.conf-img-wrap { position:relative; }
.conf-img { width:100%; aspect-ratio:4/3; object-fit:cover; box-shadow:var(--shadow-md); display:block; }
.conf-badge { position:absolute; bottom:-20px; right:-20px; background:var(--gold); padding:24px 28px; text-align:center; }
.conf-badge-num { font-family:'Playfair Display', serif; font-size:2.8rem; font-weight:700; color:var(--white); line-height:1; display:block; }
.conf-badge-txt { font-size:0.6rem; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,255,255,0.8); display:block; margin-top:4px; }
.feat-list { list-style:none; margin:24px 0 32px; }
.feat-list li { display:flex; gap:14px; align-items:flex-start; padding:13px 0; border-bottom:1px solid var(--ivory-dark); font-size:0.78rem; line-height:1.7; color:var(--text-mid); }
.feat-list li::before { content:''; display:block; width:6px; height:6px; border-radius:50%; background:var(--gold); margin-top:7px; flex-shrink:0; }
 
/* ─── PERKS ─── */
.perks-section { background:var(--ivory-mid); }
.perks-intro { text-align:center; margin-bottom:56px; }
.perks-intro .divider { margin:20px auto; }
.perks-intro .s-body { margin:0 auto; text-align:center; }
.perks-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.perk { background:var(--white); padding:40px 28px; border-radius:2px; box-shadow:var(--shadow-sm); border-bottom:3px solid transparent; transition:all 0.3s; }
.perk:hover { border-bottom-color:var(--gold); transform:translateY(-4px); box-shadow:var(--shadow-md); }
.perk-ico { font-size:2.2rem; margin-bottom:20px; display:block; }
.perk-title { font-family:'Playfair Display', serif; font-size:1.1rem; color:var(--text); margin-bottom:12px; font-weight:500; }
.perk-text { font-size:0.72rem; line-height:2; color:var(--text-soft); }
 
/* ─── LOCATION ─── */
.location-section { background:var(--white); }
.loc-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.map-box { background:var(--ivory-mid); border:1px solid var(--ivory-dark); aspect-ratio:4/3; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; position:relative; overflow:hidden; border-radius:2px; }
.map-box::before { content:''; position:absolute; inset:0; background: repeating-linear-gradient(0deg, rgba(44,74,62,0.04) 0px, rgba(44,74,62,0.04) 1px, transparent 1px, transparent 48px), repeating-linear-gradient(90deg, rgba(44,74,62,0.04) 0px, rgba(44,74,62,0.04) 1px, transparent 1px, transparent 48px); }
.map-pin-big { font-size:3rem; position:relative; }
.map-place { font-family:'Playfair Display', serif; font-size:1.15rem; color:var(--text); text-align:center; position:relative; padding:0 32px; }
.map-addr { font-size:0.7rem; color:var(--text-soft); text-align:center; letter-spacing:0.05em; line-height:1.8; position:relative; }
.contact-stack { margin-top:16px; }
.c-row { display:flex; gap:18px; align-items:flex-start; padding:20px 0; border-bottom:1px solid var(--ivory-dark); }
.c-icon { font-size:1.2rem; margin-top:2px; flex-shrink:0; }
.c-lbl { font-size:0.6rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:4px; font-weight:600; }
.c-val { font-size:0.8rem; color:var(--text-mid); line-height:1.8; }
.btn-pair { display:flex; gap:12px; flex-wrap:wrap; margin-top:32px; }
.btn-forest { background:var(--forest); color:var(--white); padding:13px 32px; border:none; cursor:pointer; font-family:'DM Sans', sans-serif; font-size:0.68rem; letter-spacing:0.15em; text-transform:uppercase; border-radius:2px; font-weight:600; transition:background 0.3s; text-decoration:none; display:inline-block; }
.btn-forest:hover { background:var(--forest-mid); }
 
/* ─── FOOTER ─── */
footer { background:var(--text); padding:72px 0 32px; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:56px; padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,0.08); }
.f-logo { font-family:'Playfair Display', serif; font-size:1.4rem; font-weight:600; color:var(--gold-pale); letter-spacing:0.06em; display:block; margin-bottom:16px; }
.f-logo span { color:var(--gold-lt); }
.f-desc { font-size:0.74rem; line-height:2; color:rgba(255,255,255,0.4); margin-bottom:24px; }
.f-heading { font-size:0.62rem; letter-spacing:0.25em; text-transform:uppercase; color:var(--gold-lt); margin-bottom:20px; display:block; font-weight:600; }
.f-links { list-style:none; }
.f-links li { margin-bottom:10px; }
.f-links a { font-size:0.74rem; color:rgba(255,255,255,0.4); text-decoration:none; cursor:pointer; transition:color 0.3s; }
.f-links a:hover { color:var(--gold-pale); }
.footer-bottom { padding-top:28px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.f-copy { font-size:0.68rem; color:rgba(255,255,255,0.25); letter-spacing:0.05em; }
 
/* ─── GALLERY PAGE ─── */
#gallery-page { display:none; }
#gallery-page.active { display:block; padding-top:76px; }
.g-page-hero { height:320px; background:linear-gradient(rgba(44,74,62,0.65), rgba(44,74,62,0.75)), url('https://images.unsplash.com/photo-1564501049412-61c2a3083791?w=1400') center/cover; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:14px; }
.g-page-hero .s-title { color:var(--white); text-align:center; }
.g-filter-bar { background:var(--white); padding:20px 48px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; border-bottom:1px solid var(--ivory-dark); box-shadow:var(--shadow-sm); }
.filter-btns { display:flex; gap:8px; flex-wrap:wrap; }
.f-btn { padding:8px 22px; background:var(--ivory-mid); border:1px solid var(--ivory-dark); color:var(--text-mid); font-family:'DM Sans', sans-serif; font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; cursor:pointer; border-radius:100px; font-weight:500; transition:all 0.3s; }
.f-btn:hover, .f-btn.active { background:var(--forest); color:var(--white); border-color:var(--forest); }
.full-gallery { display:grid; grid-template-columns:repeat(4,1fr); gap:6px; padding:32px 48px; background:var(--ivory-mid); }
.fg-item { aspect-ratio:1; overflow:hidden; cursor:pointer; position:relative; border-radius:1px; }
.fg-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s; display:block; }
.fg-item:hover img { transform:scale(1.08); }
.fg-item::after { content:'⊕'; position:absolute; inset:0; background:rgba(44,74,62,0.4); color:var(--white); font-size:2rem; display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity 0.3s; }
.fg-item:hover::after { opacity:1; }
 
/* ─── LIGHTBOX ─── */
.lightbox { display:none; position:fixed; inset:0; z-index:9999; background:rgba(30,45,40,0.96); align-items:center; justify-content:center; }
.lightbox.open { display:flex; }
.lb-img { max-width:88vw; max-height:84vh; object-fit:contain; border-radius:1px; animation:fadeIn 0.3s; }
.lb-close { position:absolute; top:24px; right:32px; background:none; border:none; color:var(--gold-pale); font-size:2rem; cursor:pointer; line-height:1; }
.lb-prev, .lb-next { position:absolute; top:50%; transform:translateY(-50%); background:rgba(250,248,243,0.1); border:1px solid rgba(250,248,243,0.2); color:var(--gold-pale); width:52px; height:52px; font-size:1.4rem; cursor:pointer; display:flex; align-items:center; justify-content:center; border-radius:50%; transition:all 0.3s; }
.lb-prev { left:24px; } .lb-next { right:24px; }
.lb-prev:hover, .lb-next:hover { background:var(--gold); border-color:var(--gold); color:var(--white); }
 
/* ─── REVEAL ─── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity:1; transform:none; }
 
/* ─── ANIMATIONS ─── */
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scrollPulse { 0%,100% { opacity:0.5; } 50% { opacity:1; } }
 
/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
  .fac-grid { grid-template-columns:repeat(2,1fr); }
  .perks-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; gap:40px; }
  .full-gallery { grid-template-columns:repeat(3,1fr); }
  .room-card:nth-child(1), .room-card:nth-child(2), .room-card:nth-child(3), .room-card:nth-child(4) { grid-column:span 6; }
}
@media(max-width:768px){
  nav { padding:0 20px; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .container { padding:0 20px; }
  section { padding:70px 0; }
  .hero-content { padding:0 24px; }
  .hero-scroll-hint { display:none; }
  .booking-bar { padding:20px; gap:16px; }
  .booking-item { min-width:130px; padding:0 12px; }
  .booking-btn { margin-left:0; width:100%; margin-top:12px; }
  .about-grid, .rest-layout, .conf-layout, .loc-layout { grid-template-columns:1fr; gap:40px; }
  .about-images { padding:0 0 50px 50px; max-width:420px; }
  .rest-images { height:300px; }
  .rest-img:first-child { grid-row:span 1; }
  .conf-badge { right:0; bottom:-16px; }
  .rooms-grid { display:grid; grid-template-columns:1fr; }
  .room-card:nth-child(1), .room-card:nth-child(2), .room-card:nth-child(3), .room-card:nth-child(4) { grid-column:span 1; min-height:280px; }
  .fac-grid { grid-template-columns:1fr 1fr; }
  .perks-grid { grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1fr; gap:32px; }
  .gallery-mosaic { grid-template-columns:1fr 1fr; grid-auto-rows:180px; }
  .g-item:nth-child(1) { grid-column:span 2; grid-row:span 2; }
  .full-gallery { grid-template-columns:repeat(2,1fr); padding:16px 20px; }
  .g-filter-bar { padding:16px 20px; }
}
@media(max-width:480px){
  .fac-grid { grid-template-columns:1fr; }
  .perks-grid { grid-template-columns:1fr; }
  .about-stats { flex-direction:column; }
  .a-stat { border-right:none; border-bottom:1px solid var(--ivory-dark); padding:16px 0; text-align:left; }
  .hero-btns { flex-direction:column; }
  .full-gallery { grid-template-columns:repeat(2,1fr); }
}
