/* ==========================================================================
   ROYAL HOME PAINTERS — SERVICE PAGE STYLES
   For: GeneratePress Theme + GenerateBlocks Pro
   Load on: Service pages only
   Prefix: rhp-sp- (service page specific)
   Reuses from style.css: rhp-container, rhp-label, rhp-title, rhp-btn-primary,
           rhp-btn-navy, rhp-bottom-cta, rhp-faq-*, rhp-review-*, rhp-section,
           rhp-hero-form
   ========================================================================== */


/* ---------- BREADCRUMBS ---------- */
.rhp-sp-breadcrumbs {
  padding: 12px 0;
  background: var(--rhp-off-white);
  border-bottom: 1px solid #f0ede6;
  font-size: 13px;
  color: var(--rhp-text-light);
  font-family: var(--rhp-body);
}
.rhp-sp-breadcrumbs a {
  color: var(--rhp-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.rhp-sp-breadcrumbs a:hover {
  color: var(--rhp-navy);
}
.rhp-sp-breadcrumbs .rhp-sp-sep {
  margin: 0 8px;
  color: #ccc;
}
.rhp-sp-breadcrumbs strong {
  color: var(--rhp-navy);
  font-weight: 600;
}


/* ---------- SERVICE HERO ---------- */
.rhp-sp-hero {
  background: var(--rhp-navy);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.rhp-sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rhp-navy-dark), var(--rhp-navy), #1e3a5f);
}
.rhp-sp-hero .rhp-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* Service Hero — H1 as SEO keyword label */
.rhp-sp-hero h1 {
  font-family: var(--rhp-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rhp-gold);
  margin: 0 0 16px 0;
}
.rhp-sp-hero-headline {
  font-family: var(--rhp-heading);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  color: var(--rhp-white);
  line-height: 1.15;
  margin: 0 0 16px 0;
}
.rhp-sp-hero-headline em {
  font-style: italic;
  color: var(--rhp-gold);
}
.rhp-sp-hero-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px 0;
  max-width: 480px;
  font-family: var(--rhp-body);
}
.rhp-sp-hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.rhp-sp-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--rhp-body);
}
.rhp-sp-hero-awards {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.rhp-sp-hero-award {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px 14px;
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
  font-family: var(--rhp-body);
}
.rhp-sp-hero-award strong {
  display: block;
  color: var(--rhp-gold);
  font-size: 12px;
  margin-bottom: 2px;
}

/* Service Hero Form — reuse rhp-hero-form base, override for service */
.rhp-sp-hero .rhp-hero-form {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  padding: 24px 20px;
}
.rhp-sp-hero .rhp-hero-form h3 {
  font-size: 18px;
  margin-bottom: 3px;
}
.rhp-sp-hero .rhp-hero-form .rhp-form-sub {
  margin-bottom: 16px;
  font-size: 12px;
}


/* ---------- SHOWCASE PHOTO BANNER ---------- */
.rhp-sp-showcase {
  padding: 0;
  position: relative;
}
.rhp-sp-showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4px;
}
.rhp-sp-showcase-img {
  background: var(--rhp-navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.rhp-sp-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.rhp-sp-showcase-img.main {
  min-height: 280px;
}
.rhp-sp-showcase-img.sm {
  min-height: 138px;
}
.rhp-sp-showcase-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rhp-sp-showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  z-index: 2;
}
.rhp-sp-showcase-overlay span {
  color: var(--rhp-white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: var(--rhp-body);
}
.rhp-sp-showcase-overlay small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  display: block;
  margin-top: 2px;
  font-family: var(--rhp-body);
}
.rhp-sp-showcase-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rhp-gold);
  color: var(--rhp-navy);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  z-index: 3;
  font-family: var(--rhp-body);
}


/* ---------- MAIN LAYOUT (Content + Sidebar) ---------- */
.rhp-sp-main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding: 48px 0;
}


/* ---------- CONTENT SECTIONS ---------- */
.rhp-sp-content-section {
  margin-bottom: 48px;
}
.rhp-sp-cs-label {
  font-family: var(--rhp-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rhp-navy-dark);
  margin-bottom: 10px;
	/* --- NEW PROPERTIES ADDED BELOW --- */
  background-color: #f8f6f1; /* Replace with whatever hex code or color you want */
  width: fit-content;        /* Forces the background to hug the text tightly */
  padding: 4px 10px;         /* Adds breathing room (top/bottom, left/right) */
  border-radius: 4px;        /* Optional: Gives the background box slightly rounded corners */
}
}
.rhp-sp-cs-title {
  font-family: var(--rhp-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--rhp-navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.rhp-sp-cs-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--rhp-text-secondary);
  margin-bottom: 14px;
  font-family: var(--rhp-body);
}
.rhp-sp-cs-text strong {
  color: var(--rhp-navy);
  font-weight: 600;
}


/* ---------- TABLE OF CONTENTS ---------- */
.rhp-sp-toc {
  background: var(--rhp-cream);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 40px;
  border: 1px solid var(--rhp-cream-dark);
}
.rhp-sp-toc h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--rhp-navy);
  margin: 0 0 10px 0;
  font-family: var(--rhp-body);
}
.rhp-sp-toc-list {
  list-style: none;
  counter-reset: toc;
  margin: 0;
  padding: 0;
}
.rhp-sp-toc-list li {
  counter-increment: toc;
  margin-bottom: 6px;
}
.rhp-sp-toc-list li a {
  font-size: 14px;
  color: var(--rhp-text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--rhp-body);
  transition: color 0.2s ease;
}
.rhp-sp-toc-list li a::before {
  content: counter(toc);
  font-size: 11px;
  font-weight: 700;
  color: var(--rhp-gold);
  background: var(--rhp-white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rhp-cream-dark);
  flex-shrink: 0;
}
.rhp-sp-toc-list li a:hover {
  color: var(--rhp-navy);
}


/* ---------- PROCESS FLOW (6-step inline) ---------- */
.rhp-sp-process-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.rhp-sp-pf-step {
  background: var(--rhp-off-white);
  border-radius: 8px;
  padding: 18px 14px;
  border: 1px solid #f0ede6;
  text-align: center;
}
.rhp-sp-pf-num {
  font-family: var(--rhp-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--rhp-cream-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.rhp-sp-pf-step h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--rhp-navy);
  margin: 0 0 4px 0;
  font-family: var(--rhp-body);
}
.rhp-sp-pf-step p {
  font-size: 12px;
  color: var(--rhp-text-secondary);
  line-height: 1.5;
  margin: 0;
  font-family: var(--rhp-body);
}


/* ---------- INCLUDED CHECKLIST ---------- */
.rhp-sp-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}
.rhp-sp-inc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--rhp-text-secondary);
  line-height: 1.5;
  font-family: var(--rhp-body);
}
.rhp-sp-inc-check {
  color: var(--rhp-gold);
  font-weight: 700;
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}


/* ---------- PRICING TABLE ---------- */
.rhp-sp-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0;
  border: 1px solid #e8e5dd;
  font-family: var(--rhp-body);
}
.rhp-sp-pricing-table th {
  background: var(--rhp-navy);
  color: var(--rhp-white);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}
.rhp-sp-pricing-table td {
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid #f0ede6;
  color: var(--rhp-text-secondary);
}
.rhp-sp-pricing-table tr:last-child td {
  border-bottom: none;
}
.rhp-sp-pricing-table tr:nth-child(even) td {
  background: var(--rhp-off-white);
}
.rhp-sp-pricing-table .rhp-sp-highlight {
  background: rgba(201, 169, 96, 0.08) !important;
  font-weight: 600;
  color: var(--rhp-navy);
}
.rhp-sp-pricing-table .rhp-sp-vs {
  font-size: 12px;
  color: var(--rhp-text-light);
  font-weight: 400;
}


/* ---------- BEFORE & AFTER GALLERY ---------- */
.rhp-sp-ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0;
}
.rhp-sp-ba-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #f0ede6;
  cursor: pointer;
  transition: all 0.3s ease;
}
.rhp-sp-ba-card:hover {
  border-color: var(--rhp-gold);
  transform: translateY(-3px);
  box-shadow: var(--rhp-shadow-md);
}
.rhp-sp-ba-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 160px;
}
.rhp-sp-ba-img > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--rhp-text-light);
  font-family: var(--rhp-body);
  position: relative;
  overflow: hidden;
}
.rhp-sp-ba-img > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.rhp-sp-ba-img .rhp-sp-before {
  background: #e8e3d8;
}
.rhp-sp-ba-img .rhp-sp-after {
  background: var(--rhp-navy-light);
  color: rgba(255, 255, 255, 0.4);
}
.rhp-sp-ba-info {
  padding: 12px 14px;
}
.rhp-sp-ba-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--rhp-navy);
  margin: 0 0 2px 0;
  font-family: var(--rhp-body);
}
.rhp-sp-ba-info p {
  font-size: 12px;
  color: var(--rhp-text-light);
  margin: 0;
  font-family: var(--rhp-body);
}


/* ---------- EEAT EXPERIENCE BLOCK ---------- */
.rhp-sp-eeat {
  padding: 40px 0;
  background: var(--rhp-cream);
  border-radius: 10px;
  margin-bottom: 48px;
}
.rhp-sp-eeat-inner {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: start;
  padding: 0 24px;
}
.rhp-sp-eeat-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4c5a9, #e8dcc8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rhp-text-light);
  font-size: 11px;
  border: 3px solid var(--rhp-white);
  box-shadow: var(--rhp-shadow-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.rhp-sp-eeat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rhp-sp-eeat-name {
  font-family: var(--rhp-heading);
  font-size: 18px;
  color: var(--rhp-navy);
  font-weight: 600;
  margin: 0 0 2px 0;
}
.rhp-sp-eeat-role {
  font-size: 12px;
  color: var(--rhp-gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  font-family: var(--rhp-body);
}
.rhp-sp-eeat-content p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--rhp-text-secondary);
  margin: 0 0 10px 0;
  font-family: var(--rhp-body);
}
.rhp-sp-eeat-content p strong {
  color: var(--rhp-navy);
}
.rhp-sp-eeat-quote {
  border-left: 3px solid var(--rhp-gold);
  padding-left: 16px;
  font-style: italic;
  color: var(--rhp-navy);
  font-size: 15px;
  line-height: 1.7;
  margin: 16px 0;
  font-family: var(--rhp-body);
}


/* ---------- SERVICE PAGE REVIEWS (inline, not grid) ---------- */
.rhp-sp-review-card {
  background: var(--rhp-white);
  border: 1px solid #e8e5dd;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 12px;
  transition: box-shadow 0.3s ease;
}
.rhp-sp-review-card:hover {
  box-shadow: var(--rhp-shadow-md);
}
.rhp-sp-review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.rhp-sp-review-google-icon {
  margin-left: auto;
  font-size: 15px;
  font-weight: 800;
  color: var(--rhp-google-blue);
}
.rhp-sp-google-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px;
  background: var(--rhp-off-white);
  border-radius: 8px;
  border: 1px solid #f0ede6;
}
.rhp-sp-google-bar-logo {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--rhp-body);
}
.rhp-sp-google-bar-rating {
  font-size: 24px;
  font-weight: 700;
  color: var(--rhp-text-primary);
  font-family: var(--rhp-body);
}
.rhp-sp-google-bar-stars {
  color: var(--rhp-google-star);
  font-size: 14px;
}
.rhp-sp-google-bar-count {
  font-size: 12px;
  color: var(--rhp-text-light);
  font-family: var(--rhp-body);
}
.rhp-sp-google-bar-link {
  font-size: 12px;
  color: var(--rhp-google-blue);
  font-weight: 500;
  margin-left: auto;
  font-family: var(--rhp-body);
  text-decoration: none;
}


/* ---------- SERVICE PAGE VIDEOS ---------- */
.rhp-sp-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}
.rhp-sp-video-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #f0ede6;
  cursor: pointer;
  transition: all 0.3s ease;
}
.rhp-sp-video-card:hover {
  border-color: var(--rhp-gold);
  transform: translateY(-3px);
  box-shadow: var(--rhp-shadow-md);
}
.rhp-sp-video-thumb {
  aspect-ratio: 16 / 9;
  background: var(--rhp-navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.rhp-sp-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rhp-sp-play-btn {
  width: 48px;
  height: 48px;
  background: rgba(234, 67, 53, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
}
.rhp-sp-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid var(--rhp-white);
  margin-left: 3px;
}
.rhp-sp-video-body {
  padding: 12px 14px;
}
.rhp-sp-video-body h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--rhp-navy);
  margin: 0 0 3px 0;
  font-family: var(--rhp-body);
}
.rhp-sp-video-body p {
  font-size: 11px;
  color: var(--rhp-text-light);
  margin: 0;
  font-family: var(--rhp-body);
}


/* ---------- SERVICE PAGE FAQ (reuses rhp-faq-* from style.css) ---------- */
/* No additional styles needed — reuse .rhp-faq-item, .rhp-faq-q, .rhp-faq-a */


/* ---------- RELATED SERVICES ---------- */
.rhp-sp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0;
}
.rhp-sp-related-card {
  background: var(--rhp-off-white);
  border: 1px solid #f0ede6;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.rhp-sp-related-card:hover {
  border-color: var(--rhp-gold);
  transform: translateY(-3px);
  box-shadow: var(--rhp-shadow-md);
}
.rhp-sp-related-card h4 {
  font-family: var(--rhp-heading);
  font-size: 16px;
  color: var(--rhp-navy);
  margin: 0 0 6px 0;
}
.rhp-sp-related-card p {
  font-size: 14px;
  color: var(--rhp-text-secondary);
  line-height: 1.5;
  margin: 0 0 10px 0;
  font-family: var(--rhp-body);
}
.rhp-sp-related-card a,
.rhp-sp-related-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--rhp-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-family: var(--rhp-body);
}


/* ---------- AREA CHIPS ---------- */
.rhp-sp-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}
.rhp-sp-ac {
  padding: 7px 14px;
  background: var(--rhp-off-white);
  border: 1px solid #e8e3d8;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--rhp-navy);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  font-family: var(--rhp-body);
}
.rhp-sp-ac:hover {
  background: var(--rhp-navy);
  color: var(--rhp-white);
  border-color: var(--rhp-navy);
}


/* ---------- BLOG RESOURCE LINKS ---------- */
.rhp-sp-blog-links {
  margin: 12px 0;
}
.rhp-sp-blog-link {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0ede6;
  cursor: pointer;
  transition: padding 0.2s ease;
  text-decoration: none;
  align-items: center;
}
.rhp-sp-blog-link:hover {
  padding-left: 8px;
}
.rhp-sp-blog-link:last-child {
  border-bottom: none;
}
.rhp-sp-blog-link-tag {
  font-size: 9px;
  font-weight: 700;
  color: var(--rhp-gold-dark);
  background: rgba(201, 169, 96, 0.1);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: center;
  font-family: var(--rhp-body);
}
.rhp-sp-blog-link h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--rhp-navy);
  margin: 0;
  font-family: var(--rhp-body);
}
.rhp-sp-blog-link p {
  font-size: 12px;
  color: var(--rhp-text-light);
  margin: 2px 0 0 0;
  font-family: var(--rhp-body);
}


/* ---------- STICKY SIDEBAR ---------- */
.rhp-sp-sticky-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}
.rhp-sp-sidebar-card {
  background: var(--rhp-off-white);
  border: 1px solid #f0ede6;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 14px;
}
.rhp-sp-sidebar-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--rhp-navy);
  margin: 0 0 8px 0;
  font-family: var(--rhp-body);
}
.rhp-sp-sidebar-card p {
  font-size: 13px;
  color: var(--rhp-text-secondary);
  line-height: 1.6;
  margin: 0;
  font-family: var(--rhp-body);
}
.rhp-sp-sidebar-card a {
  font-size: 12px;
  font-weight: 600;
  color: var(--rhp-gold-dark);
  letter-spacing: 0.5px;
  text-decoration: none;
}
.rhp-sp-sidebar-card a:hover {
  color: var(--rhp-gold);
}

/* Sidebar Form Card — reuses rhp-hero-form */
.rhp-sp-sticky-sidebar .rhp-hero-form {
  box-shadow: var(--rhp-shadow-md);
  margin-bottom: 14px;
}

/* Sidebar phone card */
.rhp-sp-sidebar-phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--rhp-navy);
  margin: 6px 0;
  font-family: var(--rhp-body);
}
.rhp-sp-sidebar-phone a {
  color: var(--rhp-navy);
  text-decoration: none;
}
.rhp-sp-sidebar-phone a:hover {
  color: var(--rhp-gold-dark);
}

/* Sidebar area links */
.rhp-sp-sidebar-area-links {
  font-size: 13px;
  line-height: 2;
}
.rhp-sp-sidebar-area-links a {
  color: var(--rhp-gold-dark) !important;
  display: block;
  text-decoration: none;
}
.rhp-sp-sidebar-area-links a:hover {
  color: var(--rhp-gold) !important;
}

/* Gallery view link */
.rhp-sp-gallery-link {
  text-align: center;
  margin-top: 14px;
}
.rhp-sp-gallery-link a {
  color: var(--rhp-gold-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--rhp-body);
}
.rhp-sp-gallery-link a:hover {
  color: var(--rhp-gold);
}


/* ---------- DESKTOP-ONLY / MOBILE-ONLY HELPERS ---------- */
.rhp-sp-desktop-only {
  display: block;
}
.rhp-sp-mobile-only {
  display: none;
}


/* ---------- HIDE SERVICE PAGE TITLE (GP DEFAULT) ---------- */
.single-service .entry-header,
.page-template-default .entry-header {
  display: none !important;
}


/* ==========================================================================
   RESPONSIVE — SERVICE PAGES
   ========================================================================== */
@media (max-width: 900px) {
  /* Hero stacks */
  .rhp-sp-hero .rhp-container {
    grid-template-columns: 1fr;
  }
  .rhp-sp-hero .rhp-hero-form {
    max-width: 100%;
  }

  /* Main layout stacks */
  .rhp-sp-main-layout {
    grid-template-columns: 1fr;
  }
  .rhp-sp-sticky-sidebar {
    position: static;
  }

  /* Process flow 2-col */
  .rhp-sp-process-flow {
    grid-template-columns: 1fr 1fr;
  }

  /* Galleries & grids single column */
  .rhp-sp-ba-grid {
    grid-template-columns: 1fr;
  }
  .rhp-sp-related-grid {
    grid-template-columns: 1fr;
  }
  .rhp-sp-videos-grid {
    grid-template-columns: 1fr;
  }

  /* Showcase stacks */
  .rhp-sp-showcase-grid {
    grid-template-columns: 1fr;
  }
  .rhp-sp-showcase-side {
    display: none;
  }

  /* EEAT photo smaller */
  .rhp-sp-eeat-inner {
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }
  .rhp-sp-eeat-photo {
    width: 80px;
    height: 80px;
  }

  /* Included checklist stacks */
  .rhp-sp-included-grid {
    grid-template-columns: 1fr;
  }

  /* Visibility toggles */
  .rhp-sp-desktop-only {
    display: none;
  }
  .rhp-sp-mobile-only {
    display: block;
  }
}

@media (max-width: 480px) {
  /* Process flow single column */
  .rhp-sp-process-flow {
    grid-template-columns: 1fr;
  }

  /* Hero form fields stack */
  .rhp-sp-hero .rhp-hero-form .rhp-form-row {
    grid-template-columns: 1fr;
  }

  /* Hero awards wrap */
  .rhp-sp-hero-awards {
    flex-wrap: wrap;
  }
}
