/* =============================================================
   Reuben's Stays — Cancellation & Refund Policy Styles
   Scoped under .rs-policy-page (body class set by WordPress)
   Earthy / warm heritage palette — mirrors home.css tokens
   ============================================================= */

/* ─── Custom Properties ─────────────────────────────────────── */
.rs-policy-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 (policy scope) ─────────────────────────────── */
.rs-policy-page {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Override Astra header & footer */
.rs-policy-page .site-header,
.rs-policy-page .site-footer,
.rs-policy-page #masthead,
.rs-policy-page #colophon {
  display: none !important;
}

.rs-policy-page .site-content,
.rs-policy-page #content,
.rs-policy-page .ast-container,
.rs-policy-page .entry-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

.rs-policy-page html { scroll-behavior: smooth; }

/* Paper-grain texture overlay */
.rs-policy-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-policy-page :focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

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

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

/* ─── Navigation ────────────────────────────────────────────── */
.rs-policy-page #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);
}

.rs-policy-page #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);
}

.rs-policy-page .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;
}

.rs-policy-page .rh-nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.rs-policy-page .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);
}
.rs-policy-page .rh-nav-links a:hover { color: var(--gold); }

.rs-policy-page .rp-nav-active {
  color: var(--gold) !important;
}

.rs-policy-page .rh-nav-cta {
  padding: 0.55rem 1.3rem !important;
  background: var(--gold) !important;
  color: var(--forest) !important;
  font-weight: 500 !important;
  transition: background var(--t-base) !important;
}
.rs-policy-page .rh-nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--forest) !important;
}

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

/* Mobile drawer */
.rs-policy-page .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);
}
.rs-policy-page .rh-nav-drawer.open { opacity: 1; }
.rs-policy-page .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);
}
.rs-policy-page .rh-nav-drawer a:hover { color: var(--gold); }

/* ─── Hero ──────────────────────────────────────────────────── */
.rp-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 4rem;
  overflow: hidden;
}

.rp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(122,158,130,0.15) 0%, transparent 60%),
    linear-gradient(160deg, #192B1C 0%, #24332A 50%, #1E3025 100%);
}

.rp-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.rp-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  animation: rpHeroUp 0.9s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes rpHeroUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rp-breadcrumb {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.4rem;
}
.rp-breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--t-fast);
}
.rp-breadcrumb a:hover { color: var(--gold); }
.rp-breadcrumb span { color: rgba(255,255,255,0.25); margin: 0 0.5rem; }

.rp-hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.rp-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
}
.rp-hero-title em { font-style: italic; color: var(--sage); }

.rp-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-top: 0.7rem;
}

/* ─── Two-Column Layout ─────────────────────────────────────── */
.rp-page-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 8rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5rem;
  align-items: start;
}

/* ─── Sidebar ───────────────────────────────────────────────── */
.rp-sidebar {
  position: sticky;
  top: 6rem;
}

.rp-sidebar-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.rp-toc {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--parchment);
}

.rp-toc-link {
  display: block;
  padding: 0.55rem 0 0.55rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color var(--t-fast), border-color var(--t-fast);
  line-height: 1.45;
}
.rp-toc-link:hover,
.rp-toc-link.active {
  color: var(--forest);
  border-left-color: var(--gold);
}

.rp-sidebar-notice {
  margin-top: 2.5rem;
  padding: 1.2rem;
  background: var(--forest);
  border-top: 2px solid var(--gold);
}
.rp-sidebar-notice p {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}
.rp-sidebar-notice p:last-of-type { margin-bottom: 0; }
.rp-sidebar-notice strong { color: var(--gold); font-weight: 500; }

.rp-sidebar-contact-btn {
  display: block;
  margin-top: 1rem;
  padding: 0.65rem 1rem;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background var(--t-base);
}
.rp-sidebar-contact-btn:hover { background: var(--gold-light); color: var(--forest); }

/* ─── Content Area ──────────────────────────────────────────── */
.rp-content { min-width: 0; }

.rp-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--parchment);
  margin-bottom: 3rem;
}

/* ─── Policy Sections ───────────────────────────────────────── */
.rp-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 7rem;
}

.rp-section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.rp-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.rp-section-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.4rem;
}

.rp-content p {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.rp-content p strong { color: var(--text); font-weight: 500; }

/* ─── Check List ────────────────────────────────────────────── */
.rp-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.8rem 0 1.2rem;
  padding: 0;
}
.rp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}
.rp-check-list li::before {
  content: '✓';
  color: var(--sage);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.rp-check-list li strong { color: var(--text); font-weight: 500; }

/* ─── Step List ─────────────────────────────────────────────── */
.rp-step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1rem 0 1.5rem;
  padding: 0;
}
.rp-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.65;
}
.rp-step-list li strong { color: var(--text); font-weight: 500; }

.rp-step-num {
  width: 26px;
  height: 26px;
  background: var(--forest);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ─── Compare Grid ──────────────────────────────────────────── */
.rp-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--parchment);
  margin: 1.5rem 0;
  border: 1px solid var(--parchment);
}

.rp-compare-col {
  background: var(--cream);
  padding: 1.6rem;
}

.rp-compare-col-header {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rp-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rp-dot-gold { background: var(--gold); }
.rp-dot-sage { background: var(--sage); }

.rp-compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}
.rp-compare-col ul li {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-light);
  padding-left: 0.8rem;
  border-left: 2px solid var(--parchment);
  line-height: 1.5;
}

/* ─── Tables ────────────────────────────────────────────────── */
.rp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.rp-table thead tr { background: var(--forest); }
.rp-table thead th {
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.rp-th-right { text-align: right !important; }

.rp-table tbody tr {
  border-bottom: 1px solid var(--parchment);
  transition: background var(--t-fast);
}
.rp-table tbody tr:hover { background: rgba(237,228,209,0.4); }
.rp-table tbody td {
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
}
.rp-table tbody td:first-child { color: var(--text); font-weight: 400; }
.rp-table tbody td:last-child { text-align: right; }

.rp-refund-full   { color: #2E6B3E !important; font-weight: 500 !important; }
.rp-refund-half   { color: var(--earth) !important; font-weight: 500 !important; }
.rp-refund-quarter { color: #7A5C00 !important; font-weight: 500 !important; }
.rp-refund-none   { color: #8B2E2E !important; font-weight: 500 !important; }

/* ─── Callout Boxes ─────────────────────────────────────────── */
.rp-callout {
  padding: 1.4rem 1.6rem;
  margin: 1.5rem 0;
  border-left: 3px solid var(--gold);
  background: rgba(237,228,209,0.45);
}
.rp-callout-icon {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.rp-callout-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.rp-callout p {
  font-size: 0.88rem !important;
  margin-bottom: 0 !important;
  color: var(--text-light) !important;
}

.rp-callout-green {
  border-left-color: var(--sage);
  background: rgba(122,158,130,0.08);
}
.rp-callout-green .rp-callout-title { color: var(--forest-mid); }

.rp-callout-red {
  border-left-color: #A0372A;
  background: rgba(160,55,42,0.05);
}
.rp-callout-red .rp-callout-title { color: #A0372A; }

/* ─── Contact Strip ─────────────────────────────────────────── */
.rp-contact-strip {
  background: var(--forest);
  padding: 2.5rem;
  margin-top: 1.5rem;
}
.rp-contact-strip-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}
.rp-contact-strip h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.2rem;
}
.rp-contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.rp-contact-method {
  background: rgba(255,255,255,0.05);
  padding: 1rem 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.rp-contact-icon {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  display: block;
}
.rp-contact-method-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.3rem;
}
.rp-contact-method-value {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
}
.rp-contact-method-value a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--t-fast);
}
.rp-contact-method-value a:hover { color: var(--gold); }
.rp-contact-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* ─── Policy Meta ───────────────────────────────────────────── */
.rp-policy-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-top: 1px solid var(--parchment);
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.rp-policy-meta span {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 300;
}
.rp-policy-meta a {
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t-fast);
}
.rp-policy-meta a:hover { text-decoration: underline; }

/* ─── Footer ────────────────────────────────────────────────── */
.rs-policy-page .rh-footer {
  background: var(--forest);
  padding: 5rem 0 2.5rem;
}
.rs-policy-page .rh-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.rs-policy-page .rh-footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.rs-policy-page .rh-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;
}
.rs-policy-page .rh-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);
}
.rs-policy-page .rh-footer-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.rs-policy-page .rh-footer-col h4 {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.2rem;
}
.rs-policy-page .rh-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}
.rs-policy-page .rh-footer-col ul li {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.rs-policy-page .rh-footer-col ul li a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}
.rs-policy-page .rh-footer-col ul li a:hover { color: var(--gold); }

.rs-policy-page .rh-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;
}
.rs-policy-page .rh-footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.22); }
.rs-policy-page .rh-footer-eco {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.rs-policy-page .rh-footer-eco svg { width: 14px; height: 14px; color: var(--sage); opacity: 0.7; }

.rs-policy-page .rh-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);
}
.rs-policy-page .rh-footer-phone:hover { color: var(--gold); }
.rs-policy-page .rh-footer-phone svg { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }

.rs-policy-page .rh-footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.rs-policy-page .rh-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);
}
.rs-policy-page .rh-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,137,60,0.08);
}
.rs-policy-page .rh-social-link svg { width: 15px; height: 15px; flex-shrink: 0; }
.rs-policy-page .rh-social-link-wa:hover {
  border-color: #25D366;
  color: #25D366;
  background: rgba(37,211,102,0.08);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .rs-policy-page #rh-nav { padding: 1.1rem 1.5rem; }
  .rs-policy-page .rh-nav-links { display: none; }
  .rs-policy-page .rh-nav-toggle { display: flex; }

  .rp-page-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .rp-sidebar { position: static; }
  .rp-toc { display: none; }
  .rp-contact-methods { grid-template-columns: 1fr; }
  .rp-compare-grid { grid-template-columns: 1fr; }
  .rs-policy-page .rh-footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .rp-page-body { padding: 3rem 1.2rem 5rem; }
  .rs-policy-page .rh-inner { padding: 0 1.2rem; }
  .rp-hero-inner { padding: 0 1.2rem; }
}
