/* =============================================================
   Reuben's Stays — Property Detail Page Styles
   Scoped under .rs-property-page (auto body class from WordPress)
   Earthy / warm heritage palette — same variables as home.css
   ============================================================= */

/* ─── Custom Properties ─────────────────────────────────────── */
.rs-property-page {
  --cream:       #F8F3EA;
  --parchment:   #EDE4D0;
  --white:       #FFFFFF;
  --forest:      #24332A;
  --forest-mid:  #375040;
  --sage:        #7B9E83;
  --earth:       #7C4828;
  --gold:        #B8893C;
  --gold-light:  #D4A84E;
  --mist:        #C8D8CB;
  --text:        #1A1A18;
  --text-light:  #5C5C55;
  --text-muted:  #8A8A82;
  --max-w:       1160px;
  --radius:      2px;
  --t-fast:      150ms ease;
  --t-base:      220ms ease;
  --t-slow:      350ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Base Reset ────────────────────────────────────────────── */
.rs-property-page {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Suppress Astra header/footer */
.rs-property-page .site-header,
.rs-property-page .site-footer,
.rs-property-page #masthead,
.rs-property-page #colophon {
  display: none !important;
}
.rs-property-page .site-content,
.rs-property-page #content,
.rs-property-page .ast-container,
.rs-property-page .entry-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

/* Smooth scroll */
.rs-property-page html { scroll-behavior: smooth; }

/* Paper texture */
.rs-property-page body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.rs-property-page :focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .rs-property-page *, .rs-property-page *::before, .rs-property-page *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Layout Utility ────────────────────────────────────────── */
.pd-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.pd-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.pd-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.15;
}

/* ─── Scroll Reveal ─────────────────────────────────────────── */
.rs-property-page .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--t-slow), transform 0.65s var(--t-slow);
}
.rs-property-page .reveal.visible { opacity: 1; transform: translateY(0); }
.rs-property-page .reveal-d1 { transition-delay: 0.10s; }
.rs-property-page .reveal-d2 { transition-delay: 0.20s; }
.rs-property-page .reveal-d3 { transition-delay: 0.30s; }

/* ─── Buttons ───────────────────────────────────────────────── */
.rs-property-page .pd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--t-base), color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.rs-property-page .pd-btn-primary {
  background: var(--gold);
  color: var(--forest);
}
.rs-property-page .pd-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,137,60,0.28);
  color: var(--forest);
}
.rs-property-page .pd-btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.38);
  color: rgba(255,255,255,0.88);
}
.rs-property-page .pd-btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
/* ─── Navigation (reuses rh- classes from home.css) ────────── */
#rh-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.4rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--t-slow), box-shadow var(--t-slow), padding var(--t-slow);
}
#rh-nav.scrolled {
  padding: 1rem 2.5rem;
  background: rgba(36,51,42,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 28px rgba(0,0,0,0.22);
}
.rh-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  text-decoration: none;
  flex-shrink: 0;
}
.rh-nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
  margin: 0; padding: 0;
}
.rh-nav-links a {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--t-fast);
}
.rh-nav-links a:hover { color: var(--gold); }
.rh-nav-cta {
  padding: 0.55rem 1.3rem !important;
  background: var(--gold) !important;
  color: var(--forest) !important;
  font-weight: 500 !important;
}
.rh-nav-cta:hover { background: var(--gold-light) !important; color: var(--forest) !important; }

.rh-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.rh-nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform var(--t-base), opacity var(--t-base);
}
.rh-nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.rh-nav-toggle.open span:nth-child(2) { opacity: 0; }
.rh-nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.rh-nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,51,42,0.98);
  backdrop-filter: blur(12px);
  z-index: 199;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  padding: 2rem;
  opacity: 0;
  transition: opacity var(--t-base);
}
.rh-nav-drawer.open { opacity: 1; }
.rh-nav-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
}
.rh-nav-drawer a:hover { color: var(--gold); }

/* ─── Hero ──────────────────────────────────────────────────── */
.pd-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--forest);
}
.pd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(25,43,28,0.82) 0%, rgba(37,51,40,0.70) 50%, rgba(20,33,26,0.88) 100%);
}
.pd-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  animation: pdHeroUp 1.1s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes pdHeroUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pd-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.2rem;
  animation: pdHeroUp 1.1s 0.12s cubic-bezier(0.22,1,0.36,1) both;
}
.pd-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  animation: pdHeroUp 1.1s 0.22s cubic-bezier(0.22,1,0.36,1) both;
}
.pd-hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  animation: pdHeroUp 1.1s 0.32s cubic-bezier(0.22,1,0.36,1) both;
}
.pd-hero-specs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 2rem;
  animation: pdHeroUp 1.1s 0.42s cubic-bezier(0.22,1,0.36,1) both;
}
.pd-hero-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0 1.8rem;
}
.pd-hero-spec + .pd-hero-spec {
  border-left: 1px solid rgba(255,255,255,0.12);
}
.pd-hero-spec-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.pd-hero-spec-key {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.pd-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  animation: pdHeroUp 1.1s 0.52s cubic-bezier(0.22,1,0.36,1) both;
}

.pd-hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: pdHeroUp 1.1s 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
.pd-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.38), transparent);
  animation: pdScrollPulse 2.2s ease-in-out infinite;
}
@keyframes pdScrollPulse {
  0%, 100% { opacity: 0.38; transform: scaleY(1); }
  50%       { opacity: 0.9;  transform: scaleY(1.12); }
}

/* ─── Quick Facts Bar ───────────────────────────────────────── */
.pd-quick-facts {
  background: var(--parchment);
  padding: 2rem 0;
}
.pd-qf-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.pd-qf-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 2.5rem;
  flex: 1;
  min-width: 200px;
}
.pd-qf-item + .pd-qf-item {
  border-left: 1px solid rgba(36,51,42,0.12);
}
.pd-qf-icon {
  color: var(--sage);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.pd-qf-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.pd-qf-value {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
}

/* ─── Description ───────────────────────────────────────────── */
.pd-description {
  padding: 8rem 0;
  background: var(--cream);
}
.pd-description-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.pd-description-text p {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.88;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.pd-description-text p strong { color: var(--text); font-weight: 500; }
.pd-description-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ─── Gallery ───────────────────────────────────────────────── */
.pd-gallery {
  padding: 7rem 0;
  background: var(--forest);
}
.pd-gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pd-gallery-header .pd-section-heading { color: #fff; }
.pd-gallery-header .pd-eyebrow { opacity: 0.8; }

.pd-gallery-grid {
  column-count: 3;
  column-gap: 6px;
}
.pd-gallery-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  display: block;
}
.pd-gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.55s var(--t-slow);
}
.pd-gallery-item:hover img { transform: scale(1.03); }

/* ─── Amenities ─────────────────────────────────────────────── */
.pd-amenities {
  padding: 7rem 0;
  background: var(--parchment);
}
.pd-amenities-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.pd-amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.pd-amenity-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-top: 2px solid var(--sage);
}
.pd-amenity-icon {
  color: var(--forest-mid);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.pd-amenity-label {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text);
}

/* ─── Sleeping Arrangements ─────────────────────────────────── */
.pd-sleeping {
  padding: 7rem 0;
  background: var(--cream);
}
.pd-sleeping-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.pd-bedroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pd-bedroom-card {
  background: var(--white);
  border-top: 2px solid var(--gold);
  padding: 1.8rem;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.pd-bedroom-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.pd-bedroom-icon {
  color: var(--forest-mid);
  margin-bottom: 1rem;
  width: 32px;
  height: 32px;
}
.pd-bedroom-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.35rem;
}
.pd-bedroom-detail {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.pd-bedroom-bath {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* ─── Reviews ───────────────────────────────────────────────── */
.pd-reviews {
  padding: 7rem 0;
  background: var(--parchment);
}
.pd-reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.pd-reviews-header p {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 0.5rem;
}

.pd-rating-summary {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--white);
  padding: 2rem;
  margin-bottom: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
  box-shadow: 0 3px 24px rgba(0,0,0,0.06);
}
.pd-rs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  padding: 0 1.5rem;
  min-width: 100px;
}
.pd-rs-item + .pd-rs-item {
  border-left: 1px solid var(--parchment);
}
.pd-rs-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}
.pd-rs-star { color: var(--gold); font-size: 0.75rem; }
.pd-rs-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pd-reviews-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pd-review-quote {
  background: var(--white);
  padding: 1.8rem;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.pd-review-quote:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.pd-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 0.5;
  color: var(--sage);
  display: block;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.pd-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.72;
  margin-bottom: 1rem;
}
.pd-quote-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.pd-quote-author {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
}
.pd-quote-stars { color: var(--gold); font-size: 0.7rem; }
.pd-quote-date {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Social / Link Icons Bar ───────────────────────────────── */
.pd-social-bar {
  background: var(--forest);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(184,137,60,0.2);
}
.pd-social-bar .pd-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.pd-social-bar-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.pd-social-bar-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.8rem;
}
.pd-social-bar-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.pd-social-bar-icon:hover {
  color: var(--gold);
  transform: translateY(-3px);
}
.pd-social-bar-icon svg {
  width: 26px;
  height: 26px;
}
.pd-social-bar-icon span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Booking form inside CTA section ───────────────────────── */
.pd-cta-booking-wrap {
  max-width: 680px;
  margin: 2.5rem auto 2.5rem;
}

/* ── Blend plugin booking form into heritage theme ── */
.rs-property-page .rs-booking-form-wrap {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,137,60,0.35);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  font-family: 'Jost', sans-serif;
  color: rgba(255,255,255,0.9);
}
.rs-property-page .rs-booking-form__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.2rem;
}
.rs-property-page .rs-pricing-info {
  background: rgba(255,255,255,0.08);
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.rs-property-page .rs-pricing-info__label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.2rem;
}
.rs-property-page .rs-pricing-info__details {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.rs-property-page .rs-form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.3rem;
  display: block;
}
.rs-property-page .rs-form-group input,
.rs-property-page .rs-form-group select {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  padding: 0.65rem 0.9rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--forest);
  background: rgba(255,255,255,0.92);
  width: 100%;
}
.rs-property-page .rs-form-group input:focus,
.rs-property-page .rs-form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184,137,60,0.3);
}
.rs-property-page .btn-book-now,
.rs-property-page #rs-check-availability-btn {
  background: var(--gold) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 2px !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 0.9rem 2rem !important;
  cursor: pointer;
  transition: background 0.2s !important;
}
.rs-property-page .btn-book-now:hover,
.rs-property-page #rs-check-availability-btn:hover {
  background: #a07830 !important;
}
.rs-property-page .rs-availability-result {
  border-radius: 2px;
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  margin-top: 0.8rem;
}
.rs-property-page .rs-no-charge-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.6rem;
}
.pd-pricing-fallback {
  text-align: center;
  padding: 2rem;
}
.pd-pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.pd-pricing-cta:hover { background: #a07830; }

/* ─── Booking form button overrides (match heritage theme) ───── */

/* Primary: Check Availability + Proceed to Payment */
.rs-property-page .rs-booking-form-wrap .btn-book-now,
.rs-property-page .rs-booking-form-wrap #rs-check-availability-btn,
.rs-property-page .rs-booking-form-wrap #rs-proceed-payment-btn {
  background: var(--gold) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 2px !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 1.8rem !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: none !important;
  height: auto !important;
}
.rs-property-page .rs-booking-form-wrap .btn-book-now:hover,
.rs-property-page .rs-booking-form-wrap #rs-check-availability-btn:hover,
.rs-property-page .rs-booking-form-wrap #rs-proceed-payment-btn:hover {
  background: #a07830 !important;
  transform: translateY(-1px) !important;
}

/* Secondary: Apply (coupon) */
.rs-property-page .rs-booking-form-wrap #rs-apply-coupon-btn {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  border-radius: 2px !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 0 1.2rem !important;
  height: 42px !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s !important;
  white-space: nowrap !important;
}
.rs-property-page .rs-booking-form-wrap #rs-apply-coupon-btn:hover {
  background: var(--gold) !important;
  color: #fff !important;
}

/* Tertiary: Back */
.rs-property-page .rs-booking-form-wrap #rs-back-btn {
  background: transparent !important;
  color: rgba(255,255,255,0.7) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  border-radius: 2px !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 1.2rem !important;
  cursor: pointer !important;
  transition: border-color 0.2s, color 0.2s !important;
  box-shadow: none !important;
  height: auto !important;
}
.rs-property-page .rs-booking-form-wrap #rs-back-btn:hover {
  border-color: rgba(255,255,255,0.6) !important;
  color: #fff !important;
}

/* ─── Highlights ────────────────────────────────────────────── */
.pd-highlights {
  background: var(--cream);
  padding: 6rem 2rem;
}
.pd-highlights-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pd-highlights-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}
.pd-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--forest);
  line-height: 1.5;
}
.pd-highlight-icon {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ─── House Rules ────────────────────────────────────────────── */
.pd-house-rules {
  background: var(--cream);
  padding: 6rem 2rem;
}
.pd-rules-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pd-rules-list {
  list-style: none;
  padding: 0;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 3rem;
}
.pd-rule-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(36,51,42,0.08);
  font-size: 0.92rem;
  color: var(--forest);
  line-height: 1.5;
}
.pd-rule-icon {
  width: 17px;
  height: 17px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ─── Location ───────────────────────────────────────────────── */
.pd-location {
  background: var(--parchment);
  padding: 6rem 2rem;
}
.pd-location-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pd-location-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.6rem;
}
.pd-location-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.pd-location-body.no-nearby {
  grid-template-columns: 1fr;
}
.pd-map-wrap {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(184,137,60,0.2);
  box-shadow: 0 4px 20px rgba(36,51,42,0.08);
}
.pd-map-wrap iframe {
  display: block;
}
.pd-nearby {
  background: var(--cream);
  border: 1px solid rgba(184,137,60,0.2);
  border-radius: 3px;
  padding: 1.8rem;
}
.pd-nearby-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(184,137,60,0.2);
}
.pd-nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pd-nearby-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--forest);
}
.pd-nearby-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.pd-nearby-name {
  flex: 1;
}
.pd-nearby-dist {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ─── Book CTA ──────────────────────────────────────────────── */
.pd-book-cta {
  background: var(--forest);
  padding: 7rem 2rem;
  text-align: center;
}
.pd-book-cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.pd-book-cta-sub {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
}
.pd-book-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer (same as homepage) ─────────────────────────────── */
.pd-footer {
  background: var(--forest);
  padding: 5rem 0 2.5rem;
}
.pd-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.pd-footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.pd-footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.42);
  line-height: 1.72;
  margin-bottom: 1.6rem;
}
.pd-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.06);
  padding: 0.5rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.pd-footer-badge svg { width: 14px; height: 14px; }
.pd-footer-col h4 {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
}
.pd-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0; padding: 0;
}
.pd-footer-col ul li {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.pd-footer-col ul li a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}
.pd-footer-col ul li a:hover { color: var(--gold); }
.pd-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.pd-footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.22); }
.pd-footer-eco {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.pd-footer-eco svg { width: 14px; height: 14px; color: var(--sage); opacity: 0.7; }
.pd-footer-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-top: 0.6rem;
  transition: color var(--t-fast);
}
.pd-footer-phone:hover { color: var(--gold); }
.pd-footer-phone svg { width: 14px; height: 14px; opacity: 0.7; }
.pd-footer-contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.pd-footer-contact-row .pd-footer-phone { margin-top: 0; }
.pd-footer-prop-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), opacity var(--t-fast);
}
.pd-footer-prop-link svg { width: 12px; height: 12px; opacity: 0.8; }
.pd-footer-prop-link:hover { border-bottom-color: var(--gold); opacity: 0.85; }
.pd-footer-social { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
.pd-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base);
}
.pd-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,137,60,0.08);
}
.pd-social-link svg { width: 15px; height: 15px; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pd-amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .pd-gallery-grid { column-count: 2; }
}

@media (max-width: 900px) {
  #rh-nav { padding: 1.1rem 1.5rem; }
  .rh-nav-links { display: none; }
  .rh-nav-toggle { display: flex; }

  .pd-description-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pd-amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-reviews-quotes { grid-template-columns: 1fr; }
  .pd-footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .pd-rating-summary { flex-wrap: wrap; gap: 1rem; }
  .pd-rs-item + .pd-rs-item { border-left: none; border-top: 1px solid var(--parchment); padding-top: 1rem; }
  .pd-hero-specs { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 600px) {
  .pd-inner { padding: 0 1.2rem; }
  .pd-gallery-grid { column-count: 1; }
  .pd-amenity-grid { grid-template-columns: 1fr 1fr; }
  .pd-highlights-grid { grid-template-columns: 1fr; }
  .pd-bedroom-grid { grid-template-columns: 1fr; }
  .pd-qf-inner { flex-direction: column; gap: 1.2rem; }
  .pd-qf-item + .pd-qf-item { border-left: none; border-top: 1px solid rgba(36,51,42,0.1); padding-top: 1.2rem; }
  .pd-book-cta-btns { flex-direction: column; align-items: center; }
  .rs-property-page .rs-booking-form-wrap { padding: 1.8rem 1.2rem; }
  .rs-property-page .rs-form-row { grid-template-columns: 1fr !important; }
  .pd-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-rules-list { grid-template-columns: 1fr; }
  .pd-location-body { grid-template-columns: 1fr; }
  .pd-nearby { margin-top: 0; }
}

/* ── Book Now Floating Button ─────────────────────────── */
.rs-book-now-float {
  position: fixed;
  bottom: 5.75rem;
  right: 1.75rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 2rem;
  box-shadow: 0 4px 18px rgba(68,2,124,0.38);
  transition: background 0.2s, transform 0.18s, box-shadow 0.2s, opacity 0.25s;
}
.rs-book-now-float:hover,
.rs-book-now-float:focus-visible {
  background: #0566B7;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(5,102,183,0.38);
  color: #fff;
  text-decoration: none;
}
.rs-book-now-float svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
.rs-book-now-float.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
@media (max-width: 480px) {
  .rs-book-now-float span { display: none; }
  .rs-book-now-float { padding: 1.5rem; border-radius: 50%; }
}
