:root {
  /* -- Warm & elegant palette (refreshed brand colors) -- */
  --ink: #16323A;            /* deep teal-charcoal: headings, dark text */
  --teal: #1D5A6E;           /* primary brand teal (was #174B5F/#2780A3) */
  --teal-deep: #102934;      /* footer / quote section base */
  --teal-soft: #EAF1F1;      /* light teal tint for alternating sections */
  --gold: #C79A4B;           /* warm accent — rules, quote marks, price */
  --gold-soft: #F1E3C4;      /* light gold tint */
  --sage: #4B8A3F;           /* refined green (was #45A639) */
  --coral: #D9605C;          /* refined CTA red (was #E64B50) */
  --coral-deep: #B84440;     /* CTA hover */
  --cream: #FBF8F2;          /* warm off-white page background */
  --paper: #FFFFFF;
  --text: #3E4A4D;           /* body copy */
  --text-muted: #718084;
  --border: #E7E1D4;         /* warm neutral border */
  --shadow-soft: 0 10px 30px rgba(22, 50, 58, .08);
  --shadow-lift: 0 20px 45px rgba(22, 50, 58, .14);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--cream);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

h1 { font-weight: 800; }

p {
  line-height: 1.75;
}

a {
  color: var(--teal);
  text-decoration: none;
}
a:hover {
  color: var(--ink);
}

::selection {
  background: var(--gold-soft);
  color: var(--ink);
}

.text-brr {
  color: var(--teal) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.lede {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  color: var(--teal);
}

/* ---------- Decorative rule ---------- */
.rule-gold {
  display: inline-block;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  margin-bottom: 1.1rem;
}
.text-center .rule-gold {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn-brr {
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  border: 1px solid transparent;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 999px;
  padding: 13px 32px;
  box-shadow: 0 10px 24px rgba(184, 68, 64, .28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-brr:hover, .btn-brr:focus {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(184, 68, 64, .34);
}

.btn-brr-outline {
  background-color: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 999px;
  padding: 11px 30px;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.btn-brr-outline:hover {
  background-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.btn-brr-ghost {
  background: rgba(255, 255, 255, .14);
  border: 1.5px solid rgba(255, 255, 255, .65);
  color: #fff;
  backdrop-filter: blur(6px);
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 999px;
  padding: 13px 34px;
  transition: background-color .2s ease, transform .2s ease;
}
.btn-brr-ghost:hover {
  background: rgba(255, 255, 255, .28);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(251, 248, 242, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(22, 50, 58, .06);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(251, 248, 242, .96);
  box-shadow: 0 8px 24px rgba(22, 50, 58, .08);
}

.site-header .navbar-brand img {
  height: 50px;
  width: auto;
}

.site-header .nav-link {
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  color: var(--ink);
  font-size: .95rem;
  padding: .5rem .2rem !important;
  margin: 0 .7rem;
}
.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .1rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}
.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--teal);
}
.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  width: 100%;
}

.nav-icon-link {
  position: relative;
  color: var(--ink) !important;
  font-size: 1.05rem;
  margin: 0 .35rem;
}
.nav-icon-link:hover {
  color: var(--teal) !important;
}

/* ---------- Hero ---------- */
.hero-carousel img {
  width: 100%;
  height: 82vh;
  height: 82dvh;
  min-height: 420px;
  object-fit: cover;
}
.hero-carousel .carousel-item.active img {
  animation: heroKenBurns 9s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-carousel .carousel-item.active img {
    animation: none;
  }
}
.hero-scroll-cue {
  display: inline-block;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, .8);
  font-size: 1.2rem;
  animation: heroScrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll-cue:hover {
  color: #fff;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue {
    animation: none;
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,41,52,.15) 0%, rgba(16,41,52,.35) 55%, rgba(16,41,52,.75) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 4.5rem;
  text-align: center;
}
.hero-overlay .hero-inner {
  animation: heroRise .9s ease both;
  max-width: 720px;
  padding: 0 1.25rem;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.hero-title {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  margin-bottom: .75rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}
.hero-subtitle {
  color: rgba(255, 255, 255, .92);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 1.75rem;
}
.hero-actions {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Hero booking search ---------- */
.hero-search {
  position: relative;
  z-index: 2;
  margin-top: -3.25rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: stretch;
}
.hero-search-field {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.25rem;
  border-right: 1px solid var(--border);
}
.hero-search-field:first-child {
  padding-left: .25rem;
}
.hero-search-field:last-of-type {
  border-right: none;
}
.hero-search-field label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: .3rem;
}
.hero-search-field input,
.hero-search-field select {
  border: none;
  outline: none;
  background: transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
  padding: 0;
  width: 100%;
  text-align: left;
}
.hero-search-field input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
}
.hero-search-field input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}
.hero-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0 1.75rem;
  margin-left: 1.1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(184, 68, 64, .28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.hero-search-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(184, 68, 64, .34);
}
@media (max-width: 991px) {
  .hero-search {
    flex-wrap: wrap;
    margin-top: -2rem;
    padding: 1.25rem;
    row-gap: 1.1rem;
  }
  .hero-search-field {
    flex: 1 1 45%;
    border-right: none;
    padding: 0 .5rem;
  }
  .hero-search-field:first-child {
    padding-left: .5rem;
  }
  .hero-search-btn {
    flex: 1 1 100%;
    margin-left: 0;
    padding: .9rem;
  }
}
@media (max-width: 575px) {
  .hero-search-field {
    flex: 1 1 45%;
  }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ---------- Sections ---------- */
.section-py {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.bg-light-brr {
  background-color: var(--teal-soft);
}
.section-frame {
  position: relative;
  padding: 16px;
}
.section-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold-soft);
  border-radius: calc(var(--radius-lg) + 10px);
  pointer-events: none;
  z-index: 0;
}
.section-img {
  position: relative;
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.quote-section {
  background: linear-gradient(135deg, var(--teal-deep), var(--ink));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -2.5rem;
  left: -1rem;
  font-size: 14rem;
  color: rgba(255, 255, 255, .05);
  line-height: 1;
  pointer-events: none;
}
.quote-section::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(199, 154, 75, .18), transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}
.quote-section .quote-mark {
  color: var(--gold);
  font-size: 2.25rem;
  opacity: .85;
  margin-bottom: .75rem;
}
.quote-section .row {
  position: relative;
  z-index: 1;
}
.quote-section h4, .quote-section p {
  color: #fff;
}
.quote-avatar {
  position: relative;
}
.quote-avatar img {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(199, 154, 75, .18);
}
.quote-avatar::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(199, 154, 75, .35);
  animation: quoteRingPulse 3s ease-out infinite;
}
@keyframes quoteRingPulse {
  0% { opacity: .8; transform: translate(-50%, -50%) scale(.82); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.18); }
}
@media (prefers-reduced-motion: reduce) {
  .quote-avatar::before {
    animation: none;
    opacity: 0;
  }
}

/* ---------- Product / Room cards ---------- */
.room-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  height: 100%;
  box-shadow: var(--shadow-soft);
}
.room-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}
.room-card .room-card-img {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--border);
}
.room-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-card:hover img {
  transform: scale(1.06);
}
.room-card-badge {
  position: absolute;
  top: .85rem;
  left: .85rem;
  background: rgba(16, 41, 52, .68);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 999px;
}
.room-card .price {
  color: var(--teal);
  font-weight: 700;
  font-family: "Fraunces", serif;
  display: inline-block;
  background: var(--gold-soft);
  padding: .2rem .85rem;
  border-radius: 999px;
  font-size: .85rem;
  white-space: nowrap;
}
.room-card-desc {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.55;
}
.room-card-feature {
  color: var(--text);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 0;
}
.room-card-feature i {
  color: var(--sage);
  margin-right: .4rem;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: #fff;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,41,52,.82), rgba(29,90,110,.68));
}
.cta-banner .cta-content {
  position: relative;
  z-index: 1;
}
.cta-banner h2, .cta-banner h5, .cta-banner p {
  color: #fff;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

@media (max-width: 767px) {
  .cta-banner {
    background-attachment: scroll;
  }
}

/* ---------- Page header banner (interior pages) ---------- */
.page-header-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,41,52,.72), rgba(29,90,110,.55));
}
.page-header-banner .page-header-inner {
  position: relative;
  z-index: 1;
}
.page-header-banner h1 {
  color: #fff;
}

/* ---------- Videos ---------- */
.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: box-shadow .25s ease, transform .25s ease;
}
.video-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}
.video-facade {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: var(--teal-deep);
}
.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 41, 52, .05), rgba(16, 41, 52, .5));
}
.video-card:hover .video-facade img {
  transform: scale(1.06);
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  box-shadow: 0 8px 20px rgba(16, 41, 52, .28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-play-btn i {
  margin-left: 3px;
}
.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 10px 24px rgba(16, 41, 52, .34);
}
.video-duration {
  position: absolute;
  right: .65rem;
  bottom: .65rem;
  z-index: 1;
  background: rgba(16, 41, 52, .82);
  color: #fff;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: .2rem .5rem;
  border-radius: 5px;
  font-variant-numeric: tabular-nums;
}
.video-card-body {
  background: var(--paper);
  padding: 1.1rem 1.25rem 1.3rem;
}
.video-card-title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: .4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card-meta {
  color: var(--text-muted);
  font-size: .85rem;
}

/* ---------- Section header: eyebrow + serif heading ---------- */
.section-eyebrow {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: .5rem;
}
.section-heading-serif {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
}
.section-heading-serif em {
  font-style: italic;
  color: var(--coral-deep);
}
.btn-dark-pill {
  background: var(--ink);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 999px;
  padding: .7rem 1.5rem;
  white-space: nowrap;
  transition: background-color .2s ease, transform .2s ease;
}
.btn-dark-pill:hover {
  background: var(--teal-deep);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Gallery ---------- */
.gallery-grid .gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.gallery-grid .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(16,41,52,.55) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-grid .gallery-item:hover::after {
  opacity: 1;
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.08);
}

/* ---------- Video embeds ---------- */
.video-embed {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--teal-deep), var(--ink));
  color: rgba(255,255,255,.75);
  padding: 2.75rem 0;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage));
}
.site-footer a {
  color: rgba(255,255,255,.85);
}
.site-footer a:hover {
  color: #fff;
}

/* ---------- Forms ---------- */
.form-label {
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .65rem .9rem;
  background-color: var(--paper);
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 .2rem rgba(29, 90, 110, .12);
}

.card-modern {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ---------- Listing detail page ---------- */
.listing-eyebrow {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .35rem;
}
.btn-share {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  transition: border-color .2s ease, background-color .2s ease;
}
.btn-share:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--ink);
}
.listing-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: .5rem;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.listing-hero-main {
  grid-row: 1 / span 2;
  overflow: hidden;
}
.listing-hero-thumb {
  position: relative;
  overflow: hidden;
}
.listing-hero-main img,
.listing-hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.listing-hero-main:hover img,
.listing-hero-thumb:hover img {
  transform: scale(1.05);
}
.listing-hero-gallery-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: rgba(16, 41, 52, .55);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: .82rem;
  text-align: center;
  padding: .5rem;
  transition: background-color .2s ease;
}
.listing-hero-gallery-link:hover {
  color: #fff;
  background: rgba(16, 41, 52, .7);
}
@media (max-width: 767px) {
  .listing-hero {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px repeat(2, 110px);
    height: auto;
  }
  .listing-hero-main {
    grid-column: 1 / span 2;
    grid-row: 1;
  }
}
.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.listing-meta span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}
.listing-meta i {
  color: var(--sage);
}
.listing-divider {
  border-color: var(--border);
  margin: 1.5rem 0;
}
.booking-card {
  position: sticky;
  top: 6.5rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 1.75rem;
}
.booking-card-price {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.booking-card-price span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: .85rem;
  color: var(--text-muted);
}
.booking-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 420px) {
  .booking-card-grid {
    grid-template-columns: 1fr;
  }
}

.auth-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 2.75rem;
}

@media (max-width: 575px) {
  .auth-card {
    padding: 1.75rem;
  }
}

/* ---------- Tables (cart / checkout) ---------- */
.table-modern {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.table-modern thead th {
  background: var(--teal-soft);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: none;
  padding: 1rem .9rem;
}
.table-modern td {
  padding: 1rem .9rem;
  vertical-align: middle;
  border-color: var(--border);
}
.table-modern tfoot td {
  border-top: 2px solid var(--border);
  background: var(--teal-soft);
}

/* ---------- Cart / Account ---------- */
.account-nav.list-group .list-group-item {
  border: none;
  border-radius: var(--radius-sm) !important;
  margin-bottom: .35rem;
  font-weight: 500;
  color: var(--text);
}
.account-nav.list-group .list-group-item.active {
  background-color: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.account-nav.list-group .list-group-item:not(.active):hover {
  background-color: var(--teal-soft);
}

/* ---------- Misc ---------- */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  flex-shrink: 0;
}

.offer-list {
  list-style: none;
  padding-left: 0;
}
.offer-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: .65rem;
}
.offer-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: .2rem;
  color: var(--sage);
  font-size: .8rem;
}

@media (max-width: 767px) {
  .hero-carousel img {
    height: 48vh;
    height: 48dvh;
    min-height: 340px;
  }
  .hero-overlay {
    align-items: center;
    padding-top: 2.25rem;
    padding-bottom: .9rem;
  }
  .hero-eyebrow {
    margin-bottom: .5rem;
    padding: .28rem .75rem;
    font-size: .64rem;
  }
  .hero-title {
    font-size: 1.65rem;
    margin-bottom: .4rem;
  }
  .hero-subtitle {
    font-size: .88rem;
    line-height: 1.35;
    margin-bottom: .8rem;
  }
  .hero-actions {
    gap: .45rem;
  }
  .hero-actions .btn {
    padding-top: .5rem;
    padding-bottom: .5rem;
    font-size: .88rem;
  }
  .hero-scroll-cue {
    display: none;
  }
  .hero-search {
    margin-top: -1.2rem;
    padding: .7rem .8rem;
    row-gap: .45rem;
  }
  .hero-search-field label {
    margin-bottom: .1rem;
    font-size: .62rem;
  }
  .hero-search-field input,
  .hero-search-field select {
    font-size: .88rem;
  }
  .hero-search-btn {
    padding: .7rem;
    font-size: .92rem;
  }
  .site-header .navbar-brand img {
    height: 40px;
  }
  .section-py {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
  .section-frame {
    padding: 0;
  }
  .section-frame::before {
    display: none;
  }
}

/* Per-listing photo slider inside each Room & Hall card */
.product-mini-carousel,
.product-mini-carousel .carousel-inner,
.product-mini-carousel .carousel-item {
  height: 100%;
}
.product-mini-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}
.product-mini-carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(16, 41, 52, .55);
  color: #fff;
  font-size: .82rem;
  transition: background-color .2s ease;
}
.product-mini-carousel .carousel-control-prev,
.product-mini-carousel .carousel-control-next {
  width: auto;
  opacity: 1;
}
.product-mini-carousel .carousel-control-prev {
  left: 8px;
}
.product-mini-carousel .carousel-control-next {
  right: 8px;
}
.product-mini-carousel-arrow:hover {
  background: rgba(16, 41, 52, .8);
}
.product-mini-carousel-indicators {
  margin-bottom: .6rem;
}
.product-mini-carousel-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .55);
  opacity: 1;
  margin: 0 3px;
}
.product-mini-carousel-indicators .active {
  background-color: #fff;
}
