/* =========================================================================
   PRETTY SADITTY WAXING STUDIO — PLUGIN STYLESHEET (v2, elegant/modern)
   Verified brand palette only — see /palette-audit.md at the project root.
   ========================================================================= */

:root {
  /* ---- Verified Pretty Saditty brand palette (locked) ---- */
  --psw-black: #000000;
  --psw-emerald: #0C5F3C;
  --psw-olive-gold: #AFB872;
  --psw-gold: #EEC767;
  --psw-off-white: #FCFFFC;
  --psw-white: #FFFFFF;
  --psw-champagne: #E1D2A3;
  --psw-antique-gold: #CDA819;

  /* ---- Derived tones (opacity/tint of the palette above only) ---- */
  --psw-black-92: rgba(0, 0, 0, 0.92);
  --psw-black-80: rgba(0, 0, 0, 0.8);
  --psw-black-65: rgba(0, 0, 0, 0.65);
  --psw-black-40: rgba(0, 0, 0, 0.4);
  --psw-black-12: rgba(0, 0, 0, 0.12);
  --psw-black-08: rgba(0, 0, 0, 0.08);
  --psw-emerald-90: rgba(12, 95, 60, 0.92);
  --psw-emerald-55: rgba(12, 95, 60, 0.55);
  --psw-emerald-18: rgba(12, 95, 60, 0.18);
  --psw-emerald-08: rgba(12, 95, 60, 0.08);
  --psw-gold-35: rgba(238, 199, 103, 0.35);
  --psw-gold-20: rgba(238, 199, 103, 0.2);
  --psw-gold-10: rgba(238, 199, 103, 0.1);
  --psw-olive-gold-30: rgba(175, 184, 114, 0.3);
  --psw-champagne-45: rgba(225, 210, 163, 0.45);
  --psw-champagne-20: rgba(225, 210, 163, 0.2);
  --psw-antique-gold-30: rgba(205, 168, 25, 0.3);
  --psw-white-80: rgba(255, 255, 255, 0.8);
  --psw-white-55: rgba(255, 255, 255, 0.55);
  --psw-white-25: rgba(255, 255, 255, 0.25);

  /* ---- Derived SHADES (not just opacity) used for gradient endpoints ----
     Computed with color-mix() directly from the verified palette so they
     are mathematically derived, not new hues. The hex values are static
     fallbacks for browsers without color-mix() support (pre-2023), each
     hand-computed to match the color-mix() result below it exactly:
       --psw-emerald-deep  = 65% emerald + 35% black = #083e27
       --psw-black-emerald = 85% black + 15% emerald = #020e09 */
  --psw-emerald-deep: #083e27;
  --psw-emerald-deep: color-mix(in srgb, var(--psw-emerald) 65%, black);
  --psw-black-emerald: #020e09;
  --psw-black-emerald: color-mix(in srgb, var(--psw-black) 85%, var(--psw-emerald));

  /* ---- Typography ---- */
  --psw-font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --psw-font-body: 'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* ---- Layout ---- */
  --psw-max-width: 1240px;
  --psw-max-width-narrow: 800px;
  --psw-section-pad: clamp(3rem, 6vw, 5.5rem);
  --psw-radius-pill: 999px;
  --psw-radius-card: 20px;
  --psw-radius-sm: 12px;
  --psw-shadow-card: 0 24px 60px -12px rgba(12, 95, 60, 0.28), 0 4px 14px rgba(0,0,0,0.08);
  --psw-shadow-soft: 0 10px 30px -8px rgba(0, 0, 0, 0.16);
  --psw-shadow-lift: 0 30px 70px -16px rgba(12, 95, 60, 0.35), 0 8px 20px rgba(0,0,0,0.1);
  --psw-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --psw-transition: 260ms var(--psw-ease);
}

/* =========================================================================
   RESET
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body.psw-body {
  background: var(--psw-off-white);
  color: var(--psw-black);
  font-family: var(--psw-font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.psw-root img { max-width: 100%; height: auto; display: block; }
.psw-root a { color: inherit; text-decoration: none; }
.psw-root button { font-family: inherit; cursor: pointer; }

/* The injected header/footer (psw_render_header/footer) live OUTSIDE
   .psw-root — they're added once, site-wide, via wp_body_open/wp_footer,
   not inside the per-page shortcode content. This reset has to be scoped
   to body.psw-body (not .psw-root) so header/footer <ul> lists actually
   get list-style:none too — otherwise the browser's default bullet
   markers show between nav items. */
body.psw-body ul { margin: 0; padding: 0; list-style: none; }
body.psw-body a { text-decoration: none; }

.psw-root h1, .psw-root h2, .psw-root h3, .psw-root h4, .psw-root h5 {
  font-family: var(--psw-font-display);
  font-weight: 600;
  line-height: 1.14;
  margin: 0 0 0.6em;
  letter-spacing: 0.008em;
}
.psw-root p { margin: 0 0 1.1em; }

.psw-container {
  max-width: var(--psw-max-width);
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}
.psw-container--narrow { max-width: var(--psw-max-width-narrow); }

.psw-root a:focus-visible,
.psw-root button:focus-visible,
.psw-root input:focus-visible,
.psw-root textarea:focus-visible {
  outline: 3px solid var(--psw-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.psw-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--psw-black);
  color: var(--psw-gold);
  padding: 0.9em 1.4em;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}
.psw-skip-link:focus { left: 0; }

.psw-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================================
   ORNAMENTS — reusable Art Deco flourishes (inline SVG data URIs, palette-locked)
   ========================================================================= */

/* Small diamond/sunburst divider used under eyebrows and between sections */
.psw-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  margin: 0 0 1.1em;
  color: var(--psw-antique-gold);
}
.psw-ornament::before,
.psw-ornament::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.psw-ornament span {
  font-size: 0.7rem;
  transform: rotate(45deg);
  display: inline-block;
}

/* Fan/sunburst SVG accent — used behind hero content and CTA banners */
.psw-deco-fan {
  position: relative;
  isolation: isolate;
}
.psw-deco-fan::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cg fill='none' stroke='%23EEC767' stroke-width='1' stroke-opacity='0.5'%3E%3Cpath d='M200 200 L200 20'/%3E%3Cpath d='M200 200 L160 24'/%3E%3Cpath d='M200 200 L240 24'/%3E%3Cpath d='M200 200 L120 34'/%3E%3Cpath d='M200 200 L280 34'/%3E%3Cpath d='M200 200 L80 54'/%3E%3Cpath d='M200 200 L320 54'/%3E%3Cpath d='M200 200 L44 84'/%3E%3Cpath d='M200 200 L356 84'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: min(720px, 100%) auto;
}

/* Thin gold hairline frame, used to wrap cards/CTAs for a boutique feel */
.psw-frame-gold {
  border: 1px solid var(--psw-gold-35);
}

/* Section kicker divider — thin gold line + rotated diamond, used between stacked sections */
.psw-kicker-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.psw-kicker-divider span {
  width: 9px;
  height: 9px;
  background: var(--psw-gold);
  transform: rotate(45deg);
}
.psw-kicker-divider::before,
.psw-kicker-divider::after {
  content: "";
  flex: 1;
  max-width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--psw-gold-35));
}
.psw-kicker-divider::after { background: linear-gradient(90deg, var(--psw-gold-35), transparent); }

/* Subtle background texture for light sections (very low opacity diamond grid) */
.psw-texture-diamonds {
  background-image: radial-gradient(var(--psw-black-08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.psw-texture-diamonds-dark {
  background-image: radial-gradient(var(--psw-gold-10) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* =========================================================================
   PROMO BAR + MARQUEE
   ========================================================================= */
.psw-promo-bar {
  background: var(--psw-black);
  color: var(--psw-champagne);
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6em 1em;
  border-bottom: 1px solid var(--psw-gold-20);
}

.psw-marquee {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--psw-black);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--psw-gold-20);
  padding: 0.85em 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.psw-marquee__track {
  display: inline-flex;
  align-items: center;
  animation: psw-marquee-scroll 34s linear infinite;
}
.psw-marquee__item {
  padding: 0 1.4em;
  color: var(--psw-gold);
  font-family: var(--psw-font-display);
  font-style: italic;
  font-size: 0.98rem;
  letter-spacing: 0.05em;
}
.psw-marquee__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--psw-olive-gold);
  display: inline-block;
}
@keyframes psw-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .psw-marquee__track { animation: none; }
}

/* =========================================================================
   HEADER / NAVIGATION
   ========================================================================= */
.psw-header {
  background: var(--psw-black-92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--psw-gold-20);
}
.psw-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
/* Logo: uses a dedicated "on-dark" export (pretty-saditty-logo-ondark.png)
   with a genuinely transparent background — the icon and "Waxing Studio"
   text are recolored to soft off-white and the gold script is painted in
   verified brand gold, so it sits directly on the black header/footer
   with no box, plate, or filter needed. See asset-inventory.md for how
   this variant was produced from the original logo file. */
.psw-logo { display: inline-flex; align-items: center; }
.psw-logo img { max-height: 92px; width: auto; }

.psw-nav { display: none; }
.psw-nav ul { display: flex; align-items: center; gap: 1.85rem; }

/* Secondary utility nav row (Impact / Careers / Gift Cards) — kept
   visually lighter and separate from the primary nav so the header
   doesn't try to cram 8 links onto one line. Desktop only; the mobile
   menu already lists everything in one column. */
.psw-subnav {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.25);
}
.psw-subnav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 0.5rem 0;
}
.psw-subnav a {
  color: var(--psw-champagne);
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity var(--psw-transition), color var(--psw-transition);
}
.psw-subnav a:hover { opacity: 1; color: var(--psw-gold); }
@media (min-width: 960px) {
  .psw-subnav { display: block; }
}
.psw-nav a {
  position: relative;
  color: var(--psw-olive-gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--psw-transition);
  padding: 0.5em 0.05em;
}
.psw-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0.2em;
  height: 1px;
  background: var(--psw-gold);
  transition: right var(--psw-transition);
}
.psw-nav a:hover, .psw-nav a:focus-visible { color: var(--psw-gold); }
.psw-nav a:hover::after, .psw-nav a:focus-visible::after { right: 0; }

.psw-header__actions { display: flex; align-items: center; gap: 1.1rem; }
.psw-header__social { display: none; align-items: center; gap: 0.85rem; }
.psw-header__social a {
  width: 34px; height: 34px;
  border: 1px solid var(--psw-gold-20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--psw-champagne);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  transition: border-color var(--psw-transition), color var(--psw-transition);
}
.psw-header__social a:hover { border-color: var(--psw-gold); color: var(--psw-gold); }

/* Buttons — refined oval CTAs */
.psw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--psw-font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.95em 2.1em;
  border-radius: var(--psw-radius-pill);
  border: 1.5px solid transparent;
  transition: transform var(--psw-transition), box-shadow var(--psw-transition), background var(--psw-transition), color var(--psw-transition), border-color var(--psw-transition);
  white-space: nowrap;
}
.psw-btn:hover { transform: translateY(-2px); }
.psw-btn:active { transform: translateY(0); }

.psw-btn--gold-outline { border-color: var(--psw-gold); color: var(--psw-gold); background: transparent; }
.psw-btn--gold-outline:hover { background: var(--psw-gold); color: var(--psw-black); box-shadow: 0 12px 26px -8px var(--psw-gold-35); }

.psw-btn--gold-solid { background: linear-gradient(155deg, var(--psw-gold), var(--psw-antique-gold)); color: var(--psw-black); box-shadow: 0 10px 24px -6px var(--psw-gold-35); }
.psw-btn--gold-solid:hover { box-shadow: 0 16px 34px -6px var(--psw-gold-35); }

.psw-btn--emerald { background: var(--psw-emerald); color: var(--psw-off-white); border-color: var(--psw-emerald); }
.psw-btn--emerald:hover { background: var(--psw-black); border-color: var(--psw-gold); color: var(--psw-gold); }

.psw-btn--black-outline { border-color: var(--psw-black); color: var(--psw-black); background: transparent; }
.psw-btn--black-outline:hover { background: var(--psw-black); color: var(--psw-gold); border-color: var(--psw-black); }

.psw-btn--sm { padding: 0.68em 1.5em; font-size: 0.72rem; }

/* Mobile menu */
.psw-menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: transparent; border: 1px solid var(--psw-gold-20);
  border-radius: 8px; padding: 0.6em 0.7em;
}
.psw-menu-toggle span { width: 22px; height: 1.5px; background: var(--psw-gold); display: block; transition: transform var(--psw-transition), opacity var(--psw-transition); }

.psw-mobile-nav {
  display: none; flex-direction: column;
  background: var(--psw-black);
  border-top: 1px solid var(--psw-gold-20);
  padding: 1rem clamp(1.25rem, 4vw, 3rem) 1.5rem;
}
.psw-mobile-nav.is-open { display: flex; }
.psw-mobile-nav a {
  color: var(--psw-olive-gold);
  padding: 0.8em 0;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.psw-mobile-nav a:hover { color: var(--psw-gold); }
.psw-mobile-nav .psw-btn { margin-top: 1rem; align-self: flex-start; }

@media (min-width: 960px) {
  .psw-nav { display: block; }
  .psw-header__social { display: flex; }
  .psw-menu-toggle { display: none; }
  .psw-mobile-nav { display: none !important; }
}

.psw-sticky-book {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: var(--psw-black-92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--psw-gold-20);
  padding: 0.7rem 1rem;
  display: flex; justify-content: center;
  box-shadow: 0 -12px 30px rgba(0,0,0,0.25);
}
.psw-sticky-book .psw-btn { width: 100%; max-width: 420px; }
@media (min-width: 960px) { .psw-sticky-book { display: none; } }

/* =========================================================================
   HERO
   ========================================================================= */
/* =========================================================================
   FULL-BLEED BREAKOUT
   Whatever theme is active, the WordPress content area it renders our
   shortcode into is usually centered with its own max-width/padding —
   that's what was causing the hero and sections to look like narrow
   "bars" floating in white space instead of true full-width blocks. This
   forces an element to the full viewport width regardless of any parent
   container width, with no dependency on guessing the theme's wrapper
   class names.
   ========================================================================= */
.psw-full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
html { overflow-x: hidden; }
body.psw-body { overflow-x: hidden; }

.psw-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--psw-black) center/cover no-repeat;
  color: var(--psw-off-white);
  overflow: hidden;
}
.psw-hero__bg { position: absolute; inset: 0; background-position: center; background-size: cover; opacity: 0.5; }
.psw-hero__scrim { position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 15%, rgba(12,95,60,0.35), transparent 55%), linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 60%, var(--psw-black) 100%); }
.psw-hero__content {
  position: relative; z-index: 2;
  padding: clamp(4.5rem, 13vw, 9rem) 0 clamp(3.5rem, 8vw, 6rem);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.psw-hero__eyebrow { color: var(--psw-champagne); text-transform: uppercase; letter-spacing: 0.24em; font-size: 0.76rem; }
.psw-hero__title { font-size: clamp(2.3rem, 6.4vw, 3.9rem); color: var(--psw-off-white); }
.psw-hero__title em { font-style: italic; color: var(--psw-gold); }
.psw-hero__subtitle { font-size: 1.08rem; color: var(--psw-white-80); max-width: 580px; margin: 0 auto 2.1rem; }
.psw-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Angled bottom edge — a bolder, more "designed" transition between two
   stacked blocks than a flat color change (inspired by the angled
   color-block panels common on modern beauty-studio homepages). Generic
   utility: apply to whichever element sits directly above the section
   you want to angle into, and set --psw-angle-color to that next
   section's background color (defaults to off-white). */
.psw-angled-divider { position: relative; padding-bottom: 3.5rem; }
.psw-angled-divider::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: -1px;
  height: clamp(28px, 4vw, 56px);
  background: var(--psw-angle-color, var(--psw-off-white));
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.psw-hero--angled { position: relative; padding-bottom: 3.5rem; }
.psw-hero--angled::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: -1px;
  height: clamp(28px, 4vw, 56px);
  background: var(--psw-angle-color, var(--psw-off-white));
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* Quick-link icon row — a row of circular badge CTAs directly under the
   hero, so the most-wanted actions (Book, Services, Memberships, Gift
   Cards) are reachable in one tap without scrolling. */
.psw-quicklinks {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 0 clamp(2.5rem, 6vw, 4rem);
}
.psw-quicklink {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  color: var(--psw-off-white);
}
.psw-quicklink__badge {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--psw-gold), var(--psw-antique-gold));
  color: var(--psw-black);
  font-family: var(--psw-font-display);
  font-size: 1.5rem;
  box-shadow: 0 14px 30px -10px rgba(238,199,103,0.5);
  transition: transform var(--psw-transition), box-shadow var(--psw-transition);
}
.psw-quicklink:hover .psw-quicklink__badge {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 40px -10px rgba(238,199,103,0.6);
}
.psw-quicklink__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--psw-champagne);
}

/* =========================================================================
   SECTIONS
   ========================================================================= */
.psw-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: var(--psw-section-pad) 0;
}
.psw-section--emerald { background: var(--psw-emerald); color: var(--psw-off-white); }
.psw-section--black { background: var(--psw-black); color: var(--psw-off-white); }
.psw-section--champagne { background: var(--psw-champagne-45); color: var(--psw-black); }
.psw-section--offwhite { background: var(--psw-off-white); color: var(--psw-black); }
.psw-section--white { background: var(--psw-white); color: var(--psw-black); }

.psw-section-header { text-align: center; max-width: 720px; margin: 0 auto 3.25rem; }
.psw-section-header__eyebrow { display: block; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.76rem; color: var(--psw-antique-gold); margin-bottom: 0.6rem; }
.psw-section--black .psw-section-header__eyebrow,
.psw-section--emerald .psw-section-header__eyebrow { color: var(--psw-gold); }
.psw-section-header__title { font-size: clamp(1.8rem, 4.2vw, 2.6rem); }
.psw-section-header__desc { opacity: 0.78; font-size: 1.03rem; }

/* =========================================================================
   TRUST PILLARS
   ========================================================================= */
.psw-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2.25rem; }
.psw-pillar {
  text-align: center;
  padding: 2rem 1.4rem;
  background: var(--psw-white);
  border-radius: var(--psw-radius-card);
  box-shadow: var(--psw-shadow-soft);
  border: 1px solid var(--psw-black-08);
  transition: transform var(--psw-transition), box-shadow var(--psw-transition);
}
.psw-pillar:hover { transform: translateY(-5px); box-shadow: var(--psw-shadow-lift); }
.psw-pillar__icon {
  width: 64px; height: 64px; margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, var(--psw-emerald), var(--psw-emerald-deep));
  color: var(--psw-gold);
  font-family: var(--psw-font-display);
  font-size: 1.3rem;
  position: relative;
  box-shadow: 0 12px 26px -10px rgba(12,95,60,0.5);
}
.psw-pillar__icon::before {
  content: "";
  position: absolute; inset: 6px;
  border: 1px solid var(--psw-gold-35);
  border-radius: 50%;
}
.psw-pillar__title { font-size: 1.08rem; margin-bottom: 0.45em; }
.psw-pillar__desc { font-size: 0.93rem; opacity: 0.82; }

/* =========================================================================
   SERVICE CARDS
   ========================================================================= */
.psw-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 2rem; }
.psw-service-card {
  background: var(--psw-white);
  border-radius: var(--psw-radius-card);
  overflow: hidden;
  box-shadow: var(--psw-shadow-soft);
  display: flex; flex-direction: column;
  transition: transform var(--psw-transition), box-shadow var(--psw-transition);
  border: 1px solid var(--psw-black-08);
}
.psw-service-card:hover { transform: translateY(-6px); box-shadow: var(--psw-shadow-lift); }
.psw-service-card__media { aspect-ratio: 4 / 3; background: var(--psw-emerald); position: relative; overflow: hidden; }
.psw-service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--psw-ease); }
.psw-service-card:hover .psw-service-card__media img { transform: scale(1.05); }
.psw-service-card__media--placeholder {
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, var(--psw-gold-10) 0 2px, transparent 2px 24px),
    linear-gradient(135deg, var(--psw-emerald) 0%, var(--psw-black) 100%);
}
.psw-placeholder-mark { font-family: var(--psw-font-display); font-size: 2.6rem; color: var(--psw-gold); opacity: 0.85; }
.psw-service-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.psw-service-card__title { font-size: 1.22rem; color: var(--psw-black); }
.psw-service-card__desc { font-size: 0.93rem; color: var(--psw-black-65); flex: 1; }
.psw-service-card__footer { margin-top: 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.psw-service-card__price { font-family: var(--psw-font-display); color: var(--psw-antique-gold); font-size: 1.15rem; }

/* =========================================================================
   ACCORDION (Services + FAQ)
   ========================================================================= */
.psw-accordion { border-top: 1px solid var(--psw-black-12); }
.psw-accordion--on-dark { border-top-color: rgba(255,255,255,0.15); }
.psw-accordion__item { border-bottom: 1px solid var(--psw-black-12); }
.psw-accordion--on-dark .psw-accordion__item { border-bottom-color: rgba(255,255,255,0.15); }

.psw-accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: transparent; border: none; padding: 1.4rem 0.3rem; text-align: left;
  font-family: var(--psw-font-display); font-size: 1.18rem; color: inherit;
  transition: color var(--psw-transition);
}
.psw-accordion__trigger:hover { color: var(--psw-antique-gold); }
.psw-accordion--on-dark .psw-accordion__trigger:hover { color: var(--psw-gold); }
.psw-accordion__trigger-icon {
  flex-shrink: 0; width: 30px; height: 30px;
  border: 1px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform var(--psw-transition), background var(--psw-transition);
}
.psw-accordion__trigger-icon::before, .psw-accordion__trigger-icon::after {
  content: ""; position: absolute; background: currentColor; transition: transform var(--psw-transition);
}
.psw-accordion__trigger-icon::before { width: 11px; height: 1.5px; }
.psw-accordion__trigger-icon::after { width: 1.5px; height: 11px; }
.psw-accordion__trigger[aria-expanded="true"] .psw-accordion__trigger-icon { transform: rotate(180deg); background: var(--psw-gold-10); }
.psw-accordion__trigger[aria-expanded="true"] .psw-accordion__trigger-icon::after { transform: scaleY(0); }

.psw-accordion__panel { overflow: hidden; max-height: 0; transition: max-height 380ms var(--psw-ease); }
.psw-accordion__panel-inner { padding: 0 0.3rem 1.6rem; }

.psw-service-line { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px dashed var(--psw-black-12); }
.psw-accordion--on-dark .psw-service-line { border-bottom-color: rgba(255,255,255,0.12); }
.psw-service-line:last-child { border-bottom: none; }
.psw-service-line__name { font-weight: 500; }
.psw-service-line__note { display: block; font-size: 0.85rem; opacity: 0.68; font-weight: 400; margin-top: 0.15em; }
.psw-service-line__price { font-family: var(--psw-font-display); color: var(--psw-antique-gold); white-space: nowrap; }
.psw-accordion--on-dark .psw-service-line__price { color: var(--psw-gold); }
.psw-accordion__intro { font-size: 0.96rem; opacity: 0.85; margin-bottom: 1.1rem; }

/* =========================================================================
   TEAM CARDS
   ========================================================================= */
.psw-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.25rem; }
.psw-team-card { text-align: center; }
.psw-team-card__photo {
  aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden; margin: 0 auto 1.35rem;
  max-width: 220px; border: 3px solid var(--psw-gold); background: var(--psw-emerald);
  box-shadow: 0 16px 34px -12px rgba(12,95,60,0.4);
}
.psw-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.psw-team-card__name { font-size: 1.32rem; margin-bottom: 0.15em; }
.psw-team-card__role { text-transform: uppercase; letter-spacing: 0.13em; font-size: 0.72rem; color: var(--psw-antique-gold); margin-bottom: 0.85em; }
.psw-team-card__bio { font-size: 0.93rem; opacity: 0.82; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.psw-testimonial { background: var(--psw-white); border-radius: var(--psw-radius-card); padding: 2.25rem; box-shadow: var(--psw-shadow-soft); height: 100%; position: relative; border: 1px solid var(--psw-black-08); }
.psw-testimonial::before {
  content: "\201C"; position: absolute; top: 0.6rem; left: 1.3rem;
  font-family: var(--psw-font-display); font-size: 3.5rem; color: var(--psw-gold-35); line-height: 1;
}
.psw-testimonial__stars { color: var(--psw-antique-gold); letter-spacing: 0.2em; margin-bottom: 0.85rem; font-size: 0.9rem; }
.psw-testimonial__quote { font-size: 0.99rem; font-style: italic; color: var(--psw-black-80); position: relative; z-index: 1; }
.psw-testimonial__author { margin-top: 1.1rem; font-family: var(--psw-font-display); color: var(--psw-emerald); }

/* =========================================================================
   CTA / BOOKING BANNER
   ========================================================================= */
.psw-cta-banner {
  background: linear-gradient(165deg, var(--psw-black) 0%, var(--psw-black-emerald) 100%);
  color: var(--psw-off-white);
  border: 1px solid var(--psw-gold-35);
  border-radius: var(--psw-radius-card);
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.psw-cta-banner__title { font-size: clamp(1.55rem, 3.6vw, 2.2rem); color: var(--psw-off-white); position: relative; z-index: 1; }
.psw-cta-banner__desc { color: var(--psw-white-80); max-width: 560px; margin: 0 auto 1.85rem; position: relative; z-index: 1; }
.psw-cta-banner .psw-btn { position: relative; z-index: 1; }

/* =========================================================================
   MEMBERSHIP / PACKAGE CARDS
   ========================================================================= */
.psw-membership-card {
  background: linear-gradient(160deg, var(--psw-emerald), var(--psw-emerald-deep));
  color: var(--psw-off-white);
  border-radius: var(--psw-radius-card);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--psw-gold-20);
}
.psw-membership-card::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, var(--psw-gold-10) 0 2px, transparent 2px 28px);
  pointer-events: none;
}
.psw-membership-card__price { font-family: var(--psw-font-display); font-size: 2.6rem; color: var(--psw-gold); position: relative; z-index: 1; }
.psw-membership-card__price span { font-size: 1rem; font-family: var(--psw-font-body); color: var(--psw-champagne); }
.psw-membership-card ul { margin: 1.35rem 0; position: relative; z-index: 1; }
.psw-membership-card li { padding: 0.45em 0; padding-left: 1.5em; position: relative; }
.psw-membership-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--psw-gold); }

/* =========================================================================
   STEPS / DO-DONT (first-time clients)
   ========================================================================= */
.psw-steps { display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.psw-step { background: var(--psw-white); border-radius: var(--psw-radius-card); padding: 1.9rem; box-shadow: var(--psw-shadow-soft); border: 1px solid var(--psw-black-08); }
.psw-step__num { font-family: var(--psw-font-display); font-size: 2.1rem; color: transparent; -webkit-text-stroke: 1.5px var(--psw-antique-gold); }
.psw-step__title { font-size: 1.08rem; margin: 0.45em 0; }
.psw-step__desc { font-size: 0.93rem; opacity: 0.8; }

.psw-do-dont { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.75rem; }
.psw-do-dont__col { background: var(--psw-white); border-radius: var(--psw-radius-card); padding: 1.9rem; box-shadow: var(--psw-shadow-soft); border: 1px solid var(--psw-black-08); }
.psw-do-dont__col h3 { font-size: 1.12rem; }
.psw-do-dont__col.is-dont h3 { color: var(--psw-emerald); }
.psw-do-dont__col ul li { padding: 0.55em 0; padding-left: 1.5em; position: relative; font-size: 0.95rem; border-bottom: 1px dashed var(--psw-black-12); }
.psw-do-dont__col ul li:last-child { border-bottom: none; }
.psw-do-dont__col.is-do li::before { content: "\2713"; position: absolute; left: 0; color: var(--psw-emerald); }
.psw-do-dont__col.is-dont li::before { content: "\2715"; position: absolute; left: 0; color: var(--psw-antique-gold); }

/* =========================================================================
   FORMS
   ========================================================================= */
.psw-form { display: grid; gap: 1.2rem; max-width: 560px; }
.psw-form label { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4em; color: var(--psw-emerald); }
.psw-form input, .psw-form textarea {
  width: 100%; padding: 0.9em 1.05em; border: 1px solid var(--psw-black-12);
  border-radius: var(--psw-radius-sm); background: var(--psw-white); font-size: 1rem;
  transition: border-color var(--psw-transition), box-shadow var(--psw-transition);
}
.psw-form input:focus, .psw-form textarea:focus { border-color: var(--psw-gold); box-shadow: 0 0 0 3px var(--psw-gold-10); outline: none; }
.psw-form textarea { min-height: 145px; resize: vertical; }

/* =========================================================================
   POLICY / INFO BLOCKS
   ========================================================================= */
.psw-policy-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.psw-policy-card { border: 1px solid var(--psw-gold-35); border-radius: var(--psw-radius-card); padding: 1.9rem; transition: border-color var(--psw-transition), transform var(--psw-transition); }
.psw-policy-card:hover { transform: translateY(-3px); border-color: var(--psw-gold); }
.psw-policy-card h3 { color: var(--psw-antique-gold); font-size: 1.08rem; }
.psw-section--black .psw-policy-card h3, .psw-section--emerald .psw-policy-card h3 { color: var(--psw-gold); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.psw-footer { background: var(--psw-black); color: var(--psw-off-white); padding-top: 4.5rem; position: relative; }
.psw-footer__top-border {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--psw-gold) 20%, var(--psw-antique-gold) 50%, var(--psw-gold) 80%, transparent);
  opacity: 0.7;
}
.psw-footer__grid { display: grid; gap: 2.75rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); padding-bottom: 3rem; }

.psw-footer__logo { margin-bottom: 1.25rem; }
.psw-footer__logo img { max-height: 78px; width: auto; display: block; }

.psw-footer__col h3 { color: var(--psw-gold); font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.1rem; }
.psw-footer__col a, .psw-footer__col p { color: var(--psw-white-80); font-size: 0.92rem; }
.psw-footer__col ul li { margin-bottom: 0.65em; }
.psw-footer__col a:hover { color: var(--psw-gold); }
.psw-footer__social { display: flex; gap: 1rem; margin-top: 1.1rem; }
.psw-footer__social a {
  width: 38px; height: 38px; border: 1px solid var(--psw-gold-20); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--psw-champagne);
  transition: border-color var(--psw-transition), color var(--psw-transition);
}
.psw-footer__social a:hover { border-color: var(--psw-gold); color: var(--psw-gold); }
.psw-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.6rem 0 5.5rem; text-align: center; font-size: 0.8rem; color: var(--psw-white-55); }
@media (min-width: 960px) { .psw-footer__bottom { padding-bottom: 1.6rem; } }

/* =========================================================================
   UTILITIES
   ========================================================================= */
.psw-text-center { text-align: center; }
.psw-mt-0 { margin-top: 0; }
.psw-grid-2 { display: grid; gap: 2.75rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 860px) { .psw-grid-2 { grid-template-columns: 1fr 1fr; } }
.psw-eyebrow-gold { display: block; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.76rem; color: var(--psw-antique-gold); margin-bottom: 0.6rem; }
.psw-italic-serif { font-family: var(--psw-font-display); font-style: italic; }

.psw-booking-embed { border: 2px dashed var(--psw-gold); border-radius: var(--psw-radius-card); padding: 3rem 1.5rem; text-align: center; background: var(--psw-gold-10); }
.psw-booking-embed h3 { color: var(--psw-antique-gold); }
.psw-booking-embed code {
  display: block; background: var(--psw-black); color: var(--psw-gold); padding: 1rem;
  border-radius: var(--psw-radius-sm); margin: 1rem 0; font-size: 0.85rem; overflow-x: auto; text-align: left;
}

.psw-resource-card { background: var(--psw-white); border-radius: var(--psw-radius-card); box-shadow: var(--psw-shadow-soft); padding: 1.9rem; border: 1px solid var(--psw-black-08); transition: transform var(--psw-transition), box-shadow var(--psw-transition); }
.psw-resource-card:hover { transform: translateY(-5px); box-shadow: var(--psw-shadow-lift); }
.psw-resource-card__date { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--psw-antique-gold); }
.psw-resource-card__title { font-size: 1.28rem; margin: 0.45em 0 0.65em; }

.psw-aspect-16-9 { aspect-ratio: 16 / 9; overflow: hidden; }
.psw-aspect-1-1 { aspect-ratio: 1 / 1; overflow: hidden; }
.psw-aspect-16-9 img, .psw-aspect-1-1 img { width: 100%; height: 100%; object-fit: cover; }

.psw-scroll-x { overflow-x: auto; max-width: 100%; }

/* Compatibility mode — optionally toggled from Settings > Pretty Saditty,
   hides the most common active-theme header/footer selectors so our
   injected chrome doesn't visually duplicate with the theme's own. */
body.psw-hide-theme-chrome > header:not(.psw-header),
body.psw-hide-theme-chrome > footer:not(.psw-footer),
body.psw-hide-theme-chrome .site-header,
body.psw-hide-theme-chrome .site-footer,
body.psw-hide-theme-chrome #masthead,
body.psw-hide-theme-chrome #colophon,
body.psw-hide-theme-chrome nav.main-navigation {
  display: none !important;
}

/* =========================================================================
   ANTI-"BLOG SITE" FIXES — always on for any page built from a Pretty
   Saditty shortcode (body.psw-page, set by pretty-saditty.php), independent
   of the header/footer toggle above. Most themes print a page title, open
   comments, show a sidebar, and cap content to a narrow column — all
   normal for a blog post, all wrong for these designed pages.
   ========================================================================= */

/* The page title text itself is already blanked server-side (see
   psw_maybe_hide_page_title in pretty-saditty.php); this also collapses
   the now-empty heading element/wrapper so it doesn't leave a gap. */
body.psw-page .entry-title,
body.psw-page h1.entry-title,
body.psw-page .page-title,
body.psw-page .entry-header {
  display: none !important;
}

/* Comments, post navigation, and post meta are blog-post conventions —
   never appropriate on a designed marketing page. */
body.psw-page .comments-area,
body.psw-page #comments,
body.psw-page .entry-meta,
body.psw-page .entry-footer,
body.psw-page .post-navigation,
body.psw-page .nav-links {
  display: none !important;
}

/* Many themes reserve a sidebar column and cap the main content to a
   narrow width, which squeezes full-bleed sections and reads as a blog
   post rather than a page. Where the browser supports :has() (all
   current major browsers), drop the sidebar and let content run full
   width automatically — this is a progressive enhancement; browsers
   without :has() support simply keep whatever width the theme already
   used, no harm done. */
body:has(.psw-page) .widget-area,
body:has(.psw-page) aside.sidebar,
body:has(.psw-page) #secondary {
  display: none !important;
}
body:has(.psw-page) .entry-content,
body:has(.psw-page) .site-content,
body:has(.psw-page) #primary,
body:has(.psw-page) #content {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}
