:root {
  /* Bedhive SaaS gradient palette */
  --velvet-night: #150F26;   /* Deep purple-black for dark sections */
  --velvet-core: #1E1533;    /* Structural dark fill */
  --pink: #EC4899;           /* Gradient pink accent */
  --pink-dark: #7C3AED;      /* Primary purple, used for headlines */

  /* Accent suite (was gold) */
  --gold: #A855F7;           /* Mid-gradient purple accent */
  --gold-dark: #6D28D9;
  --gold-soft: #F1E9FE;      /* Light lavender highlight */

  /* Neutral Ground Controls */
  --ink: #1B1530;            /* Deep ink for maximum readability */
  --muted: #6B7280;          /* Body copy grey */
  --line: rgba(124, 58, 237, 0.15); /* Purple-tinted structural lines */
  --paper: #F5F3FB;          /* Light lavender background for grid cards */
  --white: #ffffff;

  /* Depth Shadow Profiles */
  --luxury-shadow: 0 40px 90px rgba(21, 15, 38, 0.14);
  --soft-glow: 0 10px 40px rgba(124, 58, 237, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* Master Typographic Configurations */
h1, h2, h3 {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  color: var(--pink-dark);
  letter-spacing: -0.01em;
  margin-top: 0;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

@media (prefers-reduced-motion: no-preference) {
  a, button, .button, .whatsapp-float, .amenity-list div, 
  .pricing-grid article, .menu-grid article, .review-card, details {
    transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

/* Elegant Sticky Navigation Column Layout */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 20px clamp(24px, 5vw, 80px);
  background: rgba(250, 248, 245, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

/* Custom Overlapping Monogram Engine (Solves plain text look) */
.brand-monogram {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.05em;
  position: relative;
  padding: 4px 8px;
}

.brand-monogram .side-letter {
  color: var(--pink-dark);
  opacity: 0.85;
}

.brand-monogram .center-letter {
  color: var(--gold);
  font-size: 34px;
  font-style: italic;
  font-weight: 400;
  margin: 0 -4px;
  position: relative;
  top: -2px;
  text-shadow: 1px 1px 0px var(--white);
  z-index: 2;
}

nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

nav a {
  padding: 8px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

nav a:hover {
  color: var(--gold-dark);
}

nav a.staff-login {
  border: 1px solid var(--pink-dark);
  border-radius: 999px;
  color: var(--pink-dark);
  font-weight: 700;
  padding: 8px 14px;
  white-space: nowrap;
}

nav a.staff-login:hover {
  background: var(--pink-dark);
  color: #fff;
}

.header-call {
  padding: 12px 24px;
  border-radius: 2px;
  color: var(--white);
  background: var(--pink-dark);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
}

.header-call:hover {
  background: transparent;
  color: var(--pink-dark);
  border-color: var(--pink-dark);
}

/* Integrated Alert Strip Component */
.promo-banner-inline {
  background: var(--gold-soft);
  border-bottom: 1px solid var(--line);
  padding: 12px clamp(24px, 5vw, 80px);
}

.promo-card-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}

.promo-badge {
  background: var(--pink-dark);
  color: var(--white);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 2px;
}

.promo-text {
  margin: 0;
  font-size: 13px;
  color: var(--velvet-night);
}

.promo-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-dark);
  text-decoration: underline;
}

.promo-dismiss {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--pink-dark);
  padding: 0;
}

/* Floating Concierge System */
.whatsapp-float {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 4px;
  color: var(--white);
  background: var(--ink);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--luxury-shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  background: #1fa855;
  border-color: transparent;
}

.whatsapp-float img {
  width: 18px;
}

/* Dramatic Deep-Contrast Luxury Hero Frame */
/* --- SECTION GAP & PADDING REDUCTIONS --- */

/* Hero Section Padding Reduction */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px; /* Reduced from 80px */
  align-items: center;
  padding: clamp(40px, 5vw, 60px) clamp(24px, 5vw, 80px); /* Reduced height padding */
  background: linear-gradient(135deg, var(--velvet-night) 0%, #0B0716 100%);
  color: var(--white);
}

/* Philosophy Section Padding Reduction */
.intro-section {
  padding: clamp(50px, 6vw, 80px) clamp(24px, 5vw, 80px); /* Reduced from 100px-160px */
  background: var(--white);
  text-align: center;
}

/* Amenities Section Padding Reduction */
.amenities-section {
  padding: clamp(50px, 6vw, 80px) clamp(24px, 5vw, 80px); /* Reduced from 100px-160px */
  background: var(--velvet-core);
}
.amenity-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* Tighter layout grid cards */
  margin-top: 32px; /* Reduced from 64px */
}
.amenity-list div {
  padding: 24px 20px; /* Tighter inside padding */
}

/* Food & Safety Splits Padding Reduction */
.food-panel, .safety-panel {
  padding: clamp(40px, 5vw, 60px) clamp(24px, 4vw, 60px); /* Reduced from 80px-120px */
  text-align: left;
}

/* Culinary Menu Section Padding Reduction */
.menu-section {
  padding: clamp(50px, 6vw, 80px) clamp(24px, 5vw, 80px); /* Reduced from 100px-160px */
}
.menu-intro {
  margin-bottom: 32px; /* Reduced from 64px */
}

/* Competitive Matrix Padding Reduction */
.comparison-section {
  padding: clamp(50px, 6vw, 80px) clamp(24px, 5vw, 80px); /* Reduced from 100px-160px */
}
.comparison-row {
  padding: 18px 0; /* Tighter rows */
}

/* Dark Rooms Split Section Padding Reduction */
.rooms-section article {
  padding: clamp(40px, 5vw, 60px) clamp(24px, 4vw, 40px); /* Reduced from 80px-120px */
}
.rooms-section span {
  margin-bottom: 24px; /* Reduced label gap */
}

/* Suite Pricing Section Padding Reduction */
.pricing-section {
  padding: clamp(50px, 6vw, 80px) clamp(24px, 5vw, 80px); /* Reduced from 100px-160px */
}
.pricing-grid article {
  padding: 32px 24px; /* Tighter cards */
}

/* Videos, Reviews & FAQ Padding Reduction */
.video-section, .reviews-section, .faq-section {
  padding: clamp(50px, 6vw, 80px) clamp(24px, 5vw, 80px); /* Reduced from 100px-160px */
}

/* Communications Center Padding Reduction */
.contact-section {
  padding: clamp(50px, 6vw, 80px) clamp(24px, 5vw, 80px);
}
.contact-cards {
  margin-top: 32px; /* Reduced from 64px */
  gap: 20px;
}
.contact-cards a {
  padding: 24px 20px;
}

/* Remittance Module Padding Reduction */
.payments-section {
  gap: 40px; /* Reduced from 100px */
  padding: clamp(50px, 6vw, 80px) clamp(24px, 5vw, 80px);
}

/* Final Call To Action Padding Reduction */
.final-cta {
  padding: clamp(40px, 5vw, 60px) clamp(24px, 5vw, 80px); /* Reduced from 80px-120px */
}


/* --- NEW LOGO STYLING --- */

/* Remove the old monogram CSS and replace it with this clean image container */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 12px clamp(24px, 5vw, 80px); /* Tighter navbar height */
  background: rgba(250, 248, 245, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.brand-logo {
  height: 48px; /* Restricts the logo height perfectly to prevent navbar bloat */
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-wordmark {
  display: inline-block;
  font: 800 28px 'Inter', ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 {
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--gold-soft);
}

.hero-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 2px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.primary {
  color: var(--velvet-night);
  background: var(--gold);
}

.button.primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}

.button.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Hero Stats Columns */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}

.quick-facts dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.quick-facts dd {
  margin: 0;
  font-size: 20px;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: var(--white);
}

/* Slideshow Container */
.hero-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--luxury-shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide figcaption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(17, 3, 7, 0.9);
  border: 1px solid rgba(207, 161, 83, 0.2);
  color: var(--gold-soft);
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.03em;
}

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  z-index: 5;
  display: grid;
  place-items: center;
  box-shadow: var(--luxury-shadow);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  padding: 0;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Philosophy Section Module */
.intro-section {
  padding: clamp(100px, 120px, 160px) clamp(24px, 5vw, 80px);
  background: var(--white);
  text-align: center;
}

.intro-section h2 {
  max-width: 850px;
  margin: 0 auto 32px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.15;
}

.intro-section p {
  max-width: 740px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--muted);
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-dark);
  margin-bottom: 28px;
  font-weight: 700;
}

/* Mood-Rich Dark Amenities Configuration */
.amenities-section {
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 80px);
  background: var(--velvet-core);
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 16px;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.amenity-list div {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px 32px;
  border-radius: 2px;
}

.amenity-list div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--gold);
}

.amenity-list strong {
  display: block;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.amenity-list span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Split Operational Columns */
.food-safety-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}

.food-panel, .safety-panel {
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 100px);
  text-align: left;
}

.food-panel {
  background-color: #fdfafb;
  border-right: 1px solid rgba(145, 105, 40, 0.08);
}

.food-safety-section h2 {
  font-size: clamp(32px, 3.5vw, 46px);
  margin-bottom: 28px;
}

.food-safety-section ul {
  padding: 0;
  margin: 40px 0 0;
  list-style: none;
}

.food-safety-section li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}

.food-safety-section li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Culinary Presentation Calendar */
.menu-section {
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 80px);
}

.menu-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
  text-align: left;
}

.menu-intro img {
  border-radius: 2px;
  box-shadow: var(--luxury-shadow);
  max-height: 440px;
  width: 100%;
  object-fit: cover;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.menu-grid article {
  background: var(--white);
  padding: 24px 20px;
  border-radius: 2px;
  box-shadow: var(--soft-glow);
  border: 1px solid rgba(145, 105, 40, 0.06);
  text-align: left;
}

.menu-grid article:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.menu-grid strong {
  display: block;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  color: var(--pink-dark);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.menu-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 16px;
}

.menu-grid p {
  font-size: 13px;
  margin: 0 0 12px;
  line-height: 1.5;
}

.menu-grid p span {
  display: block;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

/* Competitive Matrix Framework */
.comparison-section {
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 80px);
  background: var(--white);
}

.comparison-grid {
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-head, .comparison-row {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.1fr;
  border-bottom: 1px solid rgba(145, 105, 40, 0.08);
  text-align: left;
}

.comparison-head {
  border-bottom: 2px solid var(--pink-dark);
  padding-bottom: 20px;
}

.comparison-head strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.comparison-head strong:last-child {
  color: var(--pink);
}

.comparison-row {
  padding: 28px 0;
}

.comparison-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.comparison-row p {
  margin: 0;
  font-size: 14px;
  padding-right: 32px;
}

.comparison-row p:last-child {
  color: var(--pink-dark);
  font-weight: 500;
}

/* Dark Accent Room Divider Framework */
.rooms-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--velvet-night);
  color: var(--white);
}

.rooms-section article {
  padding: clamp(80px, 10vw, 120px) clamp(32px, 6vw, 80px);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  text-align: left;
}

.rooms-section article:last-child {
  border-right: none;
}

.rooms-section span {
  display: block;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 54px;
  color: var(--gold);
  margin-bottom: 48px;
}

.rooms-section h3 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 20px;
}

.rooms-section p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Suite Tier Presentation Grid */
.pricing-section {
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 80px);
}

.pricing-note {
  max-width: 560px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.pricing-grid article {
  background: var(--white);
  padding: 56px 40px;
  border-radius: 2px;
  box-shadow: var(--soft-glow);
  border: 1px solid rgba(145, 105, 40, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.pricing-grid article.pricing-featured {
  border-color: var(--gold);
  box-shadow: var(--luxury-shadow);
}

.pricing-grid article:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--luxury-shadow);
}

.pricing-grid span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 28px;
}

.pricing-grid strong {
  display: block;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--pink-dark);
  margin-bottom: 20px;
}

.pricing-grid strong span {
  display: inline;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  margin: 0 0 0 4px;
}

.pricing-grid p {
  margin: 0 0 28px;
  font-size: 14px;
  flex: 1;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--velvet-night);
  background: var(--gold);
  border-radius: 2px;
}

.pricing-cta:hover {
  background: var(--gold-soft);
}

/* Video Canvas Framework */
.video-section {
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 80px);
  background: var(--white);
}

.video-card {
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--luxury-shadow);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.video-card video {
  width: 100%;
  display: block;
}

/* Guest Endorsements Modules */
.reviews-section {
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 80px);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--white);
  padding: 48px;
  border-radius: 2px;
  box-shadow: var(--soft-glow);
  border: 1px solid rgba(145, 105, 40, 0.05);
  text-align: left;
}

.review-stars {
  color: var(--gold);
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 3px;
}

.review-card p {
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
}

.review-card footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.review-card footer strong {
  display: block;
  font-size: 14px;
  color: var(--pink-dark);
}

.review-card footer span {
  font-size: 12px;
  color: var(--muted);
}

/* Interactive Accordion FAQs */
.faq-section {
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 80px);
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

details {
  background: var(--paper);
  border-radius: 2px;
  border: 1px solid rgba(145, 105, 40, 0.05);
}

summary {
  padding: 28px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  color: var(--pink-dark);
  outline: none;
}

details p {
  padding: 0 28px 28px;
  margin: 0;
  font-size: 15px;
}

/* Communications Center Grid */
.contact-section {
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 80px);
}

.contact-section h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.contact-cards a {
  background: var(--white);
  padding: 40px 28px;
  border-radius: 2px;
  box-shadow: var(--soft-glow);
  border: 1px solid rgba(145, 105, 40, 0.05);
  text-align: center;
}

.contact-cards a:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--luxury-shadow);
}

.contact-cards span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.contact-cards strong {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  color: var(--pink-dark);
  font-weight: 500;
}

/* Remittance Module Verification Layout */
.payments-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: center;
  padding: clamp(100px, 12vw, 160px) clamp(24px, 5vw, 80px);
  background: var(--white);
}

.payment-copy {
  text-align: left;
}

.payments-section h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.payment-copy ul {
  padding: 0;
  list-style: none;
  margin: 48px 0;
}

.payment-copy li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.payment-copy li strong {
  float: right;
  color: var(--pink-dark);
}

.payment-note {
  font-weight: 600;
  color: var(--gold-dark);
}

.payment-card {
  background: var(--paper);
  padding: 48px;
  border-radius: 2px;
  border: 1px solid var(--line);
  box-shadow: var(--luxury-shadow);
}

/* High-Contrast Final CTA Banner */
.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--velvet-night) 100%);
  color: var(--white);
  text-align: left;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.final-actions {
  display: flex;
  gap: 20px;
}

.final-cta .button.primary {
  background: var(--gold);
  color: var(--velvet-night);
}

.final-cta .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Prestige Foundation Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px clamp(24px, 5vw, 80px);
  background: var(--velvet-night);
  color: var(--white);
}

.footer-brand {
  text-align: center;
}

.footer-brand strong {
  display: block;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.site-footer span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.site-footer a,
.review-card footer a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-card footer a {
  color: var(--gold-dark);
}

.footer-map {
  width: 160px;
  aspect-ratio: 1;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Comprehensive Responsive Layout Rules */
@media (max-width: 1300px) {
  .amenity-list { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .site-header { grid-template-columns: 1fr; justify-items: center; gap: 24px; }
  nav { order: 3; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .quick-facts { max-width: 540px; margin-inline: auto; }
  .hero-slider { aspect-ratio: 4 / 3; }
  .food-safety-section, .menu-intro, .faq-grid, .payments-section, .final-cta { grid-template-columns: 1fr; }
  .final-actions { justify-content: left; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-section { grid-template-columns: 1fr; }
  .rooms-section article { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-brand { text-align: center; }
}

@media (max-width: 576px) {
  .amenity-list, .menu-grid, .pricing-grid, .contact-cards { grid-template-columns: 1fr; }
  .final-actions { flex-direction: column; width: 100%; }
  .button { width: 100%; }
}

/* Final tuning overrides: logo visibility and tighter vertical rhythm */
.site-header {
  min-height: 58px;
  padding-top: 4px;
  padding-bottom: 4px;
  overflow: visible;
}

.brand-logo {
  height: 58px;
  max-width: 260px;
  transform: scale(1.18);
  transform-origin: left center;
  filter: drop-shadow(0 8px 18px rgba(92, 30, 49, .16));
}

.hero {
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 64px);
}

.intro-section,
.amenities-section,
.menu-section,
.comparison-section,
.pricing-section,
.video-section,
.reviews-section,
.faq-section,
.contact-section {
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(42px, 6vw, 76px);
}

.food-panel,
.safety-panel,
.rooms-section article {
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: clamp(38px, 5vw, 64px);
}

.payments-section {
  gap: clamp(28px, 5vw, 56px);
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(42px, 6vw, 76px);
}

.final-cta {
  gap: clamp(24px, 4vw, 44px);
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: clamp(38px, 5vw, 64px);
}

.section-heading,
.menu-intro {
  margin-bottom: 32px;
}

.amenity-list,
.contact-cards {
  margin-top: 32px;
}

.menu-intro {
  gap: clamp(24px, 4vw, 44px);
}

@media (max-width: 576px) {
  .brand-logo {
    height: 52px;
    max-width: 220px;
    transform: scale(1.08);
  }
}

/* Comparison section alignment */
.comparison-section .section-heading {
  max-width: 1100px;
  margin: 0 auto 30px;
  text-align: left;
}

.comparison-section .section-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.comparison-grid {
  width: 100%;
  max-width: 1100px;
}

.comparison-head,
.comparison-row {
  grid-template-columns: minmax(150px, .78fr) minmax(0, 1fr) minmax(0, 1.08fr);
  column-gap: 28px;
  align-items: start;
}

.comparison-head {
  padding-bottom: 14px;
}

.comparison-row {
  padding: 20px 0;
}

.comparison-row p {
  padding-right: 0;
}

@media (max-width: 760px) {
  .comparison-section .section-heading {
    text-align: center;
  }

  .comparison-section .section-heading h2 {
    margin-inline: auto;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .comparison-label {
    color: var(--gold-dark);
  }
}

/* FAQ cards should not stretch beside an expanded answer */
.faq-grid {
  align-items: start;
}

.faq-column {
  display: grid;
  gap: 32px;
  align-content: start;
}

@media (max-width: 992px) {
  .faq-column {
    gap: 24px;
  }
}

/* Final alignment audit: consistent outer page edges */
:root {
  --page-x: clamp(24px, 5vw, 80px);
}

.site-header,
.promo-banner-inline,
.hero,
.intro-section,
.amenities-section,
.menu-section,
.comparison-section,
.pricing-section,
.video-section,
.reviews-section,
.faq-section,
.contact-section,
.payments-section,
.final-cta,
.site-footer {
  padding-left: var(--page-x);
  padding-right: var(--page-x);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.food-panel:first-child,
.rooms-section article:first-child {
  padding-left: var(--page-x);
}

.safety-panel:last-child,
.rooms-section article:last-child {
  padding-right: var(--page-x);
}

.food-panel,
.safety-panel {
  padding-left: clamp(24px, 4vw, 60px);
  padding-right: clamp(24px, 4vw, 60px);
}

.food-panel:first-child {
  padding-left: var(--page-x);
}

.safety-panel:last-child {
  padding-right: var(--page-x);
}

.menu-grid,
.amenity-list,
.pricing-grid,
.reviews-grid,
.faq-grid,
.contact-cards,
.comparison-grid,
.video-card {
  margin-left: auto;
  margin-right: auto;
}

.contact-section > div:first-child {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.managed-note {
  display: inline-flex;
  justify-self: center;
  margin-top: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(47, 95, 159, .16);
  border-radius: 999px;
  color: #2f5f9f;
  background: rgba(255, 255, 255, .58);
  font-size: 14px;
  font-weight: 600;
}

/* Final palette refresh: premium pink + blue with lucky soft-yellow alternation */
:root {
  --pink: #b84f7a;
  --pink-dark: #7f2f5f;
  --rose-deep: #54224b;
  --velvet-night: #24365f;
  --velvet-core: #2d4678;
  --gold: #b8872f;
  --gold-dark: #916928;
  --gold-soft: #fff4cf;
  --paper: #fffaf0;
  --cream: #fffdf7;
  --lucky-yellow: #fff7d8;
  --lucky-yellow-soft: #fffbed;
  --ink: #182136;
  --muted: #60677a;
  --line: #eadfd0;
}

body {
  background: linear-gradient(180deg, #fff8e5 0%, #fffdf7 46%, #f7f9ff 100%);
}

.site-header {
  background: rgba(255, 250, 240, .94);
  border-bottom-color: rgba(45, 70, 120, .12);
}

.promo-banner-inline {
  background: linear-gradient(90deg, #fff7d8 0%, #f8e9f2 50%, #eaf1ff 100%);
  border-bottom-color: rgba(45, 70, 120, .12);
}

.header-call,
.button.primary {
  background: linear-gradient(135deg, #b84f7a, #2f5f9f);
  color: var(--white);
}

.header-call:hover,
.button.primary:hover {
  background: linear-gradient(135deg, #c85c8a, #376fb7);
}

.hero {
  background:
    linear-gradient(135deg, rgba(184, 79, 122, .9) 0%, rgba(47, 95, 159, .92) 100%),
    url("assets/pg-lounge.jpeg") center / cover;
}

.hero h1,
.hero .eyebrow,
.final-cta .eyebrow {
  color: #fff7d8;
}

.hero-text,
.hero p,
.hero dd {
  color: rgba(255, 255, 255, .86);
}

.quick-facts {
  border-top-color: rgba(255, 247, 216, .3);
}

.quick-facts div,
.hero-slider {
  border-color: rgba(255, 247, 216, .26);
  background: rgba(255, 255, 255, .08);
}

.intro-section,
.menu-section,
.pricing-section,
.faq-section,
.payments-section {
  background: var(--lucky-yellow-soft);
}

.food-safety-section,
.comparison-section,
.reviews-section,
.contact-section {
  background: var(--cream);
}

.amenities-section {
  background:
    linear-gradient(135deg, rgba(184, 79, 122, .9), rgba(45, 70, 120, .96));
}

.rooms-section {
  background: linear-gradient(135deg, #b84f7a 0%, #2d4678 100%);
}

.final-cta {
  background: linear-gradient(135deg, #b84f7a 0%, #2d4678 100%);
}

.food-panel {
  background: var(--lucky-yellow);
}

.safety-panel {
  background: #f7faff;
}

.pricing-grid article,
.review-card,
details,
.contact-cards a,
.payment-card,
.menu-grid article {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(45, 70, 120, .08);
}

.comparison-head {
  border-bottom-color: #2d4678;
}

.comparison-head strong:last-child,
.comparison-row p:last-child,
.contact-cards strong,
.pricing-grid strong,
.pricing-grid span,
.comparison-label,
summary {
  color: #2f5f9f;
}

.eyebrow,
.section-label,
.menu-grid p span,
.contact-cards span,
.payment-note,
.review-stars {
  color: var(--gold-dark);
}

.footer-map {
  border-color: rgba(255, 247, 216, .18);
}

.site-footer {
  background: linear-gradient(135deg, #2d4678 0%, #7f2f5f 100%);
}

.hero-slide figcaption {
  background: rgba(45, 70, 120, .86);
  color: #fff7d8;
}

.slider-button {
  background: rgba(255, 247, 216, .92);
  color: #2d4678;
}

.slider-dots button.is-active {
  background: #fff7d8;
}

/* Alternating section rhythm: pink+blue, then yellow+pink */
.hero,
.amenities-section,
.rooms-section,
.reviews-section,
.final-cta {
  background:
    linear-gradient(135deg, rgba(184, 79, 122, .94) 0%, rgba(45, 70, 120, .96) 100%);
  color: var(--white);
}

.intro-section,
.menu-section,
.pricing-section,
.faq-section,
.payments-section {
  background:
    linear-gradient(135deg, #fff7d8 0%, #f9dceb 100%);
}

.hero {
  background:
    linear-gradient(135deg, rgba(184, 79, 122, .88) 0%, rgba(45, 70, 120, .9) 100%),
    url("assets/pg-lounge.jpeg") center / cover;
}

.amenities-section .section-heading h2,
.rooms-section h3,
.rooms-section p,
.reviews-section .section-heading h2,
.reviews-section .section-heading .eyebrow,
.final-cta h2,
.final-cta p {
  color: var(--white);
}

.amenities-section .section-heading .eyebrow,
.rooms-section span,
.final-cta .eyebrow {
  color: #fff7d8;
}

.amenity-list div {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 247, 216, .18);
}

.amenity-list strong {
  color: #fff7d8;
}

.amenity-list span {
  color: rgba(255, 255, 255, .78);
}

.review-card {
  background: rgba(255, 255, 255, .94);
}

.header-call,
.button.primary,
.promo-action {
  background: linear-gradient(135deg, #b84f7a 0%, #2f5f9f 100%);
  color: var(--white);
  border-color: transparent;
}

.header-call:hover,
.button.primary:hover,
.promo-action:hover {
  background: linear-gradient(135deg, #c85c8a 0%, #376fb7 100%);
}

.button.secondary {
  border-color: rgba(47, 95, 159, .34);
  color: #2f5f9f;
  background: rgba(255, 255, 255, .72);
}

.hero .button.secondary,
.final-cta .button.secondary {
  color: var(--white);
  border-color: rgba(255, 247, 216, .38);
  background: rgba(255, 255, 255, .12);
}

/* Strict two-color section alternation only */
.hero,
.amenities-section,
.comparison-section,
.pricing-section,
.reviews-section,
.payments-section,
.final-cta {
  background:
    linear-gradient(135deg, rgba(184, 79, 122, .94) 0%, rgba(45, 70, 120, .96) 100%);
}

.intro-section,
.food-safety-section,
.menu-section,
.rooms-section,
.video-section,
.faq-section,
.contact-section {
  background:
    linear-gradient(135deg, #fff7d8 0%, #f9dceb 100%);
}

.food-panel,
.safety-panel,
.rooms-section article {
  background: transparent;
}

.comparison-section .section-heading h2,
.comparison-section .section-heading .eyebrow,
.comparison-section .comparison-head strong,
.comparison-section .comparison-label,
.comparison-section .comparison-row p,
.pricing-section .section-heading h2,
.pricing-section .section-heading .eyebrow,
.reviews-section .section-heading h2,
.reviews-section .section-heading .eyebrow,
.payments-section h2,
.payments-section .eyebrow,
.payments-section p,
.payments-section li {
  color: var(--white);
}

.comparison-section .comparison-row p:last-child,
.payments-section li strong {
  color: #fff7d8;
}

.pricing-grid article,
.review-card,
.payment-card {
  background: rgba(255, 255, 255, .94);
}

.pricing-grid article p,
.review-card p,
.review-card footer span {
  color: var(--muted);
}

.rooms-section {
  color: var(--ink);
}

.rooms-section span {
  color: var(--gold-dark);
}

.rooms-section h3 {
  color: #2f5f9f;
}

.rooms-section p {
  color: var(--muted);
}

.payment-actions {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 247, 216, .28);
}

.payment-actions h3 {
  margin: 0 0 8px;
  color: #fff7d8;
  font-size: clamp(26px, 3vw, 36px);
}

.payment-actions p {
  margin-bottom: 18px;
}

.payment-actions .final-actions {
  justify-content: flex-start;
}

.promo-action,
.promo-action:hover {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #2f5f9f;
  background: transparent;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.payment-actions .final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.payment-actions .button {
  min-width: 170px;
  min-height: 48px;
  padding: 0 24px;
}

.payment-actions .button.secondary {
  color: var(--white);
  border-color: rgba(255, 247, 216, .42);
  background: rgba(255, 255, 255, .12);
}

.hero-actions .button.secondary,
.payment-actions .button.secondary,
.final-actions .button.secondary {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, #b84f7a 0%, #2f5f9f 100%);
  box-shadow: 0 14px 34px rgba(45, 70, 120, .22);
}

.hero-actions .button.secondary:hover,
.payment-actions .button.secondary:hover,
.final-actions .button.secondary:hover {
  background: linear-gradient(135deg, #c85c8a 0%, #376fb7 100%);
}

.site-header {
  background: linear-gradient(90deg, #fff7d8 0%, #f9dceb 100%);
  border-bottom-color: rgba(47, 95, 159, .16);
}

.brand-logo {
  mix-blend-mode: normal;
  background: transparent;
  filter: contrast(1.04) saturate(1.04) drop-shadow(0 8px 18px rgba(92, 30, 49, .12));
}

/* Brighter presentation for actual PG property photos */
.hero-slide img,
.menu-intro img {
  filter: brightness(1.16) contrast(1.06) saturate(1.08);
}

.hero-slider:hover .hero-slide.is-active img,
.menu-intro img:hover {
  filter: brightness(1.22) contrast(1.08) saturate(1.1);
}

/* Mobile polish */
@media (max-width: 768px) {
  :root {
    --page-x: 16px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 8px var(--page-x);
    min-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 46px;
    max-width: min(58vw, 210px);
    transform: none;
  }

  .header-call {
    min-height: 38px;
    padding: 0 12px;
    white-space: nowrap;
    font-size: 12px;
  }

  nav {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
    font-size: 12px;
  }

  .promo-card-inline {
    justify-content: flex-start;
    gap: 8px 14px;
    padding-right: 28px;
  }

  .promo-dismiss {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-text {
    margin-inline: 0;
    font-size: 16px;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button,
  .payment-actions .button {
    width: 100%;
    min-width: 0;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
  }

  .hero-slider {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .food-safety-section,
  .menu-intro,
  .payments-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .amenity-list,
  .menu-grid,
  .pricing-grid,
  .reviews-grid,
  .faq-grid,
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rooms-section {
    grid-template-columns: 1fr;
  }

  .rooms-section article {
    border-right: 0;
    border-bottom: 1px solid rgba(47, 95, 159, .12);
  }

  .comparison-section .section-heading {
    text-align: center;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .contact-section > div:first-child {
    margin-bottom: 24px !important;
  }

  .payment-copy li strong {
    float: none;
    display: block;
    margin-top: 4px;
  }

  .payment-card {
    padding: 18px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .footer-map {
    max-width: 180px;
    margin-inline: auto;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    max-width: 54vw;
  }

  .header-call {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ============================================================
   Bedhive brand lock — this file was copied from the SAM site's
   styles.css, which layers several palette revisions later in
   the cascade. This block intentionally comes last so Bedhive's
   purple/pink palette always wins over the inherited SAM colors.
   ============================================================ */
:root {
  --pink: #EC4899;
  --pink-dark: #7C3AED;
  --velvet-night: #150F26;
  --velvet-core: #1E1533;
  --gold: #A855F7;
  --gold-dark: #7C3AED;
  --gold-soft: #F1E9FE;
  --paper: #F5F3FB;
  --cream: #ffffff;
  --lucky-yellow: #F1E9FE;
  --lucky-yellow-soft: #F5F3FB;
  --ink: #1B1530;
  --muted: #6B7280;
  --line: rgba(124, 58, 237, 0.15);
}

body {
  background: linear-gradient(180deg, #F5F3FB 0%, #ffffff 46%, #F5F3FB 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
}

.header-call,
.button.primary {
  background: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  color: #fff;
}

.header-call:hover,
.button.primary:hover {
  background: linear-gradient(135deg, #6D28D9 0%, #DB2777 100%);
}

.button.secondary {
  border-color: rgba(124, 58, 237, 0.34);
  color: var(--pink-dark);
  background: rgba(255, 255, 255, 0.72);
}

.hero,
.amenities-section,
.rooms-section,
.reviews-section {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 45%, #EC4899 100%);
  color: #fff;
}

.hero .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.hero h1,
.hero .eyebrow {
  color: #fff;
}

.hero-text,
.hero p,
.hero dd {
  color: rgba(255, 255, 255, 0.86);
}

.quick-facts div,
.hero-slider {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.intro-section,
.pricing-section,
.faq-section {
  background: var(--paper);
}

.comparison-section,
.contact-section {
  background: #fff;
}

.amenities-section .section-heading h2,
.rooms-section h3,
.rooms-section p,
.reviews-section .section-heading h2,
.reviews-section .section-heading .eyebrow {
  color: #fff;
}

.amenities-section .section-heading .eyebrow,
.rooms-section span {
  color: #F1E9FE;
}

.amenity-list div {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.amenity-list strong {
  color: #fff;
}

.amenity-list span {
  color: rgba(255, 255, 255, 0.82);
}

.rooms-section {
  color: #fff;
}

.rooms-section article {
  border-color: rgba(255, 255, 255, 0.18);
}

.comparison-head {
  border-bottom-color: var(--pink-dark);
}

.comparison-head strong:last-child,
.comparison-row p:last-child,
.contact-cards strong,
.pricing-grid strong,
.pricing-grid span,
.comparison-label,
summary {
  color: var(--pink-dark);
}

.eyebrow,
.section-label,
.contact-cards span {
  color: var(--pink-dark);
}

.pricing-grid article,
.review-card,
details,
.contact-cards a {
  background: #fff;
  border-color: var(--line);
}

.pricing-grid article p,
.review-card p,
.review-card footer span {
  color: var(--muted);
}

.site-footer {
  background: var(--velvet-night);
}

.hero-slide figcaption {
  background: rgba(21, 15, 38, 0.82);
  color: #fff;
}

.slider-button {
  background: rgba(255, 255, 255, 0.92);
  color: var(--pink-dark);
}

.slider-dots button.is-active {
  background: #fff;
}

/* Bedhive brand lock, part 2 — matches the original scoped
   selector specificity (.comparison-section / .pricing-section
   prefixes) so these actually win instead of losing to the
   inherited SAM rule with equal-or-higher specificity. */
.comparison-section .section-heading h2,
.pricing-section .section-heading h2 {
  color: var(--ink);
}
.comparison-section .section-heading .eyebrow,
.pricing-section .section-heading .eyebrow {
  color: var(--pink-dark);
}
.comparison-section .comparison-head strong,
.comparison-section .comparison-label,
.comparison-section .comparison-row p {
  color: var(--muted);
}
.comparison-section .comparison-head strong:last-child,
.comparison-section .comparison-row p:last-child {
  color: var(--pink-dark);
}
