/* ============================================
   Hotel Elite Choice — Stylesheet
   Light theme, modern, official hotel aesthetic
   ============================================ */

:root {
  --gold: #a9822f;
  --gold-dark: #8a6a22;
  --gold-light: #f6efe0;
  --ink: #1c1b19;
  --ink-soft: #4a463f;
  --ink-faint: #7a756a;
  --paper: #ffffff;
  --paper-alt: #faf8f4;
  --paper-deep: #f2ede2;
  --line: #e7e1d4;
  --shadow-sm: 0 1px 2px rgba(28, 27, 25, 0.06);
  --shadow-md: 0 8px 24px rgba(28, 27, 25, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 27, 25, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  margin: 0;
  color: var(--ink);
}

h2 { font-size: clamp(28px, 3.6vw, 42px); }
h3 { font-size: 22px; }

p { color: var(--ink-soft); margin: 0; }

.section {
  padding: 96px 0;
}
.section-tight { padding: 72px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 17px; }

.bg-alt { background: var(--paper-alt); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { background: var(--gold-light); }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-arrow { transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: #e9e5da;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar a.tb-link { display: inline-flex; align-items: center; gap: 7px; color: #e9e5da; opacity: 0.92; }
.topbar a.tb-link:hover { color: var(--gold-light); opacity: 1; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { opacity: 0.8; }
.topbar-social a:hover { opacity: 1; color: var(--gold-light); }
.topbar svg { width: 14px; height: 14px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-text span {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { display: none; }
@media (min-width: 900px) {
  .nav-actions .btn { display: inline-flex; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: all 0.25s ease;
}

@media (max-width: 899px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    gap: 26px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-actions .btn.btn-outline { display: none; }
}

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(20, 18, 14, 0.4);
  z-index: 90;
}
.nav-overlay.open { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(20,18,15,0.55) 0%, rgba(20,18,15,0.35) 45%, rgba(20,18,15,0.72) 100%),
    url("assets/img/hotel-3.jpeg") center/cover no-repeat;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 700px; color: #fff; padding: 140px 0 100px; }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 66px);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero p.lead {
  color: #ece7db;
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding-top: 34px;
  padding-bottom: 34px;
}
@media (min-width: 720px) {
  .hero-stats .container { grid-template-columns: repeat(4, 1fr); }
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold-dark);
}
.stat span {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 960px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}
.about-media img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-md);
}
.about-media .tall { height: 420px; grid-row: span 2; }
.about-media .short { height: 202px; }
.about-badge {
  position: absolute;
  left: -20px;
  bottom: -24px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}
.about-badge strong { display: block; font-family: var(--serif); font-size: 26px; color: var(--gold-light); }
.about-badge span { font-size: 12.5px; color: #d9d4c7; line-height: 1.4; display: block; margin-top: 4px; }

.about-body p { font-size: 16.5px; margin-bottom: 16px; }
.about-body p:last-of-type { margin-bottom: 28px; }

.check-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.check-list svg { flex-shrink: 0; color: var(--gold); }

/* ---------- Amenities ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 720px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
}
.amenity-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: all 0.3s ease;
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.amenity-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.amenity-card h3 { font-size: 17px; margin-bottom: 8px; }
.amenity-card p { font-size: 14px; }

/* ---------- Rooms ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 800px) {
  .rooms-grid { grid-template-columns: 1fr 1fr; }
}
.room-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.room-media { position: relative; height: 320px; overflow: hidden; }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-media img { transform: scale(1.06); }
.room-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 999px;
}
.room-body { padding: 28px; }
.room-body h3 { margin-bottom: 10px; }
.room-body p { font-size: 15px; margin-bottom: 20px; }
.room-features {
  list-style: none;
  padding: 0; margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.room-features li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--paper-alt);
  border: 1px solid var(--line);
  padding: 7px 12px;
  border-radius: 999px;
}
.room-features svg { color: var(--gold-dark); }
.room-footer { display: flex; align-items: center; justify-content: space-between; }

/* ---------- Location / Prime location split ---------- */
.location-section {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
@media (min-width: 960px) {
  .location-section { grid-template-columns: 1fr 1fr; min-height: 460px; }
}
.location-media { position: relative; min-height: 320px; }
.location-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.location-copy {
  background: var(--ink);
  color: #f2ede1;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-copy .eyebrow { color: var(--gold-light); }
.location-copy .eyebrow::before { background: var(--gold-light); }
.location-copy h2 { color: #fff; margin-bottom: 18px; }
.location-copy p { color: #d4cfc1; font-size: 16px; margin-bottom: 28px; }
.location-list { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 14px; }
.location-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: #e5e0d3; }
.location-list svg { color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; }
  .gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid a:nth-child(4) { grid-column: span 2; }
}
.gallery-grid a {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 100%;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0) 55%, rgba(20,18,15,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-grid a:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: 13px; font-weight: 600; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-stars { color: var(--gold); display: flex; gap: 3px; margin-bottom: 18px; }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-card p.quote {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-person strong { display: block; font-size: 14.5px; color: var(--ink); }
.testimonial-person span { font-size: 12.5px; color: var(--ink-faint); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 64px 40px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(20,18,15,0.72), rgba(20,18,15,0.82)),
    url("assets/img/hotel-4.jpeg") center/cover no-repeat;
}
.cta-banner .eyebrow { color: var(--gold-light); justify-content: center; }
.cta-banner .eyebrow::before { display: none; }
.cta-banner h2 { color: #fff; max-width: 640px; margin: 0 auto 16px; }
.cta-banner p { color: #dcd7c9; max-width: 520px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-card .amenity-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-card h4 { font-size: 15.5px; margin-bottom: 6px; font-family: var(--sans); font-weight: 700; }
.contact-card p { font-size: 14.5px; }
.contact-card a:hover { color: var(--gold-dark); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 340px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cbc6b8;
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 42px; width: 42px; border-radius: 50%; }
.footer-brand strong { font-family: var(--serif); color: #fff; font-size: 18px; }
.footer-about p { color: #a9a394; font-size: 14px; margin-bottom: 20px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-col h4 {
  font-family: var(--sans);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: #a9a394; font-size: 14.5px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-col .contact-line { display: flex; gap: 10px; align-items: flex-start; color: #a9a394; font-size: 14.5px; }
.footer-col .contact-line svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0;
  font-size: 13px;
  color: #8f8a7c;
}
.footer-bottom a { color: #8f8a7c; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px 14px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  font-size: 13.5px;
  font-weight: 700;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5); }
.whatsapp-float svg { width: 22px; height: 22px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .location-copy { padding: 40px 24px; }
  .about-badge { position: static; margin-top: 16px; max-width: none; }
  .check-list { grid-template-columns: 1fr; }
}
