:root {
  --bs-primary: #0c2a44;
  --accent: #c8a96a;
  --accent-dark: #a98a4d;
  --ink: #1a1a1a;
  --muted: #6c757d;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
}

h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4, .navbar-brand {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: .2px;
}

.text-accent { color: var(--accent) !important; }
.bg-accent { background: var(--accent) !important; color: #fff; }
.bg-ink { background: var(--ink) !important; color: #fff; }

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}
.btn-outline-accent {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-accent:hover {
  background-color: var(--accent);
  color: #fff;
}

.navbar {
  transition: background-color .3s ease, box-shadow .3s ease;
}
.navbar .navbar-brand { font-weight: 700; font-size: 1.4rem; }
.navbar .nav-link { font-weight: 500; letter-spacing: .3px; }
.navbar.scrolled { background-color: rgba(12,42,68,.95) !important; box-shadow: 0 2px 12px rgba(0,0,0,.15); }

.hero-carousel .carousel-item {
  height: 92vh;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-carousel .carousel-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
}
.hero-carousel .carousel-caption {
  bottom: auto; top: 50%; transform: translateY(-50%);
  text-align: left; left: 10%; right: 10%;
}
.hero-carousel h1 { font-size: clamp(2rem, 5vw, 4.2rem); color: #fff; }
.hero-carousel p.lead { color: #f4f4f4; max-width: 640px; }

.section { padding: 5rem 0; }
.section-tight { padding: 3rem 0; }
.section-title { margin-bottom: 2.5rem; }
.section-title .eyebrow {
  text-transform: uppercase; letter-spacing: 4px; color: var(--accent);
  font-size: .8rem; font-weight: 600;
}
.section-title h2 { font-size: 2.4rem; }

.room-card, .service-card, .post-card {
  border: none; border-radius: 6px; overflow: hidden;
  background: #fff; box-shadow: 0 6px 28px rgba(12,42,68,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.room-card:hover, .service-card:hover, .post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(12,42,68,.14);
}
.room-card .card-img-top, .post-card .card-img-top { height: 240px; object-fit: cover; }
.service-card .icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,169,106,.12); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1rem;
}

.gallery-grid img { width: 100%; height: 240px; object-fit: cover; border-radius: 4px; }
.gallery-grid a { display: block; overflow: hidden; }
.gallery-grid a img { transition: transform .5s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }

.testimonial {
  background: #fff; border-radius: 6px; padding: 2rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
}
.testimonial .stars { color: var(--accent); }
.testimonial .avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }

footer.site-footer { background: #0a1f33; color: #cfd6df; }
footer.site-footer a { color: #cfd6df; text-decoration: none; }
footer.site-footer a:hover { color: var(--accent); }
footer.site-footer h5 { color: #fff; font-family: 'Playfair Display', serif; }

.booking-widget {
  background: rgba(255,255,255,.96);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
}

.page-header {
  background: linear-gradient(rgba(12,42,68,.7), rgba(12,42,68,.85)), url('https://images.unsplash.com/photo-1501117716987-c8e1ecb2100a?auto=format&fit=crop&w=1600&q=70') center/cover no-repeat;
  color: #fff; padding: 7rem 0 4rem; margin-bottom: 3rem;
}
.page-header h1 { font-size: 3rem; }

.price-badge {
  background: var(--accent); color: #fff; padding: .35rem .75rem; border-radius: 4px; font-weight: 600;
}

.amenity-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .7rem; border-radius: 999px;
  background: rgba(12,42,68,.06); color: var(--bs-primary);
  font-size: .85rem; margin: .15rem;
}
