/*
Theme Name: Psychic Leo – Astrologer Austin
Theme URI: https://astrologeraustin.com
Author: FSK Digital Marketing
Description: Official WordPress theme for Psychic Leo – Astrologer Austin. Exact replica of astrologeraustin.com with full WordPress editability. Includes all 9 service pages, 12 location pages, blog integration, AJAX contact form, Google Maps, and complete Customizer control.
Version: 2.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: psychic-leo
Tags: dark, gold, mystic, psychic, astrology, spiritual, custom-menu, custom-logo, featured-images, blog
*/

/* ====================================================
   GOOGLE FONTS
==================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ====================================================
   CSS CUSTOM PROPERTIES — exact from source index.css
==================================================== */
:root {
  /* Colors (HSL from source) */
  --bg:              hsl(260, 20%, 6%);       /* #0f0d17 dark purple background */
  --bg-card:         hsl(260, 25%, 10%);      /* card background */
  --bg-popover:      hsl(260, 25%, 12%);      /* dropdown/popover bg */
  --bg-muted:        hsl(260, 20%, 15%);      /* input bg */
  --bg-secondary:    hsl(270, 40%, 25%);      /* secondary sections */
  --fg:              hsl(45, 20%, 90%);        /* #f0e8d0 foreground text */
  --fg-muted:        hsl(260, 10%, 60%);      /* muted text */
  --gold:            hsl(45, 80%, 55%);        /* #d4a017 primary gold */
  --gold-light:      hsl(45, 70%, 70%);        /* hover gold */
  --gold-border:     hsla(45, 80%, 55%, 0.2); /* gold border */
  --gold-border-30:  hsla(45, 80%, 55%, 0.3);
  --gold-shadow:     hsla(45, 80%, 55%, 0.15);
  --deep-purple:     hsl(270, 50%, 15%);
  --midnight:        hsl(260, 30%, 8%);
  --mystic-purple:   hsl(280, 60%, 40%);
  --border:          hsl(260, 20%, 18%);

  /* Gradients */
  --grad-mystic:     linear-gradient(135deg, hsl(270,50%,15%) 0%, hsl(260,30%,8%) 50%, hsl(270,50%,15%) 100%);
  --grad-card:       linear-gradient(145deg, hsl(260,25%,12%) 0%, hsl(260,25%,8%) 100%);
  --grad-gold:       linear-gradient(135deg, hsl(45,80%,55%) 0%, hsl(45,70%,70%) 50%, hsl(45,80%,55%) 100%);

  /* Typography */
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'Raleway', sans-serif;

  /* Shadows */
  --shadow-gold:     0 0 30px hsla(45,80%,55%,0.15);
  --shadow-mystic:   0 0 40px hsla(280,60%,40%,0.2);

  /* Misc */
  --radius:          0.5rem;
  --transition:      all 0.3s ease;
}

/* ====================================================
   RESET & BASE
==================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--fg);
}

p { margin-bottom: 1rem; }

/* ====================================================
   LAYOUT UTILITIES
==================================================== */
.pl-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pl-container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
.pl-container-md { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; }

/* Gold gradient text — exact from source */
.text-gold-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--fg-muted); }
.text-center { text-align: center; }

.eyebrow {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

/* ====================================================
   BACKGROUNDS
==================================================== */
.bg-mystic {
  background: var(--grad-mystic);
}
.bg-card {
  background: var(--grad-card);
}
.bg-dark { background: var(--bg); }

/* ====================================================
   BUTTONS — exact from source
==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  padding: 0.875rem 2rem;
  line-height: 1;
}
.btn-gold {
  background: var(--gold);
  color: hsl(260, 30%, 8%);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: hsl(260, 30%, 8%);
  transform: translateY(-1px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid hsla(45,80%,55%,0.4);
}
.btn-outline-gold:hover {
  background: hsla(45,80%,55%,0.1);
  color: var(--gold);
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ====================================================
   TOP BAR
==================================================== */
.pl-topbar {
  background: hsla(270,40%,25%,0.5);
  padding: 0.4rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--gold-border);
}
.pl-topbar a {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.pl-topbar a:hover { color: var(--gold-light); }

/* ====================================================
   HEADER & NAV — exact from Header.tsx
==================================================== */
.pl-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsla(260,20%,6%,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
}
.pl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

/* Logo */
.pl-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.pl-logo img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}
.pl-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.2;
}
.pl-logo-tagline {
  font-size: 0.7rem;
  color: var(--fg-muted);
  display: block;
}

/* Desktop Nav */
.pl-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.pl-nav li { position: relative; }

.pl-nav li a,
.pl-nav li button.pl-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  font-family: var(--font-body);
  border-radius: var(--radius);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.pl-nav li a:hover,
.pl-nav li button.pl-nav-btn:hover,
.pl-nav li.current-menu-item > a,
.pl-nav li.current-menu-parent > a {
  background: hsla(270,40%,25%,0.5);
  color: var(--gold);
}

/* Dropdown */
.pl-nav li ul {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  min-width: 14rem;
  background: var(--bg-popover);
  border: 1px solid var(--gold-border-30);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  list-style: none;
  display: none;
  box-shadow: var(--shadow-gold), 0 20px 50px rgba(0,0,0,0.5);
  z-index: 200;
}
.pl-nav li:hover > ul,
.pl-nav li.dropdown-open > ul { display: block; }

.pl-nav li ul li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--fg);
  border-radius: 0;
  white-space: nowrap;
}
.pl-nav li ul li a:hover {
  background: hsla(270,40%,25%,0.5);
  color: var(--gold);
}

/* Chevron on parent items */
.pl-nav li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  flex-shrink: 0;
}

/* Book Reading button in nav */
.pl-book-btn {
  background: var(--gold);
  color: hsl(260,30%,8%) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  white-space: nowrap;
  margin-left: 1rem;
  display: inline-block;
  text-decoration: none;
  transition: var(--transition);
}
.pl-book-btn:hover {
  background: var(--gold-light);
  color: hsl(260,30%,8%) !important;
}

/* Mobile toggle */
.pl-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  padding: 0.5rem;
}
.pl-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Nav overlay */
.pl-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-popover);
  z-index: 2000;
  overflow-y: auto;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
}
.pl-mobile-nav.open { display: flex; }
.pl-mobile-nav ul { list-style: none; }
.pl-mobile-nav > ul > li > a,
.pl-mobile-nav > ul > li > button {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  width: 100%;
  text-align: left;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
}
.pl-mobile-nav ul ul {
  padding-left: 1rem;
  display: none;
}
.pl-mobile-nav ul ul.open { display: block; }
.pl-mobile-nav ul ul li a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--fg-muted);
  border-bottom: 1px solid hsla(260,20%,18%,0.5);
}
.pl-mobile-nav ul ul li a:hover { color: var(--gold); }
.pl-mobile-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2001;
  background: none;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--fg);
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  font-size: 1.25rem;
}

/* ====================================================
   HERO SECTION — exact from Index.tsx
   Full-width bg slider, 85vh, gradient overlay
==================================================== */
.pl-hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}

.pl-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.pl-hero-slide.active { opacity: 1; }

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

.pl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    hsla(260,20%,6%,0.6) 50%,
    hsla(260,20%,6%,0.3) 100%
  );
}

.pl-hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pl-hero-eyebrow {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.pl-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  /* Glow effect */
  filter: drop-shadow(0 0 20px hsla(45,80%,55%,0.5));
}

.pl-hero-desc {
  color: hsla(45,20%,90%,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 0.75rem;
  font-weight: 300;
}
.pl-hero-sub {
  color: hsla(45,20%,90%,0.6);
  font-size: 0.9rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.pl-hero-sub a { color: var(--gold); text-decoration: underline; }

.pl-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Slide dots — exact style from source */
.pl-hero-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}
.pl-hero-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: hsla(45,20%,90%,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.pl-hero-dot.active {
  background: var(--gold);
  width: 2rem;
}

/* ====================================================
   SECTION GENERIC
==================================================== */
.pl-section { padding: 5rem 0; }
.pl-section-sm { padding: 2.5rem 0; }

.pl-section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.pl-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.pl-section-head p {
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
}
.pl-section-head a { color: var(--gold); text-decoration: underline; }

/* ====================================================
   SERVICE CARDS — grid with real images, exact from Services.tsx
==================================================== */
.pl-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .pl-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pl-services-grid { grid-template-columns: 1fr; }
}

.pl-service-card {
  background: var(--grad-card);
  border: 1px solid var(--gold-border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.pl-service-card:hover {
  border-color: var(--gold-border-30);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
  color: inherit;
}
.pl-service-card-img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.pl-service-card:hover .pl-service-card-img { transform: scale(1.05); }
.pl-service-card-body { padding: 1.25rem; }
.pl-service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0.75rem 0 0.5rem;
}
.pl-service-card-body p {
  color: var(--fg-muted);
  font-size: 0.875rem;
  margin: 0 0 0.75rem;
}
.pl-service-card-link {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ====================================================
   ABOUT SECTION — 2col: image left, text right
==================================================== */
.pl-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .pl-about-grid { grid-template-columns: 1fr; }
}
.pl-about-grid img {
  border-radius: 0.75rem;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-mystic);
  width: 100%;
}
.pl-about-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.pl-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pl-stat span {
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.pl-stars {
  display: flex;
  gap: 0.15rem;
  margin: 0.25rem 0;
}
.pl-star { color: var(--gold); font-size: 0.75rem; }

/* ====================================================
   TESTIMONIALS GRID — 4-col
==================================================== */
.pl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .pl-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pl-testimonials-grid { grid-template-columns: 1fr; }
}
.pl-testimonial-card {
  background: var(--grad-card);
  border: 1px solid var(--gold-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.pl-testimonial-card p { color: var(--fg-muted); font-size: 0.875rem; font-style: italic; margin: 0.75rem 0; }
.pl-testimonial-card strong { color: var(--fg); font-size: 0.875rem; display: block; }
.pl-testimonial-card em { color: var(--fg-muted); font-size: 0.75rem; font-style: italic; }

/* ====================================================
   BLOG — horizontal scroll tiles
==================================================== */
.pl-blog-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin: 0 -1.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.pl-blog-scroll::-webkit-scrollbar { display: none; }

.pl-blog-card {
  min-width: 18.75rem;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--grad-card);
  border: 1px solid var(--gold-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}
.pl-blog-card:hover {
  border-color: var(--gold-border-30);
  box-shadow: var(--shadow-gold);
}
.pl-blog-card-cat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pl-blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.4;
}
.pl-blog-card:hover h3 { color: var(--gold); }
.pl-blog-card p {
  color: var(--fg-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pl-blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pl-blog-date { font-size: 0.75rem; color: var(--fg-muted); }
.pl-blog-read { font-size: 0.875rem; font-weight: 500; color: var(--gold); }

/* Grid version for blog archive */
.pl-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .pl-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pl-blog-grid { grid-template-columns: 1fr; } }

.pl-blog-grid-card {
  background: var(--grad-card);
  border: 1px solid var(--gold-border);
  border-radius: 0.75rem;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}
.pl-blog-grid-card:hover { border-color: var(--gold-border-30); box-shadow: var(--shadow-gold); }
.pl-blog-grid-card-img { width: 100%; height: 12rem; object-fit: cover; display: block; transition: transform 0.5s ease; }
.pl-blog-grid-card:hover .pl-blog-grid-card-img { transform: scale(1.05); }
.pl-blog-grid-card-body { padding: 1.25rem; }
.pl-blog-grid-card-body h2 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--fg); margin: 0.25rem 0 0.5rem; line-height: 1.4; }
.pl-blog-grid-card:hover h2 { color: var(--gold); }
.pl-blog-grid-card-body p { color: var(--fg-muted); font-size: 0.875rem; margin: 0; }

/* ====================================================
   CTA SECTION
==================================================== */
.pl-cta { text-align: center; }
.pl-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
.pl-cta p { color: var(--fg-muted); max-width: 560px; margin: 0 auto 2rem; }
.pl-cta p a { color: var(--gold); text-decoration: underline; }
.pl-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ====================================================
   PAGE HERO — inner pages (About, Services, etc.)
==================================================== */
.pl-page-hero {
  background: var(--grad-mystic);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.pl-page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.pl-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: hsla(260,20%,6%,0.8);
}
.pl-page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.pl-page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
.pl-page-hero-content p { color: var(--fg-muted); font-size: 1.1rem; }

/* Breadcrumb */
.pl-breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 1rem;
  flex-wrap: wrap;
}
.pl-breadcrumb a { color: var(--gold); }
.pl-breadcrumb span { opacity: 0.5; }

/* ====================================================
   SERVICE PAGE LAYOUT — exact from ServicePageLayout.tsx
==================================================== */
.pl-service-page-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.pl-service-page-content img {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-mystic);
  margin: 2rem 0;
}
.pl-service-page-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin: 2.5rem 0 1rem;
}
.pl-service-page-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin: 2rem 0 0.75rem;
}
.pl-service-page-content p { color: var(--fg-muted); margin-bottom: 1rem; line-height: 1.8; }
.pl-service-page-content strong { color: var(--fg); }
.pl-service-page-content a { color: var(--gold); text-decoration: underline; }
.pl-service-page-content ul, .pl-service-page-content ol {
  color: var(--fg-muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.pl-service-page-content li { margin-bottom: 0.5rem; }

/* Service CTA bar */
.pl-service-cta {
  background: var(--grad-mystic);
  padding: 4rem 0;
  text-align: center;
}
.pl-service-cta h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.pl-service-cta p { color: var(--fg-muted); max-width: 560px; margin: 0 auto 1.5rem; }
.pl-service-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.pl-service-cta-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* ====================================================
   CONTACT PAGE — form left, info cards right
==================================================== */
.pl-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) { .pl-contact-grid { grid-template-columns: 1fr; } }

.pl-contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--grad-card);
  border: 1px solid var(--gold-border);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.pl-contact-info-card svg { color: var(--gold); flex-shrink: 0; margin-top: 0.125rem; }
.pl-contact-info-card strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--fg); }
.pl-contact-info-card span, .pl-contact-info-card a { font-size: 0.875rem; color: var(--fg-muted); }
.pl-contact-info-card a:hover { color: var(--gold); }

/* Form */
.pl-form-group { margin-bottom: 1rem; }
.pl-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.pl-form-group input,
.pl-form-group textarea,
.pl-form-group select {
  width: 100%;
  background: var(--bg-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: var(--transition);
  outline: none;
}
.pl-form-group input::placeholder,
.pl-form-group textarea::placeholder { color: var(--fg-muted); }
.pl-form-group input:focus,
.pl-form-group textarea:focus,
.pl-form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.pl-form-group textarea { resize: vertical; min-height: 6rem; }
.pl-form-group select option { background: var(--bg-card); color: var(--fg); }

/* ====================================================
   ABOUT PAGE
==================================================== */
.pl-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .pl-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pl-why-grid { grid-template-columns: 1fr; } }

.pl-why-card {
  background: var(--grad-card);
  border: 1px solid var(--gold-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}
.pl-why-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin: 0.75rem 0 0.5rem; }
.pl-why-card p { font-size: 0.875rem; color: var(--fg-muted); margin: 0; }

.pl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .pl-gallery-grid { grid-template-columns: 1fr; } }
.pl-gallery-grid img {
  border-radius: 0.75rem;
  border: 1px solid var(--gold-border);
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

/* ====================================================
   LOCATION PAGE
==================================================== */
.pl-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) { .pl-location-grid { grid-template-columns: 1fr; } }

.pl-map-embed {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-mystic);
  min-height: 25rem;
}
.pl-map-embed iframe { width: 100%; height: 100%; min-height: 25rem; border: 0; display: block; }

.pl-location-detail { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.pl-location-detail svg { color: var(--gold); flex-shrink: 0; margin-top: 0.125rem; }
.pl-location-detail strong { display: block; font-size: 0.875rem; font-weight: 600; }
.pl-location-detail span, .pl-location-detail a { font-size: 0.875rem; color: var(--fg-muted); }
.pl-location-detail a:hover { color: var(--gold); }

/* ====================================================
   KEYWORD SCROLL TICKER — from KeywordArticlesCarousel
==================================================== */
.pl-ticker-wrap {
  overflow: hidden;
  background: var(--grad-mystic);
  padding: 1rem 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.pl-ticker-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: pl-scroll-left 40s linear infinite;
}
.pl-ticker-wrap:hover .pl-ticker-track { animation-play-state: paused; }
@keyframes pl-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.pl-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 0.25rem 0.75rem;
}
.pl-ticker-item a { color: var(--fg-muted); transition: var(--transition); }
.pl-ticker-item a:hover { color: var(--gold); }
.pl-ticker-dot { color: var(--gold); font-size: 0.5rem; }

/* ====================================================
   FOOTER — exact from Footer.tsx
   5-col grid: about, services, locations, quick links, contact
==================================================== */
.pl-footer {
  background: var(--grad-mystic);
  border-top: 1px solid var(--gold-border);
  padding: 4rem 0 0;
}
.pl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) { .pl-footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .pl-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pl-footer-grid { grid-template-columns: 1fr; } }

.pl-footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.pl-footer-brand p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 1rem; }
.pl-footer-brand a { font-size: 0.875rem; color: var(--gold); display: inline-flex; align-items: center; gap: 0.25rem; }
.pl-footer-brand a:hover { color: var(--gold-light); }

.pl-footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.pl-footer-col ul { list-style: none; }
.pl-footer-col ul li { margin-bottom: 0.5rem; }
.pl-footer-col ul li a { font-size: 0.875rem; color: var(--fg-muted); transition: var(--transition); }
.pl-footer-col ul li a:hover { color: var(--gold); }

.pl-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.pl-footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 0.125rem; width: 1rem; height: 1rem; }
.pl-footer-contact a { color: var(--fg-muted); }
.pl-footer-contact a:hover { color: var(--gold); }

/* Footer map */
.pl-footer-map-wrap {
  border-top: 1px solid var(--gold-border);
  padding: 2rem 0;
}
.pl-footer-map-wrap h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1rem;
}
.pl-footer-map {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-mystic);
  height: 15.625rem;
}
.pl-footer-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Footer bottom */
.pl-footer-bottom {
  border-top: 1px solid var(--gold-border);
  padding: 1.5rem 0;
  text-align: center;
}
.pl-footer-bottom p { font-size: 0.75rem; color: var(--fg-muted); margin: 0.25rem 0; font-style: italic; }
.pl-footer-bottom p.copy { font-style: normal; }
.pl-footer-bottom a { color: var(--gold); }
.pl-footer-bottom-links { display: flex; justify-content: center; gap: 1rem; margin-bottom: 0.5rem; }
.pl-footer-bottom-links a { font-size: 0.75rem; color: var(--fg-muted); transition: var(--transition); }
.pl-footer-bottom-links a:hover { color: var(--gold); }

/* ====================================================
   FLOATING BUTTONS
==================================================== */
.pl-float-left {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  z-index: 999;
}
.pl-float-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.pl-float-btn:hover { transform: scale(1.1); }
.pl-float-map  { background: #7c3aed; color: #fff; }
.pl-float-chat { background: #25d366; color: #fff; }
.pl-float-call {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gold);
  color: hsl(260,30%,8%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px hsla(45,80%,55%,0.5);
  transition: var(--transition);
  animation: pl-ring 2s ease-in-out infinite;
}
.pl-float-call:hover { transform: scale(1.1); color: hsl(260,30%,8%); }
@keyframes pl-ring {
  0%, 100% { box-shadow: 0 4px 20px hsla(45,80%,55%,0.5); }
  50% { box-shadow: 0 4px 35px hsla(45,80%,55%,0.8), 0 0 0 8px hsla(45,80%,55%,0.1); }
}

/* ====================================================
   404 PAGE
==================================================== */
.pl-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(160deg, #12082a 0%, #1e0f38 40%, #0d0520 100%);
}
.pl-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 9rem);
  color: var(--gold);
  line-height: 1;
  margin: 1rem 0;
}
.pl-404 h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 1rem; }
.pl-404 p { color: var(--fg-muted); max-width: 28rem; margin: 0 auto 2.5rem; }
.pl-404-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ====================================================
   SINGLE POST / PAGE CONTENT
==================================================== */
.pl-post-header { margin-bottom: 2rem; }
.pl-post-title { font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.pl-post-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.875rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.pl-post-meta .meta-cat { color: var(--gold); font-weight: 600; }
.pl-post-thumb {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid var(--gold-border);
  margin-bottom: 2rem;
}
.pl-post-body p { color: var(--fg-muted); margin-bottom: 1.5rem; line-height: 1.8; }
.pl-post-body h2, .pl-post-body h3 { margin: 2rem 0 0.75rem; }
.pl-post-body ul, .pl-post-body ol { color: var(--fg-muted); padding-left: 1.5rem; margin-bottom: 1.5rem; }
.pl-post-body li { margin-bottom: 0.5rem; }
.pl-post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  background: hsla(45,80%,55%,0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--fg);
}

/* Blog sidebar */
.pl-blog-layout {
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) { .pl-blog-layout { grid-template-columns: 1fr; } }

.pl-sidebar-widget {
  background: var(--grad-card);
  border: 1px solid var(--gold-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.pl-sidebar-widget h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--gold-border);
}
.pl-sidebar-widget ul { list-style: none; }
.pl-sidebar-widget ul li { border-bottom: 1px solid var(--border); }
.pl-sidebar-widget ul li:last-child { border-bottom: none; }
.pl-sidebar-widget ul li a { display: block; padding: 0.5rem 0; font-size: 0.875rem; color: var(--fg-muted); }
.pl-sidebar-widget ul li a:hover { color: var(--gold); }

/* Search form in sidebar */
.pl-search-form { display: flex; gap: 0.5rem; }
.pl-search-form input {
  flex: 1;
  background: var(--bg-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
}
.pl-search-form input:focus { border-color: var(--gold); }
.pl-search-form button {
  background: var(--gold);
  color: hsl(260,30%,8%);
  border: none;
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}
.pl-search-form button:hover { background: var(--gold-light); }

/* ====================================================
   PAGINATION
==================================================== */
.pl-pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.pl-pagination a, .pl-pagination span {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--fg-muted);
  transition: var(--transition);
}
.pl-pagination a:hover, .pl-pagination span.current {
  background: var(--gold);
  color: hsl(260,30%,8%);
  border-color: var(--gold);
}

/* ====================================================
   COMMENTS
==================================================== */
.pl-comments { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.pl-comment-body {
  background: var(--grad-card);
  border: 1px solid var(--gold-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.pl-comment-author { font-weight: 700; color: var(--fg); font-size: 0.875rem; }
.pl-comment-meta { font-size: 0.75rem; color: var(--fg-muted); margin-bottom: 0.5rem; }
.pl-comment-text p { color: var(--fg-muted); font-size: 0.875rem; }

/* WP core classes */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.alignleft  { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { text-align: center; margin: 0 auto 1rem; }

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 1024px) {
  .pl-nav, .pl-book-btn { display: none; }
  .pl-menu-toggle { display: block; }
}
@media (max-width: 768px) {
  .pl-hero { height: 75vh; }
  .pl-hero-h1 { font-size: 2.25rem; }
  .pl-section { padding: 3rem 0; }
}

/* ============================================================
   NAV FIXES v2 — match Image 3 exactly
   Dark popover dropdown, gold hover, correct chevron alignment
============================================================ */

/* Desktop nav list */
.pl-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Top-level nav items */
.pl-nav > li {
  position: relative;
}

.pl-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  font-family: var(--font-body);
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.pl-nav > li > a:hover,
.pl-nav > li.current-menu-item > a,
.pl-nav > li.current-menu-parent > a,
.pl-nav > li.current-menu-ancestor > a {
  background: hsla(270, 40%, 25%, 0.5);
  color: var(--gold);
}

/* Dropdown panel — exact Image 3 style: dark bg, gold border */
.pl-nav > li > ul {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 14rem;
  background: hsl(260, 25%, 10%);
  border: 1px solid hsla(45, 80%, 55%, 0.25);
  border-radius: 0.5rem;
  padding: 0.375rem 0;
  list-style: none;
  margin: 0;
  display: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 20px hsla(45,80%,55%,0.08);
  z-index: 9999;
  animation: pl-dropdown-in 0.15s ease;
}

@keyframes pl-dropdown-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Show dropdown on hover */
.pl-nav > li:hover > ul,
.pl-nav > li.dropdown-open > ul {
  display: block;
}

/* Dropdown items */
.pl-nav > li > ul > li > a {
  display: block;
  padding: 0.5625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--fg);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
  font-family: var(--font-body);
}

.pl-nav > li > ul > li > a:hover {
  background: hsla(270, 40%, 25%, 0.5);
  color: var(--gold);
  padding-left: 1.375rem;
}

.pl-nav > li > ul > li.current-menu-item > a {
  color: var(--gold);
  font-weight: 600;
}

/* Mobile nav dropdown toggle button style */
.pl-mobile-dropdown-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid hsl(260, 20%, 18%);
  color: hsl(45, 20%, 90%);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

.pl-mobile-nav ul ul {
  display: none;
  padding-left: 1rem;
}
.pl-mobile-nav ul ul.open { display: block; }
.pl-mobile-nav ul ul li a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--fg-muted);
  border-bottom: 1px solid hsla(260,20%,18%,0.5);
  text-decoration: none;
}
.pl-mobile-nav ul ul li a:hover { color: var(--gold); }

/* Book a Reading nav button — matches Image 2 exactly: gold, rounded */
.pl-book-btn {
  display: inline-block;
  background: var(--gold) !important;
  color: hsl(260, 30%, 8%) !important;
  padding: 0.5625rem 1.375rem !important;
  border-radius: 0.375rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  white-space: nowrap;
  margin-left: 1.25rem;
  text-decoration: none;
  transition: background 0.2s ease;
  font-family: var(--font-body);
  line-height: 1.4;
}
.pl-book-btn:hover {
  background: var(--gold-light) !important;
  color: hsl(260, 30%, 8%) !important;
}

/* Fix header inner flex alignment */
.pl-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 0.5rem;
}

/* Ensure logo doesn't shrink */
.pl-logo { flex-shrink: 0; }

/* Nav takes available space but aligns right of logo */
#pl-nav-wrap { flex: 1; display: flex; justify-content: center; }

@media (max-width: 1024px) {
  #pl-nav-wrap { display: none; }
  .pl-book-btn  { display: none; }
  .pl-menu-toggle { display: block; }
}

/* ============================================================
   FAQ ACCORDION — Service & Clairvoyant pages
============================================================ */
.pl-faq-item button:hover {
  color: var(--gold);
}
.pl-faq-item button:focus {
  outline: none;
  color: var(--gold);
}
.pl-faq-item button span:first-child {
  transition: color 0.2s ease;
}

/* ============================================================
   SEO MICRO-IMPROVEMENTS
   Star rating display in CTA areas
============================================================ */
.pl-service-cta-stars svg {
  color: var(--gold);
  fill: var(--gold);
}

/* ============================================================
   CLAIRVOYANT PAGE specific
============================================================ */
.clairvoyant-hero-badge {
  display: inline-block;
  background: hsla(45,80%,55%,0.15);
  border: 1px solid var(--gold-border);
  border-radius: 9999px;
  padding: 0.25rem 0.875rem;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
