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

/* =============================================
   HOTEL LUXE — CSS VARIABLES & RESET
   ============================================= */
:root {
  --gold:       #B8975A;
  --gold2:      #D4AF6E;
  --gold-pale:  #F5EDD9;
  --navy:       #0D1B2A;
  --navy2:      #162233;
  --charcoal:   #2A3441;
  --steel:      #4A5568;
  --mist:       #8898AA;
  --cream:      #FAFAF7;
  --white:      #FFFFFF;
  --bg:         var(--cream);
  --shadow-sm:  0 2px 12px rgba(13,27,42,.07);
  --shadow:     0 8px 32px rgba(13,27,42,.12);
  --shadow-lg:  0 20px 60px rgba(13,27,42,.18);
  --r:          12px;
  --r-lg:       20px;
  --fd:         'Playfair Display', 'DM Serif Display', serif;
  --fb:         'Inter', sans-serif;
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); background: var(--bg); color: var(--charcoal); line-height: 1.65; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: var(--fd); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.4rem,5.5vw,4.5rem); }
h2 { font-size: clamp(1.8rem,3.5vw,3rem); }
h3 { font-size: clamp(1.2rem,2vw,1.7rem); }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--fb); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: rgba(13,27,42,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,151,90,.2);
  transition: background var(--transition), height var(--transition);
}
.nav.scrolled { height: 60px; background: rgba(13,27,42,.98); }
.nav-logo {
  font-family: var(--fd);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: .5px;
  display: flex; align-items: center; gap: .5rem;
}
.nav-logo span { color: var(--gold); font-size: 1.1rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .72rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: .55rem 1.25rem !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold2) !important; transform: translateY(-1px) !important; }
.ham { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; }
.ham span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all .3s; }
@media(max-width:900px) {
  .ham { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy2); flex-direction: column; gap: 0;
    padding: .75rem 0; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .85rem 2rem; border-bottom: 1px solid rgba(255,255,255,.06); letter-spacing: 1.5px; }
  .nav-cta { margin: .75rem 2rem; display: inline-block; text-align: center; }
}

/* =============================================
   HERO WITH CAROUSEL
   ============================================= */
.hero-carousel {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; background: var(--navy);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.2s ease;
  display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.75) 0%, rgba(13,27,42,.35) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  padding-top: 72px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .68rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  max-width: 680px;
}
.hero-desc {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.25rem;
  font-weight: 300;
}
.hero-acts { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Carousel controls */
.carousel-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .6rem; z-index: 10;
}
.carousel-dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.35); cursor: pointer;
  transition: background var(--transition), width var(--transition);
  border: none;
}
.carousel-dot.active { background: var(--gold); width: 48px; }
.carousel-arrows {
  position: absolute; bottom: 2rem; right: 2rem;
  display: flex; gap: .5rem; z-index: 10;
}
.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.carousel-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* QUICK BOOKING BAR */
.quick-book {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--r-lg);
  padding: 1.5rem 2rem;
  max-width: 960px;
  margin: -2.5rem auto 0;
  position: relative; z-index: 20;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem; align-items: end;
}
.qb-field label {
  display: block; font-size: .65rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--mist); margin-bottom: .4rem;
}
.qb-field input, .qb-field select {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid #E8ECF0; border-radius: 8px;
  font-family: var(--fb); font-size: .9rem; color: var(--charcoal);
  background: var(--cream); outline: none;
  transition: border-color var(--transition);
}
.qb-field input:focus, .qb-field select:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,151,90,.12);
}
@media(max-width:768px) {
  .quick-book { grid-template-columns: 1fr 1fr; gap: .75rem; }
}
@media(max-width:480px) {
  .quick-book { grid-template-columns: 1fr; }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--navy);
  padding: .85rem 1.75rem; border-radius: 4px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--white);
  padding: .85rem 1.75rem; border-radius: 4px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--navy); color: var(--white);
  padding: .85rem 1.75rem; border-radius: 4px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid var(--navy);
}
.btn-dark:hover { background: var(--charcoal); border-color: var(--charcoal); transform: translateY(-2px); }

/* =============================================
   SECTIONS
   ============================================= */
.sec { padding: 5.5rem 2rem; max-width: 1200px; margin: 0 auto; }
.sec-h { text-align: center; margin-bottom: 3.5rem; }
.sec-ey {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .65rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .875rem;
}
.sec-ey::before, .sec-ey::after {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--gold);
}
.sec-t { color: var(--navy); margin-bottom: 1rem; }
.sec-d { color: var(--steel); max-width: 520px; margin: 0 auto; font-size: .95rem; font-weight: 300; }
.bg-navy  { background: var(--navy); }
.bg-pale  { background: #F2EDE4; }
.bg-cream { background: var(--cream); }

/* =============================================
   ROOMS / SERVICES (HOTEL ROOMS)
   ============================================= */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.room-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.room-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy2), var(--charcoal));
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.room-card:hover .room-img img { transform: scale(1.05); }
.room-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--navy);
  font-size: .62rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: .3rem .75rem; border-radius: 2px;
}
.room-body { padding: 1.5rem; }
.room-name { font-family: var(--fd); font-size: 1.25rem; color: var(--navy); margin-bottom: .35rem; }
.room-desc { font-size: .82rem; color: var(--steel); margin-bottom: 1.25rem; line-height: 1.6; }
.room-features {
  display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}
.room-feat {
  font-size: .65rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: .25rem .65rem;
  background: var(--gold-pale); color: var(--charcoal);
  border-radius: 2px;
}
.room-footer { display: flex; justify-content: space-between; align-items: center; }
.room-price span { font-size: .72rem; color: var(--mist); display: block; }
.room-price strong { font-size: 1.4rem; color: var(--gold); font-weight: 700; }
.room-book {
  background: var(--navy); color: var(--white);
  padding: .6rem 1.25rem; border-radius: 4px;
  font-size: .72rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; border: none; transition: all var(--transition);
  font-family: var(--fb);
}
.room-book:hover { background: var(--gold); color: var(--navy); }

/* =============================================
   STAFF / TEAM
   ============================================= */
.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 1.75rem; }
.staff-c {
  text-align: center; background: var(--white);
  border-radius: var(--r-lg); padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border-top: 3px solid transparent;
}
.staff-c:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-top-color: var(--gold); }
.staff-ph { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 1.25rem; object-fit: cover; border: 3px solid var(--gold-pale); }
.staff-pp { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 1.25rem; background: var(--navy2); display: flex; align-items: center; justify-content: center; font-size: 2rem; border: 3px solid var(--gold-pale); }
.staff-n { font-family: var(--fd); font-size: 1.15rem; color: var(--navy); margin-bottom: .2rem; }
.staff-t { font-size: .65rem; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.staff-b { font-size: .8rem; color: var(--steel); margin-top: .75rem; line-height: 1.6; }

/* =============================================
   BLOG
   ============================================= */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.75rem; }
.blog-c { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.blog-c:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-ci { height: 200px; background: var(--navy2); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-ci img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.blog-c:hover .blog-ci img { transform: scale(1.04); }
.blog-cb { padding: 1.5rem; }
.blog-tag { font-size: .62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .5rem; }
.blog-ct { font-family: var(--fd); font-size: 1.15rem; color: var(--navy); margin-bottom: .6rem; line-height: 1.3; }
.blog-cx { font-size: .82rem; color: var(--steel); margin-bottom: 1rem; line-height: 1.6; }
.blog-cf { display: flex; justify-content: space-between; align-items: center; font-size: .72rem; color: var(--mist); }
.read-more { color: var(--gold); font-weight: 600; font-size: .75rem; transition: color var(--transition); }
.read-more:hover { color: var(--navy); }

/* =============================================
   BOOKING / REZERVO
   ============================================= */
.book-sec { background: var(--cream); padding: 5.5rem 2rem; }
.book-wrap { max-width: 680px; margin: 0 auto; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.book-hdr { background: var(--navy); padding: 2rem 2.5rem; border-bottom: 3px solid var(--gold); }
.book-hdr h2 { font-family: var(--fd); color: var(--white); font-size: 1.75rem; margin-bottom: .25rem; }
.book-hdr p { opacity: .65; font-size: .85rem; color: var(--white); font-weight: 300; }
.book-body { padding: 2rem 2.5rem; }
.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fg.full { grid-template-columns: 1fr; }
.fg label { display: block; font-size: .65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mist); margin-bottom: .4rem; }
.fg input,.fg select,.fg textarea { width: 100%; padding: .75rem 1rem; border: 1.5px solid #E8ECF0; border-radius: 8px; font-family: var(--fb); font-size: .9rem; color: var(--charcoal); background: var(--cream); outline: none; transition: border-color var(--transition); }
.fg input:focus,.fg select:focus,.fg textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(184,151,90,.1); }
.ts-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .4rem; }
.ts { padding: .55rem; border: 1.5px solid #E8ECF0; border-radius: 6px; text-align: center; font-size: .75rem; cursor: pointer; transition: all var(--transition); background: var(--cream); font-family: var(--fb); }
.ts:hover:not(.taken) { border-color: var(--gold); background: var(--gold-pale); color: var(--navy); }
.ts.sel { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 600; }
.ts.taken { background: #f0f0f0; color: #bbb; cursor: not-allowed; border-color: #e8e8e8; text-decoration: line-through; }
.book-btn { width: 100%; padding: 1rem; background: var(--gold); color: var(--navy); border: none; border-radius: 4px; font-size: .82rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; margin-top: 1.25rem; font-family: var(--fb); transition: all var(--transition); }
.book-btn:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: var(--shadow); }
.book-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
@media(max-width:580px) { .fg { grid-template-columns: 1fr; } .ts-grid { grid-template-columns: repeat(3,1fr); } .book-body { padding: 1.5rem; } }

/* =============================================
   ALERTS
   ============================================= */
.al { padding: .875rem 1.1rem; border-radius: 8px; font-size: .85rem; margin-bottom: 1rem; }
.al-s { background: #ECFDF5; color: #065F46; border: 1px solid #6EE7B7; }
.al-e { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.al-i { background: var(--gold-pale); color: var(--charcoal); border: 1px solid var(--gold2); }

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  padding: 3.5rem 2rem;
}
.feature-item {
  text-align: center; padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 2rem; margin-bottom: .875rem; }
.feature-title { font-family: var(--fd); font-size: 1.15rem; color: var(--white); margin-bottom: .35rem; }
.feature-desc { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.6; }
@media(max-width:768px) { .features-strip { grid-template-columns: 1fr 1fr; } .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); } .feature-item:nth-last-child(-n+2) { border-bottom: none; } }
@media(max-width:480px) { .features-strip { grid-template-columns: 1fr; } .feature-item { border-bottom: 1px solid rgba(255,255,255,.08); } .feature-item:last-child { border-bottom: none; } }

/* =============================================
   TESTIMONIALS CAROUSEL
   ============================================= */
.testi-wrap {
  max-width: 800px; margin: 0 auto;
  position: relative;
}
.testi-slide { display: none; text-align: center; }
.testi-slide.active { display: block; animation: fadeInUp .5s ease; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.testi-quote { font-family: var(--fd); font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: var(--navy); line-height: 1.5; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testi-nav { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: #E0D5C8; cursor: pointer; border: none; transition: background var(--transition); }
.testi-dot.active { background: var(--gold); }

/* =============================================
   CONTACT / KONTAKT
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--gold-pale); border: 1px solid var(--gold2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-text h4 { font-family: var(--fd); font-size: 1rem; color: var(--navy); margin-bottom: .2rem; }
.contact-info-text p { font-size: .85rem; color: var(--steel); line-height: 1.6; }
.maps-embed { width: 100%; height: 280px; border-radius: var(--r); border: none; margin-top: 1.5rem; }
@media(max-width:768px) { .contact-grid { grid-template-columns: 1fr; } }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--navy); color: rgba(255,255,255,.55); padding: 5rem 2rem 2rem; }
.footer-g { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2.5fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
.f-logo { font-family: var(--fd); font-size: 1.75rem; color: var(--white); margin-bottom: 1rem; }
.f-logo span { color: var(--gold); }
.f-desc { font-size: .83rem; line-height: 1.75; margin-bottom: 1.5rem; max-width: 280px; }
.f-social { display: flex; gap: .75rem; }
.f-soc { width: 38px; height: 38px; border-radius: var(--r); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: all var(--transition); }
.f-soc:hover { border-color: var(--gold); background: rgba(184,151,90,.15); color: var(--gold); }
.f-h { font-size: .65rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.f-links { list-style: none; }
.f-links li { margin-bottom: .6rem; }
.f-links a { font-size: .83rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.f-links a:hover { color: var(--gold); }
.f-ci { display: flex; gap: .875rem; align-items: flex-start; margin-bottom: .875rem; }
.f-ci-ic { color: var(--gold); margin-top: .1rem; font-size: .9rem; flex-shrink: 0; }
.f-ci p { font-size: .83rem; line-height: 1.5; }
.f-bot { max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; font-size: .75rem; }
@media(max-width:900px) { .footer-g { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px) { .footer-g { grid-template-columns: 1fr; gap: 2rem; } .f-bot { flex-direction: column; gap: .5rem; text-align: center; } }

/* =============================================
   PAGE HEADER
   ============================================= */
.pg-hdr { background: var(--navy); padding: 8rem 2rem 3.5rem; text-align: center; }
.pg-hdr h1 { color: var(--white); margin-bottom: .75rem; }
.pg-hdr p { color: rgba(255,255,255,.5); font-size: .85rem; max-width: 500px; margin: 0 auto .5rem; font-weight: 300; }
.breadcrumb { font-size: .72rem; color: rgba(255,255,255,.4); }
.breadcrumb a { color: var(--gold); }

/* =============================================
   GALLERY
   ============================================= */
.gal-g { columns: 3; gap: 1rem; }
.gal-i { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--r); overflow: hidden; }
.gal-i img { width: 100%; transition: transform var(--transition); }
.gal-i:hover img { transform: scale(1.04); }
@media(max-width:768px) { .gal-g { columns: 2; } }
@media(max-width:480px) { .gal-g { columns: 1; } }

/* =============================================
   PAGINATION
   ============================================= */
.pag { display: flex; justify-content: center; gap: .4rem; margin-top: 2.5rem; }
.pag a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; border: 1.5px solid #E8ECF0; color: var(--steel); transition: all var(--transition); }
.pag a:hover, .pag a.on { border-color: var(--gold); background: var(--gold); color: var(--navy); }

/* =============================================
   FADE-IN ANIMATION
   ============================================= */
.fi { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }

/* =============================================
   DIVIDER
   ============================================= */
.gold-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: .5rem 0 2rem; }
.gold-divider::before, .gold-divider::after { content: ''; flex: 1; max-width: 80px; height: 1px; background: var(--gold); opacity: .4; }
.gold-divider span { color: var(--gold); font-size: .8rem; }

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; background: var(--gold-pale); }
.stat-item { text-align: center; padding: 3rem 1.5rem; border-right: 1px solid rgba(184,151,90,.2); }
.stat-item:last-child { border-right: none; }
.stat-n { font-family: var(--fd); font-size: 3rem; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: .35rem; }
.stat-l { font-size: .7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--charcoal); }
@media(max-width:768px) { .stats-strip { grid-template-columns: 1fr 1fr; } .stat-item:nth-child(2) { border-right: none; } .stat-item:nth-child(3) { border-right: none; border-top: 1px solid rgba(184,151,90,.2); } .stat-item:nth-child(4) { border-top: 1px solid rgba(184,151,90,.2); } }

/* =============================================
   GALLERY CAROUSEL (HOME)
   ============================================= */
.gal-carousel { position: relative; overflow: hidden; border-radius: var(--r-lg); }
.gal-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.gal-card { flex: 0 0 33.333%; padding: 0 .5rem; }
.gal-card img { border-radius: var(--r); height: 280px; width: 100%; object-fit: cover; }
@media(max-width:768px) { .gal-card { flex: 0 0 50%; } }
@media(max-width:480px) { .gal-card { flex: 0 0 100%; } }

/* =============================================
   AMENITIES
   ============================================= */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 1.25rem; }
.amenity-card {
  background: var(--white); border-radius: var(--r);
  padding: 1.5rem 1rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid transparent;
}
.amenity-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.amenity-icon { font-size: 2rem; margin-bottom: .75rem; }
.amenity-name { font-size: .82rem; font-weight: 600; color: var(--navy); }
