/* ============================================================
   Mallikarjuna Sadan — brand overlay on top of Almaris theme.
   Loaded LAST so it wins specificity battles against scheme-01.css.
   ============================================================ */

:root {
  --ms-primary: #B8372C;       /* saffron-red */
  --ms-primary-dark: #6E1F18;  /* deep maroon */
  --ms-gold: #8A6A2A;
  --ms-gold-soft: #C9A75D;
  --ms-cream: #FAF6EC;
  --ms-ink: #1F1108;
  --ms-mute: #5b5044;
}

/* ---------- Typography ---------- */
body, p, .lead, .menu-item, .btn-main, input, textarea, select {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  color: var(--ms-ink);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.subtitle, .ht-heading {
  font-family: 'Cinzel', 'Playfair Display', serif !important;
  letter-spacing: 0.02em;
  color: var(--ms-primary-dark);
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--ms-primary);
}

/* ---------- Color overrides for Almaris's primary "id-color" hooks ---------- */
.id-color, .id-color-2 { color: var(--ms-primary) !important; }

a { color: var(--ms-primary); }
a:hover { color: var(--ms-primary-dark); }

/* Buttons */
.btn-main {
  background: var(--ms-primary-dark) !important;
  color: var(--ms-cream) !important;
  border: 1px solid var(--ms-primary-dark) !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 4px;
  transition: all .25s ease;
}
.btn-main:hover, .btn-main:focus {
  background: var(--ms-primary) !important;
  border-color: var(--ms-primary) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.btn-main.btn-line {
  background: transparent !important;
  color: var(--ms-cream) !important;
  border: 1px solid var(--ms-cream) !important;
}
.btn-main.btn-line:hover { background: var(--ms-cream) !important; color: var(--ms-primary-dark) !important; }

/* ============================================================
   TOP BAR — pilgrim notices ticker + quick contact
   ============================================================ */
.ms-topbar {
  position: relative;
  z-index: 1100;
  background: linear-gradient(90deg, var(--ms-primary-dark) 0%, var(--ms-primary) 100%);
  color: var(--ms-cream);
  font-size: 13px;
  border-bottom: 1px solid rgba(217, 184, 112, 0.18);
  overflow: hidden;
}
.ms-topbar-wrap {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 48px);
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 38px;
}

/* Marquee zone */
.ms-topbar-marquee {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  position: relative;
}
.ms-topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 0 14px 0 0;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ms-gold-soft);
  font-weight: 600;
  border-right: 1px solid rgba(255, 250, 240, 0.18);
}
.ms-topbar-tag svg { color: var(--ms-gold-soft); }

.ms-topbar-track {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 80px), transparent 100%);
}
.ms-topbar-list {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  animation: ms-topbar-slide 48s linear infinite;
  will-change: transform;
}
.ms-topbar-list li {
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  color: rgba(255, 250, 240, 0.94);
  font-size: 13px;
  letter-spacing: 0.01em;
}
.ms-topbar-dot {
  color: var(--ms-gold-soft);
  margin-right: 12px;
  font-size: 8px;
  display: inline-block;
  transform: translateY(-1px);
}
.ms-topbar-marquee:hover .ms-topbar-list { animation-play-state: paused; }

@keyframes ms-topbar-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Right-side contact strip */
.ms-topbar-meta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 250, 240, 0.18);
}
.ms-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 250, 240, 0.92) !important;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0 12px;
  transition: color .25s ease;
  white-space: nowrap;
}
.ms-topbar-link:hover { color: var(--ms-gold-soft) !important; }
.ms-topbar-link svg { opacity: 0.85; }
.ms-topbar-link-wa { color: var(--ms-gold-soft) !important; }
.ms-topbar-link-wa:hover { color: #fff !important; }
.ms-topbar-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 250, 240, 0.18);
}

/* Top bar responsive */
@media (max-width: 1199px) {
  .ms-topbar-link-mail { display: none; }
  .ms-topbar-meta .ms-topbar-sep:nth-of-type(1) { display: none; }
}
@media (max-width: 991px) {
  .ms-topbar-tag { display: none; }
  .ms-topbar-meta { padding-left: 12px; }
  .ms-topbar-link { padding: 0 8px; font-size: 11.5px; }
}
@media (max-width: 575px) {
  .ms-topbar-wrap { height: 34px; padding: 0 14px; }
  .ms-topbar-meta { display: none; }
  .ms-topbar-list li { font-size: 12px; padding: 0 16px; }
}

/* ============================================================
   HEADER — full-width, polished, brand-aligned
   ============================================================ */
header.ms-header,
header.ms-header.transparent {
  background: rgba(255, 252, 246, 0.94) !important;
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(110, 31, 24, 0.08);
  box-shadow: 0 1px 0 rgba(110, 31, 24, 0.04), 0 12px 24px -20px rgba(31, 17, 8, 0.18);
  height: auto !important;
  position: absolute;
  top: 38px;            /* sits beneath the topbar */
  left: 0; right: 0;
  z-index: 1001;
}

header.ms-header.smaller,
header.ms-header.scrollOn {
  position: fixed !important;
  top: 0 !important;
  background: rgba(255, 252, 246, 0.97) !important;
  box-shadow: 0 6px 24px -12px rgba(31, 17, 8, 0.18);
}

@media (max-width: 575px) {
  header.ms-header,
  header.ms-header.transparent { top: 34px; }
}

/* Full-width wrapper */
.ms-header-wrap {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 48px);
  box-sizing: border-box;
}

.ms-header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 84px;
}

header.ms-header.smaller .ms-header-row { height: 70px; }

/* Logo column */
.ms-header-left { flex: 0 0 auto; }
/* Logo: never stretch — theme sets header div#logo img { width:100% } which warps raster logos */
header.ms-header div#logo.ms-logo {
  display: inline-block;
  width: auto;
  max-width: min(320px, 52vw);
}
header.ms-header div#logo.ms-logo img {
  width: auto !important;
  max-width: min(320px, 100%);
  height: auto !important;
  max-height: 80px;
  vertical-align: middle;
  object-fit: contain;
  object-position: left center;
  display: block;
}
header.ms-header.smaller div#logo.ms-logo {
  max-width: min(280px, 48vw);
}
header.ms-header.smaller div#logo.ms-logo img {
  max-height: 56px;
}

/* Center nav column */
.ms-header-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.ms-header-nav #mainmenu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  list-style: none;
  background: transparent;
  border: 0;
  height: auto;
}
.ms-header-nav #mainmenu > li {
  margin: 0;
  float: none;
  display: block;
  position: relative;
  list-style: none;
  white-space: nowrap;
}
/* Kill EVERY Almaris-injected pseudo-element on top-level menu items */
header.ms-header .ms-header-nav #mainmenu > li::before,
header.ms-header .ms-header-nav #mainmenu > li::after,
header.ms-header .ms-header-nav #mainmenu > li.has-child::before,
header.ms-header .ms-header-nav #mainmenu > li.has-child::after,
header.ms-header.smaller .ms-header-nav #mainmenu > li::before,
header.ms-header.smaller .ms-header-nav #mainmenu > li::after {
  content: none !important;
  display: none !important;
}
/* Almaris JS injects <span></span> after each <a> with a child <ul> for the
   mobile menu accordion. Hide it on desktop, keep it for the mobile menu. */
header.ms-header .ms-header-nav #mainmenu > li > span,
header.ms-header .ms-header-nav #mainmenu a span:not(.badge) {
  display: none !important;
  border: 0 !important;
  width: 0 !important;
  height: 0 !important;
}
/* Append a clean CSS arrow to dropdown parent links */
header.ms-header .ms-header-nav #mainmenu > li:has(> ul) > a.menu-item {
  padding-right: 24px !important;
  position: relative;
}
header.ms-header .ms-header-nav #mainmenu > li:has(> ul) > a.menu-item::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  opacity: 0.55;
  transition: opacity .25s ease, transform .25s ease;
}
header.ms-header .ms-header-nav #mainmenu > li:has(> ul):hover > a.menu-item::after {
  opacity: 1;
  transform: translateY(-30%) rotate(-135deg);
}
.ms-header-nav #mainmenu > li > a.menu-item {
  display: inline-block;
  padding: 12px 14px !important;
  color: var(--ms-ink) !important;
  font-weight: 500;
  font-size: 14.5px;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  transition: color .25s ease, background .25s ease;
  background: transparent;
}
.ms-header-nav #mainmenu > li > a.menu-item::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--ms-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}
.ms-header-nav #mainmenu > li > a.menu-item:hover { color: var(--ms-primary) !important; }
.ms-header-nav #mainmenu > li > a.menu-item:hover::after,
.ms-header-nav #mainmenu > li > a.menu-item.active::after { transform: scaleX(1); }
.ms-header-nav #mainmenu > li > a.menu-item.active { color: var(--ms-primary) !important; }

/* Submenu */
.ms-header-nav #mainmenu li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff !important;
  min-width: 220px;
  padding: 8px 0;
  border: 1px solid rgba(110, 31, 24, 0.08) !important;
  border-radius: 6px;
  box-shadow: 0 18px 40px -10px rgba(31, 17, 8, 0.18);
  height: auto;
  display: none;
}
.ms-header-nav #mainmenu li:hover > ul { display: block; }
.ms-header-nav #mainmenu li ul li { display: block; float: none; margin: 0; }
.ms-header-nav #mainmenu li ul li a {
  display: block;
  padding: 10px 18px !important;
  font-size: 14px;
  color: var(--ms-ink) !important;
  text-align: left;
}
.ms-header-nav #mainmenu li ul li a:hover {
  color: var(--ms-primary) !important;
  background: var(--ms-cream) !important;
}

/* Right column: phone + CTA */
.ms-header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ms-header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ms-ink);
  white-space: nowrap;
  padding: 6px 8px;
  border-radius: 6px;
  transition: color .25s ease;
}
.ms-header-phone:hover { color: var(--ms-primary); }
.ms-header-phone-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ms-cream);
  border: 1px solid rgba(110, 31, 24, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-primary-dark);
  flex: 0 0 auto;
}
.ms-header-phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.ms-header-phone-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ms-mute); font-weight: 600;
}
.ms-header-phone-number {
  font-size: 15px; font-weight: 600;
  color: var(--ms-primary-dark);
  font-family: 'Cinzel', serif;
}

.ms-header-cta.btn-main {
  padding: 12px 24px !important;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  border-radius: 999px;
  white-space: nowrap;
}

/* Mobile menu trigger (Almaris #menu-btn) */
header.ms-header #menu-btn { margin-left: 6px; }

/* Hide center nav and phone on smaller screens; #menu-btn handles mobile */
@media (max-width: 1199px) {
  .ms-header-phone { display: none !important; }
}
@media (max-width: 991px) {
  .ms-header-row { height: 72px; gap: 12px; }
  .ms-header-nav { display: none; }
  header.ms-header div#logo.ms-logo {
    max-width: min(260px, 58vw);
  }
  header.ms-header div#logo.ms-logo img {
    width: auto !important;
    max-height: 52px;
  }
  .ms-header-cta.btn-main { padding: 10px 18px !important; font-size: 11.5px; }
}

/* ---------- Sections ---------- */
.bg-light { background-color: var(--ms-cream) !important; }
.bg-dark  { background-color: var(--ms-primary-dark) !important; color: var(--ms-cream) !important; }
.bg-color, .bg-color-3 { background-color: var(--ms-primary) !important; color: #fff; }
section { color: var(--ms-ink); }

/* ============================================================
   HERO — full-bleed devotional banner
   ============================================================ */
.ms-hero-bold {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--ms-cream);
  background: var(--ms-primary-dark);
}

.ms-hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.ms-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.04);
  animation: ms-hero-zoom 18s ease-out forwards;
}
@keyframes ms-hero-zoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}
.ms-hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(31, 17, 8, 0.86) 0%, rgba(110, 31, 24, 0.72) 38%, rgba(110, 31, 24, 0.35) 70%, rgba(31, 17, 8, 0.55) 100%),
    radial-gradient(ellipse at 25% 90%, rgba(0,0,0,0.55), rgba(0,0,0,0) 60%);
}

/* Inner layout */
.ms-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: clamp(140px, 14vh, 200px) clamp(20px, 4vw, 64px) clamp(50px, 8vh, 90px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}

.ms-hero-content {
  max-width: 920px;
}

.ms-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ms-gold-soft);
  padding: 8px 16px;
  border: 1px solid rgba(217, 184, 112, 0.4);
  border-radius: 999px;
  background: rgba(31, 17, 8, 0.25);
  backdrop-filter: blur(4px);
  margin-bottom: 26px;
}

.ms-hero-title {
  font-family: 'Cinzel', 'Playfair Display', serif !important;
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: #fff !important;
  margin: 0 0 24px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.ms-hero-title-accent {
  display: block;
  color: var(--ms-gold-soft);
  font-weight: 500;
  margin-top: 6px;
}

.ms-hero-lead {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
  color: rgba(255, 250, 240, 0.92) !important;
  max-width: 700px;
  margin: 0 0 36px;
  font-weight: 400;
}

.ms-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.ms-hero-btn-primary.btn-main {
  background: var(--ms-gold-soft) !important;
  border-color: var(--ms-gold-soft) !important;
  color: var(--ms-primary-dark) !important;
  padding: 18px 36px !important;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  border-radius: 4px;
  box-shadow: 0 8px 24px -8px rgba(217, 184, 112, 0.55);
}
.ms-hero-btn-primary.btn-main:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: var(--ms-primary-dark) !important;
  transform: translateY(-2px);
}
.ms-hero-btn-line.btn-main {
  background: transparent !important;
  border: 1px solid rgba(255, 250, 240, 0.55) !important;
  color: var(--ms-cream) !important;
  padding: 18px 32px !important;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.ms-hero-btn-line.btn-main:hover {
  background: rgba(255, 250, 240, 0.1) !important;
  border-color: var(--ms-cream) !important;
  color: #fff !important;
}

/* Scroll indicator */
.ms-hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 250, 240, 0.5);
  border-radius: 16px;
  display: block;
}
.ms-hero-scroll span {
  display: block;
  width: 4px; height: 8px;
  background: var(--ms-gold-soft);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: ms-hero-scroll 1.6s ease-in-out infinite;
}
@keyframes ms-hero-scroll {
  0%   { transform: translateY(0);  opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  61%  { transform: translateY(0);  opacity: 0; }
  100% { transform: translateY(0);  opacity: 1; }
}

/* Hero responsive */
@media (max-width: 991px) {
  .ms-hero-bold { min-height: 78vh; }
  .ms-hero-inner { justify-content: center; }
}
@media (max-width: 575px) {
  .ms-hero-bold { min-height: auto; }
  .ms-hero-inner { padding-top: 110px; padding-bottom: 60px; gap: 40px; }
  .ms-hero-eyebrow { font-size: 10.5px; letter-spacing: 0.24em; }
  .ms-hero-cta .btn-main { width: 100%; justify-content: center; }
  .ms-hero-scroll { display: none; }
}

/* ============================================================
   ROOM-detail booking sidebar — spec list
   ============================================================ */
.ms-room-specs {
  margin: 0 0 24px;
  padding: 0;
}
.ms-room-specs li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(110, 31, 24, 0.08);
  list-style: none;
  font-size: 14.5px;
  line-height: 1.45;
}
.ms-room-specs li:last-child { border-bottom: 0; }
.ms-room-spec-label {
  flex: 0 0 auto;
  color: var(--ms-mute);
  font-weight: 500;
  white-space: nowrap;
  padding-top: 1px;
}
.ms-room-spec-value {
  flex: 1 1 auto;
  min-width: 0;             /* lets long values wrap inside the flex item */
  color: var(--ms-primary-dark);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ============================================================
   ABOUT-section media (homepage "Devotional Home" block)
   ============================================================ */
.ms-about-media {
  padding-bottom: 60px;     /* room for the inset overhang */
  padding-right: 24px;
}
.ms-about-primary {
  border-radius: 8px;
  box-shadow: 0 18px 40px -16px rgba(31, 17, 8, 0.22);
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ms-about-inset {
  width: 46% !important;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 8px solid #fff;
  box-shadow: 0 18px 40px -10px rgba(110, 31, 24, 0.32);
  transform: translate(28px, 36px);
}
@media (max-width: 575px) {
  .ms-about-media { padding-right: 12px; padding-bottom: 36px; }
  .ms-about-inset { width: 42% !important; border-width: 6px; transform: translate(14px, 18px); }
}

/* ---------- Booking strip ---------- */
.ms-booking-strip { margin-top: -50px; position: relative; z-index: 50; }
.ms-booking-strip .ms-booking-form {
  background: var(--ms-primary-dark) !important;
  color: var(--ms-cream) !important;
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(31, 17, 8, 0.18);
}
.ms-booking-strip h4, .ms-booking-strip h6 {
  color: var(--ms-cream) !important;
  font-family: 'Cinzel', serif;
}
.ms-booking-strip input, .ms-booking-strip select {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(250, 246, 236, 0.15) !important;
  color: var(--ms-cream) !important;
  border-radius: 3px;
  padding: 8px 12px;
}
.ms-booking-strip input::placeholder { color: rgba(250, 246, 236, 0.6); }
.ms-booking-strip button.btn-main { background: var(--ms-cream) !important; color: var(--ms-primary-dark) !important; border-color: var(--ms-cream) !important; }
.ms-booking-strip button.btn-main:hover { background: var(--ms-gold-soft) !important; border-color: var(--ms-gold-soft) !important; color: var(--ms-primary-dark) !important; }

/* ---------- Cards ---------- */
.ms-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(31, 17, 8, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ms-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(110, 31, 24, 0.12); }
.ms-card .ms-card-img { aspect-ratio: 4/3; overflow: hidden; }
.ms-card .ms-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.ms-card:hover .ms-card-img img { transform: scale(1.05); }
.ms-card .ms-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.ms-card h4 { font-size: 20px; margin-bottom: 8px; }
.ms-card p { color: var(--ms-mute); font-size: 14.5px; margin-bottom: 14px; }
.ms-card .ms-card-meta {
  display: flex; gap: 14px; font-size: 13px; color: var(--ms-mute);
  margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(110, 31, 24, 0.08);
}
.ms-card .ms-card-meta strong { color: var(--ms-primary-dark); font-weight: 600; }
.ms-card .ms-card-foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.ms-card .ms-price { font-family: 'Cinzel', serif; color: var(--ms-primary-dark); font-weight: 700; }
.ms-card .ms-price .ms-price-amount { font-size: 22px; }
.ms-card .ms-price .ms-price-unit { font-size: 12px; color: var(--ms-mute); display: block; font-weight: 500; }
.ms-card a.btn-main { padding: 10px 18px; font-size: 12px; }

/* Room listings without photography — text / specs only */
.ms-card.ms-card--text-only { overflow: visible; }
.ms-card.ms-card--text-only .ms-card-body {
  padding-top: 26px;
  border-top: 3px solid var(--ms-gold-soft);
}

/* ---------- Pillars (4 columns) ---------- */
.ms-pillar {
  text-align: center; padding: 28px 18px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(31, 17, 8, 0.05);
  height: 100%;
  border: 1px solid rgba(110, 31, 24, 0.06);
}
.ms-pillar .ms-pillar-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--ms-cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ms-primary-dark); font-size: 24px;
}
.ms-pillar h4 { font-size: 18px; margin-bottom: 8px; }
.ms-pillar p { color: var(--ms-mute); font-size: 14px; margin: 0; }

/* ---------- Testimonials ---------- */
.ms-quote {
  background: #fff; border-radius: 6px;
  padding: 28px 26px; height: 100%;
  border-left: 4px solid var(--ms-primary);
  box-shadow: 0 4px 14px rgba(31, 17, 8, 0.05);
}
.ms-quote::before {
  content: '“';
  font-family: 'Cinzel', serif;
  font-size: 56px;
  color: var(--ms-gold-soft);
  line-height: 0.6;
  display: block;
  margin-bottom: 8px;
}
.ms-quote p { font-size: 15px; line-height: 1.7; color: var(--ms-ink); margin-bottom: 18px; font-style: italic; }
.ms-quote .ms-author { font-family: 'Cinzel', serif; color: var(--ms-primary-dark); font-size: 16px; font-weight: 600; margin-bottom: 0; }
.ms-quote .ms-place  { color: var(--ms-mute); font-size: 13px; }

/* ---------- Subheader (inner page hero) ---------- */
#subheader {
  padding: 180px 0 90px;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
}
@media (max-width: 991px) {
  #subheader { padding: 140px 0 70px; }
}
#subheader::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(110,31,24,.78), rgba(31,17,8,.62));
}
#subheader > .container { position: relative; z-index: 2; }
/* Inner pages: no background photo (solid maroon) */
#subheader.ms-subheader-solid {
  background-image: none !important;
  background-color: var(--ms-primary-dark);
}
#subheader h1 { color: #fff !important; font-size: clamp(36px, 5vw, 56px); }
#subheader p { color: rgba(255, 255, 255, 0.85); }
#subheader .ms-breadcrumb a, #subheader .ms-breadcrumb span { color: rgba(255, 255, 255, 0.85); font-size: 13px; }
#subheader .ms-breadcrumb a:hover { color: var(--ms-gold-soft); }

/* ---------- Footer ---------- */
footer {
  background: var(--ms-primary-dark) !important;
  color: var(--ms-cream) !important;
  padding-top: 70px;
}
footer h5 { color: var(--ms-cream) !important; font-family: 'Cinzel', serif; margin-bottom: 16px; }
footer p, footer address { color: rgba(250, 246, 236, 0.86) !important; }
footer a { color: var(--ms-cream) !important; }
footer a:hover { color: var(--ms-gold-soft) !important; }
footer .footer-col-link li { padding: 4px 0; }
footer .subfooter {
  margin-top: 40px;
  border-top: 1px solid rgba(250, 246, 236, 0.12);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(250, 246, 236, 0.7) !important;
}

/* ---------- Floating WhatsApp + Call ---------- */
.ms-fab-stack {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  z-index: 10050;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.ms-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff !important;
  font-size: 26px;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(31, 17, 8, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ms-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(31, 17, 8, 0.42);
  color: #fff !important;
}
.ms-fab:focus-visible {
  outline: 3px solid var(--ms-gold-soft);
  outline-offset: 3px;
}
.ms-fab-wa {
  background: var(--ms-gold-soft);
  border: 2px solid rgba(138, 106, 42, 0.45);
}
.ms-fab-call {
  background: var(--ms-primary-dark);
  border: 2px solid rgba(250, 246, 236, 0.2);
}
@media (max-width: 575px) {
  .ms-fab {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

/* ---------- Section spacing helpers ---------- */
.ms-section { padding: 90px 0; position: relative; }
.ms-section-tight { padding: 60px 0; }
.ms-eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ms-primary); font-size: 12px; font-weight: 600;
  margin-bottom: 14px;
}
.ms-section-title { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 18px; }
.ms-section-lead  { font-size: 16px; color: var(--ms-mute); max-width: 720px; }

/* ---------- Misc helpers ---------- */
.ms-divider {
  height: 2px; width: 60px;
  background: var(--ms-gold-soft);
  margin: 14px 0 22px;
}
.ms-amenity-list { columns: 2; column-gap: 32px; padding-left: 0; list-style: none; }
.ms-amenity-list li {
  position: relative; padding: 6px 0 6px 24px;
  break-inside: avoid;
  color: var(--ms-ink);
}
.ms-amenity-list li::before {
  content: ''; position: absolute;
  left: 0; top: 12px; width: 12px; height: 12px;
  border: 2px solid var(--ms-primary); border-radius: 50%;
}

@media (max-width: 768px) {
  .ms-amenity-list { columns: 1; }
  .ms-hero-bg { display: none; }
  .ms-hero { padding: 90px 0 60px; }
  body { padding-bottom: 56px; }   /* leave room for sticky CTA */
}
