:root {
  --gold: #c9a227;
  --gold-soft: #e2c766;
  --ink: #1b1512;
  --ink-2: #2a211c;
  --cream: #f7f2ea;
  --body: #5b524c;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--body);
  background: #fff;
}

h1, h2, h3, h4, h5 {
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  font-weight: 600;
}

.script {
  font-family: "Grand Hotel", cursive;
  color: var(--gold);
  font-size: 1.9rem;
  line-height: 1;
  display: block;
}

.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: #fff;
}

.section-cream {
  background: var(--cream);
}

.title-rule {
  width: 84px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto 0;
  position: relative;
}

.title-rule::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  left: 50%;
  top: -3px;
  margin-left: -4px;
  background: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 13px 30px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 600;
}

.btn-gold:hover { background: #b18f1c; color: #fff; }

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 0;
  padding: 12px 30px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 600;
  background: transparent;
}

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

/* Navbar */
.site-nav {
  transition: background .3s ease, padding .3s ease;
  padding: 22px 0;
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(27, 21, 18, .96);
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

.site-nav .navbar-brand {
  font-family: "Grand Hotel", cursive;
  font-size: 1.9rem;
  color: #fff;
}

.site-nav .nav-link {
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .74rem;
  font-weight: 600;
  padding: .5rem .9rem;
}

.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--gold-soft); }

.navbar-collapse.show, .navbar-collapse.collapsing { background: rgba(27, 21, 18, .98); }

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(20, 15, 12, .55), rgba(20, 15, 12, .7)), url("../img/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: .02em;
}

.booking-bar {
  background: rgba(255, 255, 255, .96);
  padding: 24px;
  margin-top: 46px;
}

.booking-bar label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .66rem;
  font-weight: 600;
  color: var(--ink);
}

.booking-bar .form-control, .booking-bar .form-select {
  border-radius: 0;
  border-color: #e3dcd2;
}

/* Cards */
.room-card { background: #fff; border: 1px solid #eee6da; }
.room-media { overflow: hidden; }
.room-media img { transition: transform .6s ease; width: 100%; height: 260px; object-fit: cover; }
.room-card:hover .room-media img { transform: scale(1.07); }
.price { color: var(--gold); font-weight: 600; }

.facility {
  border: 1px solid rgba(201, 162, 39, .35);
  padding: 34px 22px;
  text-align: center;
  height: 100%;
  transition: background .3s ease;
}

.facility:hover { background: rgba(201, 162, 39, .1); }
.facility i { color: var(--gold); font-size: 1.8rem; }

.video-banner {
  background: linear-gradient(rgba(20, 15, 12, .6), rgba(20, 15, 12, .6)), url("../img/gallery-pool.jpg") center/cover fixed no-repeat;
  color: #fff;
  text-align: center;
  padding: 130px 0;
}

.play-btn {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .2);
}

.event-tile { position: relative; overflow: hidden; }
.event-tile img { width: 100%; height: 300px; object-fit: cover; transition: transform .6s ease; }
.event-tile:hover img { transform: scale(1.08); }
.event-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(20, 15, 12, .85));
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 600;
}

.testimonial { background: #fff; padding: 34px; border: 1px solid #eee6da; height: 100%; }
.testimonial img { width: 64px; height: 64px; object-fit: cover; border-radius: 50%; }
.stars { color: var(--gold); letter-spacing: .2em; }

.gallery-filter .btn { border-radius: 0; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; }

footer { background: var(--ink-2); color: rgba(255, 255, 255, .65); }
footer h5 { color: #fff; text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; }
footer a { color: rgba(255, 255, 255, .65); text-decoration: none; }
footer a:hover { color: var(--gold-soft); }
.social-link {
  width: 38px; height: 38px; border: 1px solid rgba(255, 255, 255, .25);
  display: inline-flex; align-items: center; justify-content: center;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   ADDITIONAL STYLES — ABOUT US & CONTACT US PAGES
   Appended to the home page stylesheet. Section markers below
   match the comment markers used in about.html / contact.html.
   ============================================================ */

/* --- Navbar: solid variant used on inner pages -------------- */
.site-nav.is-solid { background: rgba(27, 21, 18, .96); }

/* --- SECTION 02: Page banner + breadcrumb (both pages) ------ */
.page-banner {
  padding: 190px 0 90px;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(20, 15, 12, .68), rgba(20, 15, 12, .78)) center/cover no-repeat;
}
.page-banner h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
}
.page-banner .script { color: var(--gold-soft); }
.page-banner-about { background-image: linear-gradient(rgba(20,15,12,.68), rgba(20,15,12,.78)), url("../img/about.jpg"); }
.page-banner-contact { background-image: linear-gradient(rgba(20,15,12,.68), rgba(20,15,12,.78)), url("../img/gallery-pool.jpg"); }

.page-crumb {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 600;
}
.page-crumb li { color: rgba(255, 255, 255, .7); }
.page-crumb li + li::before { content: "/"; margin-right: 10px; color: var(--gold); }
.page-crumb a { color: #fff; text-decoration: none; }
.page-crumb a:hover { color: var(--gold-soft); }

/* --- ABOUT SECTION 03: Our story ---------------------------- */
.about-frame { position: relative; }
.about-frame img { width: 100%; height: 480px; object-fit: cover; }
.about-frame::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-badge {
  position: absolute;
  right: -10px;
  bottom: -22px;
  background: var(--gold);
  color: #fff;
  padding: 18px 24px;
  text-align: center;
}
.about-badge strong { display: block; font-size: 1.9rem; line-height: 1; }
.about-badge span { text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; }

.about-list { list-style: none; padding: 0; margin: 26px 0 28px; display: grid; gap: 10px; }
.about-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; }
.about-list i { color: var(--gold); }

/* --- ABOUT SECTION 04: Stats band --------------------------- */
.stats-band { background: var(--ink); color: rgba(255, 255, 255, .72); padding: 64px 0; }
.stat i { color: var(--gold); font-size: 1.7rem; display: block; margin-bottom: 12px; }
.stat strong { display: block; color: #fff; font-size: 2rem; line-height: 1; }
.stat span { text-transform: uppercase; letter-spacing: .14em; font-size: .66rem; }

/* --- ABOUT SECTION 05: Value cards -------------------------- */
.value-card {
  background: #fff;
  border: 1px solid #eee6da;
  padding: 32px 24px;
  height: 100%;
  transition: transform .3s ease, border-color .3s ease;
}
.value-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.value-card i { color: var(--gold); font-size: 1.6rem; }
.value-card h3 { margin: 16px 0 10px; }

/* --- ABOUT SECTION 06: Team cards --------------------------- */
.team-card { position: relative; overflow: hidden; margin: 0; }
.team-card img { width: 100%; height: 320px; object-fit: cover; transition: transform .6s ease; }
.team-card:hover img { transform: scale(1.07); }
.team-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(20, 15, 12, .88));
  color: #fff;
}
.team-card figcaption h3 { color: #fff; }
.team-role { color: var(--gold-soft); text-transform: uppercase; letter-spacing: .14em; font-size: .64rem; font-weight: 600; }

/* --- ABOUT SECTION 07: CTA band ----------------------------- */
.cta-band {
  padding: 110px 0;
  color: rgba(255, 255, 255, .78);
  background: linear-gradient(rgba(20, 15, 12, .72), rgba(20, 15, 12, .82)), url("../img/event-celebration.jpg") center/cover no-repeat;
}
.cta-band h2 { color: #fff; }
.cta-band .script { color: var(--gold-soft); }

/* --- ABOUT SECTION 08: Partner logo slider ------------------ */
.logo-strip { background: var(--cream); padding: 40px 0; overflow: hidden; }
.logo-track { display: flex; gap: 64px; width: max-content; animation: logo-scroll 28s linear infinite; }
.logo-item {
  font-family: "Grand Hotel", cursive;
  font-size: 1.5rem;
  color: var(--ink);
  opacity: .55;
  white-space: nowrap;
}
.logo-strip:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }

/* --- CONTACT SECTION 03: Info cards ------------------------- */
.contact-card {
  border: 1px solid rgba(201, 162, 39, .35);
  padding: 34px 26px;
  height: 100%;
  text-align: center;
  transition: background .3s ease;
}
.contact-card:hover { background: rgba(201, 162, 39, .1); }
.contact-card i { color: var(--gold); font-size: 1.7rem; }
.contact-card h3 { margin: 16px 0 10px; }

/* --- CONTACT SECTION 04: Enquiry form + hours panel --------- */
.contact-form .form-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .66rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-form .form-control,
.contact-form .form-select { border-radius: 0; border-color: #e3dcd2; padding: .7rem .9rem; }
.contact-form .form-control:focus,
.contact-form .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(201, 162, 39, .15); }

.hours-panel { background: var(--ink); color: rgba(255, 255, 255, .72); padding: 40px 34px; height: 100%; }
.hours-panel .script { color: var(--gold-soft); }
.hours-list { list-style: none; padding: 0; margin: 22px 0 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .18);
  font-size: .9rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li span:last-child { color: var(--gold-soft); }

/* --- CONTACT SECTION 05: Map -------------------------------- */
.map-section { line-height: 0; }
.map-section iframe { width: 100%; height: 420px; border: 0; filter: grayscale(.25); }

/* --- Responsive tweaks for both pages ---------------------- */
@media (max-width: 991.98px) {
  .page-banner { padding: 150px 0 70px; }
  .about-frame img { height: 380px; }
  .about-frame::after { display: none; }
  .about-badge { right: 16px; }
}

/* ============================================================
   ADDITIONAL STYLES — ROOMS & ROOM DETAILS PAGES
   Section markers below match the comments in rooms.html /
   room_details.html.
   ============================================================ */

/* --- SECTION 02: Page banners for the new pages ------------- */
.page-banner-rooms { background-image: linear-gradient(rgba(20,15,12,.68), rgba(20,15,12,.78)), url("../img/room-3.jpg"); }
.page-banner-room-details { background-image: linear-gradient(rgba(20,15,12,.68), rgba(20,15,12,.78)), url("../img/room-2.jpg"); }

/* --- ROOMS SECTION 03: Availability strip ------------------- */
.rooms-availability { background: var(--cream); padding: 34px 0; border-bottom: 1px solid #eee6da; }
.rooms-availability .form-label {
  text-transform: uppercase; letter-spacing: .12em; font-size: .66rem;
  font-weight: 600; color: var(--ink);
}
.rooms-availability .form-control,
.rooms-availability .form-select { border-radius: 0; border-color: #e3dcd2; }
.rooms-availability .form-control:focus,
.rooms-availability .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(201,162,39,.15); }
.availability-note { color: var(--gold); font-weight: 600; }

/* --- ROOMS SECTION 04: Room cards, tags, meta, pager -------- */
.room-tag {
  position: absolute; left: 0; bottom: 0;
  background: var(--gold); color: #fff;
  padding: 8px 16px;
  text-transform: uppercase; letter-spacing: .1em;
  font-size: .68rem; font-weight: 600;
}
.room-meta {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  border-top: 1px dashed #e3dcd2; padding-top: 14px;
  font-size: .8rem;
}
.room-meta li { display: flex; align-items: center; gap: 7px; }
.room-meta i { color: var(--gold); }

.rooms-pager .page-link {
  border-radius: 0; border-color: #eee6da; color: var(--ink);
  padding: .6rem 1rem; font-weight: 600; font-size: .82rem;
}
.rooms-pager .page-link:hover { background: rgba(201,162,39,.12); color: var(--ink); }
.rooms-pager .page-item.active .page-link { background: var(--gold); border-color: var(--gold); color: #fff; }

/* --- ROOMS SECTION 05: Included-with-every-room tiles ------- */
.include-item {
  background: #fff; border: 1px solid #eee6da;
  padding: 30px 18px; text-align: center; height: 100%;
  transition: border-color .3s ease, transform .3s ease;
}
.include-item:hover { border-color: var(--gold); transform: translateY(-5px); }
.include-item i { color: var(--gold); font-size: 1.7rem; }

/* --- DETAILS SECTION 03: Hero image + thumbnail strip ------- */
.room-hero img { width: 100%; height: 520px; object-fit: cover; }
.room-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.room-thumb { padding: 0; border: 1px solid #eee6da; background: none; line-height: 0; cursor: pointer; }
.room-thumb img { width: 100%; height: 110px; object-fit: cover; opacity: .75; transition: opacity .3s ease; }
.room-thumb:hover img { opacity: 1; }
.room-thumb.is-active { border-color: var(--gold); }
.room-thumb.is-active img { opacity: 1; }

/* --- DETAILS SECTION 04a: Spec row ------------------------- */
.room-spec {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 12px 34px;
}
.room-spec li { display: flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 500; color: var(--ink); }
.room-spec i { color: var(--gold); font-size: 1.1rem; }

/* --- DETAILS SECTION 04b: Amenities ------------------------ */
.amenity {
  border: 1px solid #eee6da; padding: 14px 16px; height: 100%;
  display: flex; align-items: center; gap: 10px; font-size: .86rem;
  transition: background .3s ease;
}
.amenity:hover { background: rgba(201,162,39,.1); }
.amenity i { color: var(--gold); font-size: 1.05rem; }

/* --- DETAILS SECTION 04c: House rules --------------------- */
.rules-list { list-style: none; padding: 0; margin: 0; }
.rules-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 0; border-bottom: 1px dashed #e3dcd2; font-size: .9rem;
}
.rules-list li:last-child { border-bottom: 0; }
.rules-list li span:first-child { color: var(--ink); font-weight: 600; }

/* --- DETAILS SECTION 04d: Booking panel ------------------- */
.booking-panel {
  background: var(--cream); border: 1px solid #eee6da;
  padding: 32px 26px; position: sticky; top: 96px;
}
.booking-price { font-family: "Poppins", sans-serif; color: var(--gold); font-size: 2.1rem; font-weight: 600; line-height: 1; }
.booking-price span { font-size: .8rem; color: var(--body); font-weight: 400; }
.booking-panel .form-label {
  text-transform: uppercase; letter-spacing: .12em; font-size: .66rem;
  font-weight: 600; color: var(--ink);
}
.booking-panel .form-control,
.booking-panel .form-select { border-radius: 0; border-color: #e3dcd2; }
.booking-panel .form-control:focus,
.booking-panel .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(201,162,39,.15); }
.booking-note { color: var(--gold); font-weight: 600; }

/* --- Responsive tweaks for the room pages ----------------- */
@media (max-width: 991.98px) {
  .room-hero img { height: 340px; }
  .booking-panel { position: static; }
}
@media (max-width: 575.98px) {
  .room-thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ADDITIONAL STYLES — BANQUET HALL & SERVICES PAGES
   Section markers below match the comments in banquet.html /
   services.html.
   ============================================================ */

/* --- SECTION 02: Page banners for the new pages ------------- */
.page-banner-banquet { background-image: linear-gradient(rgba(20,15,12,.68), rgba(20,15,12,.78)), url("../img/event-wedding.jpg"); }
.page-banner-services { background-image: linear-gradient(rgba(20,15,12,.68), rgba(20,15,12,.78)), url("../img/gallery-chef.jpg"); }

/* --- BANQUET SECTION 03: Intro bullet points ---------------- */
.banquet-points { list-style: none; padding: 0; margin: 26px 0 28px; display: grid; gap: 10px; }
.banquet-points li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; }
.banquet-points i { color: var(--gold); }

/* --- BANQUET SECTION 04: Hall cards ------------------------- */
.hall-card { background: #fff; border: 1px solid #eee6da; transition: border-color .3s ease, transform .3s ease; }
.hall-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.hall-media { position: relative; overflow: hidden; }
.hall-media img { width: 100%; height: 240px; object-fit: cover; transition: transform .6s ease; }
.hall-card:hover .hall-media img { transform: scale(1.07); }
.hall-size {
  position: absolute; right: 0; top: 0;
  background: var(--gold); color: #fff;
  padding: 7px 14px;
  letter-spacing: .1em; font-size: .68rem; font-weight: 600;
}
.hall-spec { list-style: none; padding: 0; margin: 14px 0 0; border-top: 1px dashed #e3dcd2; }
.hall-spec li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-bottom: 1px dashed #e3dcd2; font-size: .85rem;
}
.hall-spec li:last-child { border-bottom: 0; }
.hall-spec li span:last-child { color: var(--gold); font-weight: 600; }

/* --- BANQUET SECTION 05: Capacity table -------------------- */
.capacity-table { border: 1px solid #eee6da; }
.capacity-table thead th {
  background: var(--ink); color: #fff;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: .68rem; font-weight: 600;
  padding: 14px 16px; border: 0;
}
.capacity-table tbody th, .capacity-table tbody td { padding: 14px 16px; font-size: .9rem; }
.capacity-table tbody th { color: var(--ink); font-weight: 600; }
.capacity-table tbody tr:nth-child(even) { background: var(--cream); }
.capacity-table caption { caption-side: bottom; color: var(--body); }

/* --- BANQUET SECTION 06: Included feature tiles (on dark) --- */
.banquet-feature {
  border: 1px solid rgba(201,162,39,.35);
  padding: 28px 18px; text-align: center; height: 100%;
  transition: background .3s ease;
}
.banquet-feature:hover { background: rgba(201,162,39,.12); }
.banquet-feature i { color: var(--gold); font-size: 1.7rem; }
.banquet-feature h3 { color: #fff; }

/* --- BANQUET SECTION 07: Package cards --------------------- */
.package-card {
  position: relative;
  background: #fff; border: 1px solid #eee6da;
  padding: 34px 28px;
  display: flex; flex-direction: column;
  transition: border-color .3s ease, transform .3s ease;
}
.package-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.package-card-featured { border-color: var(--gold); box-shadow: 0 18px 40px rgba(27,21,18,.1); }
.package-flag {
  position: absolute; right: 0; top: 0;
  background: var(--gold); color: #fff;
  padding: 6px 14px;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: .62rem; font-weight: 600;
}
.package-price { color: var(--gold); font-size: 2.1rem; font-weight: 600; line-height: 1; margin: 10px 0 20px; }
.package-price span { font-size: .78rem; color: var(--body); font-weight: 400; }
.package-list { list-style: none; padding: 0; margin: 0 0 auto; display: grid; gap: 10px; }
.package-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; }
.package-list i { color: var(--gold); }

/* --- BANQUET SECTION 08: Booking steps --------------------- */
.step-card { background: #fff; border: 1px solid #eee6da; padding: 30px 24px; position: relative; }
.step-num {
  font-family: "Grand Hotel", cursive; color: var(--gold);
  font-size: 2.2rem; line-height: 1; display: block;
}
.step-card h3 { color: var(--ink); }

/* --- BANQUET SECTION 09: FAQ accordion --------------------- */
.banquet-accordion .accordion-item { border: 1px solid #eee6da; border-radius: 0; margin-bottom: 12px; }
.banquet-accordion .accordion-button {
  border-radius: 0; font-weight: 600; color: var(--ink);
  font-size: .95rem; background: #fff; box-shadow: none;
}
.banquet-accordion .accordion-button:not(.collapsed) { background: var(--cream); color: var(--ink); }
.banquet-accordion .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(201,162,39,.15); border-color: var(--gold); }
.banquet-accordion .accordion-body { font-size: .9rem; }

/* --- BANQUET SECTION 10: Enquiry form note ----------------- */
.form-note { color: var(--gold); font-weight: 600; }

/* --- SERVICES SECTION 04: Service cards -------------------- */
.service-card {
  background: #fff; border: 1px solid #eee6da;
  padding: 34px 26px;
  transition: border-color .3s ease, transform .3s ease;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.service-icon {
  width: 58px; height: 58px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,162,39,.45);
  color: var(--gold); font-size: 1.5rem;
}
.service-card:hover .service-icon { background: rgba(201,162,39,.12); }
.service-card a { color: var(--gold); }

/* --- SERVICES SECTION 05: Dining split band ---------------- */
.service-split { background: var(--cream); }
.service-split-media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; display: block; }
.service-split-body { display: flex; align-items: center; }
.service-split-inner { padding: 80px 6vw; max-width: 640px; }
.service-list { list-style: none; padding: 0; margin: 24px 0 26px; display: grid; gap: 10px; }
.service-list li { display: flex; gap: 10px; align-items: center; font-size: .9rem; }
.service-list i { color: var(--gold); }

/* --- SERVICES SECTION 06: Service hours lists -------------- */
.service-hours-list { list-style: none; padding: 0; margin: 0; }
.service-hours-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px dashed #d9cfc0; font-size: .92rem;
}
.service-hours-list li:last-child { border-bottom: 0; }
.service-hours-list li span:first-child { color: var(--ink); font-weight: 600; }
.service-hours-list li span:last-child { color: var(--gold); }

/* --- SERVICES SECTION 07: Add-on price rows ---------------- */
.addon-row {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px dashed #e3dcd2; font-size: .9rem;
}
.addon-row strong { color: var(--gold); }

/* --- Responsive tweaks for both pages --------------------- */
@media (max-width: 991.98px) {
  .service-split-inner { padding: 60px 24px; }
  .service-split-media img { min-height: 300px; }
}

/* ============================================================
   ADDITIONAL STYLES — GALLERY PAGE
   ============================================================ */

/* --- GALLERY SECTION 02: Page banner ----------------------- */
.page-banner-gallery { background-image: linear-gradient(rgba(20,15,12,.68), rgba(20,15,12,.78)), url("../img/gallery-pool.jpg"); }

/* --- GALLERY SECTION 03: Large filter buttons -------------- */
.gallery-filter-lg .btn { padding: 9px 22px; font-size: .72rem; }

/* --- GALLERY SECTION 04: Tiles with caption overlay -------- */
.gallery-tile { position: relative; overflow: hidden; margin: 0; cursor: pointer; }
.gallery-tile img {
  width: 100%; height: 260px; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile figcaption {
  position: absolute; inset: auto 0 0 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(20,15,12,.85));
  color: #fff; font-size: .85rem; font-weight: 500;
  opacity: 0; transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}
.gallery-tile:hover figcaption,
.gallery-tile:focus-within figcaption { opacity: 1; transform: translateY(0); }
.gallery-tile figcaption i { color: var(--gold); }

/* --- GALLERY SECTION 05: Lightbox modal -------------------- */
.gallery-lightbox .modal-content {
  background: #14100c; border: 0; border-radius: 0; padding: 14px;
}
.gallery-lightbox img { width: 100%; height: auto; max-height: 78vh; object-fit: contain; }
.gallery-lightbox .lightbox-caption {
  color: #fff; text-align: center; padding-top: 12px;
  font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
}
.gallery-lightbox .lightbox-close { position: absolute; top: 12px; right: 12px; z-index: 2; }

/* --- GALLERY: responsive tweaks ---------------------------- */
@media (max-width: 575.98px) {
  .gallery-tile img { height: 220px; }
  .gallery-tile figcaption { opacity: 1; transform: none; }
}

/* --- GALLERY SECTION 03b: Active filter button keeps gold --- */
.gallery-filter .btn-gold,
.gallery-filter .btn-gold.active,
.gallery-filter .btn-gold:focus {
  background-color: var(--gold); border-color: var(--gold); color: #fff;
}
