/* ============================================================
   GRANDEUR HOTEL — Main Stylesheet
   Aesthetic: Refined Luxury — Warm Ivory · Deep Charcoal · Antique Gold
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --ivory:     #F5F0E8;
  --ivory-dk:  #EDE6D6;
  --gold:      #B8953F;
  --gold-lt:   #D4AF60;
  --gold-pale: #F0E4C0;
  --charcoal:  #1E1E1E;
  --charcoal2: #2E2B28;
  --muted:     #7A7268;
  --border:    rgba(184,149,63,0.25);
  --shadow:    0 8px 40px rgba(30,30,30,0.12);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;

  --nav-h: 88px;
  --radius: 2px;
  --trans: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: var(--sans);
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; font-weight: 400; }

p { max-width: 65ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout Helpers ────────────────────────────────────────── */
.container { width: min(1200px, 90%); margin: 0 auto; }
.section   { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 70px; }
.section-header .eyebrow { margin-bottom: 16px; display: block; }
.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 55ch;
  margin: 20px auto 0;
}

/* Gold divider */
.divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--trans);
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ── Navigation ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--trans), box-shadow var(--trans);
}

#navbar.scrolled {
  background: var(--charcoal2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 68px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--trans);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-lt);
  transition: width var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-book {
  padding: 10px 24px;
  font-size: 0.65rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: #fff;
  transition: all var(--trans);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #1a1612 0%, #2c2419 60%, #1a1612 100%);
}

/* Subtle grain texture overlay */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

/* Gold geometric accent */
.hero-bg::after {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 600px; height: 600px;
  border: 1px solid rgba(184,149,63,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: var(--nav-h);
}

.hero-content .eyebrow { color: var(--gold-lt); margin-bottom: 20px; display: block; }

.hero-content h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.3s forwards;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  max-width: 42ch;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ── Feature Strip ─────────────────────────────────────────── */
.features-strip {
  background: var(--charcoal2);
  padding: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,0.75);
  transition: background var(--trans);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.03); }
.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  color: var(--gold);
}
.feature-item h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  max-width: none;
}

/* ── Room Cards ────────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
}

.room-card {
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  cursor: pointer;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.room-card-img {
  aspect-ratio: 4/3;
  background: var(--ivory-dk);
  overflow: hidden;
  position: relative;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.05); }

.room-card-img .placeholder-img {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--ivory-dk), var(--gold-pale));
}

.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius);
}

.room-card-body { padding: 28px 28px 24px; }

.room-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.room-meta {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.room-meta span { display: flex; align-items: center; gap: 5px; }

.room-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--ivory-dk);
  padding-top: 18px;
}
.room-price {
  display: flex;
  flex-direction: column;
}
.room-price .amount {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}
.room-price .per {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ── Menu Cards ────────────────────────────────────────────── */
.menu-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.menu-filter button {
  padding: 8px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--trans);
  color: var(--muted);
  background: transparent;
}
.menu-filter button:hover,
.menu-filter button.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.menu-card {
  background: #fff;
  border: 1px solid var(--ivory-dk);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--trans);
}
.menu-card:hover {
  border-color: var(--gold-pale);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.menu-card-img {
  aspect-ratio: 16/10;
  background: var(--ivory-dk);
  overflow: hidden;
}
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-img .placeholder-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--ivory-dk), var(--gold-pale));
}

.menu-card-body { padding: 20px; }
.menu-card-body h4 { margin-bottom: 6px; font-size: 1.05rem; }
.menu-card-body p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
}
.menu-cat {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--ivory-dk);
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--muted);
}

/* ── About Page ────────────────────────────────────────────── */
.about-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--charcoal2);
  color: #fff;
  text-align: center;
}
.about-hero h1 em { font-style: italic; color: var(--gold-lt); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: -1;
}
.about-text .eyebrow { margin-bottom: 12px; display: block; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--muted); margin-bottom: 18px; font-size: 0.95rem; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--charcoal2);
}
.stat-item {
  padding: 40px 32px;
  text-align: center;
  background: var(--charcoal2);
  border-right: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}
.stat-item:last-child { border-right: none; }
.stat-item .number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}
.team-card { text-align: center; }
.team-card-img {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--ivory-dk);
  overflow: hidden;
  border: 2px solid var(--border);
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--charcoal2);
  color: #fff;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-item .icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item .text h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--muted);
}
.contact-info-item .text p { font-size: 0.95rem; max-width: none; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--trans);
  color: var(--muted);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Contact Form */
.contact-form { }
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--ivory-dk);
  color: var(--charcoal);
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: border-color var(--trans);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,149,63,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--ivory-dk);
  border: 1px solid var(--border);
}
.form-success.visible { display: block; }
.form-success .check { font-size: 2.5rem; margin-bottom: 16px; }
.form-success h3 { color: var(--gold); }

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 32ch; }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--charcoal2);
  color: #fff;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 16px; display: block; }
.page-hero p { color: rgba(255,255,255,0.55); margin: 16px auto 0; font-size: 1rem; }

/* ── Loading & Empty States ────────────────────────────────── */
.loading-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.spinner {
  width: 36px; height: 36px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 16px; }

/* ── Alert/Toast ───────────────────────────────────────────── */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: #f0faf4; border: 1px solid #a8d8b4; color: #2d6a4a; }
.alert-error   { background: #fef5f5; border: 1px solid #f5b8b8; color: #8b2b2b; }

/* ── Admin Styles ──────────────────────────────────────────── */
.admin-body {
  background: #F7F7F5;
  min-height: 100vh;
}

.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal2);
}
.admin-login-card {
  background: var(--ivory);
  padding: 60px;
  width: 100%;
  max-width: 440px;
  text-align: center;
}
.admin-login-card .nav-logo {
  align-items: center;
  margin-bottom: 36px;
}
.admin-login-card .nav-logo .name { color: var(--charcoal); font-size: 2rem; }
.admin-login-card .nav-logo .tagline { color: var(--gold); }
.admin-login-card h2 { font-size: 1.5rem; margin-bottom: 8px; }
.admin-login-card .sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 36px; }

.admin-top {
  background: var(--charcoal2);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-top .nav-logo .name { font-size: 1.3rem; }

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 64px);
}

.admin-sidebar {
  background: #fff;
  border-right: 1px solid #E8E5DF;
  padding: 32px 0;
}
.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: all var(--trans);
  border-left: 2px solid transparent;
}
.admin-sidebar nav a:hover { color: var(--charcoal); background: var(--ivory); }
.admin-sidebar nav a.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: var(--ivory);
}
.admin-sidebar nav a .icon { font-size: 1rem; }

.admin-content { padding: 40px; }

.admin-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.admin-page-header h1 {
  font-size: 1.8rem;
  font-weight: 300;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.stat-card {
  background: #fff;
  border: 1px solid #E8E5DF;
  padding: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-card .stat-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.stat-card .stat-value {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
}
.stat-card .stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-card {
  background: #fff;
  border: 1px solid #E8E5DF;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
}
.admin-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid #E8E5DF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card-header h3 { font-size: 1.1rem; font-weight: 400; }
.admin-card-body { padding: 24px; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  text-align: left;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 16px;
  border-bottom: 1px solid #E8E5DF;
  background: var(--ivory);
}
.admin-table td {
  padding: 14px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid #F0EDE8;
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #FAFAF8; }

.admin-table .item-img {
  width: 48px; height: 36px;
  border-radius: 2px;
  object-fit: cover;
  background: var(--ivory-dk);
}

.btn-sm {
  padding: 6px 16px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}
.btn-danger {
  background: transparent;
  color: #b33;
  border: 1px solid #f5b8b8;
}
.btn-danger:hover { background: #b33; color: #fff; border-color: #b33; }

.admin-form .form-group input,
.admin-form .form-group textarea,
.admin-form .form-group select {
  background: var(--ivory);
  border-color: #E8E5DF;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 76px; }

  .nav-logo-img { height: 56px; }

  .nav-links { display: none; flex-direction: column; position: fixed;
    top: var(--nav-h); left: 0; right: 0; background: var(--charcoal2);
    padding: 24px 32px; gap: 16px; z-index: 999; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .nav-links.open { display: flex; }
  .nav-book { display: none !important; }
  .nav-toggle { display: flex; }

  #navbar { background: var(--charcoal2) !important; overflow: visible; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .rooms-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .cta-pair { flex-direction: column; gap: 12px; }
  .cta-pair .btn { width: 100%; justify-content: center; }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .page-hero { padding: calc(var(--nav-h) + 40px) 0 40px; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .contact-cta-card { padding: 28px 20px; }
  .contact-cta-card h3 { font-size: 1.2rem; }

  .contact-info-item .text p { word-break: break-word; overflow-wrap: break-word; }

  .bar-page-hero { padding: 60px 0 40px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   MODAL
───────────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(18,18,20,0.72); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--trans);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  background: #fff; width: 100%; max-width: 680px; max-height: 90vh;
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(24px);
  transition: transform var(--trans);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--charcoal); margin: 0; }
.modal-close {
  width: 36px; height: 36px; border: none; background: var(--ivory);
  border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex;
  align-items: center; justify-content: center; transition: background var(--trans);
  flex-shrink: 0;
}
.modal-close:hover { background: var(--ivory-dk); }

.modal-body { padding: 24px 28px; overflow-y: auto; flex: 1; }

.modal-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 2px;
  margin-bottom: 20px; background: var(--ivory-dk);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }

.modal-price-row {
  display: flex; align-items: baseline; gap: 12px; margin: 16px 0;
}
.modal-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.modal-meta span {
  background: var(--ivory); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; color: var(--charcoal);
}
.modal-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.modal-amenities span {
  background: var(--gold-pale); border: 1px solid rgba(179,145,74,0.2);
  padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; color: var(--charcoal);
}
.modal-cta { display: flex; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.modal-cta .btn { flex: 1; justify-content: center; }

/* ─────────────────────────────────────────────────────────────────────────
   PRICE DISPLAY
───────────────────────────────────────────────────────────────────────── */
.price-original {
  text-decoration: line-through; color: var(--muted); font-size: 0.9rem;
}
.price-discounted {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--gold); letter-spacing: -0.02em;
}
.price-discounted .per { font-size: 0.75rem; font-weight: 400; color: var(--muted); margin-left: 4px; }
.price-badge {
  background: var(--gold); color: #fff; font-size: 0.7rem; font-weight: 600;
  padding: 2px 8px; border-radius: 12px; letter-spacing: 0.04em; text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────────────────
   ROOM NUMBER BADGE
───────────────────────────────────────────────────────────────────────── */
.room-number-badge {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--border); padding: 2px 8px; border-radius: 2px;
  display: inline-block; margin-bottom: 6px;
}

/* ─────────────────────────────────────────────────────────────────────────
   AVAILABILITY BADGE & TOGGLE
───────────────────────────────────────────────────────────────────────── */
.avail-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 12px;
}
.avail-badge.available { background: #eaf6ef; color: #1a6b3c; }
.avail-badge.unavailable { background: #fdf0ef; color: #9b2b2b; }

.avail-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 14px; border-radius: 20px; border: none; cursor: pointer;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 0.2s;
}
.avail-toggle.available { background: #eaf6ef; color: #1a6b3c; }
.avail-toggle.available:hover { background: #d2ede0; }
.avail-toggle.unavailable { background: #fdf0ef; color: #9b2b2b; }
.avail-toggle.unavailable:hover { background: #f9dedd; }

/* ─────────────────────────────────────────────────────────────────────────
   CATEGORY GRID (rooms page)
───────────────────────────────────────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-bottom: 48px;
}
.category-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; cursor: pointer;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
  position: relative; overflow: hidden;
}
.category-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left; transition: transform var(--trans);
}
.category-card:hover, .category-card.active {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-2px); border-color: var(--gold-lt);
}
.category-card:hover::before, .category-card.active::before { transform: scaleX(1); }
.category-card h3 { font-family: var(--serif); font-size: 1.3rem; margin: 0 0 8px; color: var(--charcoal); }
.category-card p { font-size: 0.85rem; color: var(--muted); margin: 0 0 16px; line-height: 1.5; }
.category-card-meta { display: flex; justify-content: space-between; align-items: center; }
.category-card-meta .count { font-size: 0.78rem; color: var(--muted); }
.category-card-meta .range { font-family: var(--serif); font-size: 0.95rem; color: var(--gold); font-weight: 600; }

.rooms-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.rooms-section-header h2 { font-family: var(--serif); margin: 0; font-size: 1.8rem; }

/* ─────────────────────────────────────────────────────────────────────────
   CALL / WHATSAPP CTA BUTTONS
───────────────────────────────────────────────────────────────────────── */
.btn-call {
  background: #1a6b3c; color: #fff; border: 2px solid #1a6b3c;
}
.btn-call:hover { background: #15562f; border-color: #15562f; }
.btn-whatsapp {
  background: #25D366; color: #fff; border: 2px solid #25D366;
}
.btn-whatsapp:hover { background: #20b657; border-color: #20b657; }

.cta-pair {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────────────────
   CONTACT PAGE (no form version)
───────────────────────────────────────────────────────────────────────── */
.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.contact-cta-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 28px; text-align: center;
  transition: box-shadow var(--trans), transform var(--trans);
  text-decoration: none; display: block;
}
.contact-cta-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-2px);
}
.contact-cta-card .cta-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.contact-cta-card h3 { font-family: var(--serif); margin: 0 0 8px; color: var(--charcoal); font-size: 1.4rem; }
.contact-cta-card p { color: var(--muted); margin: 0; font-size: 0.9rem; }
.contact-cta-card.call-card { border-top: 3px solid #1a6b3c; }
.contact-cta-card.whatsapp-card { border-top: 3px solid #25D366; }

.social-strip { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.social-strip a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border: 1px solid var(--border); border-radius: 28px;
  font-size: 0.85rem; color: var(--charcoal); text-decoration: none;
  transition: all var(--trans);
}
.social-strip a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }

/* ─────────────────────────────────────────────────────────────────────────
   BAR PAGE
───────────────────────────────────────────────────────────────────────── */
.bar-page-hero {
  background: var(--charcoal2); color: #fff; padding: 80px 0 60px;
  text-align: center;
}
.bar-page-hero .eyebrow { color: var(--gold-lt); }
.bar-page-hero h1 { color: #fff; }
.bar-page-hero p { color: rgba(255,255,255,0.65); }

/* ─────────────────────────────────────────────────────────────────────────
   ADMIN MODAL (edit forms in dashboard)
───────────────────────────────────────────────────────────────────────── */
.admin-modal-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(18,18,20,0.65); backdrop-filter: blur(3px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 24px; overflow-y: auto;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.admin-modal-overlay.open { opacity: 1; pointer-events: auto; }

.admin-modal {
  background: #fff; width: 100%; max-width: 620px;
  border-radius: 4px; box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  transform: translateY(16px); transition: transform 0.25s;
}
.admin-modal-overlay.open .admin-modal { transform: translateY(0); }

.admin-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  background: var(--ivory);
}
.admin-modal-header h3 { margin: 0; font-family: var(--serif); font-size: 1.2rem; }
.admin-modal-body { padding: 24px; }
.admin-modal-footer {
  padding: 16px 24px; border-top: 1px solid var(--border);
  display: flex; gap: 12px; justify-content: flex-end;
}

/* ─────────────────────────────────────────────────────────────────────────
   ADMIN: availability toggle in tables
───────────────────────────────────────────────────────────────────────── */
.btn-danger { background: #9b2b2b; color: #fff; border: none; }
.btn-danger:hover { background: #7d2222; }

/* ── Room image gallery (modal) ────────────────────────────── */
.room-img-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.room-img-thumb {
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.room-img-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.room-img-thumb:hover, .room-img-thumb.active { border-color: var(--gold); }

/* Admin existing images list */
.admin-img-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.admin-img-item {
  position: relative;
  width: 80px; height: 80px;
}
.admin-img-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border);
}
.admin-img-del {
  position: absolute;
  top: -6px; right: -6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #9b2b2b;
  color: #fff;
  border: none;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
